/* ============================================================
   GRIFFE DU LION — v2 · Editorial heritage redesign
   ============================================================ */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "GardoGrotesk";
  src: url("../fonts/GardoGrotesk-Regular.woff") format("woff"),
       url("../fonts/GardoGrotesk-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Encode Sans SemiExpanded";
  src: url("../fonts/EncodeSansSemiExpanded-Light.ttf") format("truetype");
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Encode Sans SemiExpanded";
  src: url("../fonts/EncodeSansSemiExpanded-Regular.ttf") format("truetype");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Encode Sans SemiExpanded";
  src: url("../fonts/EncodeSansSemiExpanded-Medium.ttf") format("truetype");
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Encode Sans SemiExpanded";
  src: url("../fonts/EncodeSansSemiExpanded-SemiBold.ttf") format("truetype");
  font-weight: 600; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --paper:    #f3ece0;   /* warm paper base */
  --paper-2:  #ece2d2;   /* slightly deeper paper */
  --cream:    #E5DCCF;
  --ink:      #171310;   /* near-black warm ink */
  --ink-soft: #4a433b;
  --muted:    #857a6c;

  --red:      #C73F4A;
  --red-deep: #a52d38;
  --gold:     #E5B035;
  --terra:    #D16B3D;
  --navy:     #223a52;
  --navy-2:   #355170;
  --teal:     #29636A;
  --sky:      #B8CCEB;

  --line: rgba(23,19,16,.16);
  --line-soft: rgba(23,19,16,.09);

  --shadow-lg: 0 40px 80px -30px rgba(23,19,16,.45);
  --shadow-md: 0 24px 50px -24px rgba(23,19,16,.38);

  --container: 1320px;
  --gutter: clamp(20px, 5vw, 72px);

  --ff-display: "GardoGrotesk", "Arial Narrow", sans-serif;
  --ff-body: "Encode Sans SemiExpanded", -apple-system, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--ff-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--red); color: var(--paper); }

/* Grain + paper texture overlay */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Type scale ---------- */
.display {
  font-family: var(--ff-display);
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .01em;
  font-weight: 400;
}
h1.display { font-size: clamp(3rem, 9vw, 8.5rem); }
h2.display { font-size: clamp(2.4rem, 6vw, 5.4rem); }
h3.display { font-size: clamp(1.6rem, 3vw, 2.6rem); }

.eyebrow {
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  font-weight: 500; color: var(--red);
  display: inline-flex; align-items: center; gap: .8em;
}
.eyebrow::before {
  content: ""; width: 34px; height: 1px; background: currentColor; display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 300; color: var(--ink-soft); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(72px, 12vw, 170px); }

