@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500&display=swap");

/* ═══════════════════════════════════════════════════════════════
   I & F Aura — design tokens
   Ported verbatim from the approved I & F Aura design system.
   ═══════════════════════════════════════════════════════════════ */
:root {
  --maroon-900:#24050A; --maroon-800:#360710; --maroon-700:#4E0B16;
  --maroon-600:#6A1122; --maroon-500:#8A2338; --maroon-300:#B76B7B; --maroon-100:#EBD6DA;

  --gold-700:#7E5312; --gold-600:#9E6B18; --gold-500:#C08A2E; --gold-400:#D9A94A;
  --gold-300:#E7C46B; --gold-200:#F2DDA6; --gold-100:#FAF0D8;

  --ivory-50:#FDFBF7; --ivory-100:#F7F1E7; --ivory-200:#EDE3D3; --ivory-300:#DFD3C0;
  --ink-900:#1A1216; --ink-700:#3A3035; --ink-500:#6B6067; --ink-400:#8E8389; --ink-300:#B9AFB4;

  --blush-500:#C98B94; --blush-300:#E8C9CB; --blush-100:#F8EDEE;

  --green-600:#4F7A52; --green-100:#E6EFE6;
  --amber-600:#B07C1C; --amber-100:#FBF1DA;
  --red-600:#A32020;   --red-100:#F8E4E4;
  --blue-600:#4A6D8C;  --blue-100:#E7EEF4;

  --gradient-gold:linear-gradient(135deg,#9E6B18 0%,#E7C46B 38%,#C08A2E 62%,#F2DDA6 100%);
  --gradient-maroon:linear-gradient(160deg,#4E0B16 0%,#24050A 100%);

  --brand:var(--maroon-700); --accent:var(--gold-500);
  --surface-page:var(--ivory-50); --surface-card:#FFFFFF; --surface-sunken:var(--ivory-100);
  --text-body:var(--ink-700); --text-heading:var(--maroon-900); --text-muted:var(--ink-500);
  --text-link:var(--maroon-600); --text-link-hover:var(--gold-600); --text-price:var(--maroon-900);
  --border-hairline:var(--ivory-200); --border-strong:var(--ivory-300);
  --border-gold:var(--gold-400); --border-gold-soft:rgba(192,138,46,.32);
  --border-on-inverse:rgba(242,221,166,.28);
  --focus-ring:rgba(192,138,46,.55);

  --font-serif-display:"Cormorant Garamond",Georgia,"Times New Roman",serif;
  --font-sans:"Jost","Helvetica Neue",Helvetica,sans-serif;
  --font-mono:"IBM Plex Mono",ui-monospace,monospace;

  --leading-body:1.62; --tracking-eyebrow:.22em; --tracking-numeral:.14em;

  --shadow-card:0 2px 10px rgba(36,5,10,.07);
  --shadow-card-hover:0 10px 28px rgba(36,5,10,.14);
  --shadow-overlay:0 24px 60px rgba(36,5,10,.28);

  --radius-md:8px; --radius-lg:14px; --radius-pill:999px;
  --container-max:1240px; --gutter:clamp(20px,5vw,64px);
  --header-h:76px; --tap:44px;

  --ease-out-soft:cubic-bezier(.16,.84,.44,1);
  --ease-silk:cubic-bezier(.65,.05,.36,1);
}

/* ── Base ────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; }

html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }

body {
  margin:0; background:var(--surface-page); color:var(--text-body);
  font:400 16px/var(--leading-body) var(--font-sans);
  -webkit-font-smoothing:antialiased; overflow-x:hidden;
}

h1,h2,h3,h4 {
  font-family:var(--font-serif-display); color:var(--text-heading);
  font-weight:400; line-height:1.28; margin:0;
}
p { margin:0; text-wrap:pretty; }
img { max-width:100%; display:block; }

a { color:var(--text-link); text-decoration:none; border-bottom:1px solid var(--border-gold-soft);
    transition:color .16s var(--ease-out-soft), border-color .16s var(--ease-out-soft); }
a:hover { color:var(--text-link-hover); border-bottom-color:var(--gold-500); }
a.plain, nav a, a.btn, a.card-link { border-bottom:0; }

button { font:inherit; }
:focus-visible { outline:2px solid var(--focus-ring); outline-offset:2px; border-radius:2px; }

.eyebrow {
  font:500 11px/1.4 var(--font-sans); letter-spacing:var(--tracking-eyebrow);
  text-transform:uppercase; color:var(--gold-600);
}
.eyebrow.on-dark { color:var(--gold-300); }
.mono { font-family:var(--font-mono); letter-spacing:var(--tracking-numeral); }
.sr-only {
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}
.shell { max-width:var(--container-max); margin:0 auto; padding-inline:var(--gutter); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:9px;
  min-height:var(--tap); padding:12px 24px; border-radius:var(--radius-pill);
  border:1px solid transparent; cursor:pointer; font-size:14px; letter-spacing:.04em;
  text-align:center; transition:transform .24s var(--ease-out-soft), background .24s ease,
              border-color .24s ease, box-shadow .24s var(--ease-out-soft), color .24s ease;
}
.btn:active { transform:scale(.985); }
.btn--gold { background:var(--gradient-gold); color:var(--maroon-900); font-weight:500;
             box-shadow:0 8px 22px rgba(192,138,46,.28); }
.btn--gold:hover { box-shadow:0 12px 30px rgba(192,138,46,.42); color:var(--maroon-900); }
.btn--primary { background:var(--maroon-700); color:var(--ivory-50); }
.btn--primary:hover { background:var(--maroon-600); color:var(--ivory-50); }
.btn--secondary { background:transparent; border-color:var(--border-gold); color:var(--maroon-800); }
.btn--secondary:hover { background:var(--gold-100); color:var(--maroon-900); }
.btn--ghost { background:transparent; color:var(--maroon-700); }
.btn--ghost:hover { background:var(--ivory-100); }
.btn--on-dark { background:rgba(36,5,10,.35); border-color:rgba(242,221,166,.42); color:var(--gold-200); }
.btn--on-dark:hover { background:rgba(36,5,10,.6); color:var(--gold-100); }
.btn--sm { min-height:36px; padding:8px 16px; font-size:13px; }
.btn--lg { min-height:52px; padding:15px 30px; font-size:15px; }
.btn--block { width:100%; }
.btn[disabled], .btn[aria-disabled="true"] { opacity:.5; pointer-events:none; }

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  position:sticky; top:0; z-index:70; background:rgba(253,251,247,.93);
  backdrop-filter:blur(14px); border-bottom:1px solid var(--border-hairline);
}
.site-header__bar {
  max-width:var(--container-max); margin:0 auto; padding-inline:var(--gutter);
  min-height:var(--header-h); display:flex; align-items:center; gap:clamp(10px,2.4vw,32px);
}
.brand { display:flex; align-items:center; gap:12px; border-bottom:0; flex:0 0 auto; }
.brand img { width:40px; height:40px; border-radius:var(--radius-pill); object-fit:cover; }
.brand span { font-family:var(--font-serif-display); font-size:22px; letter-spacing:.04em; color:var(--maroon-900); }

.site-nav { display:flex; align-items:center; gap:clamp(10px,1.8vw,28px); margin-left:auto; }
.site-nav a {
  position:relative; font-size:13px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--maroon-800); padding:8px 2px; border-bottom:0;
}
.site-nav a:hover { color:var(--gold-600); }
.site-nav a[aria-current="page"]::after {
  content:""; position:absolute; left:0; right:0; bottom:2px; height:2px; background:var(--gradient-gold);
}

.header-actions { display:flex; align-items:center; gap:8px; margin-left:auto; }
.icon-btn {
  width:var(--tap); height:var(--tap); display:inline-flex; align-items:center; justify-content:center;
  border-radius:var(--radius-pill); border:1px solid transparent; background:transparent;
  color:var(--maroon-700); cursor:pointer; transition:background .16s ease, border-color .16s ease;
}
.icon-btn:hover { background:var(--ivory-100); }
.bag-btn { position:relative; display:inline-flex; align-items:center; gap:10px;
  padding:9px 18px; border:1px solid var(--border-gold); border-radius:var(--radius-pill);
  font-size:13px; letter-spacing:.06em; color:var(--maroon-800); background:transparent;
  cursor:pointer; min-height:var(--tap); }
.bag-btn:hover { background:var(--gold-100); }
.bag-btn .count { font-family:var(--font-mono); color:var(--gold-600); }
.nav-toggle { display:none; }

@media (max-width:900px) {
  .site-nav { display:none; }
  .nav-toggle { display:inline-flex; }
  .site-nav.is-open {
    display:flex; flex-direction:column; align-items:stretch; gap:0;
    position:absolute; left:0; right:0; top:100%; background:var(--surface-card);
    border-top:1px solid var(--border-hairline); padding:8px var(--gutter) 18px;
    box-shadow:var(--shadow-card);
  }
  .site-nav.is-open a { padding:15px 2px; border-bottom:1px solid var(--border-hairline); font-size:15px; }
}

/* ── Promo strip ─────────────────────────────────────────────── */
.promo-strip {
  background:var(--maroon-900); color:var(--gold-200); text-align:center;
  font-size:12.5px; letter-spacing:.1em; text-transform:uppercase; padding:9px var(--gutter);
}

/* ── Billboard (hero) ────────────────────────────────────────── */
.billboard { position:relative; background:var(--gradient-maroon); color:var(--ivory-50);
  padding:clamp(28px,4vw,56px) 0 clamp(44px,5vw,76px); overflow:hidden; }
.billboard::before {
  content:""; position:absolute; inset:0; opacity:.06; pointer-events:none;
  background-image:repeating-linear-gradient(45deg,var(--gold-500) 0 1px,transparent 1px 14px);
}
.billboard__inner { position:relative; max-width:1400px; margin:0 auto; padding-inline:var(--gutter); }
.billboard__top { display:flex; flex-wrap:wrap; align-items:center; justify-content:space-between;
  gap:16px; margin-bottom:20px; }
.rule-line { display:flex; align-items:center; gap:12px; }
.rule-line::before { content:""; width:46px; height:1px;
  background:linear-gradient(90deg,var(--gold-500),rgba(192,138,46,0)); }

.billboard__grid { display:grid; grid-template-columns:minmax(0,1.62fr) minmax(280px,1fr); gap:clamp(20px,2.4vw,30px); }
@media (max-width:1000px) { .billboard__grid { grid-template-columns:1fr; } }

.screen {
  position:relative; overflow:hidden; border-radius:var(--radius-lg); background:#1A0308;
  aspect-ratio:16/9; min-height:440px; border:1px solid rgba(192,138,46,.3);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}
@media (max-width:1000px) { .screen { aspect-ratio:4/5; min-height:420px; } }
.screen__media { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.screen__scrim { position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(90deg,rgba(20,3,7,.94) 0%,rgba(20,3,7,.9) 40%,rgba(20,3,7,.62) 54%,rgba(20,3,7,.1) 70%),
             linear-gradient(to top,rgba(20,3,7,.85) 0%,rgba(20,3,7,0) 45%); }
.screen__tag { position:absolute; top:20px; left:22px; display:flex; align-items:center; gap:9px;
  padding:7px 14px; border-radius:var(--radius-pill); background:rgba(36,5,10,.5);
  backdrop-filter:blur(4px); font-family:var(--font-mono); font-size:11px;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold-200); }
.screen__body { position:absolute; left:clamp(22px,4vw,48px); right:clamp(22px,4vw,48px); bottom:74px; }
.screen__body h1 { font-weight:300; font-size:clamp(30px,4.4vw,64px); line-height:1.06;
  letter-spacing:-.01em; color:var(--ivory-50); margin-bottom:12px; }
.screen__body p { max-width:520px; color:rgba(253,251,247,.86); margin-bottom:20px; }
.screen__cta { display:flex; flex-wrap:wrap; gap:10px; }
.screen__controls { position:absolute; left:0; right:0; bottom:0; padding:14px clamp(18px,3vw,32px);
  display:flex; align-items:center; gap:14px;
  background:linear-gradient(to top,rgba(20,3,7,.85),rgba(20,3,7,0)); }
.round-ctl { min-width:var(--tap); min-height:var(--tap); border-radius:var(--radius-pill);
  border:1px solid rgba(242,221,166,.42); background:rgba(36,5,10,.45); color:var(--gold-200);
  cursor:pointer; display:inline-flex; align-items:center; justify-content:center; }
.round-ctl:hover { background:rgba(36,5,10,.7); }
.progress { flex:1; height:3px; border-radius:var(--radius-pill);
  background:rgba(242,221,166,.22); overflow:hidden; }
.progress__bar { height:100%; width:0; background:var(--gradient-gold); }

.billboard__aside { display:flex; flex-direction:column; gap:18px; padding:clamp(22px,2.4vw,30px);
  border-radius:var(--radius-lg); background:rgba(20,3,7,.42); border:1px solid rgba(192,138,46,.34); }
.billboard__aside h2 { font-size:clamp(24px,2.4vw,32px); line-height:1.16; color:var(--ivory-50); }
.billboard__price { font-size:20px; font-weight:500; letter-spacing:.02em; color:var(--gold-300); }
.billboard__aside p { color:rgba(253,251,247,.78); font-size:15px; }
.hr-gold { height:1px; background:rgba(192,138,46,.28); border:0; margin:0; }

.playlist { display:flex; gap:10px; margin-top:22px; overflow-x:auto; padding-bottom:6px;
  scrollbar-width:thin; }
.playlist button { display:flex; align-items:center; gap:9px; flex:0 0 auto; min-height:var(--tap);
  padding:11px 20px; border-radius:var(--radius-pill); cursor:pointer; font-size:12px;
  letter-spacing:.1em; text-transform:uppercase; white-space:nowrap;
  border:1px solid rgba(242,221,166,.24); background:transparent; color:rgba(253,251,247,.62);
  transition:background .24s ease, border-color .24s ease, color .24s ease; }
.playlist button:hover { color:var(--gold-200); border-color:rgba(242,221,166,.5); }
.playlist button[aria-selected="true"] { border-color:var(--gold-500);
  background:rgba(192,138,46,.16); color:var(--gold-200); }
.playlist .n { font-family:var(--font-mono); font-size:11px; opacity:.7; }

/* ── Section furniture ───────────────────────────────────────── */
.section { padding:clamp(52px,7vw,92px) 0; }
.section--sunken { background:var(--surface-sunken); }
.section--dark { background:var(--gradient-maroon); color:var(--ivory-50); }
.section--dark h2, .section--dark h3 { color:var(--ivory-50); }
.section__head { display:flex; flex-wrap:wrap; align-items:flex-end; justify-content:space-between;
  gap:20px; margin-bottom:36px; }
.section__head h2 { font-size:clamp(28px,3.6vw,46px); font-weight:300; line-height:1.14; }
.section__head--center { flex-direction:column; align-items:center; text-align:center; }
.ornament { width:180px; height:1px; background:var(--gradient-gold); margin:14px auto 0; border:0; }

/* ── Product grid & cards ────────────────────────────────────── */
.product-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:24px; }
@media (max-width:520px) { .product-grid { grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:14px; } }

.product-card {
  display:flex; flex-direction:column; background:var(--surface-card);
  border:1px solid var(--border-hairline); border-radius:var(--radius-lg); overflow:hidden;
  box-shadow:var(--shadow-card); height:100%;
  transition:transform .24s var(--ease-out-soft), box-shadow .24s var(--ease-out-soft);
}
.product-card:hover { transform:translateY(-3px); box-shadow:var(--shadow-card-hover); }
.product-card__media { position:relative; display:block; background:var(--ivory-100); border-bottom:0; }
.product-card__media img { width:100%; aspect-ratio:3/4; object-fit:cover; }
.product-card__media::after {
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(115deg,rgba(255,255,255,0) 38%,rgba(255,255,255,.34) 50%,rgba(255,255,255,0) 62%);
  background-size:280% 100%; background-position:120% 0;
  transition:background-position .7s var(--ease-silk);
}
.product-card:hover .product-card__media::after { background-position:-40% 0; }
.product-card__body { display:flex; flex-direction:column; gap:8px; padding:16px 16px 18px; flex:1 1 auto; }
.product-card__body h3 { font-size:18px; line-height:1.3; }
.product-card__body h3 a { border-bottom:0; color:var(--maroon-900); }
.product-card__body h3 a:hover { color:var(--gold-600); }
.product-card__brand { font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--gold-600); }
.product-card__blurb { font-size:13px; line-height:1.55; color:var(--text-muted); }
.product-card__row { display:flex; align-items:baseline; justify-content:space-between; gap:10px; margin-top:2px; }
.product-card__actions { display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; padding-top:12px; }

