/* =========================================================
   SURIO II — APPLE EDITION
   Light/dark alternating sections · Inter Tight billboards
   Massive whitespace · centered storytelling · gold accent
   ========================================================= */

:root {
  /* Apple-style neutrals */
  --bg:         #FBFBFD;        /* near-white */
  --bg-soft:    #F5F5F7;        /* alt section bg */
  --bg-dark:    #0A1530;        /* logo navy deep */
  --bg-dark-2:  #050B1E;        /* even deeper */

  --ink:        #1D1D1F;        /* Apple's primary text */
  --ink-2:      #424245;
  --ink-mute:   #6E6E73;        /* Apple gray */
  --hair:       rgba(0,0,0,0.08);
  --hair-dark:  rgba(255,255,255,0.10);

  --paper:      #FFFFFF;

  /* Brand accent from logo */
  --gold:       #F0B43C;
  --gold-deep:  #C8902A;
  --navy:       #1E3FA5;

  /* Texts on dark */
  --on-dark:    #F5F5F7;
  --on-dark-mute: rgba(245,245,247,0.66);

  /* Typography */
  --sans:    'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  --sans-2:  'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono:    'JetBrains Mono', ui-monospace, 'SF Mono', monospace;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans-2);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html { scroll-behavior: smooth; }

a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; }

.skip {
  position: fixed; top: -100px; left: 12px; z-index: 999;
  background: var(--ink); color: var(--on-dark);
  padding: 10px 14px; border-radius: 6px;
  font: 500 14px var(--sans);
}
.skip:focus { top: 12px; }


/* ════════════════════════════════════════
   APPLE NAV — thin glass top bar
   ════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(251, 251, 253, 0.72);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  height: 48px;
  display: flex; align-items: center; gap: 24px;
  justify-content: space-between;
}
.nav__brand {
  display: flex; align-items: center; gap: 8px;
  font: 500 15px/1 var(--sans);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav__brand img { width: 20px; height: 20px; object-fit: contain; }
.nav__links {
  display: flex; gap: clamp(16px, 2.4vw, 32px);
}
.nav__links a {
  font: 400 12px/1 var(--sans-2);
  color: var(--ink-2);
  transition: color 0.25s ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  font: 500 12px/1 var(--sans-2);
  color: var(--paper);
  background: var(--ink);
  padding: 8px 14px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, color 0.25s ease;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.03);
}

/* Nav inverted on dark sections */
.nav.is-dark {
  background: rgba(10, 21, 48, 0.72);
  border-bottom-color: rgba(255,255,255,0.06);
}
.nav.is-dark .nav__brand,
.nav.is-dark .nav__links a:hover { color: var(--on-dark); }
.nav.is-dark .nav__links a { color: var(--on-dark-mute); }
.nav.is-dark .nav__cta { background: var(--on-dark); color: var(--ink); }
.nav.is-dark .nav__cta:hover { background: var(--gold); color: var(--ink); }


/* ════════════════════════════════════════
   SECTION base
   ════════════════════════════════════════ */
.section {
  position: relative;
  width: 100%;
  padding: clamp(100px, 14vw, 200px) 22px;
  overflow: hidden;
}
.section--light { background: var(--bg); color: var(--ink); }
.section--soft  { background: var(--bg-soft); color: var(--ink); }
.section--dark  { background: var(--bg-dark); color: var(--on-dark); }

.section__head {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; gap: 18px;
}


/* ════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════ */
.eyebrow {
  margin: 0;
  font: 600 13px/1 var(--sans);
  letter-spacing: 0.02em;
  color: var(--gold-deep);
}
.eyebrow--gold { color: var(--gold); }

.display {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 1.02;
  letter-spacing: -0.038em;
  color: inherit;
  text-wrap: balance;
}
.display--narrow { font-size: clamp(44px, 7vw, 104px); }
.display__alt {
  display: inline-block;
  color: var(--ink-mute);
  font-weight: 600;
}
.section--dark .display__alt { color: var(--on-dark-mute); }

.title {
  margin: 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: inherit;
  text-wrap: balance;
}
.title__alt {
  display: inline-block;
  color: var(--ink-mute);
  font-weight: 600;
}
.section--dark .title__alt { color: var(--on-dark-mute); }

.lede {
  margin: 0 auto;
  max-width: 620px;
  font-family: var(--sans-2);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.42;
  letter-spacing: -0.012em;
  color: var(--ink-2);
}
.lede--left { margin: 0; text-align: left; }
.lede--light { color: var(--on-dark-mute); }


/* ════════════════════════════════════════
   LINK ARROW (Apple "Learn more →")
   ════════════════════════════════════════ */
