/* ============================================================
   L'INSTANT HYPNOTIQUE — Production Design System
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  /* Site conçu en mode clair uniquement. `only light` empêche le navigateur
     d'override (Samsung Internet, Chrome forced dark, Edge). forced-color-adjust
     bloque le mode contraste élevé. La media query annule les bascules dark. */
  color-scheme: only light;
  forced-color-adjust: none;

  --c-bg:        #EFE8DE;
  --c-bg-soft:   #F5EFE6;
  --c-ivory:     #F7F3ED;
  --c-paper:     #FAF6EF;
  --c-taupe:     #6B5A4A;
  --c-taupe-2:   #5A4A3C;
  --c-taupe-3:   #897463;
  --c-stone:     #A89685;
  --c-line:      #D9CFBF;
  --c-line-soft: #E5DDD0;
  --c-ink:       #2E2A26;
  --c-ink-soft:  #4A433C;
  --c-mute:      #7C7268;
  --c-accent:    #C9A876;

  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter Tight', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  --pad-x: clamp(20px, 5vw, 80px);
  --max-w: 1280px;
  --max-w-text: 720px;

  --shadow-card: 0 1px 2px rgba(46,42,38,0.04), 0 8px 24px rgba(46,42,38,0.05);
  --shadow-soft: 0 1px 2px rgba(46,42,38,0.03);

  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: only light; forced-color-adjust: none; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }

/* Bloque les overrides dark mode du navigateur (Samsung Internet, Chrome forced dark) */
@media (prefers-color-scheme: dark) {
  :root { color-scheme: only light; }
  html, body { background: #EFE8DE !important; color: #2E2A26 !important; }
}

body {
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 100vw;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; }
::selection { background: var(--c-taupe); color: var(--c-paper); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.015em; }
h1 { font-family: var(--f-serif); font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; }
h2 { font-family: var(--f-serif); font-size: clamp(30px, 3.6vw, 52px); line-height: 1.08; }
h3 { font-family: var(--f-serif); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.2; }
h4 { font-family: var(--f-sans); font-size: 14px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--c-mute); }
p { margin: 0; text-wrap: pretty; }

.eyebrow {
  font-family: var(--f-sans);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 500;
}
.lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-ink-soft);
  max-width: var(--max-w-text);
}

/* ---------- Layout ---------- */
.shell { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }
.section { padding: clamp(64px, 9vw, 140px) 0; }
.section-tight { padding: clamp(48px, 6vw, 96px) 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--r-pill);
  font-family: var(--f-sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg.arrow { transition: transform 0.3s ease; }
.btn:hover svg.arrow { transform: translateX(3px); }

.btn-light {
  background: var(--c-paper);
  color: var(--c-taupe-2);
  border-color: var(--c-paper);
}
.btn-light:hover { background: transparent; color: var(--c-paper); border-color: var(--c-paper); }

.btn-dark {
  background: var(--c-taupe);
  color: var(--c-paper);
  border-color: var(--c-taupe);
}
.btn-dark:hover { background: var(--c-taupe-2); border-color: var(--c-taupe-2); }

.btn-ghost {
  background: transparent;
  color: var(--c-taupe-2);
  border-color: var(--c-taupe-2);
}
.btn-ghost:hover { background: var(--c-taupe-2); color: var(--c-paper); }

.btn-outline-light {
  background: transparent;
  color: var(--c-paper);
  border: 1px solid rgba(247,243,237,0.4);
}
.btn-outline-light:hover { background: rgba(247,243,237,0.12); }

/* ---------- Inline link ---------- */
.ilink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--c-taupe-2);
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 3px;
  transition: all var(--transition);
}
.ilink:hover { color: var(--c-ink); border-color: var(--c-taupe); }
.ilink svg.arrow { transition: transform 0.3s; }
.ilink:hover svg.arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(239, 232, 222, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(217, 207, 191, 0.5);
  transition: background 0.3s, border-color 0.3s;
}
.site-header.on-dark {
  background: rgba(107, 90, 74, 0.55);
  border-bottom-color: rgba(247, 243, 237, 0.12);
}
.site-header .shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--c-ink-soft);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1180px) {
  .nav-links { gap: 22px; font-size: 13px; }
}
.site-header.on-dark .nav-links,
.site-header.on-dark .wordmark { color: var(--c-paper); }
.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 0.65; }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: currentColor;
}
.nav-right {
  justify-self: end;
  display: flex;
  gap: 28px;
  align-items: center;
}