.sec-index {
  font-family: var(--ff-display); font-size: .9rem; letter-spacing: .1em;
  color: var(--muted);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.solid {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(14px);
  padding-block: 12px;
  box-shadow: 0 1px 0 var(--line-soft);
}
.nav__logo { height: 66px; transition: height .4s var(--ease); }
.nav.solid .nav__logo { height: 50px; }
.nav__logo img { height: 100%; width: auto; }
.nav__links { display: flex; gap: clamp(18px, 2.4vw, 40px); align-items: center; }
.nav__links a {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500;
  position: relative; padding: 6px 0; color: var(--ink);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--red);
  transition: width .35s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav.on-hero:not(.solid) .nav__logo img { filter: invert(1) brightness(2); }
.nav.on-hero:not(.solid) .nav__links a { color: var(--paper); }

.cart-btn {
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--red); color: var(--paper);
  padding: 11px 20px; border-radius: 100px;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.cart-btn:hover { background: var(--ink); transform: translateY(-2px); }
.cart-btn .count {
  background: var(--paper); color: var(--ink); min-width: 20px; height: 20px;
  border-radius: 50%; display: inline-grid; place-items: center; font-size: .68rem;
  transform: scale(0); transition: transform .35s var(--ease);
}
.cart-btn .count.show { transform: scale(1); }
.nav__mobile { display: none; }

/* Language switch */
.nav__actions { display: flex; align-items: center; gap: clamp(10px, 1.4vw, 16px); }
.lang-switch { display: inline-flex; gap: 2px; border: 1px solid var(--line); border-radius: 100px; padding: 3px; }
.lang-opt {
  font-size: .68rem; letter-spacing: .08em; font-weight: 600; text-transform: uppercase;
  padding: 5px 9px; border-radius: 100px; color: var(--muted); transition: color .25s var(--ease), background .25s var(--ease);
}
.lang-opt:hover { color: var(--ink); }
.lang-opt.active { background: var(--red); color: var(--paper); }
.nav.on-hero:not(.solid) .lang-switch { border-color: rgba(243,236,224,.4); }
.nav.on-hero:not(.solid) .lang-opt { color: rgba(243,236,224,.72); }
.nav.on-hero:not(.solid) .lang-opt:hover { color: var(--paper); }
.nav.on-hero:not(.solid) .lang-opt.active { background: var(--red); color: var(--paper); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; flex-direction: column;
  color: var(--paper); overflow: hidden;
  /* Reserve space for the fixed header so tall hero content never slides
     under the logo on short/mobile viewports. margin-top:auto on the inner
     block keeps content bottom-aligned when there's room, but collapses
     (instead of bleeding up under the header) when content is taller than
     the viewport — unlike align-items:flex-end. */
  padding-top: clamp(120px, 15vh, 150px);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,8,6,.55) 0%, rgba(10,8,6,0) 30%, rgba(10,8,6,.15) 55%, rgba(10,8,6,.82) 100%),
    linear-gradient(75deg, rgba(10,8,6,.45), transparent 60%);
}
.hero__inner { margin-top: auto; width: 100%; max-width: var(--container); margin-inline: auto; padding: 0 var(--gutter) clamp(48px, 8vh, 110px); }
.hero__tag {
  display: inline-flex; align-items: center; gap: .8em; margin-bottom: clamp(20px, 4vh, 40px);
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase; font-weight: 500;
}
.hero__tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(229,176,53,.25); }
.hero h1 { max-width: 15ch; }
.hero h1 .accent { color: var(--gold); }
.hero__sub { margin-top: clamp(20px, 3.5vh, 34px); max-width: 46ch; font-size: clamp(1rem,1.4vw,1.2rem); font-weight: 300; color: rgba(243,236,224,.86); }
.hero__cta { margin-top: clamp(26px, 4vh, 44px); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

.btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--ff-display); text-transform: uppercase; letter-spacing: .04em;
  font-size: 1.15rem; line-height: 1;
  padding: 18px 30px; border-radius: 100px; transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
}
.btn--primary { background: var(--red); color: var(--paper); }
.btn--primary:hover { background: var(--paper); color: var(--ink); transform: translateY(-3px); }
.btn--ghost { border: 1px solid rgba(243,236,224,.5); color: var(--paper); }
.btn--ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--red); transform: translateY(-3px); }
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(48px, 8vh, 110px); z-index: 2;
  writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  display: flex; align-items: center; gap: 14px; opacity: .85;
}
.hero__scroll .bar { width: 1px; height: 60px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2.2s var(--ease) infinite; }
@keyframes scrollpulse { 0%,100%{transform:scaleY(.4);transform-origin:top;opacity:.4} 50%{transform:scaleY(1);opacity:1} }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--paper); overflow: hidden;
  border-block: 1px solid rgba(243,236,224,.1);
  padding-block: 18px;
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: marquee 34s linear infinite; }
.marquee span { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.2rem; letter-spacing: .06em; display: inline-flex; gap: 3rem; align-items: center; }
.marquee span::after { content: "✦"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   HERITAGE / STORY
   ============================================================ */
.story { background: var(--paper); }
.story__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.story__head { max-width: 60ch; margin-bottom: clamp(40px,6vw,80px); }
.story__head h2 { margin-top: 20px; }
.story__head h2 .g { color: var(--red); }
.story__col p { margin-bottom: 1.3em; font-size: 1.02rem; }
.story__col p:first-child::first-letter {
  font-family: var(--ff-display); float: left; font-size: 4.6rem; line-height: .8;
  padding: 6px 12px 0 0; color: var(--red);
}
.story__aside { position: relative; }
.story__aside img { width: 100%; border-radius: 4px; box-shadow: var(--shadow-lg); }
.story__quote {
  position: absolute; left: -10%; bottom: -8%; max-width: 320px;
  background: var(--gold); color: var(--ink); padding: 26px 28px; border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.story__quote .q { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.5rem; line-height: 1; }
.story__quote .t { margin-top: 10px; font-size: .82rem; color: var(--ink-soft); }

.timeline { display: flex; gap: 0; margin-top: clamp(50px,8vw,90px); border-top: 1px solid var(--line); }
.timeline__item { flex: 1; padding: 28px 24px 0; border-right: 1px solid var(--line-soft); position: relative; }
.timeline__item:last-child { border-right: none; }
.timeline__yr { font-family: var(--ff-display); font-size: 2rem; color: var(--red); }
.timeline__item p { font-size: .86rem; color: var(--ink-soft); margin-top: 8px; }
.timeline__item::before { content:""; position:absolute; top:-5px; left:24px; width:9px; height:9px; border-radius:50%; background:var(--red); }

/* ============================================================
   PRODUCT / THE OBJECT
   ============================================================ */
.object { background: var(--ink); color: var(--paper); }
.object__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,6vw,90px); align-items: center; }
.object__media { position: relative; }
.object__media img { width: 100%; border-radius: 4px; box-shadow: var(--shadow-lg); }
.object__media img.object__badge {
  position: absolute; top: -34px; right: -20px; width: clamp(88px,10vw,132px); height: auto;
  transform: rotate(-9deg);
  filter: drop-shadow(0 10px 22px rgba(10,8,6,.5));
}
.object .eyebrow { color: var(--gold); }
.object h2 { margin: 18px 0 22px; }
.object h2 .r { color: var(--red); }
.object__intro { color: rgba(243,236,224,.78); max-width: 46ch; margin-bottom: 34px; }
.spec { border-top: 1px solid rgba(243,236,224,.16); }
.spec__row { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: 15px 0; border-bottom: 1px solid rgba(243,236,224,.12); align-items: baseline; }
.spec__k { font-family: var(--ff-display); text-transform: uppercase; font-size: .95rem; letter-spacing: .04em; color: var(--gold); white-space: nowrap; }
.spec__v { font-size: .92rem; color: rgba(243,236,224,.82); }
.object__buy { margin-top: 34px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.object__price { font-family: var(--ff-display); font-size: 2.6rem; line-height: 1; }
.object__price small { font-size: .9rem; letter-spacing: .1em; color: rgba(243,236,224,.6); display: block; text-transform: uppercase; }

/* ============================================================
   DETAILS GALLERY
   ============================================================ */
.details { background: var(--paper-2); }
.details__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: clamp(34px,5vw,60px); }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(12px,1.4vw,20px); grid-auto-flow: dense; }
.gallery figure { position: relative; overflow: hidden; border-radius: 4px; box-shadow: var(--shadow-md); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.06); }
.gallery figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 26px 20px 16px;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper);
  background: linear-gradient(transparent, rgba(10,8,6,.7));
}
.g-a { grid-column: span 7; aspect-ratio: 3/2.05; }
.g-b { grid-column: span 5; aspect-ratio: 3/2.05; }
.g-c { grid-column: span 4; aspect-ratio: 4/5; }
.g-d { grid-column: span 4; aspect-ratio: 4/5; }
.g-e { grid-column: span 4; aspect-ratio: 4/5; }

