/* ==========================================================================
   A'OR PERFUMES — stylesheet
   Brand: black + metallic gold (from the logo), Bodoni Moda + Jost.
   Signature device: the logo's 60° slant, used as a cut corner on image frames.
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* palette */
  --onyx: #050505;
  --graphite: #0e0d0c;
  --coal: #171513;
  --ink: #14120f;
  --stone: #ecebe7;
  --stone-2: #e2dfd9;
  --ivory: #f2ede1;
  --smoke: #a8a294;
  --gold: #d4af4f;
  --gold-lt: #f4e59b;
  --gold-dk: #8a6a1f;
  --gold-grad: linear-gradient(120deg, #b98a2e 0%, #e5c15d 28%, #fbf0a0 50%, #ddb552 72%, #b07f22 100%);
  --danger: #e2735f;

  /* active theme (dark by default; sections switch these) */
  --bg: var(--onyx);
  --fg: var(--ivory);
  --mute: var(--smoke);
  --line: rgba(212, 175, 79, .28);
  --line-soft: rgba(242, 237, 225, .12);
  --acc: var(--gold);
  --surface: var(--graphite);

  /* type */
  --ff-display: 'Bodoni Moda', 'Bodoni 72', Didot, 'Times New Roman', 'AOR Rupee', serif;
  --ff-text: 'Jost', 'AOR Rupee', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* layout */
  --gutter: clamp(20px, 4vw, 64px);
  --max: 1320px;
  --max-wide: 1560px;
  --header-h: 84px;
  --announce-h: 38px;
  --cut-x: 22px;
  --cut-y: 38px; /* = cut-x × tan 60° — the logo's angle */
  --ease: cubic-bezier(.22, .7, .1, 1);
}

.theme-light {
  --bg: var(--stone);
  --fg: var(--ink);
  --mute: #6a655b;
  --line: rgba(20, 18, 15, .16);
  --line-soft: rgba(20, 18, 15, .1);
  --acc: var(--gold-dk);
  --surface: #e4e1db;
}
.theme-graphite { --bg: var(--graphite); --surface: var(--coal); }

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 20px); }
body {
  margin: 0; background: var(--onyx); color: var(--ivory);
  font: 400 1rem/1.65 var(--ff-text); -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  min-height: 100vh; display: flex; flex-direction: column;
}
main { flex: 1 0 auto; }
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
address { font-style: normal; }
[hidden] { display: none !important; }
::selection { background: var(--gold); color: #000; }
:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 300; background: var(--gold); color: #000; padding: 10px 16px; font-weight: 500; }
.skip-link:focus { top: 12px; }
body.is-locked { overflow: hidden; }

.i { width: 1.25em; height: 1.25em; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ---------- 3. Typography ---------- */
.display, h1, h2, h3 { font-family: var(--ff-display); font-weight: 400; letter-spacing: -.012em; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 5.4vw, 5rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.5rem); }
h3 { font-size: 1.5rem; line-height: 1.2; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.7; color: var(--mute); max-width: 52ch; }
.muted { color: var(--mute); }
.small { font-size: .875rem; }
.caps { font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.link-line {
  display: inline-flex; align-items: center; gap: .6em; padding-bottom: 6px; position: relative;
  font-size: .78rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
}
.link-line::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--gold-grad); transform-origin: left; transition: transform .5s var(--ease); }
.link-line:hover::after { transform: scaleX(.35); }
.link-line .i { width: 1.1em; height: 1.1em; transition: transform .4s var(--ease); }
.link-line:hover .i { transform: translateX(4px); }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: calc(var(--max) + var(--gutter) * 2); margin-inline: auto; padding-inline: var(--gutter); }
.container--wide { max-width: calc(var(--max-wide) + var(--gutter) * 2); }
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }
.section { background: var(--bg); color: var(--fg); padding-block: clamp(72px, 9vw, 132px); }
.section--tight { padding-block: clamp(48px, 6vw, 88px); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(32px, 4vw, 56px); }
.section-head p { color: var(--mute); max-width: 46ch; margin-top: 14px; }
.hairline { height: 1px; background: var(--gold-grad); opacity: .55; border: 0; margin: 0; }
.grid { display: grid; gap: var(--gap, 24px); }
.grid-4 { --gap: clamp(16px, 2vw, 32px); grid-template-columns: repeat(4, 1fr); }
.grid-3 { --gap: clamp(16px, 2vw, 32px); grid-template-columns: repeat(3, 1fr); }
.grid-2 { --gap: clamp(20px, 3vw, 48px); grid-template-columns: repeat(2, 1fr); }

/* the signature: 60° cut corner */
.frame { clip-path: polygon(0 0, calc(100% - var(--cut-x)) 0, 100% var(--cut-y), 100% 100%, 0 100%); }
.frame--lg { --cut-x: 34px; --cut-y: 59px; }
.frame--bl { clip-path: polygon(0 0, 100% 0, 100% 100%, var(--cut-x) 100%, 0 calc(100% - var(--cut-y))); }

/* ---------- 5. Buttons, chips, badges, forms ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .7em; min-height: 52px; padding: 0 34px;
  font-size: .76rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; line-height: 1; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer; text-align: center;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), background-position .6s var(--ease);
}
.btn .i { width: 1.15em; height: 1.15em; }
.btn--block { width: 100%; }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: .7rem; }
.btn--gold { background: var(--gold-grad); background-size: 220% 100%; color: #0a0805; }
.btn--gold:hover { background-position: 100% 0; }
.btn--dark { background: var(--onyx); color: var(--gold-lt); border-color: var(--onyx); }
.btn--dark:hover { background: var(--gold-grad); background-size: 220% 100%; color: #0a0805; border-color: transparent; }
.btn--outline { border-color: currentColor; color: var(--fg); }
.btn--outline:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--ghost-gold { border-color: var(--gold); color: var(--gold-lt); }
.btn--ghost-gold:hover { background: var(--gold); color: #0a0805; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

.icon-btn { position: relative; display: inline-grid; place-items: center; width: 44px; height: 44px; color: inherit; transition: color .3s; }
.icon-btn:hover { color: var(--gold); }
.icon-btn .i { width: 22px; height: 22px; }
.count { position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px; display: grid; place-items: center; background: var(--gold-grad); color: #000; font-size: .66rem; font-weight: 600; border-radius: 9px; line-height: 1; }

.badge { position: absolute; left: 0; top: 16px; z-index: 2; padding: 7px 14px 7px 16px; background: var(--onyx); color: var(--gold-lt); font-size: .66rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; line-height: 1; border-left: 2px solid var(--gold); }
.badge--sold { background: #d9d5cc; color: #2a2620; border-left-color: #8a857a; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; min-height: 40px; padding: 0 18px; border: 1px solid var(--line); font-size: .85rem; transition: border-color .3s, background-color .3s, color .3s; cursor: pointer; }
.chip:hover { border-color: var(--acc); }
.chip.is-active, .chip[aria-pressed="true"] { background: var(--fg); color: var(--bg); border-color: var(--fg); }

.stars { display: inline-flex; gap: 2px; color: var(--acc); vertical-align: middle; }
.star { position: relative; display: inline-block; width: 15px; height: 15px; }
.star .i { position: absolute; inset: 0; width: 100%; height: 100%; stroke-width: 1.4; }
.star::after { content: ''; position: absolute; inset: 0; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.2l2.7 5.6 6.1.8-4.5 4.2 1.1 6.1L12 17l-5.4 2.9 1.1-6.1L3.2 9.6l6.1-.8L12 3.2Z'/%3E%3C/svg%3E") center/100% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3.2l2.7 5.6 6.1.8-4.5 4.2 1.1 6.1L12 17l-5.4 2.9 1.1-6.1L3.2 9.6l6.1-.8L12 3.2Z'/%3E%3C/svg%3E") center/100% no-repeat; clip-path: inset(0 calc(100% - var(--fill, 100%)) 0 0); }

/* form fields */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label, .field .label { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; color: var(--mute); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 54px; padding: 15px 18px; background: transparent; border: 1px solid var(--line); border-radius: 0;
  color: var(--fg); transition: border-color .25s, box-shadow .25s; appearance: none; -webkit-appearance: none;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--mute) 70%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 1px var(--acc); }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af4f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 44px; }