.link-row {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  margin-top: 6px;
}
.link-arrow {
  display: inline-flex; align-items: baseline; gap: 4px;
  font: 500 17px/1 var(--sans-2);
  letter-spacing: -0.012em;
  color: var(--gold-deep);
  transition: color 0.25s ease;
}
.link-arrow i {
  font-style: normal;
  display: inline-block;
  transition: transform 0.25s cubic-bezier(.22,.61,.36,1);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover i { transform: translateX(4px); }
.link-arrow--ink { color: var(--ink); }
.link-arrow--ink:hover { color: var(--gold-deep); }
.section--dark .link-arrow { color: var(--gold); }
.section--dark .link-arrow--ink { color: var(--on-dark); }


/* ════════════════════════════════════════
   HERO — sticky-pin with anatomy assembly
   Pin: 260vh tall outer + 100vh sticky inner
   ════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 0;
  overflow: visible;
}
.hero__pin {
  position: relative;
  height: 260vh;
}
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(80px, 9vw, 130px) 22px clamp(40px, 5vw, 80px);
  display: flex; flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}
.hero .eyebrow { margin-bottom: 0; }
.hero .display { font-size: clamp(36px, 5.2vw, 72px); margin-bottom: 0; line-height: 1.04; }
.hero .lede { max-width: 540px; font-size: clamp(15px, 1.3vw, 18px); }

.hero__stage {
  position: relative;
  width: clamp(220px, 28vw, 360px);
  aspect-ratio: 1;
  margin: 4px auto 60px;
  display: grid; place-items: center;
  perspective: 1200px;
  transform-style: preserve-3d;
}
.hero__halo {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 55%, rgba(240,180,60,0.30) 0%, rgba(240,180,60,0.10) 32%, transparent 62%),
    radial-gradient(circle at 50% 50%, rgba(30,63,165,0.12) 0%, transparent 65%);
  filter: blur(24px);
  z-index: 0;
  transition: transform 0.9s cubic-bezier(.22,.61,.36,1),
              filter 0.6s ease;
}
.hero.is-assembling .hero__halo {
  transform: scale(1.08);
  filter: blur(30px) saturate(1.15);
}

/* Whole lobster — visible at scroll = 0, fades out as assembly begins */
.hero__whole {
  position: absolute;
  inset: 6%;
  width: 88%; height: 88%;
  object-fit: contain;
  z-index: 2;
  opacity: 1;
  transform: scale(1);
  filter:
    drop-shadow(0 30px 60px rgba(10,21,48,0.18))
    drop-shadow(0 0 40px rgba(240,180,60,0.30));
  transition: opacity 0.5s cubic-bezier(.22,.61,.36,1),
              transform 0.7s cubic-bezier(.22,.61,.36,1);
  animation: hero-float 7s ease-in-out infinite alternate;
}
.hero.is-assembling .hero__whole {
  opacity: 0;
  transform: scale(0.94);
  animation-play-state: paused;
}

/* Canvas where parts assemble */
.hero__canvas {
  position: absolute;
  inset: 6%;
  z-index: 3;
}

/* Each anatomy part — starts hidden, slides + scales into place per group */
.anatomy-part {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), 0) scale(0.86);
  filter:
    drop-shadow(0 10px 24px rgba(10,21,48,0.18))
    drop-shadow(0 0 20px rgba(240,180,60,0.30));
  transition:
    opacity 0.6s cubic-bezier(.22,.61,.36,1),
    transform 0.8s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.anatomy-part.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.hero__shadow {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 56%; height: 14px;
  background: radial-gradient(ellipse, rgba(10,21,48,0.16) 0%, transparent 70%);
  filter: blur(8px);
  z-index: 1;
}
@keyframes hero-float {
  0%   { translate: 0 0;     rotate: -1.2deg; }
  100% { translate: 0 -14px; rotate:  1.2deg; }
}

/* Caption pill below the stage — updates as scroll progresses */
.hero__caption {
  position: absolute;
  bottom: -52px; left: 50%;
  z-index: 4;
  display: flex; align-items: baseline; gap: 8px;
  padding: 9px 14px;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--hair);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  white-space: nowrap;
  box-shadow: 0 10px 24px -12px rgba(10,21,48,0.22);
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.22,.61,.36,1);
}
.hero.is-assembling .hero__caption {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.hero__caption-num {
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  padding: 4px 7px;
  background: rgba(240,180,60,0.18);
  border-radius: 6px;
}
.hero__caption-name {
  font: 600 14px/1 var(--sans);
  letter-spacing: -0.012em;
  color: var(--ink);
  transition: opacity 0.22s ease;
}
.hero__caption-sub {
  font: 400 10.5px/1 var(--mono);
  letter-spacing: 0.06em;
  color: var(--ink-mute);
  transition: opacity 0.22s ease;
}
.hero__caption.is-swap .hero__caption-name,
.hero__caption.is-swap .hero__caption-sub { opacity: 0; }

/* Step dots progress */
.hero__steps {
  display: flex; gap: 6px;
  margin-top: 18px;
}
.hero__step {
  width: 18px; height: 3px;
  border-radius: 2px;
  background: rgba(10,21,48,0.14);
  transition: background 0.4s ease, width 0.4s cubic-bezier(.22,.61,.36,1);
}
.hero__step.is-active {
  background: var(--gold);
  width: 32px;
}
.hero__step.is-past {
  background: var(--gold-deep);
}


/* (Old PNG-anatomy styles removed — replaced by Three.js scene) */

.scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: var(--ink-mute);
  opacity: 0.7;
  transition: opacity 0.25s ease;
}
.scroll-hint:hover { opacity: 1; }


