@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=IBM+Plex+Sans:wght@400;500;600;700&family=Playfair+Display:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
}
button,
input,
select,
textarea {
  font: inherit;
}
img,
svg {
  display: block;
}
a,
a:visited {
  color: inherit;
}

:root {
  --font-heading: "Playfair Display", Georgia, serif;
  --background: #f1ece1;
  --foreground: #191714;
  --card: #f7f3ea;
  --card-foreground: #191714;
  --popover: #f7f3ea;
  --popover-foreground: #191714;
  --primary: #191714;
  --primary-foreground: #f1ece1;
  --secondary: #e7dfd1;
  --secondary-foreground: #191714;
  --muted: #e7dfd1;
  --muted-foreground: #746e64;
  --accent: #8c3030;
  --accent-foreground: #fffaf0;
  --moss: #58634b;
  --moss-light: #dfe2d4;
  --clay-light: #ead8c7;
  --ochre: #b78345;
  --destructive: oklch(0.577 0.245 27.325);
  --border: #d8d0c2;
  --input: #d8d0c2;
  --ring: oklch(0.708 0 0);
  --chart-1: oklch(0.87 0 0);
  --chart-2: oklch(0.556 0 0);
  --chart-3: oklch(0.439 0 0);
  --chart-4: oklch(0.371 0 0);
  --chart-5: oklch(0.269 0 0);
  --radius: 0.625rem;
  --sidebar: oklch(0.985 0 0);
  --sidebar-foreground: oklch(0.145 0 0);
  --sidebar-primary: oklch(0.205 0 0);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.97 0 0);
  --sidebar-accent-foreground: oklch(0.205 0 0);
  --sidebar-border: oklch(0.922 0 0);
  --sidebar-ring: oklch(0.708 0 0);
}
.dark {
  --background: oklch(0.145 0 0);
  --foreground: oklch(0.985 0 0);
  --card: oklch(0.205 0 0);
  --card-foreground: oklch(0.985 0 0);
  --popover: oklch(0.205 0 0);
  --popover-foreground: oklch(0.985 0 0);
  --primary: oklch(0.922 0 0);
  --primary-foreground: oklch(0.205 0 0);
  --secondary: oklch(0.269 0 0);
  --secondary-foreground: oklch(0.985 0 0);
  --muted: oklch(0.269 0 0);
  --muted-foreground: oklch(0.708 0 0);
  --accent: oklch(0.269 0 0);
  --accent-foreground: oklch(0.985 0 0);
  --destructive: oklch(0.704 0.191 22.216);
  --border: oklch(1 0 0 / 10%);
  --input: oklch(1 0 0 / 15%);
  --ring: oklch(0.556 0 0);
  --chart-1: oklch(0.87 0 0);
  --chart-2: oklch(0.556 0 0);
  --chart-3: oklch(0.439 0 0);
  --chart-4: oklch(0.371 0 0);
  --chart-5: oklch(0.269 0 0);
  --sidebar: oklch(0.205 0 0);
  --sidebar-foreground: oklch(0.985 0 0);
  --sidebar-primary: oklch(0.488 0.243 264.376);
  --sidebar-primary-foreground: oklch(0.985 0 0);
  --sidebar-accent: oklch(0.269 0 0);
  --sidebar-accent-foreground: oklch(0.985 0 0);
  --sidebar-border: oklch(1 0 0 / 10%);
  --sidebar-ring: oklch(0.556 0 0);
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ink-drift {
  from {
    transform: translateX(-5px);
    opacity: 0.65;
  }
  to {
    transform: translateX(4px);
    opacity: 0.9;
  }
}
@layer components {
  .page-content {
    animation: rise-in 0.45s ease-out both;
    padding: 0 20px 32px;
  }
  .eyebrow-row {
    display: flex;
    justify-content: space-between;
    padding: 13px 0 4px;
    color: #7d7569;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.2em;
    writing-mode: horizontal-tb;
  }
  .brand-logo {
    display: block;
    width: 42px;
    flex: 0 0 42px;
  }
  .brand-logo img {
    width: 100%;
    height: 32px;
    object-fit: contain;
  }
  .icon-button {
    display: grid;
    height: 32px;
    width: 32px;
    place-items: center;
    border: 0;
    background: transparent;
    color: #191714;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      color 0.2s ease;
  }
  .icon-button:hover {
    color: #8c3030;
    transform: translateY(-1px);
  }
  .breadcrumb,
  .section-kicker,
  .product-category {
    margin: 0;
    color: #8c3030;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .home-intro {
    position: relative;
    min-height: 410px;
    padding: 41px 12px 0;
    overflow: hidden;
  }
  .home-intro h1,
  .catalog-heading h1 {
    position: relative;
    z-index: 2;
    margin: 29px 0 10px;
    font-family: var(--font-heading);
    font-size: 37px;
    line-height: 0.92;
    letter-spacing: -0.065em;
    text-transform: uppercase;
  }
  .home-intro h1 em,
  .catalog-heading h1 em,
  .home-cta em {
    color: #9d3030;
    font-style: normal;
  }
  .breadcrumb span {
    color: #9d978b;
    margin: 0 5px;
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #5c574e;
    font-size: 12px;
    line-height: 1.6;
  }
  .hero-figure {
    position: absolute;
    inset: 150px -20px 0;
    overflow: hidden;
    background:
      linear-gradient(
        160deg,
        transparent 36%,
        rgba(137, 126, 109, 0.15) 36%,
        transparent 60%
      ),
      linear-gradient(
        20deg,
        transparent 50%,
        rgba(160, 46, 40, 0.85) 50%,
        transparent 62%
      );
  }
  .hero-mountain {
    position: absolute;
    bottom: -32px;
    left: -5%;
    width: 110%;
    height: 195px;
    background:
      linear-gradient(
        155deg,
        transparent 0 23%,
        #bcb2a2 23% 27%,
        transparent 27% 37%,
        #716a60 37% 41%,
        transparent 41%
      ),
      linear-gradient(
        20deg,
        #272522 0 25%,
        #6c665c 25% 29%,
        #d8d0c3 29% 34%,
        transparent 34%
      );
    opacity: 0.74;
    clip-path: polygon(
      0 70%,
      28% 20%,
      48% 47%,
      72% 9%,
      100% 67%,
      100% 100%,
      0 100%
    );
  }
  .hero-silhouette {
    position: absolute;
    z-index: 1;
    bottom: 40px;
    left: 49%;
    width: 34px;
    height: 94px;
    background: #191714;
    border-radius: 45% 45% 35% 35%;
    box-shadow: 24px 18px 0 -9px #191714;
    transform: rotate(4deg);
  }
  .hero-silhouette:before {
    content: "";
    position: absolute;
    top: -18px;
    left: 9px;
    width: 16px;
    height: 18px;
    border-radius: 50%;
    background: #191714;
  }
  .search-row,
  .catalog-search-row {
    display: flex;
    gap: 8px;
    margin: 0 0 20px;
  }
  .search-box,
  .catalog-search {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    flex: 1;
    border: 1px solid #c8beaf;
    border-radius: 5px;
    background: #eee8dc;
    padding: 0 12px;
    color: #827c72;
    font-size: 12px;
    text-align: left;
  }
  .catalog-search input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: #191714;
    font: inherit;
  }
  .catalog-search button {
    border: 0;
    background: transparent;
    font-size: 20px;
    color: #8c3030;
  }
  .filter-button {
    display: grid;
    width: 43px;
    min-height: 43px;
    place-items: center;
    border: 1px solid #c8beaf;
    border-radius: 5px;
    background: #eee8dc;
    color: #191714;
    cursor: pointer;
    transition:
      background 0.2s ease,
      transform 0.2s ease;
  }
  .filter-button:hover,
  .sort-button:hover {
    background: #e1d8c9;
    transform: translateY(-1px);
  }
  .quick-categories {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 23px;
  }
  .quick-category {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 0;
    background: transparent;
    color: #59544c;
    font-size: 9px;
    cursor: pointer;
  }
  .category-icon {
    display: grid;
    height: 51px;
    width: 51px;
    place-items: center;
    border: 1px solid #d0c5b5;
    border-radius: 50%;
    font-size: 20px;
    color: #443f37;
    background: #ebe4d7;
  }
  .quick-category-active .category-icon {
    border-color: #9d3030;
    box-shadow:
      inset 0 0 0 3px #f1ece1,
      inset 0 0 0 4px #9d3030;
  }
  .section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 10px;
  }
  .see-all {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #9d3030;
    font-size: 10px;
    text-decoration: none;
  }
  .category-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .category-card {
    position: relative;
    display: flex;
    min-height: 109px;
    overflow: hidden;
    border: 1px solid #d0c5b5;
    border-radius: 7px;
    background: #e9e1d4;
    padding: 17px 16px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
  }
  .category-card > div:first-child {
    position: relative;
    z-index: 2;
  }
  .category-card h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 20px;
    letter-spacing: -0.05em;
  }
  .category-card p {
    margin: 4px 0 14px;
    color: #746e64;
    font-size: 10px;
  }
  .category-card img {
    position: absolute;
    right: -2px;
    top: 0;
    height: 100%;
    width: 62%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1.15);
    opacity: 0.8;
  }
  .category-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      #e9e1d4 24%,
      rgba(233, 225, 212, 0.2) 75%
    );
  }
  .card-arrow {
    position: relative;
    z-index: 2;
    color: #9d3030;
    font-size: 22px;
  }
  .all-products {
    margin-top: 28px;
  }
  .all-products-heading {
    align-items: center;
    margin-bottom: 12px;
  }
  .all-products-heading .section-kicker {
    margin: 0;
  }
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .mini-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #d0c5b5;
    border-radius: 7px;
    background: #ebe4d7;
    color: #191714;
    text-decoration: none;
  }
  .mini-product-image {
    height: 116px;
    overflow: hidden;
    background: #d9d1c3;
  }
  .mini-product-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: multiply;
    filter: grayscale(0.45) sepia(0.14) saturate(1.2) contrast(1.15);
  }
  .mini-product-copy {
    min-height: 94px;
    padding: 10px 10px 16px;
  }
  .mini-product-copy p {
    margin: 0 0 5px;
    color: #9d3030;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
  }
  .mini-product-copy h3 {
    margin: 0 0 9px;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 16px;
    line-height: 1.05;
  }
  .mini-product-copy strong {
    color: #9d3030;
    font-size: 12px;
  }
  .mini-product-copy small {
    color: #756f66;
    font-size: 8px;
    font-weight: 400;
  }
  .mini-product-arrow {
    position: absolute;
    right: 9px;
    bottom: 7px;
    color: #9d3030;
    font-size: 18px;
  }
  .mini-product-card:hover {
    border-color: #9d3030;
  }
  .home-cta {
    position: relative;
    overflow: hidden;
    margin: 24px 0;
    padding: 20px 16px 24px;
    border-radius: 7px;
    background: #24211e;
    color: #f1ece1;
  }
  .home-cta:after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -37px;
    width: 180px;
    height: 125px;
    border-top: 1px solid #9d3030;
    transform: rotate(-18deg);
    box-shadow:
      0 -13px 0 #7b2b2a,
      0 -26px 0 #514740;
  }
  .home-cta h2 {
    position: relative;
    z-index: 1;
    margin: 10px 0 20px;
    font-family: var(--font-heading);
    font-size: 27px;
    line-height: 1;
    letter-spacing: -0.06em;
  }
  .dark-button,
  .rent-button {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 168px;
    border: 1px solid #f1ece1;
    border-radius: 3px;
    background: #f1ece1;
    color: #191714;
    padding: 11px 13px;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      background 0.2s ease;
  }
  .dark-button:hover,
  .rent-button:hover {
    background: #d8cdbd;
    transform: translateY(-2px);
  }
  .featured-section {
    margin-top: 25px;
  }
  .featured-card {
    display: flex;
    gap: 14px;
    padding: 12px;
    border: 1px solid #d0c5b5;
    border-radius: 7px;
    background: #ebe4d7;
  }
  .featured-card img {
    width: 112px;
    height: 112px;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: grayscale(100%);
  }
  .featured-card h3 {
    margin: 5px 0 12px;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 1;
  }
  .product-price {
    margin: 0;
    color: #9d3030;
    font-size: 15px;
    font-weight: 800;
  }
  .product-price small {
    color: #756f66;
    font-size: 10px;
    font-weight: 400;
  }
  .rating {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: #9d3030;
    font-size: 11px;
    font-weight: 700;
  }
  .catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 29px 12px 24px;
  }
  .catalog-heading h1 {
    margin: 14px 0 9px;
    font-size: 32px;
  }
  .catalog-count {
    margin: 0;
    color: #746e64;
    font-size: 11px;
  }
  .catalog-stamp {
    border: 1px solid #9d3030;
    padding: 8px 7px;
    color: #9d3030;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.25;
    transform: rotate(-8deg);
  }
  .catalog-stamp span {
    letter-spacing: 0.24em;
  }
  .category-scroll {
    display: flex;
    gap: 7px;
    margin: 0 -20px 16px;
    overflow: auto;
    padding: 0 20px 4px;
    scrollbar-width: none;
  }
  .category-scroll::-webkit-scrollbar {
    display: none;
  }
  .category-tab {
    flex-shrink: 0;
    border: 1px solid #c8beaf;
    border-radius: 20px;
    background: transparent;
    padding: 8px 14px;
    color: #756e64;
    font-size: 11px;
    cursor: pointer;
  }
  .category-tab-active {
    border-color: #9d3030;
    background: #9d3030;
    color: #fff8ed;
  }
  .sort-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
  }
  .sort-wrap {
    position: relative;
  }
  .sort-button {
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #c8beaf;
    border-radius: 3px;
    background: #ebe4d7;
    padding: 9px 10px;
    color: #403c36;
    font-size: 11px;
    cursor: pointer;
  }
  .sort-note {
    color: #888075;
    font-size: 10px;
  }
  .sort-menu {
    position: absolute;
    z-index: 5;
    top: 39px;
    left: 0;
    width: 120px;
    border: 1px solid #c8beaf;
    border-radius: 4px;
    background: #f7f3ea;
    box-shadow: 0 8px 20px #332b2030;
  }
  .sort-menu button {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 9px 12px;
    text-align: left;
    font-size: 11px;
  }
  .sort-option-active {
    color: #9d3030;
    font-weight: 700;
  }
  .product-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .product-card {
    position: relative;
    display: flex;
    gap: 13px;
    min-height: 143px;
    border: 1px solid #d0c5b5;
    border-radius: 7px;
    background: #f7f3ea;
    padding: 10px;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.2s ease;
  }
  .product-card:hover {
    border-color: #9d3030;
  }
  .product-card-image {
    position: relative;
    flex: 0 0 117px;
    overflow: hidden;
    border-radius: 4px;
    background: #e4dccf;
  }
  .product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1.15);
  }
  .save-product {
    position: absolute;
    top: 5px;
    right: 5px;
    display: grid;
    height: 25px;
    width: 25px;
    place-items: center;
    border: 1px solid #d4c9b9;
    border-radius: 50%;
    background: #f5efe4cc;
    color: #39342d;
  }
  .product-card-info {
    min-width: 0;
    padding: 4px 20px 0 0;
  }
  .product-card h2 {
    margin: 7px 0 9px;
    font-family: var(--font-heading);
    font-size: 17px;
    line-height: 0.98;
    letter-spacing: -0.04em;
  }
  .product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 9px;
    margin-top: 8px;
    color: #736c61;
    font-size: 9px;
  }
  .product-arrow {
    position: absolute;
    right: 11px;
    bottom: 11px;
    color: #9d3030;
    font-size: 20px;
  }
  .empty-state {
    padding: 40px 20px;
    text-align: center;
  }
  .empty-state > span {
    font-size: 38px;
    color: #9d3030;
  }
  .empty-state h2 {
    margin: 14px 0 4px;
    font-family: var(--font-heading);
    font-size: 20px;
  }
  .empty-state p {
    color: #746e64;
    font-size: 12px;
  }
  .empty-state button {
    border: 1px solid #9d3030;
    background: transparent;
    padding: 8px 12px;
    color: #9d3030;
    font-size: 11px;
  }
  .load-more-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 17px;
    border: 1px solid #c8beaf;
    border-radius: 3px;
    background: transparent;
    padding: 12px;
    font-size: 10px;
    font-weight: 800;
    color: #403c36;
  }
  .detail-page {
    padding-bottom: 32px;
  }
  .detail-image-wrap {
    position: relative;
    height: 286px;
    overflow: hidden;
    background: #dcd3c4;
  }
  .detail-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: grayscale(100%) contrast(1.15);
  }
  .detail-image-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 17px 20px;
    background: linear-gradient(transparent 55%, #1a171490);
  }
  .detail-category {
    color: #f5efe4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  .share-button,
  .bookmark-button {
    display: grid;
    place-items: center;
    border: 1px solid #c8beaf;
    border-radius: 50%;
    background: #f1ece1d9;
    color: #191714;
    cursor: pointer;
  }
  .share-button {
    height: 33px;
    width: 33px;
    color: #191714;
  }
  .gallery-arrow {
    position: absolute;
    top: 50%;
    display: grid;
    height: 31px;
    width: 31px;
    place-items: center;
    border: 1px solid #b8ad9e;
    border-radius: 50%;
    background: #f1ece1d9;
    color: #191714;
  }
  .gallery-left {
    left: 12px;
  }
  .gallery-right {
    right: 12px;
  }
  .gallery-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 20px 4px;
  }
  .gallery-thumb,
  .gallery-thumb-active {
    height: 57px;
    width: 57px;
    overflow: hidden;
    border: 1px solid #c8beaf;
    border-radius: 4px;
    padding: 0;
    background: #ddd3c5;
  }
  .gallery-thumb-active {
    border: 2px solid #9d3030;
  }
  .gallery-thumb img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: grayscale(100%);
  }
  .detail-copy {
    padding: 18px 20px;
  }
  .detail-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
  }
  .detail-title-row h1 {
    margin: 7px 0 0;
    font-family: var(--font-heading);
    font-size: 29px;
    line-height: 0.95;
    letter-spacing: -0.06em;
  }
  .bookmark-button {
    height: 34px;
    width: 34px;
    flex-shrink: 0;
    font-size: 22px;
  }
  .detail-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 13px 0 20px;
    color: #756e64;
    font-size: 10px;
  }
  .verified-tag {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #4e7149;
  }
  .detail-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    border-top: 1px solid #d4c9b9;
    border-bottom: 1px solid #d4c9b9;
    padding: 15px 0;
  }
  .detail-price strong {
    color: #9d3030;
    font-size: 22px;
  }
  .detail-price span {
    color: #756e64;
    font-size: 11px;
  }
  .detail-price small {
    margin-left: auto;
    max-width: 105px;
    color: #8b8378;
    font-size: 8px;
    line-height: 1.3;
    text-align: right;
  }
  .detail-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #d4c9b9;
    padding: 14px 0;
  }
  .detail-stats div {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid #d4c9b9;
    padding-left: 10px;
    font-size: 9px;
  }
  .detail-stats div:first-child {
    padding-left: 0;
  }
  .detail-stats div:last-child {
    border: 0;
  }
  .detail-stats span,
  .detail-stats svg {
    color: #8c3030;
  }
  .detail-stats strong {
    color: #81796e;
    font-size: 8px;
    font-weight: 500;
  }
  .detail-stats b {
    font-size: 10px;
  }
  .detail-section {
    border-bottom: 1px solid #d4c9b9;
    padding: 20px 0;
  }
  .detail-description {
    color: #504b43;
    font-size: 12px;
    line-height: 1.55;
  }
  .feature-list {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    color: #4f4941;
    font-size: 11px;
  }
  .feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .feature-list svg {
    color: #9d3030;
  }
  .spec-table {
    margin-top: 13px;
  }
  .spec-table div {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #dbd2c5;
    padding: 8px 0;
    color: #756e64;
    font-size: 10px;
  }
  .spec-table strong {
    color: #37322c;
    font-weight: 500;
  }
  .rental-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .rental-note {
    margin: 6px 0 0;
    color: #756e64;
    font-size: 10px;
  }
  .quantity-control {
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #c8beaf;
    border-radius: 3px;
    padding: 5px 8px;
  }
  .quantity-control button {
    border: 0;
    background: transparent;
    font-size: 17px;
  }
  .quantity-control span {
    font-size: 12px;
    font-weight: 700;
  }
  .rent-button {
    width: 100%;
    margin-top: 18px;
    border-color: #191714;
    background: #191714;
    color: #f1ece1;
  }
  .rent-button:hover {
    background: #39342e;
  }
  .consult-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 9px;
    border: 1px solid #9d3030;
    border-radius: 3px;
    background: transparent;
    padding: 11px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
  }
  .consult-button span {
    color: #4d7b4a;
    font-size: 15px;
  }
  .modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #19171466;
    padding: 0 0 0;
  }
  .booking-modal {
    position: relative;
    width: 100%;
    max-width: 430px;
    border-radius: 20px 20px 0 0;
    background: #f7f3ea;
    padding: 25px 20px 30px;
    box-shadow: 0 -10px 40px #19171433;
    animation: rise-in 0.25s ease-out both;
  }
  .modal-close {
    position: absolute;
    top: 17px;
    right: 17px;
    display: grid;
    height: 30px;
    width: 30px;
    place-items: center;
    border: 1px solid #c8beaf;
    border-radius: 50%;
    background: transparent;
  }
  .booking-modal h2 {
    margin: 8px 0 20px;
    font-family: var(--font-heading);
    font-size: 25px;
    letter-spacing: -0.06em;
  }
  .booking-summary {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid #d0c5b5;
    border-radius: 5px;
    background: #ebe4d7;
    padding: 10px;
  }
  .booking-summary img {
    height: 72px;
    width: 72px;
    object-fit: cover;
    mix-blend-mode: multiply;
    filter: grayscale(100%);
  }
  .booking-summary div {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .booking-summary strong {
    font-family: var(--font-heading);
    font-size: 15px;
    line-height: 1;
  }
  .booking-summary span {
    color: #756e64;
    font-size: 10px;
  }
  .booking-summary b {
    color: #9d3030;
    font-size: 13px;
  }
  .booking-date {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 17px 0;
    color: #756e64;
    font-size: 10px;
    font-weight: 700;
  }
  .booking-date input {
    border: 1px solid #c8beaf;
    border-radius: 4px;
    background: #ebe4d7;
    padding: 11px;
    color: #191714;
    font: inherit;
  }
  .bottom-nav-item {
    display: flex;
    min-width: 72px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: #948b7f;
    font-size: 9px;
    text-decoration: none;
    transition:
      color 0.2s ease,
      transform 0.2s ease;
  }
  .bottom-nav-item:hover {
    transform: translateY(-2px);
    color: #9d3030;
  }
  .bottom-nav-item-active {
    color: #9d3030;
    font-weight: 800;
  }
}
body {
  background: #2d3029;
  font-family: "IBM Plex Sans", sans-serif;
}
.mobile-stage {
  min-height: 100svh;
  background: #2d3029;
  color: #191714;
}
.phone-shell {
  position: relative;
  width: 100%;
  max-width: 430px;
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: #f4f0e7;
  box-shadow:
    0 0 0 1px #2d2b27,
    0 22px 80px #0009;
}
.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  height: 68px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #cfc5b4;
  background: #f4f0e7;
  padding: 0 17px;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.detail-header .header-brand {
  width: 100%;
  justify-content: center;
}
.header-action {
  display: grid;
  height: 30px;
  width: 30px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #191714;
  cursor: pointer;
}
.menu-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  align-items: end;
  visibility: hidden;
  opacity: 0;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}