.field select option { color: #111; background: #fff; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field-error { color: var(--danger); font-size: .85rem; margin-top: 6px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-grid .span-2 { grid-column: 1 / -1; }
.check { display: flex; gap: 12px; align-items: flex-start; font-size: .92rem; color: var(--mute); cursor: pointer; }
.check input { appearance: none; -webkit-appearance: none; flex: none; width: 20px; height: 20px; margin-top: 2px; border: 1px solid var(--line); background: transparent; display: grid; place-items: center; cursor: pointer; transition: background-color .2s, border-color .2s; }
.check input:checked { background: var(--gold-grad); border-color: var(--gold); }
.check input:checked::after { content: ''; width: 10px; height: 5px; border-left: 2px solid #000; border-bottom: 2px solid #000; transform: rotate(-45deg) translate(1px, -1px); }
.check a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }
.form-msg { padding: 16px 18px; border: 1px solid var(--gold); background: rgba(212, 175, 79, .08); color: var(--fg); font-size: .95rem; }
.form-msg--ok::before { content: '✓  '; color: var(--acc); font-weight: 600; }

/* ---------- 6. Announcement bar ---------- */
.announce { position: relative; z-index: 60; height: var(--announce-h); overflow: hidden; background: var(--gold-grad); color: #0a0805; display: flex; align-items: center; }
.announce__track { display: flex; flex: none; gap: 0; white-space: nowrap; animation: marquee 48s linear infinite; will-change: transform; }
.announce:hover .announce__track { animation-play-state: paused; }
.announce__item { display: inline-flex; align-items: center; gap: 22px; padding-right: 22px; font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.announce__tri { width: 9px; height: 9px; fill: currentColor; stroke: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- 7. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 50; height: var(--header-h); background: rgba(5, 5, 5, .94); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); color: var(--ivory); transition: background-color .5s var(--ease), border-color .5s var(--ease); }
body[data-header="overlay"] .site-header { margin-bottom: calc(var(--header-h) * -1); background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
body[data-header="overlay"] .site-header.is-solid { background: rgba(5, 5, 5, .94); border-bottom-color: var(--line); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.site-header__inner { height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; }
.nav { display: flex; align-items: center; gap: clamp(20px, 2.4vw, 40px); }
.nav a { position: relative; padding: 8px 0; font-size: .74rem; font-weight: 500; letter-spacing: .17em; text-transform: uppercase; white-space: nowrap; }
.nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.brand { display: block; justify-self: center; }
.brand img { height: 36px; width: auto; }
.site-header__right { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2vw, 32px); }
.header-actions { display: flex; align-items: center; }
.site-header__menu { display: none; justify-self: start; margin-left: -10px; }

/* ---------- 8. Overlay, mobile menu, search, drawer, toast ---------- */
.overlay { position: fixed; inset: 0; z-index: 90; background: rgba(0, 0, 0, .66); opacity: 0; transition: opacity .4s var(--ease); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.overlay.is-on { opacity: 1; }

.mobile-menu { position: fixed; inset: 0 auto 0 0; z-index: 100; width: min(440px, 100vw); background: var(--onyx); border-right: 1px solid var(--line); transform: translateX(-102%); transition: transform .5s var(--ease); display: flex; flex-direction: column; padding: 0 var(--gutter) 28px; overflow-y: auto; visibility: hidden; }
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); flex: none; }
.brand--menu img { height: 32px; }
.mobile-menu__nav { display: flex; flex-direction: column; padding-block: 28px; border-bottom: 1px solid var(--line); }
.mobile-menu__nav a { font-family: var(--ff-display); font-size: 2rem; line-height: 1; padding: 16px 0; letter-spacing: -.01em; }
.mobile-menu__nav a:hover { color: var(--gold); }
.mobile-menu__foot { display: flex; flex-direction: column; gap: 4px; padding-top: 24px; }
.mobile-menu__foot a { display: flex; align-items: center; gap: 12px; padding: 12px 0; color: var(--smoke); font-size: .95rem; }
.mobile-menu__foot a:hover { color: var(--ivory); }

.search { position: fixed; inset: 0 0 auto 0; z-index: 100; background: var(--onyx); border-bottom: 1px solid var(--line); transform: translateY(-104%); transition: transform .55s var(--ease); max-height: 92vh; overflow-y: auto; visibility: hidden; }
.search.is-open { transform: none; visibility: visible; }
.search__form { display: flex; align-items: center; gap: 16px; height: var(--header-h); border-bottom: 1px solid var(--line-soft); }
.search__form > .i { width: 24px; height: 24px; color: var(--gold); }
.search__form input { flex: 1; min-width: 0; background: transparent; border: 0; outline: 0; font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2.2rem); color: var(--ivory); }
.search__form input::placeholder { color: rgba(242, 237, 225, .35); }
.search__form input::-webkit-search-cancel-button { display: none; }
.search__body { padding-block: 32px 48px; }
.search__label { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--smoke); margin-bottom: 16px; }
.search__results { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px 32px; }
.search__results:empty { display: none; }
.search__hit { display: flex; align-items: center; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line-soft); }
.search__hit img { width: 56px; height: 70px; object-fit: cover; flex: none; }
.search__hit strong { display: block; font-family: var(--ff-display); font-weight: 400; font-size: 1.15rem; line-height: 1.2; }
.search__hit span { font-size: .85rem; color: var(--smoke); }
.search__hit:hover strong { color: var(--gold); }
.search__none { color: var(--smoke); grid-column: 1 / -1; }
.search .chip { border-color: var(--line); color: var(--ivory); }

