:root {
  --ink: #171817;
  --ink-2: #242625;
  --paper: #f3f1ec;
  --paper-2: #e9e5dd;
  --white: #ffffff;
  --ivory: #f7f3eb;
  --sand: #c8b79a;
  --sand-dark: #9f8b6d;
  --muted: #737570;
  --line: rgba(23, 24, 23, .14);
  --line-light: rgba(255,255,255,.18);
  --max: 1600px;
  --gutter: clamp(20px, 3vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
button, input, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
svg { fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.site-width { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.announcement { background: #272927; color: rgba(255,255,255,.78); }
.announcement__inner { min-height: 34px; display: flex; justify-content: center; align-items: center; gap: 28px; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.announcement__link { border: 0; padding: 0; background: transparent; color: var(--ivory); display: inline-flex; align-items: center; gap: 9px; cursor: pointer; font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.announcement__link svg { width: 14px; height: 14px; transition: transform .2s ease; }
.announcement__link:hover svg { transform: translateX(3px); }

.header { position: sticky; top: 0; z-index: 80; background: rgba(247,246,242,.93); border-bottom: 1px solid var(--line); backdrop-filter: blur(20px); }
.header__inner { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__name { font-size: 13px; font-weight: 600; letter-spacing: .15em; white-space: nowrap; }
.brand__mark { width: 27px; height: 27px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; transform: rotate(45deg); }
.brand__mark span { display: block; background: var(--ink); border-radius: 1px; }
.nav { justify-self: center; display: flex; gap: clamp(18px, 2vw, 42px); }
.nav button, .mobile-nav button, .footer button { border: 0; background: transparent; padding: 0; cursor: pointer; }
.nav button { position: relative; font-size: 9px; text-transform: uppercase; letter-spacing: .15em; }
.nav button::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--ink); transition: right .25s ease; }
.nav button:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 2px; }
.icon-button, .language-switch { border: 0; background: transparent; cursor: pointer; display: inline-grid; place-items: center; }
.icon-button { width: 42px; height: 42px; position: relative; }
.icon-button svg { width: 19px; height: 19px; }
.language-switch { grid-auto-flow: column; gap: 5px; height: 42px; padding: 0 8px; font-size: 9px; letter-spacing: .15em; }
.language-switch svg { width: 13px; height: 13px; }
.cart-count { position: absolute; right: 1px; top: 2px; min-width: 17px; height: 17px; padding: 0 4px; display: grid; place-items: center; background: var(--ink); color: white; border-radius: 20px; font-size: 8px; }
.menu-toggle, .mobile-nav { display: none; }

.hero { position: relative; min-height: clamp(640px, 48vw, 820px); color: white; overflow: hidden; background: #0b0d0e; }
.hero-slider, .hero-slide { position: absolute; inset: 0; }
.hero-slider { z-index: 0; }
.hero-slide { opacity: 0; visibility: hidden; transition: opacity .9s ease, visibility .9s ease; }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(1.018); transition: transform 8s ease; }
.hero-slide.is-active .hero__image { transform: scale(1); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,5,6,.86) 0%, rgba(3,5,6,.62) 36%, rgba(3,5,6,.08) 71%, rgba(3,5,6,.18) 100%), linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.22)); }
.hero__inner { position: relative; z-index: 2; min-height: inherit; display: grid; grid-template-columns: minmax(0, .95fr) minmax(300px, .55fr); align-items: center; gap: 60px; padding-top: 82px; padding-bottom: 82px; }
.hero__content { max-width: 760px; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 9px; font-weight: 500; letter-spacing: .21em; text-transform: uppercase; }
.eyebrow > span:first-child { width: 38px; height: 1px; background: currentColor; flex: 0 0 auto; }
.eyebrow--light { color: rgba(255,255,255,.62); }
.hero h1 { margin: 26px 0 25px; max-width: 770px; font-size: clamp(52px, 6.5vw, 104px); line-height: .95; letter-spacing: -.06em; font-weight: 300; }
.hero__content > p { max-width: 620px; margin: 0; color: rgba(255,255,255,.64); font-size: clamp(13px, 1.05vw, 16px); line-height: 1.85; font-weight: 300; }
.hero__actions { display: flex; gap: 11px; margin-top: 40px; flex-wrap: wrap; }
.button { min-height: 54px; padding: 0 23px; border: 1px solid transparent; display: inline-flex; align-items: center; justify-content: center; gap: 22px; cursor: pointer; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; font-weight: 500; transition: transform .25s ease, background .25s ease, color .25s ease, border .25s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; height: 17px; }
.button--ivory { background: var(--ivory); color: var(--ink); }
.button--ivory:hover { background: var(--sand); }
.button--glass { color: white; background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.35); backdrop-filter: blur(12px); }
.button--glass:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }
.button--outline { background: transparent; border-color: var(--ink); color: var(--ink); }
.button--outline:hover { background: var(--ink); color: white; }
.button--dark { background: var(--ink); color: white; }
.hero__details { justify-self: end; align-self: end; width: min(100%, 300px); margin-bottom: 5px; padding: 22px 23px; border: 1px solid rgba(255,255,255,.2); background: rgba(17,19,19,.45); backdrop-filter: blur(18px); }
.hero__details > span { display: block; color: rgba(255,255,255,.46); font-size: 8px; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 9px; }
.hero__details > strong { display: block; font-size: 15px; font-weight: 400; line-height: 1.4; }
.hero__detail-row { display: flex; justify-content: space-between; gap: 15px; margin-top: 18px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.17); font-size: 10px; color: rgba(255,255,255,.72); }
.hero__detail-row--muted { border-top: 0; margin-top: 9px; padding-top: 0; color: rgba(255,255,255,.42); }
.hero__detail-row em { font-style: normal; }
.hero__navigation { position: absolute; z-index: 4; left: 50%; bottom: 22px; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; pointer-events: none; }
.hero__arrows, .hero__dots { display: flex; align-items: center; pointer-events: auto; }
.hero__arrows { gap: 6px; }
.hero__arrow { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); background: rgba(11,13,14,.22); color: white; cursor: pointer; backdrop-filter: blur(10px); transition: background .25s ease, border-color .25s ease; }
.hero__arrow:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.hero__arrow svg { width: 15px; height: 15px; }
.hero__dots { gap: 8px; }
.hero__dot { width: 24px; height: 22px; padding: 0; border: 0; background: transparent; cursor: pointer; position: relative; }
.hero__dot::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(255,255,255,.3); transition: background .25s ease, transform .25s ease; }
.hero__dot.is-active::before { background: white; transform: scaleY(2); }
.hero__index, .vault__index { position: absolute; z-index: 4; right: var(--gutter); bottom: 24px; font-size: 8px; letter-spacing: .17em; color: rgba(255,255,255,.42); }