/* ════════════════════════════════════════
   SPLIT layout (l'aube, halle)
   ════════════════════════════════════════ */
.split__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.split--reverse .split__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
.split__text {
  display: flex; flex-direction: column; gap: 22px;
  align-items: flex-start;
  text-align: left;
}
.split__visual { display: grid; place-items: center; }

/* Visual card with video */
.visual-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 28px;
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow:
    0 30px 60px -20px rgba(10,21,48,0.20),
    0 8px 24px -12px rgba(10,21,48,0.15);
}
.visual-card video,
.visual-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.visual-card__caption {
  position: absolute;
  bottom: 18px; left: 18px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark);
  background: rgba(0,0,0,0.42);
  padding: 7px 12px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}


/* ════════════════════════════════════════
   STATS strip
   ════════════════════════════════════════ */
.stats {
  margin: 12px 0 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  width: 100%;
  max-width: 540px;
}
.stats > div {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0;
}
.stats dt {
  margin: 0;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.stats dd {
  margin: 0;
  font: 600 clamp(22px, 2.6vw, 32px)/1 var(--sans);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.stats dd i {
  font-style: normal;
  color: var(--ink-mute);
  font-weight: 500;
}
.stats--light dt { color: var(--on-dark-mute); }
.stats--light dd { color: var(--on-dark); }
.stats--light dd i { color: var(--on-dark-mute); }


/* ════════════════════════════════════════
   CATCH section (dark, sticky-pin Apple style)
   ════════════════════════════════════════ */
.catch { padding: clamp(100px, 12vw, 180px) 0; }
.catch__head {
  max-width: 1100px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  text-align: center;
  padding: 0 22px;
  display: flex; flex-direction: column;
  align-items: center;
  gap: 18px;
}
.catch__foot {
  max-width: 1100px;
  margin: clamp(40px, 5vw, 70px) auto 0;
  padding: 0 22px;
  text-align: center;
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}

.dot-live {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  animation: dot-pulse-live 1.8s ease-out infinite;
  vertical-align: 0;
}
@keyframes dot-pulse-live {
  0%   { box-shadow: 0 0 0 0   rgba(46,204,113,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(46,204,113,0);   }
  100% { box-shadow: 0 0 0 0   rgba(46,204,113,0);   }
}

/* ROWS — Each product gets its own row: big image + card */
.catch__rows {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 8vw, 110px);
}

.catch__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.catch__row--reverse {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}
.catch__row--reverse .catch__row-visual { order: 2; }
.catch__row--reverse .catch-card        { order: 1; }

.catch__row-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.catch__halo {
  position: absolute; inset: 8%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240,180,60,0.32) 0%, rgba(240,180,60,0.08) 38%, transparent 68%),
    radial-gradient(circle at 50% 55%, rgba(30,63,165,0.42) 24%, transparent 70%);
  filter: blur(34px);
  z-index: 0;
}
.catch__row-img {
  position: relative;
  z-index: 2;
  width: 86%; height: 86%;
  object-fit: contain;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,0.45))
    drop-shadow(0 0 60px rgba(240,180,60,0.40));
  animation: hero-float 7s ease-in-out infinite alternate;
}
.catch__row:nth-child(2) .catch__row-img { animation-duration: 8s; }
.catch__row:nth-child(3) .catch__row-img { animation-duration: 6.5s; }