.drawer { position: fixed; inset: 0 0 0 auto; z-index: 100; width: min(480px, 100vw); background: var(--onyx); border-left: 1px solid var(--line); transform: translateX(102%); transition: transform .5s var(--ease); display: flex; flex-direction: column; visibility: hidden; }
.drawer.is-open { transform: none; visibility: visible; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 0 20px 0 28px; height: 78px; border-bottom: 1px solid var(--line-soft); flex: none; }
.drawer__title { font-size: 1.6rem; }
.drawer__count { font-family: var(--ff-text); font-size: .85rem; color: var(--smoke); margin-left: 6px; }
.drawer__ship { padding: 16px 28px; border-bottom: 1px solid var(--line-soft); flex: none; }
.drawer__ship p { font-size: .88rem; color: var(--smoke); margin-bottom: 10px; }
.drawer__ship p strong { color: var(--gold-lt); font-weight: 500; }
.ship-bar { height: 3px; background: rgba(242, 237, 225, .12); }
.ship-bar span { display: block; height: 100%; width: 0; background: var(--gold-grad); transition: width .6s var(--ease); }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 28px; }
.drawer__empty { height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 20px; padding: 40px 0; }
.drawer__empty h3 { font-size: 1.8rem; }
.drawer__empty p { color: var(--smoke); max-width: 30ch; }
.drawer__foot { padding: 22px 28px 28px; border-top: 1px solid var(--line-soft); display: grid; gap: 14px; flex: none; }
.drawer__row { display: flex; align-items: baseline; justify-content: space-between; font-size: 1.05rem; }
.drawer__row strong { font-family: var(--ff-display); font-weight: 400; font-size: 1.7rem; }
.drawer__note { font-size: .82rem; color: var(--smoke); margin-top: -6px; }
.drawer__link { text-align: center; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: var(--smoke); padding: 6px; }
.drawer__link:hover { color: var(--gold); }

.line-item { display: grid; grid-template-columns: 84px 1fr auto; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.line-item:last-child { border-bottom: 0; }
.line-item__img img { width: 84px; height: 105px; object-fit: cover; }
.line-item__name { font-family: var(--ff-display); font-size: 1.2rem; line-height: 1.2; }
.line-item__meta { font-size: .85rem; color: var(--mute); margin-top: 4px; }
.line-item__row { display: flex; align-items: center; gap: 16px; margin-top: 14px; }
.line-item__price { font-size: 1rem; text-align: right; white-space: nowrap; }
.line-item__remove { font-size: .78rem; color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }
.line-item__remove:hover { color: var(--danger); }

.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); height: 42px; }
.qty button { width: 38px; height: 100%; display: grid; place-items: center; color: inherit; transition: color .2s, background-color .2s; }
.qty button:hover { color: var(--acc); }
.qty button .i { width: 15px; height: 15px; }
.qty output, .qty input { min-width: 30px; text-align: center; font-size: .95rem; font-variant-numeric: tabular-nums; background: transparent; border: 0; width: 34px; color: inherit; padding: 0; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty input[type=number] { -moz-appearance: textfield; }

.toasts { position: fixed; z-index: 200; left: 50%; bottom: 28px; transform: translateX(-50%); display: grid; gap: 10px; width: min(440px, calc(100vw - 32px)); pointer-events: none; }
.toast { display: flex; align-items: center; gap: 14px; padding: 16px 20px; background: var(--onyx); color: var(--ivory); border: 1px solid var(--line); border-left: 3px solid var(--gold); font-size: .95rem; box-shadow: 0 18px 50px rgba(0, 0, 0, .55); animation: toast-in .5s var(--ease) both; pointer-events: auto; }
.toast .i { color: var(--gold); }
.toast.is-out { animation: toast-out .35s ease forwards; }
@keyframes toast-in { from { opacity: 0; transform: translateY(16px); } }
@keyframes toast-out { to { opacity: 0; transform: translateY(10px); } }

/* ---------- 9. Hero ---------- */
.hero { position: relative; isolation: isolate; background: var(--onyx); color: var(--ivory); overflow: hidden; min-height: min(calc(100svh - var(--announce-h)), 960px); display: flex; align-items: stretch; }
.hero__media { position: absolute; z-index: -1; top: 0; right: 0; bottom: 0; width: min(60%, 940px); animation: hero-in 2.4s var(--ease) .1s both; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 60%; }
.hero__media::before { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--onyx) 0%, rgba(5, 5, 5, .72) 22%, rgba(5, 5, 5, 0) 58%), linear-gradient(0deg, var(--onyx) 0%, rgba(5, 5, 5, 0) 26%), linear-gradient(180deg, rgba(5, 5, 5, .7) 0%, rgba(5, 5, 5, 0) 24%); }
.hero__inner { width: 100%; display: flex; flex-direction: column; justify-content: space-between; padding-top: calc(var(--header-h) + clamp(40px, 8vh, 96px)); padding-bottom: clamp(28px, 5vh, 56px); }
.hero__copy { max-width: 760px; }
.hero__title { font-size: clamp(3.9rem, 10.4vw, 10.5rem); line-height: .9; letter-spacing: -.028em; font-weight: 400; }
.hero__title .ln { display: block; overflow: hidden; padding-bottom: .08em; margin-bottom: -.08em; }
.hero__title .ln > span { display: block; transform: translateY(108%); animation: rise 1.25s var(--ease) forwards; }
.hero__title .ln:nth-child(2) > span { animation-delay: .14s; }
.hero__title .ln:nth-child(2) { padding-left: clamp(24px, 6vw, 110px); }
.hero__text { margin-top: clamp(24px, 3.4vw, 44px); max-width: 44ch; font-size: clamp(1.02rem, 1.3vw, 1.2rem); line-height: 1.7; color: rgba(242, 237, 225, .82); opacity: 0; animation: fade-up 1.1s var(--ease) .55s forwards; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; opacity: 0; animation: fade-up 1.1s var(--ease) .7s forwards; }
.hero__tag { display: inline-flex; align-items: center; gap: 16px; align-self: flex-start; margin-top: 48px; font-size: .82rem; color: rgba(242, 237, 225, .75); opacity: 0; animation: fade-up 1.1s var(--ease) .9s forwards; }
.hero__tag::before { content: ''; width: 44px; height: 1px; background: var(--gold-grad); }
.hero__tag strong { color: var(--gold-lt); font-weight: 500; }
.hero__tag:hover strong { text-decoration: underline; text-underline-offset: 4px; }
@keyframes rise { to { transform: none; } }
@keyframes fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes hero-in { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: none; } }

/* ---------- 10. Promise strip ---------- */
.promise { background: var(--graphite); border-block: 1px solid var(--line); }
.promise__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.promise__item { display: flex; gap: 18px; align-items: flex-start; padding: 34px 28px; border-left: 1px solid var(--line-soft); }
.promise__item:first-child { border-left: 0; padding-left: 0; }
.promise__item .i { width: 30px; height: 30px; color: var(--gold); stroke-width: 1.2; margin-top: 2px; }
.promise__item h3 { font-family: var(--ff-text); font-size: .95rem; font-weight: 500; letter-spacing: .02em; line-height: 1.3; }
.promise__item p { font-size: .88rem; color: var(--smoke); margin-top: 4px; line-height: 1.5; }