/* Wordmark */
.wordmark {
  justify-self: center;
  font-family: var(--f-serif);
  text-align: center;
  line-height: 0.92;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--c-ink);
  text-decoration: none;
}
.wordmark .l1, .wordmark .l2 { display: block; }
.wordmark .ornament {
  display: block;
  width: 32px;
  height: 1px;
  background: currentColor;
  margin: 6px auto;
  opacity: 0.5;
}

/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-ink);
  margin: 5px 0;
  transition: all 0.3s ease;
}
.site-header.on-dark .hamburger span { background: var(--c-paper); }

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-taupe);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a {
  font-family: var(--f-serif);
  font-size: 32px;
  color: var(--c-paper);
  transition: opacity 0.2s;
}
.mobile-nav a:hover { opacity: 0.65; }
.mobile-nav a.active {
  border-bottom: 1px solid rgba(247,243,237,0.5);
  padding-bottom: 4px;
}
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(247,243,237,0.3);
  border-radius: 50%;
  color: var(--c-paper);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-nav-close:hover { background: rgba(247,243,237,0.1); border-color: rgba(247,243,237,0.6); }

/* ---------- Hero ---------- */
.hero {
  background: var(--c-taupe);
  color: var(--c-paper);
  padding: 28px;
  border-bottom-left-radius: var(--r-xl);
  border-bottom-right-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  grid-template-areas:
    "text image"
    "cta  image";
  grid-template-rows: auto 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px) clamp(48px, 7vw, 80px);
}
.hero h1 { color: var(--c-paper); }
.hero .lede { color: rgba(247,243,237,0.78); font-size: 15px; max-width: 460px; }
.hero-text { grid-area: text; }
.hero-cta { grid-area: cta; display: flex; flex-direction: column; gap: 20px; margin-top: 32px; align-items: flex-start; }
.hero-image {
  grid-area: image;
  border-radius: var(--r-lg);
  min-height: 480px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}
.hero-image img { object-position: center 22%; }
.hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero variant — À propos (2 cols simple, sans grid-template-areas) */
.hero-apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px) clamp(48px, 7vw, 80px);
  position: relative;
  z-index: 2;
}
.hero-apropos-image {
  grid-area: auto;
  min-height: 540px;
  align-self: stretch;
}

/* Hero sparkle canvas (paillettes animées) */
.hero-sparkles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

/* Hero sparkle overlay */
.hero-sparkle-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 50% 0%, transparent 0%, rgba(107,90,74,0.35) 65%, rgba(107,90,74,0.85) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-bg-soft);
  border-top: 1px solid var(--c-line);
  padding: 72px 0 32px;
  color: var(--c-ink-soft);
  font-size: 13.5px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-line);
}
.footer-col h5 {
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { transition: color 0.2s; }
.footer-col a:hover { color: var(--c-taupe); }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--c-mute);
}
.footer-disclaimer {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--c-mute);
  font-style: italic;
  max-width: 720px;
}

.socials { display: flex; gap: 14px; }
.socials a { opacity: 0.8; transition: opacity 0.2s; }
.socials a:hover { opacity: 1; }

.footer-ig-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 8px 4px;
  font-size: 13px;
  color: var(--c-ink-soft);
  text-decoration: none;
  border-bottom: 1px solid var(--c-line);
  transition: color 0.2s, border-color 0.2s;
}
.footer-ig-link:hover { color: var(--c-taupe); border-bottom-color: var(--c-taupe); }

