/* ==========================================================================
   Left Coast Dates — Design System
   Premium Medjool date storefront. Inspired by refined Apple-style motion
   and heritage date-house storytelling.
   ========================================================================== */

/* ---- Design tokens ------------------------------------------------------- */
:root {
  /* Palette */
  --date-900: #241408;
  --date-800: #3a2416;
  --date-700: #4e3220;
  --caramel: #c6803b;
  --caramel-dark: #a5652b;
  --gold: #d4a24e;
  --gold-soft: #e6c98a;
  --cream: #faf5ec;
  --cream-2: #f3e9d7;
  --sand: #ede0c8;
  --ink: #2a1c10;
  --muted: #7a6449;
  --line: rgba(58, 36, 22, 0.12);
  --white: #ffffff;

  /* Typography */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --maxw: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;
  --radius-lg: 28px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur: 0.6s;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(36, 20, 8, 0.06);
  --shadow-md: 0 18px 40px -20px rgba(36, 20, 8, 0.35);
  --shadow-lg: 0 40px 80px -30px rgba(36, 20, 8, 0.45);
}

/* ---- Reset --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---- Typography ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; letter-spacing: -0.02em; color: var(--date-800); }
.display { font-size: clamp(2.75rem, 7vw, 5.75rem); font-weight: 500; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--caramel-dark);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--caramel); display: inline-block; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 46ch; }

/* ---- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.center { text-align: center; }
.section__head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section__head.center { margin-inline: auto; }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  --bg: var(--date-800); --fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: 0.95rem 1.7rem; border-radius: 100px;
  background: var(--bg); color: var(--fg);
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.01em;
  position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.btn::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(120px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,0.18), transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:hover::after { opacity: 1; }
.btn:active { transform: translateY(-1px) scale(0.99); }
.btn--gold { --bg: linear-gradient(135deg, var(--gold), var(--caramel)); --fg: var(--date-900); }
.btn--ghost { --bg: transparent; --fg: var(--date-800); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--caramel); }
.btn--sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }
.btn--block { width: 100%; }

/* ---- Header / nav -------------------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s, backdrop-filter 0.4s;
}
.header.is-scrolled {
  background: rgba(250, 245, 236, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; color: var(--date-800); letter-spacing: -0.01em; }
.brand svg { width: 30px; height: 30px; }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-size: 0.92rem; font-weight: 500; color: var(--date-700); position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--caramel); transition: width 0.3s var(--ease); }
.nav__links a:hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 0.75rem; }
.cart-btn { position: relative; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 1.05rem; border-radius: 100px; border: 1.5px solid var(--line); font-weight: 600; font-size: 0.9rem; transition: border-color 0.3s, transform 0.3s; }
.cart-btn:hover { border-color: var(--caramel); transform: translateY(-2px); }
.cart-count { display: inline-grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; border-radius: 100px; background: var(--caramel); color: var(--white); font-size: 0.7rem; font-weight: 700; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--date-800); margin: 4px auto; transition: 0.3s; }

/* ---- Hero ---------------------------------------------------------------- */
.hero { position: relative; padding-top: clamp(9rem, 16vh, 13rem); padding-bottom: clamp(4rem, 8vw, 7rem); overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; background:
  radial-gradient(60% 55% at 78% 18%, rgba(212,162,78,0.28), transparent 60%),
  radial-gradient(50% 45% at 10% 90%, rgba(198,128,59,0.18), transparent 55%),
  linear-gradient(180deg, var(--cream), var(--cream-2)); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__content { max-width: 34rem; }
.hero .display { margin: 1.2rem 0 1.4rem; }
.hero .display em { font-style: italic; color: var(--caramel-dark); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__stats { display: flex; gap: 2.5rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.hero__stats .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--date-800); }
.hero__stats .lbl { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero visual — layered "date" card with float */
.hero__visual { position: relative; aspect-ratio: 4/5; }
.hero__card {
  position: absolute; inset: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #5a3821, #2f1c0e);
  box-shadow: var(--shadow-lg);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; }
.hero__badge {
  position: absolute; z-index: 3; background: rgba(250,245,236,0.92); backdrop-filter: blur(10px);
  border-radius: 16px; padding: 0.85rem 1.1rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; font-weight: 600; color: var(--date-800);
}
.hero__badge svg { width: 26px; height: 26px; }
.hero__badge--tl { top: 8%; left: -6%; animation: floaty 6s var(--ease) infinite; }
.hero__badge--br { bottom: 10%; right: -7%; animation: floaty 7s var(--ease) infinite reverse; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---- Marquee trust bar --------------------------------------------------- */
.trust { background: var(--date-800); color: var(--gold-soft); padding-block: 1.1rem; overflow: hidden; }
.marquee { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 32s linear infinite; }
.marquee span { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; display: inline-flex; align-items: center; gap: 3rem; opacity: 0.85; }
.marquee span::after { content: "◆"; color: var(--caramel); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---- Heritage / split ---------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--rev .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/4; box-shadow: var(--shadow-md); background: var(--sand); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list .ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--cream-2); color: var(--caramel-dark); }
.feature-list .ico svg { width: 22px; height: 22px; }
.feature-list b { display: block; color: var(--date-800); font-family: var(--font-display); font-size: 1.1rem; }
.feature-list p { color: var(--muted); font-size: 0.95rem; }

/* ---- Product grid -------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.filter { padding: 0.55rem 1.2rem; border-radius: 100px; border: 1.5px solid var(--line); font-size: 0.88rem; font-weight: 600; color: var(--date-700); transition: 0.3s; }
.filter:hover { border-color: var(--caramel); }
.filter.is-active { background: var(--date-800); color: var(--cream); border-color: var(--date-800); }

.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: linear-gradient(160deg, var(--cream-2), var(--sand)); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__tag { position: absolute; top: 12px; left: 12px; background: rgba(250,245,236,0.94); backdrop-filter: blur(6px); color: var(--caramel-dark); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px; }
.card__body { padding: 1.25rem 1.35rem 1.4rem; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.card__name { font-family: var(--font-display); font-size: 1.28rem; color: var(--date-800); }
.card__desc { font-size: 0.9rem; color: var(--muted); flex: 1; }
.card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 0.9rem; }
.card__price { font-weight: 700; font-size: 1.15rem; color: var(--date-800); }
.card__price small { font-weight: 500; color: var(--muted); font-size: 0.8rem; }
.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; }

/* ---- Process steps ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; counter-reset: step; }
.step { padding: 2rem 1.6rem; border-radius: var(--radius); background: var(--white); border: 1px solid var(--line); position: relative; }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-display); font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.step h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---- Testimonials -------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.quote { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.quote .stars { margin-bottom: 0.8rem; }
.quote p { font-family: var(--font-display); font-size: 1.15rem; color: var(--date-700); line-height: 1.45; }
.quote footer { margin-top: 1.2rem; font-size: 0.85rem; color: var(--muted); font-weight: 600; }

/* ---- Newsletter / CTA banner --------------------------------------------- */
.cta-band { background: linear-gradient(135deg, var(--date-800), var(--date-900)); border-radius: var(--radius-lg); padding: clamp(2.5rem, 6vw, 4.5rem); color: var(--cream); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 80% at 85% 20%, rgba(212,162,78,0.35), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--cream); }
.cta-band .lead { color: var(--gold-soft); }
.subscribe { display: flex; gap: 0.6rem; margin-top: 1.8rem; max-width: 440px; flex-wrap: wrap; }
.subscribe input { flex: 1; min-width: 200px; padding: 0.95rem 1.2rem; border-radius: 100px; border: 1.5px solid rgba(230,201,138,0.35); background: rgba(255,255,255,0.06); color: var(--cream); font-size: 0.95rem; }
.subscribe input::placeholder { color: rgba(250,245,236,0.5); }
.subscribe input:focus { outline: none; border-color: var(--gold); }

/* ---- Footer -------------------------------------------------------------- */
.footer { background: var(--date-900); color: var(--sand); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 2.5rem; }
.footer h5 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; }
.footer a { display: block; color: rgba(237,224,200,0.75); font-size: 0.92rem; padding: 0.28rem 0; transition: color 0.25s, padding-left 0.25s; }
.footer a:hover { color: var(--gold-soft); padding-left: 5px; }
.footer .brand { color: var(--cream); margin-bottom: 1rem; }
.footer p { color: rgba(237,224,200,0.6); font-size: 0.92rem; max-width: 30ch; }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(237,224,200,0.15); font-size: 0.82rem; color: rgba(237,224,200,0.55); }