/* ---------- 11. Product cards, rail ---------- */
.card { display: flex; flex-direction: column; min-width: 0; }
.card__media { position: relative; aspect-ratio: 4 / 5; background: var(--surface); overflow: hidden; }
.card__link { position: absolute; inset: 0; display: block; }
.card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .7s var(--ease); }
.card__img--alt { opacity: 0; }
@media (hover: hover) { .card:hover .card__img--alt { opacity: 1; } }
.card.is-sold .card__img { filter: grayscale(.55) brightness(.9); }
.wish { position: absolute; z-index: 3; right: 12px; bottom: 12px; width: 42px; height: 42px; display: grid; place-items: center; background: rgba(5, 5, 5, .72); color: var(--ivory); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: color .25s, background-color .25s; }
.wish .i { width: 19px; height: 19px; transition: transform .35s var(--ease), fill .2s; }
.wish:hover { color: var(--gold); }
.wish[aria-pressed="true"] { color: var(--gold); }
.wish[aria-pressed="true"] .i { fill: currentColor; }
.wish.pop .i { animation: pop .45s var(--ease); }
@keyframes pop { 40% { transform: scale(1.35); } }
.card__body { display: flex; flex-direction: column; flex: 1; padding-top: 20px; }
.card__title { font-size: 1.5rem; line-height: 1.15; }
.card__title a:hover { color: var(--acc); }
.card__notes { margin-top: 6px; font-size: .92rem; color: var(--mute); line-height: 1.45; }
.card__foot { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-top: 14px; margin-bottom: 18px; }
.card__meta { font-size: .8rem; color: var(--mute); }
.card__cta { margin-top: auto; }
.price { display: inline-flex; align-items: baseline; gap: 8px; font-size: 1.05rem; font-weight: 500; }
.price__from { font-size: .78rem; font-weight: 400; color: var(--mute); }
.price__was { font-size: .88rem; font-weight: 400; color: var(--mute); }

.rail-wrap { position: relative; }
.rail { --cols: 4; --gap: clamp(16px, 2vw, 32px); display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols)); gap: var(--gap); overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; overscroll-behavior-x: contain; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail-ctrl { display: flex; gap: 10px; }
.rail-btn { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--fg); transition: background-color .3s, color .3s, border-color .3s, opacity .3s; }
.rail-btn:hover:not(:disabled) { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.rail-btn:disabled { opacity: .3; cursor: default; }
.rail-btn .i { width: 20px; height: 20px; }

/* ---------- 12. Home sections ---------- */
/* story */
.split { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(24px, 4vw, 72px); align-items: center; }
.split__media { grid-column: 1 / span 5; }
.split__body { grid-column: 7 / span 6; }
.split--flip .split__media { grid-column: 8 / span 5; grid-row: 1; }
.split--flip .split__body { grid-column: 1 / span 6; grid-row: 1; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__body h2 { margin-bottom: 26px; }
.split__body p { color: var(--mute); max-width: 52ch; margin-bottom: 18px; font-size: 1.05rem; }
.split__body .btn, .split__body .link-line { margin-top: 18px; }
.facts { display: grid; grid-template-columns: repeat(3, auto); gap: 18px 40px; justify-content: start; margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.facts dt { font-family: var(--ff-display); font-size: 2.2rem; line-height: 1; color: var(--acc); }
.facts dd { font-size: .82rem; color: var(--mute); margin-top: 8px; max-width: 16ch; line-height: 1.4; }

/* discovery */
.discovery { position: relative; overflow: hidden; }
.discovery__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 96px); align-items: center; }
.discovery__title { font-size: clamp(2.4rem, 5vw, 4.6rem); }
.discovery__list { margin: 30px 0 34px; display: flex; flex-wrap: wrap; gap: 8px 10px; }
.discovery__list li { padding: 8px 16px; border: 1px solid var(--line); font-size: .9rem; color: var(--ivory); }
.discovery__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; }
.discovery__price strong { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 400; line-height: 1; }
.discovery__price s { color: var(--smoke); }
.discovery__price span { color: var(--smoke); font-size: .9rem; }
.discovery__media { position: relative; isolation: isolate; }
.discovery__media img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.discovery__media::after { content: ''; position: absolute; z-index: -1; inset: 28px -28px -28px 28px; border: 1px solid var(--line); clip-path: polygon(0 0, calc(100% - var(--cut-x)) 0, 100% var(--cut-y), 100% 100%, 0 100%); }
.discovery__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* combos */
.combo { display: flex; flex-direction: column; }
.combo__media { position: relative; aspect-ratio: 4 / 5; background: var(--onyx); overflow: hidden; }
.combo__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.combo__body { padding-top: 22px; display: flex; flex-direction: column; flex: 1; }
.combo__body h3 { font-size: 1.7rem; }
.combo__body h3 a:hover { color: var(--acc); }
.combo__body p { color: var(--mute); margin-top: 8px; font-size: .95rem; }
.combo__foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; margin-bottom: 18px; }
.combo__size { font-size: .82rem; color: var(--mute); }
.combo .card__cta { margin-top: auto; }

/* testimonials */
.quote-card { display: flex; flex-direction: column; gap: 22px; padding: 34px 32px; border: 1px solid var(--line); height: 100%; background: transparent; }
.quote-card blockquote { font-family: var(--ff-display); font-size: 1.32rem; line-height: 1.45; letter-spacing: -.005em; }
.quote-card footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 18px; border-top: 1px solid var(--line-soft); font-size: .9rem; }
.quote-card footer strong { font-weight: 500; }
.quote-card footer span { color: var(--mute); }
.rail--quotes { --cols: 3; align-items: stretch; }

/* editorial */
.editorial { --bg: #000; position: relative; overflow: hidden; }
.split__body .editorial__quote, .editorial__quote { color: var(--fg); margin-bottom: 0; font-family: var(--ff-display); font-size: clamp(2.2rem, 4.4vw, 4.2rem); line-height: 1.12; letter-spacing: -.02em; max-width: 16ch; }
.split__body .editorial__sub { margin-top: 26px; color: var(--smoke); max-width: 40ch; }

/* faq */
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 110px); align-items: start; }
.faq-grid__intro { position: sticky; top: calc(var(--header-h) + 30px); }
.faq-grid__intro p { color: var(--mute); margin-top: 18px; max-width: 34ch; }
.acc { border-bottom: 1px solid var(--line); }
.acc:first-child { border-top: 1px solid var(--line); }
.acc summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; cursor: pointer; list-style: none; font-family: var(--ff-display); font-size: 1.35rem; line-height: 1.25; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary .i { width: 18px; height: 18px; color: var(--acc); transition: transform .4s var(--ease); }
.acc[open] summary .i { transform: rotate(45deg); }
.acc summary:hover { color: var(--acc); }
.acc__body { padding: 0 0 26px; color: var(--mute); max-width: 62ch; }
.acc__body p + p { margin-top: 12px; }
.acc[open] .acc__body { animation: acc-in .5s var(--ease); }
@keyframes acc-in { from { opacity: 0; transform: translateY(-6px); } }
.acc--sm summary { font-family: var(--ff-text); font-size: 1rem; font-weight: 500; letter-spacing: .02em; padding: 20px 0; }

/* instagram */
.insta__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.insta__tile { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--coal); }
.insta__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease), filter .6s; }
.insta__tile::after { content: ''; position: absolute; inset: 0; background: rgba(5, 5, 5, .55); opacity: 0; transition: opacity .4s; }
.insta__tile .i { position: absolute; z-index: 2; left: 50%; top: 50%; width: 30px; height: 30px; transform: translate(-50%, -50%) scale(.7); color: var(--gold-lt); opacity: 0; transition: opacity .4s, transform .5s var(--ease); }
@media (hover: hover) {
  .insta__tile:hover img { transform: scale(1.06); }
  .insta__tile:hover::after { opacity: 1; }
  .insta__tile:hover .i { opacity: 1; transform: translate(-50%, -50%); }
}