/* ---------- Cards ---------- */
.card {
  background: var(--c-ivory);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(46,42,38,0.08), 0 16px 40px rgba(46,42,38,0.08); }

/* Card wrapped in <a> to make whole card clickable */
.card-link { color: inherit; text-decoration: none; }
.card-link h3 { color: var(--c-ink); transition: color var(--transition); }
.card-link:hover h3 { color: var(--c-taupe); }
.card-link:hover .ilink { color: var(--c-ink); }

.card-quiet {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: 28px;
  border: 1px solid var(--c-line-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-quiet:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

/* ---------- Tag (catégorie d'accompagnement, anciennement pilule) ---------- */
.tag {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--c-line);
  transition: color var(--transition), border-color var(--transition);
}
.tag.dark { color: rgba(247,243,237,0.78); border-bottom-color: rgba(247,243,237,0.35); }

/* ---------- Image containers ---------- */
.img-cover {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder gradients (for images not yet available) */
.imgph {
  position: relative;
  background: linear-gradient(135deg, #C9BBA7 0%, #A89685 60%, #8C7864 100%);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  color: rgba(247,243,237,0.85);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.imgph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(255,250,242,0.25), transparent 60%),
    radial-gradient(80% 40% at 100% 100%, rgba(46,42,38,0.25), transparent 60%);
}
.imgph.scene-1 {
  background:
    radial-gradient(60% 50% at 30% 30%, rgba(247,243,237,0.4), transparent 60%),
    linear-gradient(160deg, #A89685 0%, #6B5A4A 100%);
}
.imgph.scene-2 {
  background:
    radial-gradient(70% 50% at 70% 30%, rgba(255,250,242,0.3), transparent 70%),
    linear-gradient(200deg, #C9BBA7 0%, #897463 100%);
}
.imgph.scene-3 {
  background:
    radial-gradient(50% 60% at 50% 40%, rgba(255,250,242,0.35), transparent 70%),
    linear-gradient(140deg, #BDA992 0%, #7A6B5A 100%);
}
.imgph .ph-label { position: relative; z-index: 1; }

/* ---------- Prestation cards with real photos ---------- */
.card-prestation {
  cursor: pointer;
  background: var(--c-ivory);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}
.card-prestation:hover { transform: translateY(-4px); box-shadow: 0 4px 12px rgba(46,42,38,0.08), 0 16px 40px rgba(46,42,38,0.08); }
.card-prestation.active {
  background: var(--c-taupe);
  color: var(--c-paper);
}
.card-prestation.active h3 { color: var(--c-paper); }
.card-prestation.active .tag { color: rgba(247,243,237,0.78); border-bottom-color: rgba(247,243,237,0.35); }
.card-prestation.active .card-desc { color: rgba(247,243,237,0.7); }

.card-prestation-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* ---------- Ornament ---------- */
.ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--c-stone);
  justify-content: center;
  margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 0 0 60px;
  height: 1px;
  background: currentColor;
  opacity: 0.5;
}
.ornament-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

/* ---------- Stat cards (page Entreprise) ---------- */
.stat-card {
  padding: 36px 28px;
  background: var(--c-paper);
  border: 1px solid var(--c-line-soft);
  border-radius: var(--r-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.stat-number {
  font-family: var(--f-serif);
  font-size: clamp(40px, 4.6vw, 64px);
  line-height: 1;
  color: var(--c-taupe-2);
  letter-spacing: -0.01em;
}
.stat-unit {
  font-family: var(--f-serif);
  font-size: 0.5em;
  font-style: italic;
  color: var(--c-taupe-3);
  letter-spacing: 0;
}
.stat-desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--c-mute);
  margin: 0;
}
@media (max-width: 920px) {
  .stat-card { min-height: 160px; padding: 28px 20px; }
}

/* ---------- SnapWidget Instagram ---------- */
.snapwidget-container {
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--r-md);
  overflow: hidden;
}
.snapwidget-widget { border: none; width: 100%; display: block; }
.snapwidget-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--c-mute);
  font-style: italic;
  margin-top: 14px;
}
@media (max-width: 700px) {
  .snapwidget-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    border-radius: 0;
    scroll-snap-type: x mandatory;
  }
  .snapwidget-widget {
    width: 900px !important;
    min-width: 900px;
  }
  .snapwidget-hint { display: block; }
}