.theme-rail { background: var(--ivory); border-bottom: 1px solid var(--line); }
.theme-rail__inner { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: clamp(18px, 3vw, 48px); overflow-x: auto; scrollbar-width: none; }
.theme-rail__inner::-webkit-scrollbar { display: none; }
.theme-rail__inner > span { color: var(--muted); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.theme-rail button { border: 0; background: transparent; cursor: pointer; white-space: nowrap; font-size: 9px; letter-spacing: .11em; text-transform: uppercase; }
.theme-rail button:hover { color: var(--sand-dark); }

.service-strip { background: white; border-bottom: 1px solid var(--line); }
.service-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.service-item { min-height: 126px; display: flex; align-items: center; gap: 18px; padding: 24px clamp(12px, 2vw, 34px); border-right: 1px solid var(--line); }
.service-item:last-child { border-right: 0; }
.service-item > svg { flex: 0 0 36px; width: 36px; height: 36px; stroke-width: 1.2; }
.service-item > div { display: flex; flex-direction: column; gap: 7px; }
.service-item strong { font-size: 9px; font-weight: 500; text-transform: uppercase; letter-spacing: .12em; }
.service-item span { font-size: 10px; color: var(--muted); line-height: 1.55; font-weight: 300; }

.section { padding: clamp(92px, 8vw, 145px) 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 44px; margin-bottom: 52px; }
.section-heading h2, .editorial-edit h2, .vault h2, .newsletter h2 { margin: 17px 0 0; font-size: clamp(40px, 4vw, 68px); line-height: 1.02; letter-spacing: -.045em; font-weight: 300; }
.section-heading > p { max-width: 520px; margin: 0 0 4px; color: var(--muted); line-height: 1.85; font-size: 12px; font-weight: 300; }

.collection-mosaic { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: repeat(2, clamp(360px, 27vw, 455px)); gap: 14px; }
.collection-banner { position: relative; overflow: hidden; border: 0; padding: 0; color: white; text-align: left; background: #161919; cursor: pointer; }
.collection-banner:nth-child(1) > img { object-position: 62% center; }
.collection-banner:nth-child(2) > img { object-position: 50% center; }
.collection-banner:nth-child(3) > img { object-position: 50% 56%; }
.collection-banner:nth-child(4) > img { object-position: 50% 53%; }
.collection-banner > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.65,.2,1), filter .8s ease; }
.collection-banner:hover > img { transform: scale(1.035); filter: brightness(1.04); }
.collection-banner__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.02) 27%, rgba(0,0,0,.74) 100%), linear-gradient(90deg, rgba(0,0,0,.22), transparent 60%); }
.collection-banner__content { position: absolute; inset: auto 0 0; padding: clamp(25px, 3vw, 46px); display: flex; flex-direction: column; align-items: flex-start; }
.collection-banner__label { color: rgba(255,255,255,.58); font-size: 8px; text-transform: uppercase; letter-spacing: .19em; }
.collection-banner__content > strong { max-width: 610px; margin: 12px 0 23px; font-size: clamp(24px, 2.15vw, 38px); line-height: 1.08; letter-spacing: -.035em; font-weight: 300; }
.text-link, .text-button { display: inline-flex; align-items: center; gap: 13px; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; }
.text-link svg, .text-button svg { width: 16px; height: 16px; transition: transform .2s ease; }
.collection-banner:hover .text-link svg, .text-link:hover svg, .text-button:hover svg { transform: translateX(4px); }