/* ---------- 13. Footer ---------- */
.footer { background: var(--onyx); color: var(--ivory); border-top: 1px solid var(--line); }
.footer__news { border-bottom: 1px solid var(--line-soft); background: var(--graphite); }
.footer__news-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 96px); align-items: center; padding-block: clamp(44px, 6vw, 80px); }
.footer__news-title { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.footer__news-copy { color: var(--smoke); margin-top: 12px; max-width: 46ch; }
.news-form { display: grid; grid-template-columns: 1fr auto; gap: 0; position: relative; }
.news-form input { min-height: 56px; padding: 0 20px; background: transparent; border: 1px solid var(--line); border-right: 0; color: var(--ivory); border-radius: 0; }
.news-form input:focus { outline: none; border-color: var(--gold); }
.news-form .btn { min-height: 56px; }
.news-form .field-error, .news-form .form-msg { grid-column: 1 / -1; margin-top: 12px; }
.footer__main { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1.3fr; gap: clamp(24px, 3vw, 56px); padding-block: clamp(48px, 6vw, 88px); }
.footer__brand img { width: 118px; height: auto; margin-bottom: 20px; }
.footer__address { display: flex; flex-direction: column; color: var(--smoke); font-size: .92rem; line-height: 1.7; }
.footer__col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__h { font-family: var(--ff-text); font-size: .74rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; line-height: 1.4; }
.footer__col a { display: inline-flex; align-items: center; gap: 10px; color: var(--smoke); font-size: .95rem; transition: color .25s; }
.footer__col a:hover { color: var(--ivory); }
.footer__col .i { width: 18px; height: 18px; color: var(--gold); }
.footer__hours { display: flex; align-items: center; gap: 10px; color: var(--smoke); font-size: .85rem; margin-top: 4px; }
.footer__hours .i { width: 18px; height: 18px; color: var(--gold); }
.footer__bar { border-top: 1px solid var(--line-soft); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 24px; font-size: .84rem; color: var(--smoke); }
.pay { display: flex; flex-wrap: wrap; gap: 8px; }
.pay li { padding: 5px 12px; border: 1px solid var(--line-soft); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--smoke); }