.catch-card {
  position: relative;
  padding: clamp(28px, 3vw, 40px) clamp(28px, 3vw, 40px);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(240,180,60,0.30);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  display: flex; flex-direction: column;
  gap: 14px;
  background: rgba(240,180,60,0.06);
}
.catch-card__num {
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.18em;
  color: var(--gold);
}
.catch-card__name {
  margin: 0;
  font: 600 clamp(28px, 3.4vw, 44px)/1.04 var(--sans);
  letter-spacing: -0.025em;
  color: var(--on-dark);
}
.catch-card__sub {
  margin: 0;
  font: 400 clamp(15px, 1.3vw, 17px)/1.45 var(--sans-2);
  letter-spacing: -0.01em;
  color: var(--on-dark-mute);
  max-width: 480px;
}
.catch-card__meta {
  margin: 6px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.catch-card__meta > div {
  display: flex; flex-direction: column; gap: 3px;
}
.catch-card__meta dt {
  margin: 0;
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}
.catch-card__meta dd {
  margin: 0;
  font: 500 13px/1.3 var(--sans-2);
  letter-spacing: -0.005em;
  color: var(--on-dark);
}
.catch-card__price {
  margin: 4px 0 0;
  font: 600 clamp(22px, 2.4vw, 30px)/1 var(--sans);
  letter-spacing: -0.02em;
  color: var(--on-dark);
}
.catch-card__price i {
  font: 400 11px/1 var(--mono);
  font-style: normal;
  color: var(--on-dark-mute);
  letter-spacing: 0.10em;
  margin-left: 2px;
}


/* ════════════════════════════════════════
   BATEAU section (dark, cinematic)
   ════════════════════════════════════════ */
.bateau { padding: clamp(120px, 16vw, 220px) 22px; }
.bateau__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: saturate(0.8) contrast(1.05) brightness(0.85);
  transform: scale(1.05);
}
.bateau__shade {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 100% 80% at 50% 30%, rgba(10,21,48,0.55), transparent 70%),
    linear-gradient(180deg, rgba(10,21,48,0.55), rgba(5,11,30,0.85));
}
.bateau__inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-start;
  text-align: left;
}

.quote {
  margin: 0;
  max-width: 880px;
  font: 300 clamp(22px, 2.8vw, 36px)/1.36 var(--sans-2);
  letter-spacing: -0.012em;
  color: var(--on-dark);
}
.quote em {
  font-style: normal;
  color: var(--gold);
  font-weight: 500;
}
.quote::before {
  content: '“';
  font-size: 1.4em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.1em;
  margin-right: 4px;
}
.quote::after {
  content: '”';
  font-size: 1.4em;
  color: var(--gold);
  line-height: 0;
  vertical-align: -0.1em;
  margin-left: 2px;
}
.quote-author {
  margin: 0;
  font: 500 14px/1.4 var(--sans-2);
  color: var(--on-dark-mute);
  letter-spacing: 0.01em;
}


/* ════════════════════════════════════════
   NÉGOCE — product grid (light soft)
   ════════════════════════════════════════ */
.negoce__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: clamp(50px, 7vw, 90px);
}
.prods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
/* Duo layout — 2 featured products get big treatment */
.prods--duo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  max-width: 960px;
  margin: 0 auto;
}
.prod--featured {
  padding: clamp(32px, 3.6vw, 48px) clamp(28px, 3vw, 40px) clamp(28px, 3vw, 36px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(240,180,60,0.10), transparent 65%),
    linear-gradient(180deg, var(--paper) 0%, #FAF5E8 100%);
  border: 1px solid rgba(240,180,60,0.32);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.7) inset,
    0 30px 60px -24px rgba(10,21,48,0.20),
    0 12px 30px -16px rgba(10,21,48,0.14);
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.prod--featured::before {
  /* Subtle top-right gold shimmer */
  content: '';
  position: absolute;
  top: -50%; right: -30%;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(240,180,60,0.18), transparent 70%);
  pointer-events: none;
  filter: blur(6px);
}
.prod--featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.7) inset,
    0 40px 80px -24px rgba(10,21,48,0.28),
    0 16px 34px -16px rgba(240,180,60,0.35);
  border-color: rgba(240,180,60,0.55);
}

/* Brand tag ribbon at top */
.prod__brand-tag {
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  background: var(--ink);
  color: var(--on-dark);
  font: 500 10px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  z-index: 2;
  box-shadow: 0 6px 14px -4px rgba(10,21,48,0.35);
  white-space: nowrap;
}

/* Bigger product media (rillettes/soupes shown large) */
.prod__media--large {
  width: clamp(140px, 15vw, 200px);
  aspect-ratio: 1;
  margin: 24px auto 4px;
  display: grid; place-items: center;
  position: relative;
  z-index: 1;
}
.prod__media--large img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 18px 32px rgba(10,21,48,0.22))
    drop-shadow(0 0 30px rgba(240,180,60,0.40));
  animation: hero-float 7s ease-in-out infinite alternate;
}
.prod--featured:nth-child(2) .prod__media--large img {
  animation-duration: 8.5s;
  animation-delay: -1.2s;
}

/* Hairline gold divider between image and text */
.prod__divider {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 8px auto 6px;
}