/* ---- Cart drawer --------------------------------------------------------- */
.overlay { position: fixed; inset: 0; background: rgba(36,20,8,0.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: 0.4s var(--ease); z-index: 200; }
.overlay.is-open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--cream); z-index: 210; transform: translateX(100%); transition: transform 0.5s var(--ease); display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.drawer.is-open { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem; border-bottom: 1px solid var(--line); }
.drawer__head h3 { font-size: 1.3rem; }
.drawer__close { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line); transition: 0.3s; }
.drawer__close:hover { background: var(--cream-2); transform: rotate(90deg); }
.drawer__items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.drawer__empty { text-align: center; color: var(--muted); padding: 4rem 1rem; }
.line-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 0.9rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.line-item__img { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; background: var(--sand); }
.line-item__name { font-weight: 600; font-size: 0.95rem; color: var(--date-800); }
.line-item__price { font-size: 0.85rem; color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; }
.qty button { width: 26px; height: 26px; border-radius: 8px; border: 1px solid var(--line); display: grid; place-items: center; font-weight: 700; transition: 0.2s; }
.qty button:hover { border-color: var(--caramel); color: var(--caramel-dark); }
.qty span { min-width: 20px; text-align: center; font-weight: 600; font-size: 0.9rem; }
.line-item__remove { color: var(--muted); font-size: 0.78rem; text-decoration: underline; }
.drawer__foot { padding: 1.5rem; border-top: 1px solid var(--line); background: var(--cream-2); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.drawer__total .t { font-family: var(--font-display); font-size: 1.6rem; color: var(--date-800); }
.drawer__note { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 0.8rem; }

/* ---- Toast --------------------------------------------------------------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(140%); background: var(--date-800); color: var(--cream); padding: 0.9rem 1.4rem; border-radius: 100px; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-md); z-index: 300; transition: transform 0.5s var(--ease); display: flex; align-items: center; gap: 0.6rem; }
.toast.is-show { transform: translateX(-50%) translateY(0); }

/* ---- Scroll reveal ------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }
[data-reveal][data-delay="4"] { transition-delay: 0.32s; }

/* ---- Product quick-view modal ------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 220; display: grid; place-items: center; padding: 1.5rem; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s; background: rgba(36,20,8,0.5); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.modal.is-open { opacity: 1; visibility: visible; }
.modal__panel { position: relative; width: min(880px, 100%); max-height: 90vh; overflow: auto; background: var(--cream); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; transform: translateY(24px) scale(0.98); transition: transform 0.4s var(--ease); }
.modal.is-open .modal__panel { transform: none; }
.modal__media { background: var(--sand); aspect-ratio: 4/5; }
.modal__media img { width: 100%; height: 100%; object-fit: cover; }
.modal__body { padding: clamp(1.5rem, 3vw, 2.4rem); display: flex; flex-direction: column; }
.modal__body .stars { margin-bottom: 0.5rem; }
.modal__body h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
.modal__unit { color: var(--muted); font-size: 0.9rem; margin: 0.2rem 0 1rem; }
.modal__desc { color: var(--muted); flex: 1; }
.modal__price { font-family: var(--font-display); font-size: 1.8rem; color: var(--date-800); margin: 1.2rem 0; }
.modal__actions { display: flex; gap: 0.8rem; align-items: center; flex-wrap: wrap; }
.modal__close { position: absolute; top: 12px; right: 12px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; background: rgba(250,245,236,0.9); display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: 0.3s; }
.modal__close:hover { transform: rotate(90deg); }
.card__media { cursor: pointer; }
@media (max-width: 680px) { .modal__panel { grid-template-columns: 1fr; } .modal__media { aspect-ratio: 16/10; } }

/* ---- Content sub-pages (FAQ, legal, shipping) --------------------------- */
.subhero { padding-top: clamp(8rem, 14vh, 11rem); padding-bottom: clamp(2rem, 5vw, 3.5rem); background:
  radial-gradient(60% 60% at 80% 0%, rgba(212,162,78,0.22), transparent 60%), linear-gradient(180deg, var(--cream), var(--cream-2)); }
.subhero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: 0.8rem; }
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin: 2.2rem 0 0.8rem; }
.prose h3 { font-size: 1.15rem; margin: 1.6rem 0 0.5rem; color: var(--date-700); }
.prose p, .prose li { color: var(--date-700); margin-bottom: 0.9rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.4rem; }
.prose a { color: var(--caramel-dark); text-decoration: underline; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { cursor: pointer; list-style: none; padding: 1.3rem 0; font-family: var(--font-display); font-size: 1.2rem; color: var(--date-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--caramel); transition: transform 0.3s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--muted); padding-bottom: 1.3rem; margin: 0; }

/* ---- Responsive --------------------------------------------------------- */
@media (max-width: 900px) {
  .hero__grid, .split { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .hero__visual { max-width: 440px; margin-inline: auto; aspect-ratio: auto; }
  .hero__card { position: relative; aspect-ratio: 4 / 5; }
  .hero__badge { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(250,245,236,0.98); backdrop-filter: blur(18px); padding: 1rem var(--gutter); box-shadow: var(--shadow-md); }
  .nav.is-open .nav__links a { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
}
@media (max-width: 560px) {
  .display { font-size: clamp(2.1rem, 10vw, 3rem); }
  .hero__stats { gap: 1.5rem; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge--tl { left: 2%; }
  .hero__badge--br { right: 2%; }
}