/* ---------- 14. Inner page header ---------- */
.page-head { background: var(--onyx); color: var(--ivory); padding-block: clamp(48px, 7vw, 104px) clamp(36px, 5vw, 72px); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.page-head::after { content: ''; position: absolute; right: var(--gutter); bottom: 0; width: clamp(120px, 18vw, 260px); aspect-ratio: 1; background: url('../logo-mark.png') center / contain no-repeat; opacity: .07; transform: translateY(32%); pointer-events: none; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: .82rem; color: var(--smoke); margin-bottom: 26px; }
.crumbs a:hover { color: var(--gold); }
.crumbs .i { width: 12px; height: 12px; opacity: .6; }
.page-head h1 { max-width: 16ch; }
.page-head p { margin-top: 18px; color: var(--smoke); max-width: 56ch; font-size: 1.08rem; }

/* ---------- 15. Shop ---------- */
.toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px 32px; padding-bottom: 28px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.toolbar__group { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.toolbar__count { color: var(--mute); font-size: .9rem; }
.select-wrap { position: relative; }
.select-wrap select { appearance: none; -webkit-appearance: none; min-height: 44px; padding: 0 40px 0 16px; border: 1px solid var(--line); background: transparent; color: var(--fg); border-radius: 0; font-size: .88rem; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238a6a1f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; }
.select-wrap select:focus { outline: none; border-color: var(--acc); }
.select-wrap select option { background: #fff; color: #111; }
.empty-state { text-align: center; padding: 80px 20px; display: grid; gap: 18px; justify-items: center; }
.empty-state h3 { font-size: 2rem; }
.empty-state p { color: var(--mute); max-width: 40ch; }

/* ---------- 16. Product page ---------- */
.pdp { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 96px); align-items: start; }
.pdp__gallery { display: grid; grid-template-columns: 84px minmax(0, 1fr); gap: 18px; align-items: start; position: sticky; top: calc(var(--header-h) + 24px); }
.pdp__thumbs { display: flex; flex-direction: column; gap: 12px; }
.pdp__thumb { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid transparent; opacity: .7; transition: opacity .3s, border-color .3s; background: var(--surface); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumb:hover { opacity: .9; }
.pdp__thumb.is-active { opacity: 1; border-color: var(--acc); }
.pdp__stage { position: relative; aspect-ratio: 4 / 5; background: var(--surface); overflow: hidden; }
.pdp__stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .5s var(--ease); }
.pdp__stage img.is-swapping { opacity: 0; }
.pdp__stage .badge { top: 20px; }
.pdp__info { padding-top: 6px; }
.pdp__crumbs { font-size: .82rem; color: var(--mute); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.pdp__crumbs a:hover { color: var(--acc); }
.pdp__crumbs .i { width: 12px; height: 12px; opacity: .6; }
.pdp__name { font-size: clamp(2.4rem, 4.4vw, 4rem); }
.pdp__sub { margin-top: 10px; font-size: 1.05rem; color: var(--mute); }
.pdp__rating { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: .9rem; color: var(--mute); }
.pdp__rating a { text-decoration: underline; text-underline-offset: 3px; }
.pdp__price { display: flex; align-items: baseline; gap: 14px; margin-top: 26px; }
.pdp__price strong { font-family: var(--ff-display); font-size: 2.2rem; font-weight: 400; line-height: 1; }
.pdp__price s { color: var(--mute); }
.pdp__price small { color: var(--mute); font-size: .82rem; }
.pdp__short { margin-top: 22px; color: var(--mute); font-size: 1.05rem; max-width: 50ch; }
.pdp__opt { margin-top: 32px; }
.pdp__opt-label { display: flex; justify-content: space-between; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 500; margin-bottom: 12px; }
.pdp__opt-label span { color: var(--mute); letter-spacing: 0; text-transform: none; font-weight: 400; }
.opts { display: flex; flex-wrap: wrap; gap: 10px; }
.opt { position: relative; }
.opt input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.opt span { display: inline-flex; align-items: center; min-height: 48px; padding: 0 24px; border: 1px solid var(--line); font-size: .92rem; transition: background-color .25s, color .25s, border-color .25s; }
.opt input:checked + span { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.opt input:focus-visible + span { outline: 2px solid var(--acc); outline-offset: 3px; }
.opt:hover input:not(:checked) + span { border-color: var(--fg); }
.pdp__buy { display: grid; grid-template-columns: auto 1fr auto; gap: 12px; margin-top: 30px; align-items: stretch; }
.pdp__buy .qty { height: auto; min-height: 56px; }
.pdp__buy .btn { min-height: 56px; }
.pdp__buy .wish-lg { width: 56px; border: 1px solid var(--line); display: grid; place-items: center; transition: border-color .25s, color .25s; }
.pdp__buy .wish-lg:hover { border-color: var(--acc); color: var(--acc); }
.pdp__buy .wish-lg[aria-pressed="true"] { color: var(--acc); border-color: var(--acc); }
.pdp__buy .wish-lg[aria-pressed="true"] .i { fill: currentColor; }
.pdp__buynow { margin-top: 12px; }
.pdp__perks { display: grid; gap: 14px; margin-top: 30px; padding: 24px 0; border-block: 1px solid var(--line); font-size: .93rem; }
.pdp__perks li { display: flex; gap: 14px; align-items: center; color: var(--mute); }
.pdp__perks .i { color: var(--acc); width: 22px; height: 22px; stroke-width: 1.3; }
.pincode { display: flex; gap: 0; margin-top: 22px; }
.pincode input { flex: 1; min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-right: 0; background: transparent; border-radius: 0; color: var(--fg); }
.pincode input:focus { outline: none; border-color: var(--acc); }
.pincode .btn { min-height: 48px; padding: 0 22px; }
.pincode-msg { margin-top: 10px; font-size: .88rem; color: var(--acc); min-height: 1.4em; }
.pdp__acc { margin-top: 30px; }
.spec { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.spec dt { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mute); }
.spec dd { margin-top: 2px; }

/* notes pyramid */
.notes { display: grid; grid-template-columns: minmax(200px, 340px) 1fr; gap: clamp(32px, 6vw, 110px); align-items: center; }
.notes__tri { width: 100%; height: auto; overflow: visible; }
.notes__tri .t-line { stroke: url(#tri-grad); stroke-width: 1.5; fill: none; }
.notes__tri .t-fill { fill: url(#tri-grad); opacity: .1; }
.notes__list { display: grid; gap: 0; }
.notes__row { display: grid; grid-template-columns: 130px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.notes__row:first-child { border-top: 1px solid var(--line); }
.notes__row h3 { font-size: 1.5rem; }
.notes__row small { display: block; font-family: var(--ff-text); font-size: .78rem; color: var(--mute); margin-top: 4px; letter-spacing: 0; }
.notes__row p { font-size: 1.1rem; line-height: 1.7; }
.contents { display: flex; flex-wrap: wrap; gap: 10px; }
.contents li { padding: 12px 20px; border: 1px solid var(--line); font-family: var(--ff-display); font-size: 1.1rem; }

/* reviews */
.reviews { display: grid; grid-template-columns: 4fr 8fr; gap: clamp(32px, 6vw, 110px); }
.reviews__sum strong { font-family: var(--ff-display); font-size: 4.6rem; font-weight: 400; line-height: 1; display: block; }
.reviews__sum .stars { margin-top: 10px; }
.reviews__sum p { color: var(--mute); margin-top: 10px; }
.review { padding: 28px 0; border-bottom: 1px solid var(--line); }
.review:first-child { padding-top: 0; }
.review header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 12px; }
.review h3 { font-family: var(--ff-text); font-size: 1.02rem; font-weight: 500; letter-spacing: 0; }
.review time, .review .who { font-size: .85rem; color: var(--mute); }
.review p { color: var(--mute); max-width: 62ch; }
.sticky-buy { position: fixed; z-index: 45; left: 0; right: 0; bottom: 0; display: none; align-items: center; gap: 14px; padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom)); background: rgba(5, 5, 5, .96); border-top: 1px solid var(--line); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); color: var(--ivory); transform: translateY(110%); transition: transform .5s var(--ease); }
.sticky-buy.is-on { transform: none; }
.sticky-buy__name { flex: 1; min-width: 0; font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-buy__name small { display: block; font-family: var(--ff-text); font-size: .8rem; color: var(--smoke); }

/* ---------- 17. Cart + checkout ---------- */
.cart-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.cart-table__head { display: grid; grid-template-columns: 1fr 140px 120px; gap: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--line); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); }
.cart-table__head span:last-child { text-align: right; }
.cart-row { display: grid; grid-template-columns: 1fr 140px 120px; gap: 20px; align-items: center; padding: 28px 0; border-bottom: 1px solid var(--line); }
.cart-row__prod { display: flex; gap: 22px; align-items: center; }
.cart-row__prod img { width: 104px; height: 130px; object-fit: cover; flex: none; }
.cart-row__name { font-family: var(--ff-display); font-size: 1.45rem; line-height: 1.15; }
.cart-row__meta { font-size: .88rem; color: var(--mute); margin-top: 4px; }
.cart-row__remove { display: inline-block; margin-top: 12px; font-size: .8rem; color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }
.cart-row__remove:hover { color: var(--danger); }
.cart-row__total { text-align: right; font-weight: 500; font-size: 1.05rem; }
.summary { position: sticky; top: calc(var(--header-h) + 24px); padding: clamp(24px, 3vw, 40px); border: 1px solid var(--line); background: var(--surface); }
.summary h2 { font-size: 1.8rem; margin-bottom: 24px; }
.summary__row { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; font-size: .98rem; }
.summary__row span:first-child { color: var(--mute); }
.summary__row--total { margin-top: 12px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 1.1rem; }
.summary__row--total strong { font-family: var(--ff-display); font-weight: 400; font-size: 2rem; line-height: 1; }
.summary__row--discount span:last-child { color: var(--acc); }
.promo { display: grid; grid-template-columns: 1fr auto; margin: 20px 0 8px; }
.promo input { min-height: 48px; padding: 0 16px; border: 1px solid var(--line); border-right: 0; background: transparent; color: var(--fg); border-radius: 0; text-transform: uppercase; letter-spacing: .08em; }
.promo input:focus { outline: none; border-color: var(--acc); }
.promo .btn { min-height: 48px; padding: 0 22px; }
.promo-msg { font-size: .85rem; min-height: 1.3em; margin-bottom: 14px; color: var(--acc); }
.promo-msg.is-err { color: var(--danger); }
.summary .btn { margin-top: 14px; }
.summary__secure { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 18px; font-size: .82rem; color: var(--mute); }
.summary__secure .i { width: 16px; height: 16px; }
.mini-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 16px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.mini-item:last-of-type { border-bottom: 0; }
.mini-item__img { position: relative; }
.mini-item__img img { width: 64px; height: 80px; object-fit: cover; }
.mini-item__img b { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; display: grid; place-items: center; background: var(--gold-grad); color: #000; font-size: .72rem; font-weight: 600; border-radius: 11px; padding: 0 6px; }
.mini-item__name { font-family: var(--ff-display); font-size: 1.1rem; line-height: 1.2; }
.mini-item__meta { font-size: .82rem; color: var(--mute); }
.mini-list { max-height: 340px; overflow-y: auto; margin-bottom: 8px; padding-right: 6px; }

.checkout-layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 5vw, 88px); align-items: start; }
.co-block { padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.co-block:last-of-type { border-bottom: 0; }
.co-block h2 { font-size: 1.9rem; margin-bottom: 24px; display: flex; align-items: baseline; gap: 14px; }
.co-block h2 small { font-family: var(--ff-text); font-size: .85rem; color: var(--mute); letter-spacing: 0; }
.pay-opts { display: grid; gap: 0; border: 1px solid var(--line); }
.pay-opt { position: relative; border-bottom: 1px solid var(--line); }
.pay-opt:last-child { border-bottom: 0; }
.pay-opt > label { display: flex; align-items: center; gap: 16px; padding: 20px 22px; cursor: pointer; }
.pay-opt input[type=radio] { appearance: none; -webkit-appearance: none; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; flex: none; margin: 0; cursor: pointer; transition: border-color .2s; }
.pay-opt input[type=radio]:checked { border-color: var(--acc); }
.pay-opt input[type=radio]:checked::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-grad); }
.pay-opt strong { font-weight: 500; }
.pay-opt small { margin-left: auto; color: var(--mute); font-size: .82rem; }
.pay-opt__panel { padding: 0 22px 24px 58px; display: none; }
.pay-opt input:checked ~ .pay-opt__panel { display: block; }
.pay-opt:has(input:checked) { background: color-mix(in srgb, var(--acc) 6%, transparent); }
.pay-opt:has(input:checked) .pay-opt__panel { display: block; }
.pay-opt__panel .form-grid { gap: 14px; }
.pay-note { font-size: .88rem; color: var(--mute); }
.co-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 8px; }
.co-actions a { font-size: .9rem; color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }

.success { text-align: center; max-width: 720px; margin-inline: auto; }
.success__mark { width: 84px; height: 84px; margin: 0 auto 28px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold); clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 24px, 100% 100%, 0 100%); }
.success__mark .i { width: 36px; height: 36px; stroke-width: 1.3; }
.success h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
.success__id { display: inline-block; margin: 24px 0 8px; padding: 12px 22px; border: 1px solid var(--line); font-size: .95rem; letter-spacing: .06em; }
.success .summary { position: static; text-align: left; margin-top: 40px; }
.success__cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 36px; }