/* Featured card text tightening */
.prod--featured h3 {
  font: 600 clamp(20px, 2.2vw, 26px)/1.1 var(--sans);
  letter-spacing: -0.025em;
  margin-top: 4px;
  color: var(--ink);
}
.prod__desc {
  margin: 4px 0 8px;
  font: 400 13.5px/1.55 var(--sans-2);
  letter-spacing: -0.005em;
  color: var(--ink-2);
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.prod {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: 22px;
  padding: 28px 22px 24px;
  border: 1px solid var(--hair);
  text-align: center;
  align-items: center;
  gap: 6px;
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}
.prod:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 60px -20px rgba(10,21,48,0.22),
    0 8px 20px -12px rgba(10,21,48,0.12);
  border-color: transparent;
}
.prod__media {
  width: clamp(110px, 12vw, 160px);
  aspect-ratio: 1;
  display: grid; place-items: center;
  margin-bottom: 6px;
}
.prod__media img,
.prod__media svg {
  width: 100%; height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 14px 28px rgba(10,21,48,0.20))
    drop-shadow(0 0 24px rgba(240,180,60,0.35));
  animation: hero-float 7s ease-in-out infinite alternate;
}
.prod:nth-child(2) .prod__media > * { animation-duration: 8s; }
.prod:nth-child(3) .prod__media > * { animation-duration: 6.5s; }
.prod:nth-child(4) .prod__media > * { animation-duration: 9s; }
.prod:nth-child(5) .prod__media > * { animation-duration: 7.5s; }
.prod:nth-child(6) .prod__media > * { animation-duration: 8.5s; }

/* Placeholder illustrations (until real photos arrive) */
.prod__media--placeholder svg {
  filter:
    drop-shadow(0 12px 22px rgba(10,21,48,0.18))
    drop-shadow(0 0 20px rgba(240,180,60,0.30));
}
.prod h3 {
  margin: 6px 0 0;
  font: 500 clamp(17px, 1.7vw, 22px)/1.1 var(--sans);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.prod__src {
  margin: 0;
  font: 400 12px/1.3 var(--sans-2);
  letter-spacing: -0.005em;
  color: var(--ink-mute);
}
.prod__price {
  margin: 10px 0 0;
  font: 600 18px/1 var(--sans);
  letter-spacing: -0.01em;
  color: var(--ink);
}
.prod__price i {
  font: 400 11px/1 var(--mono);
  font-style: normal;
  color: var(--ink-mute);
  letter-spacing: 0.10em;
  margin-left: 2px;
}
/* ════════════════════════════════════════
   HUITRES — Notre production (spotlight)
   ════════════════════════════════════════ */
.huitres__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.huitres__text {
  display: flex; flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 22px;
}
.huitres__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.huitres__halo {
  position: absolute; inset: 6%;
  background:
    radial-gradient(circle at 50% 50%, rgba(240,180,60,0.30) 0%, rgba(240,180,60,0.08) 38%, transparent 68%),
    radial-gradient(circle at 50% 55%, rgba(30,90,120,0.18) 22%, transparent 65%);
  filter: blur(28px);
  z-index: 0;
}
.huitres__img {
  position: relative;
  z-index: 2;
  width: 82%; height: 82%;
  object-fit: contain;
  filter:
    drop-shadow(0 30px 60px rgba(10,21,48,0.22))
    drop-shadow(0 0 40px rgba(240,180,60,0.35));
  animation: hero-float 8s ease-in-out infinite alternate;
}
.huitres__badge {
  position: absolute;
  top: 12%; right: 6%;
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center;
  padding: 10px 16px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow:
    0 12px 24px -8px rgba(240,180,60,0.55),
    0 0 0 3px rgba(255,255,255,0.6) inset;
  animation: badge-tilt 5s ease-in-out infinite alternate;
}
.huitres__badge-mark {
  font: 500 9px/1 var(--mono);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.75;
}
.huitres__badge-text {
  font: 600 15px/1 var(--serif);
  font-style: italic;
  letter-spacing: -0.01em;
  margin-top: 3px;
}
@keyframes badge-tilt {
  0%   { rotate: 4deg;  translate: 0 -2px; }
  100% { rotate: 8deg;  translate: 0  2px; }
}

/* "Possibilité de vous les ouvrir" — service note under the huîtres photo */
.huitres__service {
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px 10px 12px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(240,180,60,0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 10px 26px -12px rgba(10,21,48,0.28),
    0 0 32px -8px rgba(240,180,60,0.30);
  font: 500 12.5px/1.3 var(--sans-2);
  letter-spacing: -0.005em;
  color: var(--ink);
  white-space: nowrap;
  max-width: 92%;
  animation: service-breathe 4s ease-in-out infinite alternate;
}
.huitres__service-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(240,180,60,0.35));
}
.huitres__service-text {
  font-style: italic;
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: -0.01em;
}
@keyframes service-breathe {
  0%   { transform: translateX(-50%) translateY(0); }
  100% { transform: translateX(-50%) translateY(-3px); }
}

/* Muted price for products without a fixed price (rillettes/soupes/plateaux) */
.prod__price--muted {
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: 6px 12px;
  border: 1px solid rgba(240,180,60,0.35);
  border-radius: 999px;
  background: rgba(240,180,60,0.06);
  display: inline-block;
  margin: 10px auto 0;
}