/* ============================================================
   VALUES / LABELS
   ============================================================ */
.values { background: var(--navy); color: var(--paper); text-align: center; }
.values h2 { margin: 18px auto 20px; max-width: 20ch; }
.values .eyebrow { color: var(--gold); justify-content: center; display: flex; }
.values__lead { max-width: 60ch; margin: 0 auto; color: rgba(243,236,224,.82); }
.labels { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px,2vw,26px); margin-top: clamp(44px,6vw,72px); }
.label {
  border: 1px solid rgba(243,236,224,.22); border-radius: 6px; padding: 30px 18px;
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.label:hover { transform: translateY(-6px); background: rgba(243,236,224,.05); border-color: var(--gold); }
.label__ic { font-family: var(--ff-display); font-size: 2rem; color: var(--gold); }
.label__t { margin-top: 12px; font-family: var(--ff-display); text-transform: uppercase; font-size: 1.05rem; min-height: 2.2em; display: flex; align-items: center; justify-content: center; line-height: 1.05; }
.label__d { margin-top: 6px; font-size: .78rem; color: rgba(243,236,224,.6); }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--red); color: var(--paper); overflow: hidden; padding-block: clamp(64px, 9vw, 120px); }
.manifesto__inner { max-width: 1100px; margin-inline: auto; text-align: center; position: relative; z-index: 1; }
.manifesto .eyebrow { color: var(--paper); justify-content: center; display: flex; opacity: .85; }
.manifesto__q { font-family: var(--ff-display); text-transform: uppercase; font-size: clamp(1.9rem,4.4vw,4rem); line-height: 1.02; margin: 26px 0; }
.manifesto__q em { font-style: normal; color: var(--gold); }
.manifesto p { max-width: 62ch; margin: 0 auto; color: rgba(243,236,224,.9); font-size: 1.05rem; }
.manifesto__mark { position: absolute; font-family: var(--ff-display); font-size: 30rem; line-height: 1; opacity: .08; top: -8%; left: -3%; pointer-events: none; }