.price { font-weight:500; font-size:18px; letter-spacing:.02em; color:var(--text-price); }
.price del { color:var(--text-muted); font-size:14px; font-weight:400; margin-left:8px; }

.badge { display:inline-flex; align-items:center; padding:4px 11px; border-radius:var(--radius-pill);
  font-size:11px; letter-spacing:.1em; text-transform:uppercase; }
.badge--gold   { background:var(--gradient-gold); color:var(--maroon-900); }
.badge--maroon { background:var(--maroon-700); color:var(--ivory-50); }
.badge--sale   { background:var(--red-100); color:var(--red-600); }
.badge--soft   { background:var(--ivory-100); color:var(--maroon-700); border:1px solid var(--border-gold-soft); }
.badge--float  { position:absolute; top:12px; left:12px; z-index:2; }

.stock-ok  { font-size:12px; letter-spacing:.04em; color:var(--green-600); }
.stock-low { font-size:12px; letter-spacing:.04em; color:var(--amber-600); }
.stock-out { font-size:12px; letter-spacing:.04em; color:var(--red-600); }

/* ── Carousel (3D showroom) ──────────────────────────────────── */
.carousel { position:relative; height:520px; perspective:1600px; overflow:hidden;
  touch-action:pan-y; cursor:grab; }
.carousel:active { cursor:grabbing; }
.carousel__item { position:absolute; top:50%; left:50%; width:300px; height:440px;
  margin-top:-220px; margin-left:-150px; border-radius:var(--radius-lg); overflow:hidden;
  background:var(--surface-card); border:1px solid transparent; text-align:left; padding:0;
  cursor:pointer; transition:transform .52s var(--ease-out-soft), opacity .42s ease, box-shadow .42s ease; }