/* Service card (Plateaux sur commande) — subtle gold accent */
.prod--service {
  border-color: rgba(240,180,60,0.28);
  background: linear-gradient(180deg, rgba(240,180,60,0.04), var(--paper));
}


/* ════════════════════════════════════════
   HALLE — Leaflet map card (maritime-themed)
   ════════════════════════════════════════ */
.map-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 540px;
  border-radius: 28px;
  overflow: hidden;
  /* Subtle double border: outer cream + inner gold hairline */
  border: 1px solid rgba(240,180,60,0.30);
  background: var(--paper);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.7) inset,
    0 30px 60px -18px rgba(10,21,48,0.25),
    0 12px 30px -14px rgba(10,21,48,0.18);
}
.map-card__leaflet {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: var(--paper);
  /* Warm sepia/maritime tint — vintage nautical chart feel */
  filter: saturate(0.45) sepia(0.18) brightness(1.02) contrast(1.04);
}

/* Soft vignette overlay for depth */
.map-card::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 400;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 70% at 50% 50%, transparent 55%, rgba(10,21,48,0.10) 100%),
    linear-gradient(180deg, rgba(248,244,232,0.15) 0%, transparent 30%);
  border-radius: 28px;
}

/* Compass rose decoration in top-right corner */
.map-card::after {
  content: '';
  position: absolute;
  top: 16px; right: 16px;
  width: 42px; height: 42px;
  z-index: 500;
  pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><g fill='none' stroke='%23C8902A' stroke-width='1.2'><circle cx='30' cy='30' r='22'/><circle cx='30' cy='30' r='14'/></g><g fill='%23C8902A'><polygon points='30,6 33,28 30,30 27,28'/><polygon points='30,54 33,32 30,30 27,32' opacity='0.5'/><polygon points='6,30 28,33 30,30 28,27' opacity='0.5'/><polygon points='54,30 32,33 30,30 32,27' opacity='0.5'/></g><text x='30' y='5' text-anchor='middle' font-family='Inter' font-size='5' font-weight='600' fill='%230A1530'>N</text></svg>") no-repeat center;
  background-size: contain;
  opacity: 0.75;
  filter: drop-shadow(0 2px 4px rgba(10,21,48,0.20));
}

.map-card__caption {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 10.5px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255,255,255,0.94);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(240,180,60,0.35);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.6) inset,
    0 6px 18px -6px rgba(10,21,48,0.25);
}

/* Leaflet overrides */
.leaflet-container {
  font-family: var(--sans-2);
  background: var(--paper);
}
.leaflet-control-attribution {
  font-size: 9px !important;
  background: rgba(255,255,255,0.75) !important;
  padding: 1px 6px !important;
  color: var(--ink-mute) !important;
  border-radius: 6px 0 0 0 !important;
}
.leaflet-control-attribution a { color: var(--ink-mute) !important; }
.leaflet-control-zoom {
  border: none !important;
  box-shadow: none !important;
}
.leaflet-control-zoom a {
  background-color: rgba(255,255,255,0.95) !important;
  color: var(--ink) !important;
  border: 1px solid rgba(240,180,60,0.25) !important;
  border-radius: 8px !important;
  margin-bottom: 4px !important;
  backdrop-filter: blur(8px);
  font-weight: 400 !important;
  width: 30px !important; height: 30px !important;
  line-height: 30px !important;
  box-shadow: 0 4px 10px -4px rgba(10,21,48,0.18);
}
.leaflet-control-zoom a:hover {
  background-color: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

/* Custom marker (gold pulse, stronger) */
.surio-marker {
  position: relative;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--paper);
  box-shadow:
    0 0 0 1px rgba(200,144,42,0.5),
    0 6px 18px rgba(240,180,60,0.65),
    0 0 24px rgba(240,180,60,0.45);
}
.surio-marker::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0.7;
  animation: marker-pulse 2.4s ease-out infinite;
}
.surio-marker::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  opacity: 0.45;
  animation: marker-pulse 2.4s ease-out infinite;
  animation-delay: 0.6s;
}
@keyframes marker-pulse {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.6); opacity: 0;   }
}

.addr {
  display: flex; flex-direction: column; gap: 2px;
  font-style: normal;
}
.addr__line {
  font: 500 17px/1.4 var(--sans-2);
  letter-spacing: -0.012em;
  color: var(--ink);
}
.addr__line--mono {
  font: 400 11px/1.4 var(--mono);
  letter-spacing: 0.12em;
  color: var(--ink-mute);
  margin-top: 6px;
}