/* ============================================================
   BUY BAND
   ============================================================ */
.buyband { background: var(--paper); text-align: center; }
.buyband__inner { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.buyband h2 { max-width: 22ch; }
.buyband h2 .r { color: var(--red); }
.buyband .price-line { font-family: var(--ff-display); font-size: 1.2rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: var(--paper); padding-top: clamp(60px,8vw,100px); }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(243,236,224,.12); }
.footer__logo img { height: 84px; filter: invert(1) brightness(2); }
.footer__brand p { margin-top: 20px; max-width: 34ch; color: rgba(243,236,224,.62); font-size: .9rem; }
.footer__col h4 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1rem; color: var(--gold); margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; font-size: .9rem; color: rgba(243,236,224,.72); margin-bottom: 10px; transition: color .3s; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; padding-block: 26px; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(243,236,224,.5); }

/* ============================================================
   SHOP DRAWER
   ============================================================ */
.scrim {
  position: fixed; inset: 0; background: rgba(10,8,6,.55); backdrop-filter: blur(3px);
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s; z-index: 200;
}
.scrim.open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed; top: 0; right: 0; height: 100svh; width: min(460px, 100vw);
  background: var(--paper); z-index: 210; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .5s var(--ease);
  box-shadow: -30px 0 80px -30px rgba(10,8,6,.6);
}
.drawer.open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 22px 26px; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.5rem; }
.drawer__close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.3rem; transition: background .3s; }
.drawer__close:hover { background: var(--paper-2); }
.drawer__body { flex: 1; overflow-y: auto; padding: 26px; }
.drawer__foot { border-top: 1px solid var(--line); padding: 22px 26px; background: var(--paper); }

/* Product card in drawer */
.shop-product { }
.shop-product__img { border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.shop-product__img img { width: 100%; height: 100%; object-fit: cover; }
.shop-product h4 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.5rem; margin-top: 20px; }
.shop-product .sub { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.shop-product .desc { font-size: .9rem; color: var(--ink-soft); margin-top: 14px; }
.shop-product .price { font-family: var(--ff-display); font-size: 2.2rem; margin-top: 16px; }

.field { margin-top: 18px; }
.field label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--ff-body); font-size: .92rem; color: var(--ink);
  background: var(--paper-2); border: 1px solid var(--line); border-radius: 6px; padding: 12px 14px;
  transition: border-color .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); }
.field textarea { resize: vertical; min-height: 64px; }
.field.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field.row2 label { grid-column: 1 / -1; margin-bottom: 0; }

.stepper { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 100px; overflow: hidden; }
.stepper button { width: 42px; height: 42px; font-size: 1.2rem; transition: background .2s; }
.stepper button:hover { background: var(--paper-2); }
.stepper .qty { min-width: 42px; text-align: center; font-weight: 500; }