.carousel__item img { width:100%; height:74%; object-fit:cover; }
.carousel__caption { padding:16px 18px; background:var(--surface-card); }
.carousel__caption .name { font-family:var(--font-serif-display); font-size:20px;
  line-height:1.2; color:var(--maroon-900); }
.carousel__caption .price { font-size:16px; color:var(--maroon-700); margin-top:6px; }
@media (max-width:560px) { .carousel { height:460px; }
  .carousel__item { width:230px; height:380px; margin-top:-190px; margin-left:-115px; } }

.carousel-nav { display:flex; gap:10px; }
.carousel-nav button { width:48px; height:48px; border-radius:var(--radius-pill);
  border:1px solid rgba(242,221,166,.4); background:transparent; color:var(--gold-200);
  font-size:18px; cursor:pointer; }
.carousel-nav button:hover { background:rgba(242,221,166,.12); }

/* ── Product detail ──────────────────────────────────────────── */
.pdp { display:grid; grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:clamp(28px,4vw,56px); align-items:start; }
.pdp__stage { position:relative; border-radius:var(--radius-lg); overflow:hidden;
  border:1px solid var(--border-hairline); background:var(--ivory-100); }
.pdp__stage img { width:100%; aspect-ratio:1/1; object-fit:cover;
  transition:transform .42s var(--ease-out-soft); transform-origin:center; }