/* ---------- 18. Auth + account ---------- */
.auth { display: grid; grid-template-columns: 1fr 1fr; min-height: 640px; border: 1px solid var(--line); }
.auth__panel { padding: clamp(32px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.auth__aside { position: relative; background: var(--onyx) url('../story-bride-wide.jpg') center / cover no-repeat; color: var(--ivory); display: flex; align-items: flex-end; padding: clamp(28px, 4vw, 56px); min-height: 320px; overflow: hidden; }
.auth__aside::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5, 5, 5, .92) 0%, rgba(5, 5, 5, .2) 60%, rgba(5, 5, 5, .35) 100%); }
.auth__aside > * { position: relative; }
.auth__aside p { font-family: var(--ff-display); font-size: clamp(1.6rem, 2.6vw, 2.4rem); line-height: 1.2; max-width: 16ch; }
.auth h1 { font-size: clamp(2.2rem, 3.6vw, 3.2rem); margin-bottom: 10px; }
.auth__sub { color: var(--mute); margin-bottom: 32px; }
.auth form { display: grid; gap: 20px; }
.auth__row { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: .9rem; }
.auth__row a { color: var(--mute); text-decoration: underline; text-underline-offset: 3px; }
.auth__row a:hover { color: var(--acc); }
.auth__alt { margin-top: 26px; color: var(--mute); font-size: .95rem; }
.auth__alt a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

.account > * { min-width: 0; }
.account { display: grid; grid-template-columns: 280px minmax(0, 1fr); gap: clamp(32px, 5vw, 80px); align-items: start; }
.account__nav { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; border: 1px solid var(--line); }
.account__nav a, .account__nav button { display: flex; align-items: center; gap: 14px; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: .95rem; text-align: left; transition: background-color .25s, color .25s; }
.account__nav a:last-child, .account__nav button:last-child { border-bottom: 0; }
.account__nav a:hover, .account__nav a[aria-current="true"] { background: var(--fg); color: var(--bg); }
.account__nav .i { width: 20px; height: 20px; }
.account__greet { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; }
.avatar { width: 68px; height: 68px; display: grid; place-items: center; background: var(--onyx); color: var(--gold); font-family: var(--ff-display); font-size: 1.8rem; clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 20px, 100% 100%, 0 100%); }
.account__panel + .account__panel { margin-top: 56px; }
.account__panel > h2 { font-size: 1.9rem; margin-bottom: 22px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--line); }
.table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: .95rem; }
.table th { text-align: left; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; color: var(--mute); padding: 16px 20px; border-bottom: 1px solid var(--line); }
.table td { padding: 20px; border-bottom: 1px solid var(--line-soft); }
.table tr:last-child td { border-bottom: 0; }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; }
.status::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--mute); }
.status--ok::before { background: #4fae72; }
.status--ship::before { background: var(--gold); }
.addr { padding: 26px; border: 1px solid var(--line); font-size: .95rem; line-height: 1.7; color: var(--mute); }
.addr strong { display: block; color: var(--fg); font-weight: 500; margin-bottom: 6px; font-family: var(--ff-display); font-size: 1.25rem; }

/* track order */
.track { max-width: 760px; }
.track__form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 14px; align-items: end; }
.timeline { position: relative; margin-top: 48px; padding-left: 34px; display: grid; gap: 34px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline li { position: relative; }
.timeline li::before { content: ''; position: absolute; left: -34px; top: 5px; width: 15px; height: 15px; background: var(--bg); border: 1px solid var(--line); clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.timeline li.is-done::before { background: var(--gold-grad); border-color: transparent; }
.timeline li.is-now::before { background: var(--gold-grad); box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 25%, transparent); }
.timeline h3 { font-family: var(--ff-text); font-size: 1.05rem; font-weight: 500; letter-spacing: 0; }
.timeline p { color: var(--mute); font-size: .92rem; }
.timeline li:not(.is-done):not(.is-now) h3 { color: var(--mute); }

/* ---------- 19. Journal + article ---------- */
.post { display: flex; flex-direction: column; }
.post__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
@media (hover: hover) { .post:hover .post__media img { transform: scale(1.04); } }
.post__meta { display: flex; gap: 14px; margin-top: 20px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--acc); font-weight: 500; }
.post__meta span:last-child { color: var(--mute); }
.post h3 { margin-top: 12px; font-size: 1.65rem; }
.post h3 a:hover { color: var(--acc); }
.post p { margin-top: 12px; color: var(--mute); font-size: .98rem; }
.post--feature { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(24px, 4vw, 72px); align-items: center; margin-bottom: clamp(48px, 7vw, 96px); }
.post--feature h3 { font-size: clamp(2rem, 3.4vw, 3.2rem); }
.post--feature .post__media { aspect-ratio: 16 / 11; }
.post--feature p { font-size: 1.08rem; }
.article__hero { aspect-ratio: 21 / 9; overflow: hidden; margin-bottom: clamp(36px, 5vw, 64px); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__meta { display: flex; gap: 16px; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--smoke); margin-bottom: 20px; }
.prose { font-size: 1.14rem; line-height: 1.85; }
.prose > * + * { margin-top: 1.2em; }
.prose h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-top: 2em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.6em; }
.prose p, .prose li { color: color-mix(in srgb, var(--fg) 84%, transparent); }
.prose ul { list-style: disc; padding-left: 1.3em; }
.prose li + li { margin-top: .5em; }
.prose a { color: var(--acc); text-decoration: underline; text-underline-offset: 3px; }
.prose--policy { font-size: 1.02rem; line-height: 1.8; }
.prose--policy h2 { font-size: 1.7rem; margin-top: 2.2em; }
.share { display: flex; align-items: center; gap: 16px; margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--mute); }

/* ---------- 20. Story / contact ---------- */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); }
.value { padding: clamp(28px, 3.4vw, 52px); border-left: 1px solid var(--line); }
.value:first-child { border-left: 0; }
.value .i { width: 32px; height: 32px; color: var(--acc); stroke-width: 1.2; margin-bottom: 26px; }
.value h3 { margin-bottom: 12px; }
.value p { color: var(--mute); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat strong { display: block; font-family: var(--ff-display); font-size: clamp(2.6rem, 4.6vw, 4.4rem); font-weight: 400; line-height: 1; }
.stat span { display: block; margin-top: 12px; color: var(--smoke); font-size: .9rem; max-width: 20ch; }
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; border-top: 1px solid var(--line); }
.process li { padding: 32px 28px 8px 0; counter-increment: step; }
.process li::before { content: counter(step); display: block; font-family: var(--ff-display); font-size: 1.1rem; color: var(--acc); margin-bottom: 18px; }
.process h3 { font-size: 1.4rem; margin-bottom: 10px; }
.process p { color: var(--mute); font-size: .95rem; }