.menu-modal.is-open {
  visibility: visible;
  opacity: 1;
}
.menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 23, 20, 0.68);
}
.menu-panel {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  padding: 32px 9% 38px;
  color: #191714;
  background: #f1ece1;
  box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.18);
  transform: translateY(22px);
  transition: transform 0.3s ease;
}
.menu-modal.is-open .menu-panel {
  transform: translateY(0);
}
.menu-close {
  position: absolute;
  top: 18px;
  right: 7%;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(25, 23, 20, 0.22);
  border-radius: 50%;
  background: transparent;
  color: #191714;
  font-size: 23px;
  line-height: 1;
  cursor: pointer;
}
.menu-kicker {
  margin: 0 0 12px;
  color: #8c3030;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.menu-panel h2 {
  margin: 0 0 21px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}
.menu-links {
  display: grid;
  border-top: 1px solid rgba(25, 23, 20, 0.18);
}
.menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border-bottom: 1px solid rgba(25, 23, 20, 0.18);
  color: #191714;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.menu-links a span {
  color: #8c3030;
  font-size: 20px;
  font-weight: 400;
}
.menu-links a:hover {
  color: #8c3030;
}
.menu-is-open {
  overflow: hidden;
}

.menu-is-open .screen-scroll {
  overflow: hidden;
}
.detail-header .header-brand > .header-action {
  position: absolute;
  left: 17px;
}
.back-glyph {
  margin-top: -5px;
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}
.wolf-mark {
  display: grid;
  height: 37px;
  width: 37px;
  place-items: center;
  color: #28241f;
  font-size: 30px;
  line-height: 1;
  transform: rotate(-25deg);
}
.brand-lockup {
  color: #191714;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-decoration: none;
}
.brand-lockup small {
  display: block;
  margin-top: 5px;
  color: #96302f;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-align: center;
}
.side-label {
  position: absolute;
  z-index: 11;
  top: 110px;
  color: #686157;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
}
.side-label-left {
  left: 10px;
  transform: rotate(180deg);
}
.side-label-right {
  right: 10px;
}
.screen-scroll {
  position: relative;
  height: calc(100svh - 68px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}
.screen-scroll::-webkit-scrollbar {
  display: none;
}
.page-content {
  padding: 0 20px 20px;
  animation: none;
}
.home-page {
  padding: 0 20px 25px;
}
.eyebrow-row {
  display: none;
}
.home-intro {
  min-height: 385px;
  padding: 79px 11px 0;
}
.home-intro h1,
.catalog-heading h1 {
  margin: 30px 0 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
  text-transform: uppercase;
}
.home-intro h1 em {
  color: #9c302f;
  font-style: normal;
}
.breadcrumb {
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}
.hero-copy {
  margin-top: 16px;
  color: #58634b;
  font-size: 12px;
  line-height: 1.45;
}
.hero-figure {
  position: absolute;
  inset: 240px 0 0;
  overflow: hidden;
  background: transparent;
}
.hero-figure img {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 205px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.77;
  mix-blend-mode: multiply;
  filter: grayscale(0.55) sepia(0.16) saturate(1.15) contrast(1.15);
}
.hero-mountain {
  display: none;
}
.hero-silhouette {
  display: none;
}
.search-row {
  margin: 0 0 18px;
}
.search-box,
.catalog-search {
  min-height: 42px;
  border-color: #c5b59f;
  background: #f0e5d6;
}
.search-box {
  font-family: "IBM Plex Sans", sans-serif;
}
.filter-button {
  min-height: 42px;
  border-color: #c5b59f;
  background: #f0e5d6;
  color: #8c3030;
}
.quick-categories {
  margin: 0 0 23px;
  gap: 5px;
}
.quick-category {
  gap: 4px;
  color: #3f3a34;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 9px;
}
.category-icon {
  height: 52px;
  width: 52px;
  overflow: hidden;
  padding: 0;
  border-color: #bdb2a2;
  background: #e8e0d3;
}
.category-icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  filter: grayscale(0.45) sepia(0.12) saturate(1.2) contrast(1.15);
}
.quick-category-active .category-icon {
  border-color: #9d3030;
  box-shadow:
    inset 0 0 0 3px #f2ede3,
    inset 0 0 0 4px #9d3030;
}
.section-heading {
  margin-bottom: 10px;
}
.section-kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
}
.see-all {
  font-size: 10px;
}
.category-list {
  gap: 10px;
}
.category-card {
  min-height: 108px;
  border-color: #c8cdbb;
  border-radius: 5px;
  background: var(--moss-light);
  padding: 17px 15px;
}
.category-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 800;
}
.category-card img {
  opacity: 0.9;
  filter: grayscale(0.45) sepia(0.12) saturate(1.2) contrast(1.15);
}
.category-card:after {
  background: linear-gradient(90deg, #dfe2d4 17%, #dfe2d466 80%);
}
.card-arrow {
  font-size: 21px;
}
.home-cta {
  margin: 24px 0 0;
  border-radius: 0;
  padding: 17px 16px 22px;
}
.home-cta h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
}
.home-cta:after {
  opacity: 0.8;
}
.dark-button {
  width: 165px;
  padding: 11px 13px;
}
.featured-section {
  display: none;
}
.catalog-page {
  padding-bottom: 28px;
}
.catalog-heading {
  position: relative;
  z-index: 2;
  min-height: 123px;
  padding: 61px 11px 0;
}
.catalog-heading h1 {
  margin: 17px 0 11px;
  font-size: 40px;
  line-height: 0.9;
  text-transform: none;
}
.catalog-count {
  font-size: 11px;
}
.catalog-hero-art {
  position: relative;
  height: 194px;
  margin: -4px -4px 7px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      transparent 15%,
      #d6b58f 15% 18%,
      transparent 18% 39%,
      #a8b29a 39% 41%,
      transparent 41%
    ),
    #ead8c7;
}
.catalog-hero-art img {
  position: absolute;
  right: 13%;
  bottom: -20px;
  height: 220px;
  width: 55%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: multiply;
  filter: grayscale(0.45) sepia(0.14) saturate(1.2) contrast(1.2);
}
.catalog-hero-art span {
  position: absolute;
  bottom: -21px;
  left: -6%;
  height: 110px;
  width: 112%;
  background: #4b4741;
  clip-path: polygon(
    0 68%,
    25% 35%,
    40% 55%,
    58% 12%,
    71% 44%,
    100% 60%,
    100% 100%,
    0 100%
  );
  opacity: 0.72;
}
.catalog-page .sort-row {
  margin: 0 0 17px;
}
.catalog-filter-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #c5b59f;
  border-radius: 4px;
  background: #f0e5d6;
  padding: 11px 15px;
  color: #403b35;
  font-size: 12px;
}
.catalog-page .sort-button {
  min-width: 136px;
  justify-content: space-between;
  padding: 11px 13px;
  background: #f0e5d6;
  font-size: 12px;
}
.catalog-page .sort-note {
  display: none;
}
.catalog-filter-panel {
  position: absolute;
  z-index: 8;
  left: 20px;
  right: 20px;
  top: 350px;
  border: 1px solid #c8bdad;
  background: #f7f2e8;
  padding: 10px;
  box-shadow: 0 12px 28px #3b302322;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 9px;
}
.filter-options button {
  border: 1px solid #c8bdad;
  border-radius: 16px;
  background: transparent;
  padding: 7px 10px;
  color: #635c53;
  font-size: 10px;
}
.filter-options .filter-option-active {
  border-color: #94302f;
  background: #94302f;
  color: #fff8ef;
}
.product-list {
  gap: 10px;
}
.product-card {
  min-height: 211px;
  border-color: #d2c4b3;
  border-radius: 5px;
  background: #f8efe4;
  padding: 10px;
}
.product-card-image {
  flex-basis: 130px;
  min-height: 189px;
  background: var(--clay-light);
}
.product-card-image img {
  filter: grayscale(0.45) sepia(0.14) saturate(1.2) contrast(1.15);
}
.product-card-info {
  padding: 13px 18px 0 0;
}
.product-card h2 {
  margin: 9px 0 13px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 0.92;
}
.product-price {
  font-size: 16px;
  color: var(--accent);
}
.product-meta {
  margin-top: 11px;
  font-size: 9px;
}
.save-product {
  background: #f4eee4dd;
}
.product-arrow {
  right: 11px;
  bottom: 10px;
}
.load-more-button {
  margin-top: 16px;
  border-color: #c5baaa;
  background: #f0e5d6;
  padding: 12px;
}
.detail-page {
  padding-bottom: 25px;
}
.detail-image-wrap {
  height: 389px;
  background: #e1d9cc;
}
.detail-image {
  filter: grayscale(0.45) sepia(0.14) saturate(1.2) contrast(1.15);
  opacity: 0.95;
}
.detail-image-overlay {
  background: linear-gradient(transparent 60%, #201d1a2a);
}
.detail-category {
  display: none;
}
.gallery-thumbs {
  padding: 11px 20px 3px;
  gap: 7px;
}
.gallery-thumb,
.gallery-thumb-active {
  height: 55px;
  width: 55px;
}
.detail-copy {
  padding: 18px 20px;
}
.detail-title-row h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 31px;
  line-height: 0.9;
}
.detail-price {
  margin-top: 17px;
  padding: 0 0 15px;
  border-top: 0;
}
.detail-price strong {
  font-size: 21px;
}
.detail-stats {
  padding: 14px 0;
}
.detail-section {
  padding: 20px 0;
}
.detail-description {
  font-size: 11px;
}
.feature-list {
  font-size: 11px;
}
.spec-table div {
  padding: 8px 0;
}
.rent-button {
  border-color: #191714;
}
.consult-button {
  padding: 11px;
}
.site-footer {
  padding: 68px 7% 30px;
  color: #f1ece1;
  background: #2d3029;
}
.footer-inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  width: 62px;
  height: 62px;
  margin: 0 auto 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-inner h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}