.pdp__stage.is-zoomed img { transform:scale(2); cursor:zoom-out; }
.pdp__stage:not(.is-zoomed) img { cursor:zoom-in; }
.pdp__zoomhint { position:absolute; left:50%; bottom:16px; transform:translateX(-50%);
  padding:8px 16px; border-radius:var(--radius-pill); background:rgba(36,5,10,.62);
  backdrop-filter:blur(4px); color:var(--gold-200); font-size:11px; letter-spacing:.12em;
  text-transform:uppercase; pointer-events:none; }
.pdp__thumbs { display:flex; gap:10px; flex-wrap:wrap; margin-top:14px; }
.pdp__thumbs button { padding:0; border:1px solid var(--border-hairline); background:none;
  border-radius:var(--radius-md); overflow:hidden; cursor:pointer; line-height:0; }
.pdp__thumbs button[aria-current="true"] { border-color:var(--border-gold); }
.pdp__thumbs img { width:74px; height:74px; object-fit:cover; }
.pdp__info { display:flex; flex-direction:column; gap:16px; }
.pdp__info h1 { font-size:clamp(28px,3.4vw,40px); font-weight:300; line-height:1.18; }
.pdp__trust { border:1px solid var(--border-hairline); border-radius:var(--radius-lg);
  background:var(--surface-sunken); padding:18px; display:flex; flex-direction:column; gap:12px; }