.add-row { display: flex; align-items: center; gap: 16px; margin-top: 22px; }
.btn-add {
  flex: 1; background: var(--ink); color: var(--paper); border-radius: 100px; padding: 15px;
  font-family: var(--ff-display); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .04em;
  display: inline-flex; justify-content: center; gap: .6em; transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-add:hover { background: var(--red); transform: translateY(-2px); }

/* Cart line items */
.cart-empty { text-align: center; color: var(--muted); padding: 40px 0; }
.cart-empty .big { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.4rem; color: var(--ink); margin-bottom: 8px; }
.line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); align-items: start; }
.line__img { width: 70px; height: 70px; border-radius: 6px; overflow: hidden; }
.line__img img { width: 100%; height: 100%; object-fit: cover; }
.line__t { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.02rem; }
.line__meta { font-size: .76rem; color: var(--muted); margin-top: 3px; }
.line__note { font-size: .76rem; color: var(--ink-soft); margin-top: 6px; font-style: italic; }
.line__controls { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.line__controls .mini { width: 26px; height: 26px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: .9rem; }
.line__controls .mini:hover { background: var(--paper-2); }
.line__price { font-family: var(--ff-display); font-size: 1.1rem; }
.line__rm { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 8px; text-decoration: underline; }
.line__rm:hover { color: var(--red); }

.totals { font-size: .9rem; }
.totals .row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-soft); }
.totals .grand { display: flex; justify-content: space-between; align-items: baseline; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--line); }
.totals .grand .lbl { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.1rem; }
.totals .grand .val { font-family: var(--ff-display); font-size: 1.8rem; }
.btn-checkout {
  width: 100%; margin-top: 16px; background: var(--red); color: var(--paper); border-radius: 100px; padding: 16px;
  font-family: var(--ff-display); text-transform: uppercase; font-size: 1.15rem; letter-spacing: .04em;
  display: inline-flex; justify-content: center; gap: .6em; transition: background .3s var(--ease), transform .3s var(--ease);
}
.btn-checkout:hover { background: var(--ink); transform: translateY(-2px); }
.drawer__note { font-size: .72rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.5; }

.back-link { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); display: inline-flex; gap: .5em; align-items: center; margin-bottom: 18px; }
.back-link:hover { color: var(--red); }

/* Confirmation */
.confirm { text-align: center; padding: 30px 0; }
.confirm__check { width: 76px; height: 76px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; margin: 0 auto 24px; }
.confirm__check svg { width: 34px; height: 34px; }
.confirm h4 { font-family: var(--ff-display); text-transform: uppercase; font-size: 1.8rem; }
.confirm .order-no { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 8px; }
.confirm p { font-size: .92rem; color: var(--ink-soft); margin-top: 16px; }
.confirm .summary { text-align: left; background: var(--paper-2); border-radius: 8px; padding: 18px; margin-top: 22px; font-size: .86rem; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .1s; }
[data-reveal].d2 { transition-delay: .2s; }
[data-reveal].d3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  /* Below 900px the inline nav links no longer fit beside the logo + CTA
     (they collided with the logo on iPad-width screens), so drop them —
     same logo + Commander layout already used on phones. */
  .nav__links { display: none; }
  .story__grid, .object__grid { grid-template-columns: 1fr; }
  .object__badge { width: 92px; top: -20px; right: 10px; }
  .story__aside { order: -1; }
  .story__quote { position: static; margin-top: 18px; max-width: none; }
  .labels { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .timeline { flex-wrap: wrap; }
  .timeline__item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid var(--line-soft); padding-bottom: 20px; }
  .g-a, .g-b { grid-column: span 12; aspect-ratio: 3/2; }
  .g-c, .g-d, .g-e { grid-column: span 4; }
}
@media (max-width: 720px) {
  .hero__scroll { display: none; }
  .g-c, .g-d, .g-e { grid-column: span 6; aspect-ratio: 1/1; }
  .footer__top { grid-template-columns: 1fr; }
  .object__buy { flex-direction: column; align-items: stretch; }
}