.footer-tagline {
  margin: 10px 0 27px;
  color: #d6b58f;
  font-size: 8px;
  letter-spacing: 0.32em;
}
.footer-rule {
  height: 1px;
  margin: 0 auto 25px;
  background: rgba(241, 236, 225, 0.1);
}
.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
}
.search-box input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: #191714;
  font: inherit;
}
.search-box input::placeholder {
  color: #827c72;
}
.search-box:focus-within {
  border-color: #9d3030;
  box-shadow: 0 0 0 2px #9d30301c;
}
.catalog-filter-panel[hidden] {
  display: none;
}
.catalog-filter-panel p {
  margin: 0 0 8px;
  color: #8c3030;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.catalog-filter-panel [data-category-filter] {
  margin: 2px;
  border: 1px solid #c8beaf;
  border-radius: 14px;
  background: transparent;
  padding: 6px 10px;
  color: #59544c;
  cursor: pointer;
  font-size: 10px;
}
.catalog-filter-panel [data-category-filter].is-active,
.catalog-filter-panel [data-category-filter]:hover {
  border-color: #9d3030;
  background: #9d3030;
  color: #fff8ed;
}
.footer-contact > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact span {
  color: #756e64;
  font-size: 8px;
  letter-spacing: 0.1em;
}
.footer-contact a {
  color: #f1ece1;
  font-size: 11px;
  text-decoration: none;
}
.footer-contact nav {
  display: flex;
  gap: 15px;
}
.footer-contact nav a {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.footer-rule-bottom {
  margin: 29px auto 25px;
}
.footer-note {
  max-width: 340px;
  margin: 0 auto 19px;
  color: #c0b9ae;
  font-size: 10px;
  line-height: 1.55;
}
.footer-copyright {
  margin: 0;
  color: #625d55;
  font-size: 7px;
  letter-spacing: 0.05em;
}
@media (min-width: 700px) {
  .mobile-stage {
    padding: 28px 0;
  }
  .phone-shell {
    min-height: 900px;
    border-radius: 12px;
  }
  .screen-scroll {
    height: 832px;
  }
}

/* Desktop catalog: expand the mobile shell into a proper catalog canvas. */
@media (min-width: 701px) {
  body {
    background: #f1ece1;
  }

  .mobile-stage {
    min-height: 100vh;
    padding: 0;
    background: #f1ece1;
  }

  .phone-shell {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header {
    height: 82px;
    padding-inline: 54px;
  }

  .screen-scroll {
    height: auto;
    overflow: visible;
  }

  .page-content {
    padding: 0 54px 72px;
  }

  .home-intro {
    display: grid;
    grid-template-columns: minmax(470px, 1.1fr) minmax(0, 0.9fr);
    grid-template-rows: auto 1fr;
    column-gap: 44px;
    min-height: 455px;
    padding: 64px 24px 46px;
  }

  .home-intro h1 {
    max-width: 620px;
    margin-top: 34px;
    font-size: clamp(52px, 6vw, 76px);
    white-space: nowrap;
  }

  .hero-figure {
    position: relative;
    inset: auto;
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    height: 360px;
    margin-top: 12px;
  }

  .quick-categories {
    justify-content: flex-start;
    gap: 18px;
  }

  .quick-category {
    flex: 0 0 110px;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .product-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .product-list .product-card {
    display: block;
    min-height: 0;
    padding: 12px;
  }

  .product-list .product-card-image {
    width: 100%;
    height: 230px;
  }

  .product-list .product-card-info {
    padding: 14px 24px 22px 2px;
  }

  .site-footer {
    padding: 92px 7% 42px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    grid-template-areas:
      "logo contact"
      "title contact"
      "tagline contact"
      "rule rule"
      "note note"
      "bottom bottom"
      "copy copy";
    column-gap: 80px;
    max-width: 1180px;
    margin: 0 auto;
    text-align: left;
  }

  .footer-logo {
    grid-area: logo;
    margin: 0 0 20px;
  }

  .footer-inner h2 {
    grid-area: title;
  }

  .footer-tagline {
    grid-area: tagline;
  }

  .footer-rule {
    grid-area: rule;
    width: 100%;
  }

  .footer-contact {
    grid-area: contact;
    align-self: center;
    width: 100%;
    padding-left: 28px;
    border-left: 1px solid rgba(241, 236, 225, 0.1);
  }

  .footer-rule-bottom {
    grid-area: bottom;
  }

  .footer-note {
    grid-area: note;
    max-width: 500px;
    margin: 28px 0 0;
  }

  .footer-copyright {
    grid-area: copy;
    margin-top: 24px;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .home-intro {
    grid-template-columns: minmax(390px, 1fr) minmax(0, 1fr);
    column-gap: 28px;
    padding-inline: 12px;
  }

  .home-intro h1 {
    font-size: clamp(42px, 5.5vw, 58px);
  }

  .hero-figure {
    height: 310px;
  }
}

@media (min-width: 701px) and (max-width: 820px) {
  .home-intro {
    display: block;
    min-height: 0;
    padding-bottom: 32px;
  }

  .home-intro h1 {
    white-space: normal;
  }

  .hero-figure {
    height: 300px;
    margin-top: 30px;
  }
}

/* Editorial desktop catalog. Mobile retains the original composed layout. */
@media (min-width: 981px) {
  body,
  .mobile-stage,
  .phone-shell {
    background: #f4f0e7;
    color: #171717;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .site-header {
    height: 88px;
    padding-inline: clamp(32px, 5vw, 80px);
    background: #f4f0e7;
  }

  .side-label {
    display: none;
  }

  .page-content {
    padding: 0 clamp(32px, 5vw, 80px) 88px;
  }

  .home-intro {
    grid-template-columns: minmax(470px, 0.95fr) minmax(0, 1.05fr);
    column-gap: clamp(38px, 5vw, 86px);
    min-height: 520px;
    padding: 68px 0 46px;
  }

  .home-intro h1 {
    max-width: 680px;
    margin: 32px 0 0;
    color: #171717;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(58px, 6.2vw, 104px);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 0.82;
  }

  .home-intro h1 em {
    color: #d92f2f;
  }

  .breadcrumb,
  .section-kicker,
  .mini-product-copy p {
    color: #a12b28;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
  }

  .hero-figure {
    height: 410px;
    margin-top: 0;
    background: #ded5c7;
  }

  .hero-figure img {
    height: 100%;
    opacity: 1;
    mix-blend-mode: normal;
    filter: grayscale(0.32) sepia(0.08) saturate(1.05) contrast(1.08);
  }

  .search-row {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    margin: -12px 0 72px;
  }

  .search-row::after {
    flex: 1;
    height: 1px;
    margin-left: 30px;
    content: "";
    background: rgba(23, 23, 23, 0.24);
  }

  .search-box,
  .filter-button {
    min-height: 56px;
    border-color: #171717;
    border-radius: 0;
    background: transparent;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .filter-button {
    width: 56px;
    margin-left: -1px;
    color: #d92f2f;
  }

  .search-box {
    flex: 0 1 520px;
  }

  .section-heading {
    align-items: baseline;
    margin-bottom: 20px;
  }

  .see-all {
    color: #171717;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .category-list {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    grid-template-rows: repeat(2, 215px);
    gap: 2px;
    margin-bottom: 92px;
    background: #171717;
  }

  .category-card {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: #e7dfd1;
    padding: 30px;
  }

  .category-card:first-child {
    grid-row: span 2;
    color: #f4f0e7;
    background: #171717;
  }

  .category-card h2 {
    position: relative;
    z-index: 2;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: clamp(34px, 3.5vw, 56px);
    font-weight: 400;
    letter-spacing: -0.045em;
  }

  .category-card p,
  .card-arrow {
    position: relative;
    z-index: 2;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .category-card:first-child p,
  .category-card:first-child .card-arrow {
    color: #f4f0e7;
  }

  .category-card img {
    right: 0;
    width: 64%;
    opacity: 0.9;
    mix-blend-mode: normal;
  }

  .category-card:first-child img {
    width: 100%;
    opacity: 0.72;
    filter: grayscale(0.35) contrast(1.08);
  }

  .category-card::after {
    background: linear-gradient(
      90deg,
      #e7dfd1 18%,
      rgba(231, 223, 209, 0.08) 78%
    );
  }

  .category-card:first-child::after {
    background: linear-gradient(
      90deg,
      rgba(23, 23, 23, 0.86) 8%,
      rgba(23, 23, 23, 0.06) 76%
    );
  }

  .all-products {
    margin-top: 0;
  }

  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    background: #cfc5b4;
  }

  .mini-product-card {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: #f4f0e7;
  }

  .mini-product-image {
    height: 235px;
    background: #e9e1d2;
  }

  .mini-product-copy {
    min-height: 122px;
    padding: 16px 18px 22px;
  }

  .mini-product-copy h3 {
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.035em;
  }

  .mini-product-copy strong {
    color: #a12b28;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 13px;
  }

  .mini-product-card:first-child {
    display: grid;
    grid-column: span 2;
    grid-row: span 2;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.9fr);
    align-items: stretch;
  }

  .mini-product-card:first-child .mini-product-image {
    height: 100%;
    min-height: 420px;
  }

  .mini-product-card:first-child .mini-product-copy {
    align-self: center;
    min-height: 0;
    padding: 34px;
  }

  .mini-product-card:first-child .mini-product-copy h3 {
    font-size: clamp(30px, 3vw, 46px);
    line-height: 0.95;
  }

  .mini-product-card:first-child .mini-product-arrow {
    right: 28px;
    bottom: 26px;
    font-size: 26px;
  }

  .mini-product-card:last-child {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    min-height: 285px;
    align-items: stretch;
    background: #ded2bd;
  }

  .mini-product-card:last-child .mini-product-image {
    height: 100%;
    min-height: 285px;
  }

  .mini-product-card:last-child .mini-product-copy {
    align-self: center;
    min-height: 0;
    padding: 42px;
  }

  .mini-product-card:last-child .mini-product-copy h3 {
    font-size: clamp(32px, 3vw, 46px);
    line-height: 0.95;
  }

  .site-footer {
    margin-top: 0;
    padding: 46px clamp(32px, 5vw, 80px) 22px;
    background: #171717;
  }

  .footer-inner {
    grid-template-columns: auto minmax(240px, 0.8fr) minmax(300px, 1fr);
    grid-template-areas:
      "logo title contact"
      "logo tagline contact"
      "rule rule rule"
      "note note copy";
    column-gap: clamp(28px, 4vw, 72px);
    max-width: none;
    margin: 0;
  }

  .footer-logo {
    width: 48px;
    height: 48px;
    margin: 0;
  }

  .footer-inner h2 {
    align-self: end;
    font-family: "DM Serif Display", Georgia, serif;
    font-size: 30px;
  }

  .footer-tagline {
    align-self: start;
    margin: 7px 0 0;
  }

  .footer-rule {
    margin: 28px 0 20px;
  }

  .footer-contact {
    align-self: stretch;
    padding-left: clamp(22px, 3vw, 50px);
  }

  .footer-rule-bottom {
    display: none;
  }

  .footer-note {
    max-width: 440px;
    margin: 0;
    font-size: 11px;
  }

  .footer-copyright {
    align-self: end;
    margin: 0;
    font-size: 8px;
    text-align: right;
  }
}

/* Catalog motion stays scoped to visual states and never changes card geometry. */
@keyframes catalog-intro-title {
  from {
    opacity: 0;
    transform: translateY(35px) skewY(1.5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0);
  }
}

@keyframes catalog-intro-copy {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes catalog-card-filter-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.catalog-motion-ready .home-intro .breadcrumb,
.catalog-motion-ready .home-intro h1,
.catalog-motion-ready .search-row,
.catalog-motion-ready .catalog-filter-panel,
.catalog-motion-ready .category-card,
.catalog-motion-ready .all-products-heading,
.catalog-motion-ready .site-footer {
  opacity: 0;
}

.catalog-motion-ready .home-intro .breadcrumb {
  animation: catalog-intro-copy 600ms cubic-bezier(0.22, 0.8, 0.28, 1) 80ms both;
}

.catalog-motion-ready .home-intro h1 {
  animation: catalog-intro-title 780ms cubic-bezier(0.16, 1, 0.3, 1) 180ms both;
}

.catalog-motion-ready .search-row {
  animation: catalog-intro-copy 580ms cubic-bezier(0.22, 0.8, 0.28, 1) 580ms
    both;
}

.catalog-motion-ready .catalog-filter-panel.catalog-motion-visible {
  opacity: 1;
}

.catalog-motion-ready .category-card,
.catalog-motion-ready .all-products-heading,
.catalog-motion-ready .site-footer {
  transform: translateY(18px);
  transition:
    opacity 650ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-motion-ready .category-card:nth-child(2) {
  transition-delay: 70ms;
}

.catalog-motion-ready .category-card:nth-child(3) {
  transition-delay: 140ms;
}

.catalog-motion-ready .category-card.catalog-motion-visible,
.catalog-motion-ready .all-products-heading.catalog-motion-visible,
.catalog-motion-ready .site-footer.catalog-motion-visible {
  opacity: 1;
  transform: none;
}

.catalog-motion-ready .mini-product-card {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--catalog-delay, 0ms);
}

.catalog-motion-ready .mini-product-card.catalog-motion-visible {
  opacity: 1;
  transform: none;
}

.catalog-motion-ready .mini-product-card.catalog-filter-enter {
  animation: catalog-card-filter-in 560ms cubic-bezier(0.16, 1, 0.3, 1)
    var(--catalog-filter-delay, 0ms) both;
}

.search-box,
.filter-button,
.catalog-filter-panel [data-category-filter] {
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    color 240ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.search-box:focus-within {
  border-color: #9d3030;
  background: #f3ede2;
  box-shadow: none;
}

.search-box:focus-within svg {
  color: #9d3030;
  transform: scale(1.08);
}

.search-box svg {
  transition:
    color 240ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
  .catalog-filter-panel [data-category-filter]:hover,
  .catalog-filter-panel [data-category-filter].is-active {
    transform: translateY(-2px);
  }

  .catalog-motion-ready .mini-product-card:hover {
    border-color: #9d3030;
  }

  .catalog-motion-ready .mini-product-card:hover .mini-product-image img {
    transform: translateY(-7px) scale(1.025);
  }

  .catalog-motion-ready .mini-product-card:hover .mini-product-copy p,
  .catalog-motion-ready .mini-product-card:hover .mini-product-copy h3 {
    transform: translateY(-1px);
  }

  .catalog-motion-ready .mini-product-card:hover .mini-product-copy h3 {
    transform: translateY(-2px);
  }

  .catalog-motion-ready .mini-product-card:hover .mini-product-arrow {
    transform: translateX(8px);
  }

  .catalog-motion-ready .mini-product-image img,
  .catalog-motion-ready .mini-product-copy p,
  .catalog-motion-ready .mini-product-copy h3,
  .catalog-motion-ready .mini-product-arrow {
    transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-motion-ready .home-intro .breadcrumb,
  .catalog-motion-ready .home-intro h1,
  .catalog-motion-ready .search-row,
  .catalog-motion-ready .catalog-filter-panel,
  .catalog-motion-ready .category-card,
  .catalog-motion-ready .all-products-heading,
  .catalog-motion-ready .site-footer,
  .catalog-motion-ready .mini-product-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