.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 110px); align-items: start; }
.contact-list { display: grid; gap: 0; border-top: 1px solid var(--line); margin-top: 32px; }
.contact-list li { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.contact-list .i { width: 24px; height: 24px; color: var(--acc); margin-top: 3px; stroke-width: 1.3; }
.contact-list h3 { font-family: var(--ff-text); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 500; color: var(--mute); margin-bottom: 6px; }
.contact-list a:hover { color: var(--acc); }
.map-ph { margin-top: 32px; aspect-ratio: 16 / 9; position: relative; border: 1px solid var(--line); background: repeating-linear-gradient(60deg, transparent 0 34px, var(--line-soft) 34px 35px), repeating-linear-gradient(-60deg, transparent 0 34px, var(--line-soft) 34px 35px); display: grid; place-items: center; text-align: center; color: var(--mute); font-size: .9rem; padding: 20px; }
.map-ph .i { width: 34px; height: 34px; color: var(--acc); margin: 0 auto 10px; }

.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.notfound__code { font-family: var(--ff-display); font-size: clamp(7rem, 22vw, 16rem); line-height: .9; letter-spacing: -.04em; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1280px) {
  .rail { --cols: 3; }
  .rail--quotes { --cols: 2.2; }
  .footer__main { grid-template-columns: repeat(4, 1fr); }
  .footer__brand { grid-column: 1 / -1; display: flex; align-items: center; gap: 32px; }
  .footer__brand img { margin-bottom: 0; }
}
@media (max-width: 1100px) {
  :root { --header-h: 72px; }
  .site-header__inner { grid-template-columns: 1fr auto 1fr; }
  .nav--left, .nav--right { display: none; }
  .site-header__menu { display: inline-grid; }
  .brand img { height: 32px; }
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .cart-layout, .checkout-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .discovery__grid { grid-template-columns: 1fr; }
  .discovery__media { max-width: 560px; }
  .discovery__media::after { display: none; }
  .split, .split--flip { grid-template-columns: 1fr; }
  .split__media, .split__body, .split--flip .split__media, .split--flip .split__body { grid-column: 1; grid-row: auto; }
  .split__media { max-width: 520px; }
  .faq-grid, .contact-grid, .reviews, .notes { grid-template-columns: 1fr; }
  .faq-grid__intro { position: static; }
  .account { grid-template-columns: minmax(0, 1fr); }
  .account__nav { position: static; flex-direction: row; overflow-x: auto; }
  .account__nav a, .account__nav button { border-bottom: 0; border-right: 1px solid var(--line); white-space: nowrap; }
  .post--feature { grid-template-columns: 1fr; }
  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .promise__item:nth-child(3) { border-left: 0; padding-left: 0; }
  .promise__item:nth-child(n+3) { border-top: 1px solid var(--line-soft); }
  .footer__news-inner { grid-template-columns: 1fr; }
  .stat-row, .process { grid-template-columns: repeat(2, 1fr); }
  .notes__tri { max-width: 220px; }
}
@media (max-width: 860px) {
  .hero { min-height: min(calc(100svh - var(--announce-h)), 900px); }
  .hero__media { width: 100%; bottom: auto; height: 62svh; }
  .hero__media::before { background: linear-gradient(0deg, var(--onyx) 0%, rgba(5, 5, 5, .55) 30%, rgba(5, 5, 5, 0) 62%), linear-gradient(180deg, rgba(5, 5, 5, .75) 0%, rgba(5, 5, 5, 0) 26%); }
  .hero__media img { object-position: 50% 58%; }
  .hero__inner { padding-top: 42svh; }
  .auth { grid-template-columns: 1fr; }
  .auth__aside { order: -1; min-height: 240px; }
  .values { grid-template-columns: 1fr; }
  .value { border-left: 0; border-top: 1px solid var(--line); }
  .value:first-child { border-top: 0; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); }
  .track__form { grid-template-columns: 1fr; }
  .cart-table__head { display: none; }
  .cart-row { grid-template-columns: 1fr auto; gap: 16px 20px; }
  .cart-row__prod { grid-column: 1 / -1; }
  .cart-row__total { align-self: center; }
  .footer__main { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  :root { --announce-h: 34px; --cut-x: 16px; --cut-y: 28px; }
  .hide-sm { display: none !important; }
  .grid-4, .grid-3 { grid-template-columns: repeat(2, 1fr); --gap: 14px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3.grid--combos { grid-template-columns: 1fr; }
  .rail { --cols: 2.15; }
  .rail--quotes { --cols: 1.12; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .card__title { font-size: 1.2rem; }
  .card__notes { font-size: .82rem; }
  .card__foot { flex-direction: column; gap: 2px; align-items: flex-start; }
  .card__body { padding-top: 14px; }
  .btn { padding: 0 22px; }
  .card__cta { min-height: 46px; font-size: .68rem; padding: 0 12px; letter-spacing: .12em; }
  .badge { top: 10px; padding: 6px 10px 6px 12px; font-size: .58rem; }
  .wish { width: 36px; height: 36px; right: 8px; bottom: 8px; }
  .promise__item { padding: 24px 14px; }
  .promise__item:nth-child(odd) { padding-left: 0; }
  .promise__item .i { width: 26px; height: 26px; }
  .facts { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .facts dt { font-size: 1.7rem; }
  .form-grid { grid-template-columns: 1fr; }
  .pdp__gallery { grid-template-columns: 1fr; }
  .pdp__thumbs { flex-direction: row; order: 2; overflow-x: auto; }
  .pdp__thumb { width: 72px; flex: none; }
  .pdp__buy { grid-template-columns: auto 1fr; }
  .pdp__buy .wish-lg { display: none; }
  .sticky-buy { display: flex; }
  .notes__row { grid-template-columns: 1fr; gap: 6px; }
  .hero__title .ln:nth-child(2) { padding-left: 0; }
  .footer__bar-inner { flex-direction: column; align-items: flex-start; }
  .news-form { grid-template-columns: 1fr; }
  .news-form input { border-right: 1px solid var(--line); }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr; }
  .line-item { grid-template-columns: 72px 1fr auto; gap: 14px; }
  .line-item__img img { width: 72px; height: 90px; }
  .cart-row__prod img { width: 84px; height: 105px; }
  .toasts { bottom: 90px; }
}
@media (max-width: 480px) {
  .footer__main { grid-template-columns: 1fr; }
  .footer__brand { flex-direction: column; align-items: flex-start; gap: 16px; }
  .promise__grid { grid-template-columns: 1fr; }
  .promise__item, .promise__item:nth-child(odd) { padding: 20px 0; border-left: 0; border-top: 1px solid var(--line-soft); }
  .promise__item:first-child { border-top: 0; }
  .hero__cta .btn { width: 100%; }
  .pdp__buy { grid-template-columns: 1fr; }
  .pdp__buy .qty { justify-self: start; }
}

/* ---------- 22. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .announce__track { animation: none; }
  .hero__title .ln > span, .hero__text, .hero__cta, .hero__tag, .hero__media { opacity: 1; transform: none; }
}