/* ---------- CTA Block (fin de page) ---------- */
.cta-block {
  background: var(--c-taupe);
  border-radius: var(--r-xl);
  padding: clamp(40px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  color: var(--c-paper);
}
.cta-block-actions { display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.cta-block-note {
  font-size: 12px;
  color: rgba(247,243,237,0.55);
  margin-top: 14px;
}
.ilink-light, .ilink-dark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  letter-spacing: 0.005em;
  padding-bottom: 6px;
  background: transparent;
  border: none;
  border-bottom: 1px solid;
  cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  text-decoration: none;
}
.ilink-light { color: var(--c-paper); border-bottom-color: rgba(247,243,237,0.4); }
.ilink-light:hover { border-bottom-color: var(--c-paper); opacity: 0.92; }
.ilink-dark { color: var(--c-taupe-2); border-bottom-color: var(--c-line); }
.ilink-dark:hover { border-bottom-color: var(--c-taupe-2); opacity: 0.85; }
.ilink-light svg.arrow, .ilink-dark svg.arrow { transition: transform 0.3s ease; }
.ilink-light:hover svg.arrow, .ilink-dark:hover svg.arrow { transform: translateX(4px); }
.ilink-light[disabled], .ilink-dark[disabled] { opacity: 0.4; cursor: not-allowed; }
@media (max-width: 760px) {
  .cta-block {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: clamp(32px, 8vw, 56px) clamp(24px, 6vw, 40px);
  }
  .cta-block-actions { gap: 16px; }
  .ilink-light { font-size: 18px; }
}

/* ---------- Dark background ---------- */
.dark-bg { background: var(--c-taupe); color: var(--c-paper); }
.dark-bg .muted { color: rgba(247,243,237,0.65); }
.dark-bg .lede { color: rgba(247,243,237,0.78); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-mute);
}
.field input, .field textarea, .field select {
  font-family: var(--f-sans);
  font-size: 14px;
  padding: 14px 16px;
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-sm);
  color: var(--c-ink);
  transition: border-color 0.2s;
  outline: none;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--c-taupe);
}
.field textarea { resize: vertical; min-height: 140px; }
.field-error { border-color: #a04a4a !important; }
.field .error-msg { color: #a04a4a; font-size: 12px; }

.checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--c-ink-soft);
  cursor: pointer;
}
.checkbox input { margin-top: 3px; accent-color: var(--c-taupe); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.muted { color: var(--c-mute); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
}
.fade-up.visible {
  animation: fadeUp 0.7s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

/* Staggered children */
.fade-up.visible:nth-child(1) { animation-delay: 0s; }
.fade-up.visible:nth-child(2) { animation-delay: 0.08s; }
.fade-up.visible:nth-child(3) { animation-delay: 0.16s; }
.fade-up.visible:nth-child(4) { animation-delay: 0.24s; }
.fade-up.visible:nth-child(5) { animation-delay: 0.32s; }
.fade-up.visible:nth-child(6) { animation-delay: 0.40s; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "text"
      "image"
      "cta";
    grid-template-rows: auto auto auto;
  }
  .hero-image { min-height: 460px; }
  .hero-image img { object-position: center 18%; }
  .hero-cta { margin-top: 8px; }
  .hero-apropos-grid { grid-template-columns: 1fr; }
  .hero-apropos-image { min-height: 380px; order: -1; }
  .hero-apropos-text { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none !important; }
  .nav-right .nav-links { display: none !important; }
  .hamburger { display: block; }
  .mobile-nav { display: flex; }
  .site-header .shell { grid-template-columns: auto 1fr auto; }
  .nav-right { justify-self: end; }
}

@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  .hero { padding: 16px; }
  .hero-image { min-height: 420px; }
}