.editorial-edit { background: var(--paper-2); padding: clamp(80px, 7vw, 120px) 0; }
.editorial-edit__inner { display: grid; grid-template-columns: .78fr 1.22fr; align-items: center; gap: clamp(45px, 7vw, 120px); }
.editorial-edit__copy { max-width: 580px; }
.editorial-edit__copy p { max-width: 530px; margin: 28px 0 30px; color: var(--muted); font-size: 12px; line-height: 1.9; font-weight: 300; }
.text-button { border: 0; background: transparent; padding: 9px 0; cursor: pointer; }
.editorial-edit__visual { position: relative; min-height: 520px; overflow: hidden; }
.editorial-edit__visual img { height: 100%; min-height: 520px; object-fit: cover; object-position: center; }
.editorial-edit__visual > span { position: absolute; left: 22px; bottom: 19px; font-size: 8px; letter-spacing: .16em; color: rgba(23,24,23,.56); }

.catalog { padding-top: clamp(88px, 8vw, 140px); background: var(--paper); }
.section-heading--catalog { border-bottom: 1px solid var(--line); padding-bottom: 34px; margin-bottom: 0; }
.section-heading--catalog > p { font-size: 9px; text-transform: uppercase; letter-spacing: .15em; color: var(--muted); }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0 34px; }
.filter-tabs { display: flex; gap: 5px; flex-wrap: wrap; }
.filter-tab { height: 40px; padding: 0 14px; border: 1px solid transparent; background: transparent; color: var(--muted); cursor: pointer; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.filter-tab.is-active { color: var(--ink); border-color: var(--ink); }
.catalog-tools { display: flex; align-items: center; gap: 8px; }
.catalog-search, .sort-select { height: 42px; border: 1px solid var(--line); background: transparent; }
.catalog-search { display: flex; align-items: center; gap: 8px; padding: 0 14px; cursor: pointer; font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.catalog-search svg { width: 15px; height: 15px; }
.sort-select { display: flex; align-items: center; padding: 0 9px 0 14px; position: relative; }
.sort-select select { appearance: none; border: 0; background: transparent; padding-right: 35px; outline: none; font-size: 8px; text-transform: uppercase; letter-spacing: .11em; color: var(--ink); cursor: pointer; }
.sort-select svg { position: absolute; width: 13px; right: 10px; pointer-events: none; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); column-gap: 14px; row-gap: 48px; }
.product-card { min-width: 0; position: relative; }
.product-card__image { position: relative; aspect-ratio: 1 / 1.05; background: #fff; overflow: hidden; display: grid; place-items: center; }
.product-card__image::after { content: ""; position: absolute; inset: auto 10% 6% 10%; height: 15%; background: radial-gradient(ellipse, rgba(0,0,0,.12), transparent 68%); filter: blur(12px); pointer-events: none; }
.product-card__image img { position: relative; z-index: 1; width: 88%; height: 88%; object-fit: contain; transition: transform .58s cubic-bezier(.2,.7,.2,1); mix-blend-mode: multiply; }
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__badge { position: absolute; left: 13px; top: 13px; z-index: 3; padding: 7px 9px; background: var(--ink); color: white; font-size: 7px; text-transform: uppercase; letter-spacing: .16em; }
.product-card__badge--accent { background: var(--sand); color: var(--ink); }
.product-card__favorite { position: absolute; right: 10px; top: 10px; z-index: 4; width: 38px; height: 38px; border: 0; background: rgba(255,255,255,.9); display: grid; place-items: center; cursor: pointer; opacity: 0; transform: translateY(-5px); transition: .22s ease; }
.product-card:hover .product-card__favorite, .product-card__favorite.is-active { opacity: 1; transform: none; }
.product-card__favorite svg { width: 17px; }
.product-card__favorite.is-active svg { fill: var(--ink); }
.product-card__quick { position: absolute; z-index: 4; left: 10px; right: 10px; bottom: 10px; height: 45px; border: 0; background: var(--ink); color: white; display: flex; align-items: center; justify-content: center; gap: 12px; cursor: pointer; font-size: 8px; text-transform: uppercase; letter-spacing: .15em; opacity: 0; transform: translateY(10px); transition: .25s ease; }
.product-card__quick svg { width: 15px; }
.product-card:hover .product-card__quick { opacity: 1; transform: none; }
.product-card__info { padding: 17px 2px 0; }
.product-card__meta { display: flex; justify-content: space-between; gap: 10px; color: var(--muted); font-size: 7px; text-transform: uppercase; letter-spacing: .14em; }
.product-card h3 { min-height: 42px; margin: 10px 0 8px; font-size: 12px; line-height: 1.55; font-weight: 400; }
.product-card__price { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__price strong { font-size: 12px; font-weight: 500; }
.product-card__price span { color: var(--muted); font-size: 8px; }
.load-more-wrap { display: flex; justify-content: center; padding-top: 70px; }
.load-more-count { opacity: .52; }
.empty-state { grid-column: 1/-1; padding: 90px 20px; text-align: center; border: 1px solid var(--line); color: var(--muted); }

.vault { position: relative; min-height: 720px; overflow: hidden; color: white; background: #071016; }
.vault__image { position: absolute; inset: 0; height: 100%; object-fit: cover; object-position: 58% center; }
.vault__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,10,13,.92) 0%, rgba(5,10,13,.7) 40%, rgba(5,10,13,.12) 74%, rgba(5,10,13,.18) 100%); }
.vault__inner { position: relative; z-index: 2; min-height: inherit; display: grid; align-items: center; padding-top: 90px; padding-bottom: 90px; }
.vault__content { width: min(100%, 650px); }
.vault__content > p { margin: 27px 0 36px; max-width: 570px; color: rgba(255,255,255,.6); font-size: 12px; line-height: 1.9; font-weight: 300; }
.vault__stats { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); margin-bottom: 38px; }
.vault__stats div { padding: 21px 16px 21px 0; display: flex; flex-direction: column; gap: 7px; }
.vault__stats strong { font-size: 14px; font-weight: 400; }
.vault__stats span { color: rgba(255,255,255,.43); font-size: 7px; text-transform: uppercase; letter-spacing: .14em; }