.hours {
  display: flex; gap: 28px;
  margin: 0;
  padding: 0;
}
.hours div { display: flex; flex-direction: column; gap: 4px; }
.hours dt {
  margin: 0;
  font: 500 11px/1 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hours dd {
  margin: 0;
  font: 500 19px/1 var(--sans);
  letter-spacing: -0.018em;
  color: var(--ink);
}
.hours .closed dd {
  color: var(--ink-mute);
  text-decoration: line-through;
  text-decoration-color: var(--gold);
}


/* ════════════════════════════════════════
   COMMANDER — mega phone CTA
   ════════════════════════════════════════ */
.commander__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.phone-mega {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 24px;
  padding: 36px 64px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--hair-dark);
  border-radius: 32px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(.22,.61,.36,1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease;
}
.phone-mega:hover {
  transform: translateY(-3px) scale(1.01);
  background: linear-gradient(180deg, rgba(240,180,60,0.18), rgba(240,180,60,0.05));
  border-color: var(--gold);
  box-shadow: 0 24px 60px -16px rgba(240,180,60,0.45);
}
.phone-mega__num {
  font: 600 clamp(36px, 6vw, 72px)/1 var(--sans);
  letter-spacing: -0.025em;
  color: var(--on-dark);
  font-feature-settings: 'tnum' 1;
}
.phone-mega__sub {
  font: 500 12px/1 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.foot {
  background: var(--bg-soft);
  border-top: 1px solid var(--hair);
  padding: 60px 22px 28px;
}
.foot__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 30px;
  align-items: center;
}
.foot__brand {
  display: flex; align-items: center; gap: 14px;
}
.foot__brand img { object-fit: contain; }
.foot__brand p {
  margin: 0;
  font: 400 13px/1.45 var(--sans-2);
  color: var(--ink-mute);
}
.foot__brand strong {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--ink);
}
.foot__meta {
  display: flex; flex-direction: column; gap: 4px;
  font: 400 12px/1.5 var(--mono);
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.foot__phone {
  font: 600 18px/1 var(--sans);
  letter-spacing: -0.018em;
  color: var(--ink);
  padding: 12px 22px;
  border: 1px solid var(--hair);
  border-radius: 999px;
  background: var(--paper);
  transition: background 0.25s ease, color 0.25s ease;
}
.foot__phone:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.foot__legal {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
  font: 400 11px/1.4 var(--sans-2);
  color: var(--ink-mute);
}
.foot__legal p { margin: 0; }
.foot__legal-nav { display: flex; gap: 10px; align-items: center; }
.foot__legal-nav a { color: var(--ink-mute); transition: color 0.25s ease; }
.foot__legal-nav a:hover { color: var(--ink); }
.foot__legal-nav .sep { opacity: 0.5; }

/* ISI Digital signature — bottom of footer */
.foot__signature {
  max-width: 1200px;
  margin: 22px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--hair);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font: 400 11px/1 var(--sans-2);
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.foot__signature-label {
  font: 400 10px/1 var(--mono);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
}
.foot__signature-link {
  display: inline-flex; align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: transparent;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(.22,.61,.36,1);
}
.foot__signature-link img {
  height: 22px; width: auto;
  opacity: 0.75;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.foot__signature-link:hover {
  background: rgba(28,215,217,0.08);
  transform: translateY(-1px);
}
.foot__signature-link:hover img {
  opacity: 1;
  transform: scale(1.03);
}

/* ISI Digital wordmark — inline HTML/CSS (system-font safe) */
.isi-logo {
  display: inline-flex;
  align-items: baseline;
  font-family: 'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.045em;
  color: #050505;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.isi-logo__isi,
.isi-logo__digital {
  color: inherit;
}
.isi-logo__slash {
  display: inline-block;
  color: #1CD7D9;
  transform: skewX(-14deg);
  margin: 0 2px 0 1px;
  font-weight: 900;
  font-style: normal;
}
.foot__signature-link:hover .isi-logo {
  opacity: 1;
  transform: scale(1.04);
}


/* ════════════════════════════════════════
   REVEAL — scroll-triggered fade up
   ════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(.22,.61,.36,1),
              transform 0.9s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--delay, 0s);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ════════════════════════════════════════
   REDUCED MOTION
   ════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}


/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 1024px) {
  .prods { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .prods { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .prods--duo { grid-template-columns: 1fr; max-width: 420px; gap: 20px; }
  .prod--featured {
    padding: 44px 22px 28px;
    max-width: 92vw;
    margin: 0 auto;
  }
  /* Shrink brand tag on mobile so it stays pill-shaped instead of full-width bar */
  .prod__brand-tag {
    font-size: 9px;
    letter-spacing: 0.11em;
    padding: 5px 11px;
    top: 16px;
    max-width: calc(100% - 44px);
  }
  /* Slightly smaller product image on mobile */
  .prod__media--large { width: 140px; margin: 18px auto 4px; }
  .prod--featured h3 { font-size: 19px; }
  .prod__desc { font-size: 13px; max-width: 100%; }

  /* Phone number — keep on one line + shrink */
  .phone-mega { padding: 26px 22px; max-width: 92vw; margin-left: auto; margin-right: auto; }
  .phone-mega__num {
    font-size: clamp(28px, 8.5vw, 40px);
    white-space: nowrap;
    letter-spacing: -0.03em;
  }
  .phone-mega__sub { font-size: 10px; letter-spacing: 0.14em; }

  /* Hide the mouse scroll cue on mobile — clashes with hero__steps dots */
  .hero .scroll-hint,
  .scroll-hint { display: none !important; }

  /* Bigger Surio II logo in nav on mobile — was way too small */
  .nav__brand img { width: 26px; height: 26px; }
  .nav__brand span { font-size: 15px; }

  /* Négoce cards — more premium mobile treatment */
  .prod--featured {
    padding: 46px 20px 26px;
    border-radius: 22px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.7) inset,
      0 20px 40px -18px rgba(10,21,48,0.18),
      0 8px 20px -12px rgba(10,21,48,0.12);
  }
  .prod--featured::before {
    /* Reduce the corner shimmer on mobile so it's more subtle */
    width: 140px; height: 140px;
    top: -30%; right: -20%;
  }
  .prod__brand-tag {
    top: 14px;
    padding: 4px 10px;
  }
  .prod__media--large img {
    filter:
      drop-shadow(0 12px 22px rgba(10,21,48,0.20))
      drop-shadow(0 0 22px rgba(240,180,60,0.32));
  }
  .prod__divider { width: 48px; margin: 6px auto 4px; }
  .prod--featured h3 {
    font-size: 20px;
    margin-top: 2px;
  }
  .prod__desc {
    font-size: 12.5px;
    line-height: 1.5;
    padding: 0 6px;
  }

  /* Hero — more breathing room on mobile */
  .hero__inner { padding: clamp(72px, 8vw, 100px) 22px clamp(30px, 4vw, 50px); gap: 12px; }
  .hero .display { font-size: clamp(32px, 8vw, 56px); }
  .hero .lede { max-width: 460px; font-size: 15px; }
  .hero__stage {
    width: clamp(200px, 60vw, 320px);
    margin: 0 auto 44px;
  }
  .hero__steps { gap: 5px; margin-top: 14px; }
  .hero__step { width: 14px; height: 2.5px; }
  .hero__step.is-active { width: 26px; }
  .hero__caption {
    bottom: -46px;
    padding: 7px 12px;
    font-size: 11px;
  }
  .hero__caption-num { font-size: 10px; }
  .hero__caption-name { font-size: 13px; }
  .hero__caption-sub { font-size: 10px; }

  /* Footer signature — more elegant spacing */
  .foot__signature { margin-top: 18px; padding-top: 18px; gap: 10px; }
  .foot__signature-label { font-size: 9px; letter-spacing: 0.24em; }
  .isi-logo { font-size: 18px; }

  /* Huîtres service pill — allow text to wrap on mobile */
  .huitres__service {
    white-space: normal;
    padding: 9px 14px 9px 10px;
    max-width: 300px;
    text-align: center;
  }
  .huitres__service-text { font-size: 12px; }
  .huitres__visual { margin-bottom: 40px; }
}
@media (max-width: 980px) {
  .huitres__inner { grid-template-columns: 1fr; gap: 30px; }
  .huitres__text { text-align: center; align-items: center; }
  .huitres__text .lede--left { text-align: center; }
  .huitres__visual { max-width: 420px; margin: 0 auto; }
}
@media (max-width: 980px) {
  .catch__row,
  .catch__row--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .catch__row--reverse .catch__row-visual { order: 1; }
  .catch__row--reverse .catch-card        { order: 2; }
  .catch__row-visual { max-width: 380px; margin: 0 auto; }
  .anatomy-scroll__grid { grid-template-columns: 1fr; gap: 30px; }
  .anatomy-scroll__stage { position: relative; top: auto; max-width: 460px; margin: 0 auto; }
  .anatomy-legend { padding-top: 30px; padding-bottom: 60px; gap: 24px; }
  .catch-card__meta { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__inner { padding: 0 16px; height: 44px; }
  .section { padding: 90px 18px; }
  .split__inner { grid-template-columns: 1fr; gap: 40px; }
  .split__text { text-align: center; align-items: center; }
  .split__text .lede--left { text-align: center; }
  .visual-card { max-width: 460px; margin: 0 auto; }
  .hours { flex-direction: column; gap: 14px; align-items: center; }
  .foot__inner { grid-template-columns: 1fr; gap: 22px; text-align: center; }
  .foot__brand { justify-content: center; }
  .foot__meta { align-items: center; }
  .foot__legal { flex-direction: column; text-align: center; }
  .catch-card { padding: 24px 20px; }
  .catch-card__meta { grid-template-columns: 1fr; gap: 10px; padding-top: 12px; }
}