.pdp__trust span { display:flex; gap:10px; align-items:center; font-size:14px; }

.qty { display:inline-flex; align-items:center; border:1px solid var(--border-strong);
  border-radius:var(--radius-pill); overflow:hidden; }
.qty button { width:var(--tap); height:var(--tap); border:0; background:transparent;
  color:var(--maroon-700); font-size:18px; cursor:pointer; }
.qty button:hover { background:var(--ivory-100); }
.qty input { width:52px; height:var(--tap); border:0; text-align:center;
  font-family:var(--font-mono); font-size:15px; color:var(--maroon-900); background:transparent;
  -moz-appearance:textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button {
  -webkit-appearance:none; margin:0; }

.chip-row { display:flex; flex-wrap:wrap; gap:8px; }
.chip { min-height:36px; padding:8px 18px; border-radius:var(--radius-pill);
  border:1px solid var(--border-hairline); background:var(--surface-card); color:var(--maroon-800);
  font-size:12px; letter-spacing:.06em; cursor:pointer; }
.chip:hover { border-color:var(--border-gold); }
.chip[aria-pressed="true"], .chip[aria-selected="true"] {
  border-color:var(--gold-500); background:linear-gradient(135deg,#F6E7C2,#E7C87E); color:var(--maroon-900); }

/* ── Tabs (how to use) ───────────────────────────────────────── */
.tabs { display:flex; flex-wrap:wrap; justify-content:center; gap:10px; margin-bottom:32px; }
.tab { min-height:var(--tap); padding:12px 24px; border-radius:var(--radius-pill);
  border:1px solid var(--border-hairline); background:var(--surface-card); color:var(--maroon-800);
  font-size:12px; letter-spacing:.1em; text-transform:uppercase; cursor:pointer;
  transition:background .24s ease, border-color .24s ease; }
.tab[aria-selected="true"] { border-color:var(--gold-500);
  background:linear-gradient(135deg,#F6E7C2,#E7C87E); }
.usage-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:clamp(28px,4vw,56px); align-items:center; }
.usage-grid figure { margin:0; border-radius:var(--radius-lg); overflow:hidden;
  aspect-ratio:4/5; background:var(--surface-sunken); border:1px solid var(--border-hairline); }
.usage-grid figure img { width:100%; height:100%; object-fit:cover; }

/* ── Story (scroll-driven) ───────────────────────────────────── */
.story { position:relative; }
.story__sticky { position:sticky; top:var(--header-h); min-height:calc(100vh - var(--header-h));
  display:flex; align-items:center; padding-inline:var(--gutter); background:var(--surface-sunken);
  overflow:hidden; }
.story__grid { max-width:var(--container-max); margin:0 auto; width:100%;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:clamp(24px,4vw,56px);
  align-items:center; }
.story__stage { display:flex; gap:14px; align-items:baseline; padding:1px 0 1px 14px;
  border-left:2px solid transparent; opacity:.5;
  transition:opacity .32s ease, transform .32s var(--ease-out-soft), border-color .32s, padding .32s; }
.story__stage[data-active="true"] { opacity:1; transform:translateX(6px);
  border-left-color:var(--gold-500); padding-block:6px; }
.story__stage .idx { font-family:var(--font-mono); font-size:12px; color:var(--gold-600); }
.story__stage .t { font-family:var(--font-serif-display); font-size:17px; line-height:1.25;
  color:var(--ink-500); transition:font-size .32s var(--ease-out-soft), color .32s ease; }
.story__stage[data-active="true"] .t { font-size:24px; color:var(--maroon-900); }
.story__stage .b { font-size:14px; line-height:1.6; color:var(--ink-500);
  max-height:0; opacity:0; overflow:hidden;
  transition:max-height .32s var(--ease-out-soft), opacity .24s ease; }
.story__stage[data-active="true"] .b { max-height:80px; opacity:1; }
.story__figure { position:relative; display:flex; align-items:center; justify-content:center;
  perspective:1400px; }
.story__figure img { height:min(420px,60vh); width:auto; max-width:78%; aspect-ratio:3/4;
  object-fit:cover; border-radius:var(--radius-lg); box-shadow:var(--shadow-overlay);
  transition:transform .32s var(--ease-out-soft); }

/* ── Cart & checkout ─────────────────────────────────────────── */
.split { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:clamp(24px,3vw,44px); align-items:start; }
.panel { border:1px solid var(--border-gold-soft); border-radius:var(--radius-lg);
  background:var(--surface-card); padding:clamp(20px,3vw,28px); box-shadow:var(--shadow-card); }
.panel--sticky { position:sticky; top:calc(var(--header-h) + 20px); }
.panel h2 { font-size:22px; margin-bottom:6px; }

.line-item { display:flex; gap:14px; padding-block:16px; border-bottom:1px solid var(--border-hairline); }
.line-item img { width:72px; height:88px; object-fit:cover; border-radius:var(--radius-md);
  background:var(--ivory-100); flex:0 0 auto; }
.line-item__main { display:flex; flex-direction:column; gap:8px; flex:1 1 auto; min-width:0; }
.line-item__top { display:flex; justify-content:space-between; gap:10px; }
.line-item__name { font-size:15px; color:var(--maroon-900); line-height:1.35; }
.line-item__foot { display:flex; align-items:center; justify-content:space-between; gap:10px;
  flex-wrap:wrap; margin-top:2px; }

.totals { display:flex; flex-direction:column; gap:9px; font-size:14px; margin-top:16px; }
.totals__row { display:flex; justify-content:space-between; }
.totals__row span:first-child { color:var(--text-muted); }
.totals__grand { display:flex; justify-content:space-between; align-items:baseline;
  padding-top:14px; margin-top:6px; border-top:1px solid var(--border-hairline); }
.totals__grand .label { font-family:var(--font-serif-display); font-size:22px; color:var(--maroon-900); }
.totals__grand .value { font-weight:500; font-size:22px; letter-spacing:.02em; color:var(--maroon-900); }

/* ── Forms ───────────────────────────────────────────────────── */
.field { display:flex; flex-direction:column; gap:6px; margin-bottom:16px; }
.field > label { font-size:13px; letter-spacing:.04em; color:var(--maroon-800); }
.field input[type=text], .field input[type=email], .field input[type=tel],
.field input[type=password], .field input[type=number], .field select, .field textarea {
  width:100%; min-height:var(--tap); padding:12px 14px; border-radius:var(--radius-md);
  border:1px solid var(--border-strong); background:var(--surface-card); color:var(--ink-900);
  font:inherit; font-size:15px; transition:border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height:110px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline:none; border-color:var(--gold-500); box-shadow:0 0 0 3px rgba(192,138,46,.16); }
.field .hint { font-size:12.5px; color:var(--text-muted); }
.field .error { font-size:12.5px; color:var(--red-600); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color:var(--red-600); }

.choice { display:flex; gap:12px; align-items:flex-start; padding:14px 16px;
  border:1px solid var(--border-hairline); border-radius:var(--radius-md); cursor:pointer;
  margin-bottom:8px; transition:border-color .16s ease, background .16s ease; }
.choice:hover { border-color:var(--border-gold); background:var(--ivory-50); }
.choice input { margin-top:3px; accent-color:var(--maroon-700); }
.choice__label { font-size:15px; color:var(--maroon-900); }
.choice__desc { font-size:13px; color:var(--text-muted); }
.choice:has(input:checked) { border-color:var(--gold-500); background:var(--gold-100); }

/* ── Alerts & toast ──────────────────────────────────────────── */
.alert { padding:14px 18px; border-radius:var(--radius-md); font-size:14.5px;
  margin-bottom:18px; border:1px solid transparent; }
.alert--success { background:var(--green-100); color:#2F5A33; border-color:#BFD6C1; }
.alert--error   { background:var(--red-100);   color:var(--red-600); border-color:#E7C0C0; }
.alert--info    { background:var(--blue-100);  color:var(--blue-600); border-color:#C6D6E4; }
.alert--warn    { background:var(--amber-100); color:var(--amber-600); border-color:#E8D7A8; }

.toast { position:fixed; right:clamp(14px,3vw,28px); bottom:96px; z-index:95;
  max-width:340px; padding:14px 18px; border-radius:var(--radius-md);
  background:var(--maroon-900); color:var(--ivory-50); box-shadow:var(--shadow-overlay);
  font-size:14px; opacity:0; transform:translateY(10px); pointer-events:none;
  transition:opacity .24s ease, transform .24s var(--ease-out-soft); }
.toast.is-visible { opacity:1; transform:none; }

/* ── Cart drawer ─────────────────────────────────────────────── */
.drawer { position:fixed; inset:0; z-index:90; display:none; }
.drawer.is-open { display:flex; justify-content:flex-end; }
.drawer__scrim { position:absolute; inset:0; background:rgba(36,5,10,.62);
  backdrop-filter:blur(4px); border:0; padding:0; cursor:pointer; }
.drawer__panel { position:relative; width:min(420px,100%); height:100%;
  background:var(--surface-card); box-shadow:var(--shadow-overlay);
  display:flex; flex-direction:column; animation:ifaFadeUp .24s var(--ease-out-soft); }
.drawer__head { display:flex; align-items:center; justify-content:space-between;
  padding:20px 20px 16px; border-bottom:1px solid var(--border-hairline); }
.drawer__body { flex:1 1 auto; overflow-y:auto; padding:4px 20px 16px; }
.drawer__foot { border-top:1px solid var(--border-hairline); padding:18px 20px 22px;
  display:flex; flex-direction:column; gap:12px; }

/* ── Floating contact ────────────────────────────────────────── */
.floaters { position:fixed; right:clamp(14px,3vw,28px); bottom:clamp(14px,3vw,28px);
  z-index:80; display:flex; flex-direction:column; gap:12px; align-items:center; }
.floaters a { width:60px; height:60px; border-radius:var(--radius-pill);
  background:var(--gradient-gold); display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 22px rgba(192,138,46,.45); border-bottom:0; position:relative; color:var(--maroon-900); }
.floaters a::after { content:""; position:absolute; inset:-6px; border-radius:var(--radius-pill);
  border:1px solid rgba(192,138,46,.5); animation:ifaRing 3.2s ease-out infinite; pointer-events:none; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background:var(--gradient-maroon); color:var(--ivory-50); margin-top:clamp(40px,6vw,72px); }
.site-footer a { color:rgba(253,251,247,.8); border-bottom:0; }
.site-footer a:hover { color:var(--gold-300); }
.site-footer__grid { max-width:var(--container-max); margin:0 auto;
  padding:clamp(44px,6vw,72px) var(--gutter) 28px;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:clamp(28px,4vw,48px); }
.site-footer__col { display:flex; flex-direction:column; gap:10px; }
.site-footer__bottom { max-width:var(--container-max); margin:0 auto;
  padding:18px var(--gutter) 32px; border-top:1px solid var(--border-on-inverse);
  display:flex; flex-wrap:wrap; gap:10px; justify-content:space-between;
  font-size:12px; color:rgba(253,251,247,.6); }

/* ── Receipt ─────────────────────────────────────────────────── */
.receipt { max-width:760px; margin:0 auto; }
.receipt__head { display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:wrap; padding-bottom:20px; border-bottom:1px solid var(--border-hairline); }
.receipt table { width:100%; border-collapse:collapse; margin-top:8px; }
.receipt th { text-align:left; font:500 11px/1.4 var(--font-sans);
  letter-spacing:var(--tracking-eyebrow); text-transform:uppercase; color:var(--gold-600);
  padding:12px 8px; border-bottom:1px solid var(--border-hairline); }
.receipt td { padding:14px 8px; border-bottom:1px solid var(--border-hairline);
  font-size:14.5px; vertical-align:top; }
.receipt td.num, .receipt th.num { text-align:right; font-family:var(--font-mono); }

.status-pill { display:inline-flex; align-items:center; gap:7px; padding:6px 14px;
  border-radius:var(--radius-pill); font-size:12px; letter-spacing:.08em; text-transform:uppercase; }
.status-NEW                { background:var(--blue-100);  color:var(--blue-600); }
.status-CONFIRMED          { background:var(--gold-100);  color:var(--gold-700); }
.status-PROCESSING         { background:var(--amber-100); color:var(--amber-600); }
.status-READY_FOR_DELIVERY { background:var(--ivory-100); color:var(--maroon-700); }
.status-OUT_FOR_DELIVERY   { background:var(--blush-100); color:var(--maroon-600); }
.status-COMPLETED          { background:var(--green-100); color:var(--green-600); }
.status-CANCELLED          { background:var(--red-100);   color:var(--red-600); }

/* ── Empty states / misc ─────────────────────────────────────── */
.empty { padding:56px 20px; text-align:center; display:flex; flex-direction:column;
  gap:14px; align-items:center; }
.muted { color:var(--text-muted); }
.stack { display:flex; flex-direction:column; gap:14px; }
.row { display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.row--end { justify-content:flex-end; }
.grid-cards { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:18px; }
.info-card { background:var(--surface-card); border:1px solid var(--border-hairline);
  border-radius:var(--radius-lg); padding:22px; display:flex; flex-direction:column; gap:10px;
  box-shadow:var(--shadow-card); }
.category-tile { position:relative; display:block; border-radius:var(--radius-lg); overflow:hidden;
  min-height:160px; border:1px solid var(--border-hairline); background:var(--ivory-100);
  box-shadow:var(--shadow-card); border-bottom:1px solid var(--border-hairline);
  transition:transform .24s var(--ease-out-soft), box-shadow .24s var(--ease-out-soft); }
.category-tile:hover { transform:translateY(-3px); box-shadow:var(--shadow-card-hover); }
.category-tile img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.category-tile__label { position:absolute; inset:auto 0 0 0; padding:16px;
  background:linear-gradient(to top,rgba(36,5,10,.85),rgba(36,5,10,0));
  color:var(--ivory-50); font-family:var(--font-serif-display); font-size:19px; }
.category-tile__count { font-family:var(--font-mono); font-size:12px; color:var(--gold-300); display:block; }

.breadcrumb { display:flex; flex-wrap:wrap; gap:8px; font-size:13px; color:var(--text-muted); }
.breadcrumb a { border-bottom:0; color:var(--text-muted); }
.breadcrumb a:hover { color:var(--gold-600); }

/* ── Animations ──────────────────────────────────────────────── */
@keyframes ifaFadeUp { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:none; } }
@keyframes ifaRing   { 0% { transform:scale(.9); opacity:.55; } 100% { transform:scale(1.5); opacity:0; } }
@keyframes ifaPulse  { 0%,100% { opacity:1; } 50% { opacity:.35; } }
.live-dot { width:7px; height:7px; border-radius:var(--radius-pill);
  background:var(--gold-300); animation:ifaPulse 2.4s ease-in-out infinite; }

[data-reveal] { opacity:0; transform:translateY(14px);
  transition:opacity .7s var(--ease-out-soft), transform .7s var(--ease-out-soft); }
[data-reveal].is-in { opacity:1; transform:none; }

/* ── Reduced motion ──────────────────────────────────────────── */
@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after {
    animation-duration:1ms !important; animation-iteration-count:1 !important;
    transition-duration:1ms !important; scroll-behavior:auto !important;
  }
  [data-reveal] { opacity:1; transform:none; }
}

/* ── Print (receipt) ─────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .floaters, .drawer, .toast, .no-print, .promo-strip { display:none !important; }
  body { background:#fff; }
  .panel { box-shadow:none; border-color:#ddd; }
  a { color:#000; border-bottom:0; }
  .receipt { max-width:none; }
}