.benefits { background: white; }
.benefit-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.benefit-card { min-height: 330px; padding: clamp(25px, 3vw, 42px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; align-items: flex-start; }
.benefit-card > span { color: var(--muted); font-size: 8px; letter-spacing: .16em; }
.benefit-card svg { width: 42px; height: 42px; margin: auto 0 28px; stroke-width: 1.15; }
.benefit-card h3 { margin: 0 0 13px; max-width: 230px; font-size: 15px; line-height: 1.45; font-weight: 400; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.75; font-weight: 300; }

.journal { background: var(--paper); }
.journal-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.journal-card__image { aspect-ratio: 1.38; overflow: hidden; background: white; }
.journal-card__image img { height: 100%; object-fit: contain; mix-blend-mode: multiply; padding: 5%; transition: transform .55s ease; }
.journal-card:hover img { transform: scale(1.035); }
.journal-card__meta { display: flex; justify-content: space-between; margin-top: 20px; color: var(--muted); font-size: 7px; text-transform: uppercase; letter-spacing: .15em; }
.journal-card h3 { margin: 16px 0 23px; font-size: clamp(17px, 1.65vw, 25px); line-height: 1.38; font-weight: 300; letter-spacing: -.025em; }
.text-link--dark { border: 0; background: transparent; padding: 0; cursor: pointer; color: var(--ink); }

.newsletter { background: #272927; color: white; }
.newsletter__inner { min-height: 410px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-top: 70px; padding-bottom: 70px; }
.newsletter__form label { display: block; }
.newsletter__form input { width: 100%; height: 60px; border: 0; border-bottom: 1px solid rgba(255,255,255,.38); background: transparent; color: white; outline: none; font-size: 15px; font-weight: 300; }
.newsletter__form input::placeholder { color: rgba(255,255,255,.38); }
.newsletter__form .button { margin-top: 24px; }
.newsletter__form p { margin: 18px 0 0; color: rgba(255,255,255,.38); font-size: 8px; line-height: 1.6; }

.footer { background: #0e1010; color: white; }
.footer__top { display: grid; grid-template-columns: 1fr 1.55fr; gap: 70px; padding-top: 80px; padding-bottom: 70px; }
.brand--footer .brand__mark span { background: white; }
.footer__brand p { max-width: 390px; margin: 25px 0 0; color: rgba(255,255,255,.42); font-size: 10px; line-height: 1.85; }
.footer__columns { display: grid; grid-template-columns: repeat(3,1fr); gap: 35px; }
.footer__columns > div { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__columns strong { margin-bottom: 8px; font-size: 8px; text-transform: uppercase; letter-spacing: .16em; font-weight: 500; }
.footer__columns button { color: rgba(255,255,255,.48); font-size: 10px; transition: color .2s; text-align: left; }
.footer__columns button:hover { color: white; }
.footer__bottom { min-height: 78px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 30px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.3); font-size: 7px; letter-spacing: .08em; }
.footer__bottom > span:nth-child(2) { text-align: center; }
.footer__bottom div { display: flex; gap: 18px; }
.footer__bottom button { color: inherit; }

.search-overlay { position: fixed; inset: 0; z-index: 200; display: grid; place-items: start center; background: rgba(243,241,236,.985); opacity: 0; visibility: hidden; transition: .25s ease; }
.search-overlay.is-open { opacity: 1; visibility: visible; }
.search-overlay__inner { width: min(100%, 1000px); padding: 14vh var(--gutter) 60px; position: relative; }
.search-close { position: absolute; right: var(--gutter); top: 35px; }
.search-overlay form { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-top: 35px; }
.search-overlay input { height: 72px; border: 0; border-bottom: 1px solid var(--ink); background: transparent; outline: none; font-size: clamp(22px, 3vw, 42px); font-weight: 300; letter-spacing: -.03em; min-width: 0; }
.search-suggestions { margin-top: 30px; display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.search-suggestions > span { margin-right: 8px; color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .13em; }
.search-suggestions button { border: 1px solid var(--line); background: white; height: 38px; padding: 0 13px; cursor: pointer; font-size: 8px; }
.toast { position: fixed; z-index: 300; left: 50%; bottom: 28px; transform: translate(-50%,20px); background: var(--ink); color: white; padding: 14px 18px; font-size: 9px; letter-spacing: .06em; opacity: 0; visibility: hidden; transition: .25s ease; }
.toast.is-visible { opacity: 1; visibility: visible; transform: translate(-50%,0); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .nav { display: none; }
  .menu-toggle { display: inline-grid; }
  .header__inner { grid-template-columns: auto 1fr auto; gap: 15px; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: 100%; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px var(--gutter) 30px; flex-direction: column; gap: 19px; }
  .mobile-nav.is-open { display: flex; }
  .mobile-nav button { text-align: left; text-transform: uppercase; letter-spacing: .14em; font-size: 9px; }
  .product-grid { grid-template-columns: repeat(3,1fr); }
  .service-strip__grid { grid-template-columns: repeat(2,1fr); }
  .service-item:nth-child(2) { border-right: 0; }
  .service-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .benefit-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 860px) {
  .announcement__inner { justify-content: space-between; }
  .announcement__link { display: none; }
  .header__inner { min-height: 66px; }
  .hide-mobile { display: none; }
  .brand__name { font-size: 11px; }
  .brand__mark { width: 23px; height: 23px; }
  .hero { min-height: 710px; }
  .hero__image { object-position: 64% center; }
  .hero__shade { background: linear-gradient(180deg, rgba(3,5,6,.2), rgba(3,5,6,.42) 36%, rgba(3,5,6,.9) 77%); }
  .hero__inner { grid-template-columns: 1fr; align-content: end; gap: 26px; padding-top: 240px; padding-bottom: 54px; }
  .hero h1 { font-size: clamp(48px, 13vw, 76px); }
  .hero__content > p { max-width: 650px; }
  .hero__details { justify-self: start; align-self: auto; width: min(100%, 420px); margin: 0; }
  .hero__index { display: none; }
  .hero__navigation { bottom: 18px; }
  .theme-rail__inner { justify-content: flex-start; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .collection-mosaic { grid-template-columns: 1fr; grid-template-rows: none; }
  .collection-banner, .collection-banner--tall, .collection-banner--wide { grid-column: auto; grid-row: auto; min-height: 430px; }
  .editorial-edit__inner { grid-template-columns: 1fr; }
  .editorial-edit__copy { max-width: 680px; }
  .editorial-edit__visual, .editorial-edit__visual img { min-height: 430px; }
  .catalog-toolbar { align-items: flex-start; flex-direction: column; }
  .filter-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
  .filter-tab { flex: 0 0 auto; }
  .catalog-tools { width: 100%; justify-content: space-between; }
  .product-grid { grid-template-columns: repeat(2,1fr); }
  .product-card__favorite, .product-card__quick { opacity: 1; transform: none; }
  .vault { min-height: 760px; }
  .vault__image { object-position: 68% center; }
  .vault__shade { background: linear-gradient(180deg, rgba(5,10,13,.12), rgba(5,10,13,.48) 42%, rgba(5,10,13,.94) 78%); }
  .vault__inner { align-items: end; padding-top: 260px; padding-bottom: 64px; }
  .vault__index { display: none; }
  .journal-grid { grid-template-columns: 1fr; gap: 54px; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 45px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { grid-template-columns: 1fr; padding-top: 25px; padding-bottom: 25px; text-align: left; }
  .footer__bottom > span:nth-child(2) { text-align: left; }
  .search-overlay form { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .announcement__inner { min-height: 31px; font-size: 7px; letter-spacing: .1em; }
  .header-actions { gap: 0; }
  .language-switch { padding: 0 3px; }
  .icon-button { width: 37px; }
  .hero { min-height: 780px; }
  .hero__image { object-position: 68% top; }
  .hero__inner { padding-top: 255px; padding-bottom: 96px; }
  .hero h1 { margin-top: 20px; font-size: clamp(45px, 14vw, 64px); }
  .hero__content > p { font-size: 11px; line-height: 1.7; }
  .hero__actions { margin-top: 27px; }
  .button { min-height: 50px; padding: 0 18px; gap: 15px; font-size: 8px; }
  .hero__details { display: none; }
  .hero__navigation { gap: 10px; }
  .hero__arrow { width: 35px; height: 35px; }
  .theme-rail__inner { min-height: 58px; }
  .service-strip__grid { grid-template-columns: 1fr; }
  .service-item { border-right: 0; border-bottom: 1px solid var(--line); min-height: 106px; }
  .service-item:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-heading h2, .editorial-edit h2, .vault h2, .newsletter h2 { font-size: 39px; }
  .collection-banner, .collection-banner--tall, .collection-banner--wide { min-height: 410px; }
  .collection-banner__content { padding: 25px; }
  .collection-banner__content > strong { font-size: 28px; }
  .editorial-edit__visual, .editorial-edit__visual img { min-height: 360px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 30px 9px; }
  .product-card__badge { left: 7px; top: 7px; padding: 6px; font-size: 6px; }
  .product-card__favorite { right: 4px; top: 4px; width: 34px; height: 34px; }
  .product-card__quick { position: static; width: 100%; margin-top: 9px; height: 40px; font-size: 7px; }
  .product-card h3 { font-size: 10px; min-height: 48px; }
  .product-card__meta { font-size: 6px; }
  .product-card__price strong { font-size: 10px; }
  .product-card__price span { display: none; }
  .vault { min-height: 700px; }
  .vault__inner { padding-top: 250px; }
  .vault__stats { grid-template-columns: 1fr; }
  .vault__stats div { border-bottom: 1px solid var(--line-light); }
  .vault__stats div:last-child { border-bottom: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 285px; }
  .footer__columns { grid-template-columns: 1fr 1fr; }
  .footer__columns > div:last-child { grid-column: 1/-1; }
}


@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero__image { transition: none; }
}

/* 2026 commerce refinement */
body{font-size:15px}
.announcement__inner{font-size:10px}.announcement__link{font-size:9px}
.nav a,.nav button{font-size:10px}.language-switch{font-size:10px}
.eyebrow{font-size:10px}.button{font-size:10px}.theme-rail__inner>span{font-size:9px}.theme-rail button{font-size:10px}
.service-item strong{font-size:10px}.service-item span{font-size:11px;line-height:1.55;color:var(--muted)}
.section-heading>p{font-size:13px;line-height:1.85}
.product-card__meta{font-size:8px}.product-card h3{font-size:13px}.product-card__price strong{font-size:14px}.product-card__price>span{font-size:9px}
.product-card__discount{position:absolute;z-index:3;left:13px;top:46px;background:#b43b32;color:#fff;padding:6px 9px;font-size:8px;font-weight:600;letter-spacing:.12em}
.product-card__price--sale>div{display:flex;align-items:baseline;gap:8px;flex-wrap:wrap}.product-card__price--sale del{color:#979a95;font-size:10px}.product-card__price--sale strong{color:#ad2d2d}
.product-card__delivery{display:flex;align-items:center;gap:7px;margin-top:11px;color:#4b6f5b;font-size:9px;line-height:1.4}.product-card__delivery svg{width:16px;height:16px;flex:0 0 auto}
.trust-bar{background:#171817;color:#fff;border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}
.trust-bar__grid{display:grid;grid-template-columns:repeat(4,1fr)}
.trust-stat{min-height:148px;padding:28px clamp(18px,3vw,42px);display:flex;flex-direction:column;justify-content:center;border-right:1px solid rgba(255,255,255,.13)}
.trust-stat:last-child{border-right:0}.trust-stat strong{font-size:clamp(30px,3vw,48px);font-weight:300;letter-spacing:-.04em}.trust-stat span{margin-top:9px;color:rgba(255,255,255,.56);font-size:10px;line-height:1.5;text-transform:uppercase;letter-spacing:.12em}
.newsletter--image{position:relative;overflow:hidden;background:#171817}.newsletter__background{position:absolute;inset:0;background:linear-gradient(90deg,rgba(15,17,16,.95),rgba(15,17,16,.76) 48%,rgba(15,17,16,.46)),url('banners/newsletter-archive.webp') center/cover no-repeat;transform:scale(1.01)}
.newsletter--image .newsletter__inner{position:relative;z-index:1}.newsletter h2{font-size:clamp(39px,4vw,66px);font-weight:300;line-height:1.06;letter-spacing:-.045em;margin:22px 0}.newsletter__lead{max-width:570px;color:rgba(255,255,255,.58);font-size:12px;line-height:1.8}
.promo-popup{position:fixed;z-index:180;right:24px;bottom:24px;width:min(430px,calc(100vw - 32px));background:#f7f3eb;box-shadow:0 24px 80px rgba(0,0,0,.28);border:1px solid rgba(23,24,23,.16);opacity:0;visibility:hidden;transform:translateY(24px);transition:.35s ease}
.promo-popup.is-visible{opacity:1;visibility:visible;transform:none}.promo-popup__close{position:absolute;z-index:3;right:10px;top:10px;width:36px;height:36px;border:0;background:rgba(255,255,255,.92);display:grid;place-items:center;cursor:pointer}.promo-popup__close svg{width:17px}.promo-popup__image{display:block;height:190px;overflow:hidden}.promo-popup__image img{height:100%;object-fit:cover}.promo-popup__body{padding:25px}.promo-popup__body>span{font-size:9px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}.promo-popup__body h2{font-size:31px;font-weight:300;letter-spacing:-.04em;margin:12px 0}.promo-popup__body p{font-size:11px;line-height:1.7;color:var(--muted);margin:0 0 20px}.promo-popup__body .button{min-height:48px}
.toast.is-error{background:#a62f2f}
@media(max-width:900px){.trust-bar__grid{grid-template-columns:repeat(2,1fr)}.trust-stat:nth-child(2){border-right:0}.trust-stat:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.13)}}
@media(max-width:600px){.trust-stat{min-height:118px;padding:22px 18px}.trust-stat strong{font-size:32px}.trust-stat span{font-size:8px}.promo-popup{right:16px;bottom:16px}.promo-popup__image{height:150px}.promo-popup__body{padding:20px}.promo-popup__body h2{font-size:27px}}
.newsletter-consent{display:flex!important;align-items:flex-start;gap:10px;margin-top:16px;color:rgba(255,255,255,.65);font-size:10px;line-height:1.55}.newsletter-consent input{width:16px!important;height:16px!important;min-width:16px;margin:1px 0 0;accent-color:#f4f1eb}.footer .cookie-settings-link{border:0;background:transparent;padding:0;color:rgba(255,255,255,.48);font:inherit;font-size:10px;cursor:pointer;text-align:left}.footer__bottom .cookie-settings-link{font-size:7px;color:inherit}
