/* ============================================================
   Dr Elie Capelluto — Responsive design
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:      #1B2B3A;
  --navy-deep: #111D28;
  --teal:      #2E7D6B;
  --teal-dark: #236B5A;
  --sage:      #7AAE9E;
  --sage-light:#A8C9BE;
  --mist:      #EDF4F2;
  --ivory:     #FAFAF8;
  --warm:      #F5F0EB;
  --text:      #2C3A47;
  --light:     #6B7F8E;
  --border:    #D8E6E2;
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'Inter', system-ui, sans-serif;

  --header-h:  80px;
  --section-x: clamp(4rem, 8vw, 9rem);
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

::selection {
  background: rgba(46, 125, 107, 0.18);
  color: var(--navy);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

/* ── Loader ─────────────────────────────────────────────── */

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loader-line {
  width: 48px;
  height: 1px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--teal);
  transform: translateX(-100%);
  animation: loaderSlide 1.2s var(--ease-out) infinite;
}

.loader-text {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
}

@keyframes loaderSlide {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(0); }
  100% { transform: translateX(100%); }
}

/* ── Cursor glow (desktop) ────────────────────────────── */

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 125, 107, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

body.has-cursor .cursor-glow {
  opacity: 1;
}

/* ── Header / Nav ───────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.header.is-top {
  background: transparent;
}

.header.is-scrolled {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 100%;
  padding: 0 var(--section-x);
  max-width: 1600px;
  margin: 0 auto;
}

.nav-logo {
  justify-self: start;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-item--dropdown {
  position: relative;
}

.nav-link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  gap: 0.4rem;
}

.nav-chevron {
  transition: transform 0.3s var(--ease-out);
}

.nav-item--dropdown.is-open .nav-chevron,
.nav-item--dropdown:hover .nav-chevron {
  transform: rotate(180deg);
}

.nav-mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 580px;
  padding: 1.2rem 1.3rem 1.3rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(27, 43, 58, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), visibility 0.3s;
  z-index: 300;
}

.nav-item--dropdown.is-open .nav-mega,
.nav-item--dropdown:hover .nav-mega {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-mega-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.nav-mega-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.nav-mega-all {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.25s;
}

.nav-mega-all:hover {
  color: var(--navy);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}

.nav-mega-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s var(--ease-out);
}

.nav-mega-item:hover {
  background: var(--mist);
  transform: translateX(2px);
}

.nav-mega-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--mist);
  border-radius: 50%;
  color: var(--teal);
}

.nav-mega-icon svg {
  width: 18px;
  height: 18px;
}

.nav-mega-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-mega-text strong {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
}

.nav-mega-text span {
  font-size: 0.68rem;
  color: var(--light);
  letter-spacing: 0.02em;
  text-transform: none;
}

.nav-mega-item.is-active {
  background: var(--mist);
}

.nav-mega-item.is-active .nav-mega-text strong {
  color: var(--teal);
}

.nav-link--dropdown.is-active {
  color: var(--navy);
}

.nav-link {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
  text-decoration: none;
  transition: color 0.25s;
  line-height: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem 0.5rem 0.45rem 1.6rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: none;
  border: 1px solid var(--border);
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.4s var(--ease-out), border-color 0.4s, box-shadow 0.4s, transform 0.35s var(--ease-spring);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
  z-index: 0;
}

.nav-cta-label,
.nav-cta-icon {
  position: relative;
  z-index: 1;
}

.nav-cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mist);
  color: var(--teal);
  transition: background 0.4s, color 0.4s, transform 0.35s var(--ease-spring);
}

.nav-cta:hover {
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(46, 125, 107, 0.22);
  transform: translateY(-1px);
}

.nav-cta:hover::before {
  transform: scaleX(1);
}

.nav-cta:hover .nav-cta-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateX(2px);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--navy);
  transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
  overflow-y: auto;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-inner {
  max-width: 480px;
  margin: 0 auto;
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-link {
  display: block;
  padding: 0.85rem 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}

.mobile-link--sub {
  padding-left: 1.25rem;
  font-size: 1rem;
  font-family: var(--sans);
  color: var(--light);
}

.mobile-link:hover {
  color: var(--teal);
}

body.menu-open {
  overflow: hidden;
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  padding: 1rem 2.2rem;
  border-radius: 2px;
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 43, 58, 0.15);
}

.btn-primary svg {
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-ghost {
  color: var(--navy);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--border);
  background: none;
}

.btn-ghost:hover {
  color: var(--teal);
  border-color: var(--teal);
}

.btn-outline {
  color: var(--teal);
  padding: 0.85rem 1.8rem;
  border: 1px solid var(--border);
  background: transparent;
  margin-top: 2rem;
}

.btn-outline:hover {
  border-color: var(--teal);
  background: var(--mist);
}

/* ── Reveal animations ──────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: auto;
  padding-top: var(--header-h);
  overflow: hidden;
  background: var(--ivory);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: auto;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 2rem;
  padding-top: 4rem;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-intro {
  max-width: none;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
  animation: wordReveal 1s var(--ease-out) forwards;
}

.hero-title .word--accent {
  font-style: italic;
  color: var(--teal);
}

.title-line:nth-child(1) .word:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(1) .word:nth-child(2) { animation-delay: 0.3s; }
.title-line:nth-child(2) .word:nth-child(1) { animation-delay: 0.4s; }
.title-line:nth-child(2) .word:nth-child(2) { animation-delay: 0.5s; }
.title-line:nth-child(2) .word:nth-child(3) { animation-delay: 0.6s; }
.title-line:nth-child(2) .word:nth-child(4) { animation-delay: 0.7s; }
.title-line:nth-child(2) .word:nth-child(5) { animation-delay: 0.8s; }
.title-line:nth-child(3) .word:nth-child(1) { animation-delay: 0.9s; }
.title-line:nth-child(3) .word:nth-child(2) { animation-delay: 1.0s; }
.title-line:nth-child(3) .word:nth-child(3) { animation-delay: 1.1s; }

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--light);
  margin-bottom: 1.4rem;
  line-height: 1.4;
}

.hero-tags {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-tag {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 0.45rem 1rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s, border-color 0.3s;
}

.hero-tag:hover {
  background: var(--mist);
  border-color: var(--sage);
}

.hero-body {
  font-size: 0.95rem;
  color: var(--light);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 2.8rem;
}

.hero .hero-body.reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.hero-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 43, 58, 0.08);
  border-color: var(--sage);
}

.hero-feature-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-feature strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}

.hero-feature span {
  font-size: 0.68rem;
  color: var(--light);
}

.hero-blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  width: 100%;
}

.hero-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.2rem 1.15rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.hero-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 43, 58, 0.08);
  border-color: var(--sage);
}

.hero-block-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

.hero-block-title {
  display: block;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.hero-block-desc {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.55;
  margin: 0;
}

.hero .hero-blocks.reveal {
  opacity: 1;
  transform: translateY(0);
}

.hero-stats-bar {
  width: 100%;
  padding: 1.25rem var(--section-x) 2rem;
  box-sizing: border-box;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  width: 100%;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 5.75rem;
  padding: 1.25rem 1rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(27, 43, 58, 0.08);
  border-color: var(--sage);
}

.hero-stat-value {
  display: block;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.3rem;
}

.hero-stat-value--text {
  font-size: 0.95rem;
  line-height: 1.35;
  margin-bottom: 0;
}

.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--light);
}

.hero-metrics {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.8rem 0;
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.hero-metric strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-metric span {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--light);
}

.hero-trust {
  display: flex;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--light);
  letter-spacing: 0.02em;
}

.trust-item svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* Hero monitor laparoscopie interactive */
.hero-right {
  display: flex;
  align-items: stretch;
  justify-content: center;
  min-height: 100%;
  padding: 0;
}

.hero-monitor {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  background: linear-gradient(155deg, #2a3d48 0%, #1B2B3A 55%, #152230 100%);
  border: 1px solid rgba(122, 174, 158, 0.22);
  border-radius: 6px;
  box-shadow:
    0 20px 56px rgba(27, 43, 58, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition: box-shadow 0.45s var(--ease-out), border-color 0.45s;
}

.hero-monitor.is-active {
  border-color: rgba(122, 174, 158, 0.4);
  box-shadow:
    0 28px 72px rgba(46, 125, 107, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.hero-monitor-hud {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(122, 174, 158, 0.12);
  flex-shrink: 0;
}

.hero-monitor-rec {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.45);
}

.hero-monitor-rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5a6f7a;
  transition: background 0.35s;
}

.hero-monitor.is-active .hero-monitor-rec {
  color: rgba(255, 255, 255, 0.7);
}

.hero-monitor.is-active .hero-monitor-rec-dot {
  background: #d46452;
  box-shadow: 0 0 8px rgba(212, 100, 82, 0.65);
  animation: recPulse 1.6s ease-in-out infinite;
}

.hero-monitor-title {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(122, 174, 158, 0.85);
}

.hero-monitor-screen {
  flex: 1;
  position: relative;
  min-height: 380px;
  cursor: crosshair;
  transform-style: preserve-3d;
  will-change: transform;
}

.hero-monitor-screen.is-tracking {
  cursor: none;
}

.hero-monitor-screen.is-inside-zone {
  cursor: none;
}

.hero-monitor-screen.is-outside-zone {
  cursor: crosshair;
}

.hero-monitor-screen.is-outside-zone .monitor-instruments {
  opacity: 0.55;
  transition: opacity 0.25s;
}

.hero-monitor-screen.is-inside-zone .monitor-instruments {
  opacity: 1;
  transition: opacity 0.25s;
}

.monitor-belly {
  transition: stroke 0.3s, stroke-opacity 0.3s;
}

.hero-monitor-screen.is-outside-zone .monitor-belly {
  stroke: #5a8f80;
  stroke-opacity: 0.35;
}

.hero-monitor-svg {
  width: 100%;
  height: 100%;
  min-height: 380px;
  display: block;
}

.monitor-port {
  transition: stroke 0.3s, filter 0.3s;
}

.monitor-port.is-nearest {
  stroke: #7AAE9E;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 8px rgba(122, 174, 158, 0.55));
}

.monitor-instrument {
  pointer-events: none;
}

.monitor-reticle {
  pointer-events: none;
}

@keyframes recPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  width: 3px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  position: absolute;
  left: -1px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { top: 0; opacity: 1; }
  50%       { top: 36px; opacity: 0.3; }
}

/* ── Pillars (inspiré anne-dandrifosse.be) ─────────────── */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem var(--section-x) 4rem;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: var(--ivory);
}

.pillar {
  padding: 2.2rem 1.8rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: border-color 0.4s, box-shadow 0.4s;
  transform-style: preserve-3d;
}

.pillar:hover {
  border-color: var(--sage);
  box-shadow: 0 12px 32px rgba(27, 43, 58, 0.06);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  background: var(--mist);
  border-radius: 50%;
  margin-bottom: 1.2rem;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.pillar p {
  font-size: 0.82rem;
  color: var(--light);
  line-height: 1.7;
}

/* ── Services rapides ───────────────────────────────────── */

.services-quick {
  background: var(--ivory);
  max-width: none;
}

.services-quick .section-header {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.service-quick {
  display: block;
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.4s, transform 0.4s;
  transform-style: preserve-3d;
}

.service-quick:hover {
  border-color: var(--teal);
  box-shadow: 0 16px 40px rgba(27, 43, 58, 0.08);
}

.service-quick-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(122, 174, 158, 0.35);
  line-height: 1;
  display: block;
  margin-bottom: 1.2rem;
}

.service-quick h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.3;
}

.service-quick p {
  font-size: 0.86rem;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-quick-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}

/* ── Intro pédagogique ──────────────────────────────────── */

.intro-block {
  background: var(--warm);
  max-width: none;
}

.intro-inner {
  max-width: 800px;
  margin: 0 auto;
}

.intro-inner p {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.intro-inner strong {
  color: var(--text);
  font-weight: 500;
}

/* ── Trajet patient ─────────────────────────────────────── */

.journey {
  background: var(--mist);
  max-width: none;
}

.journey .section-header {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1600px;
  margin: 0 auto;
}

.journey-step {
  padding: 2.5rem 2rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  position: relative;
}

.journey-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  font-family: var(--serif);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1;
  color: rgba(46, 125, 107, 0.35);
  background: var(--mist);
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: background 0.4s, color 0.4s, box-shadow 0.4s, border-color 0.4s, transform 0.4s;
}

.journey-step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.journey-step p {
  font-size: 0.86rem;
  color: var(--light);
  line-height: 1.75;
}

/* ── Types de chirurgie (liste) ─────────────────────────── */

.surgery-types {
  max-width: 1600px;
  margin: 0 auto 3rem;
  padding: 2.5rem 3rem;
  background: var(--mist);
  border-left: 3px solid var(--teal);
}

.surgery-types p {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.surgery-types-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.surgery-types-list li {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.75;
  padding-left: 1.2rem;
  position: relative;
}

.surgery-types-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ── Suivi post-opératoire ──────────────────────────────── */

.followup {
  background: var(--ivory);
  max-width: none;
}

.followup-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.followup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.followup-item {
  padding: 2.5rem 2rem;
  background: #fff;
  border: 1px solid var(--border);
}

.followup-item h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.8rem;
}

.followup-item p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.75;
}

/* ── Témoignage ─────────────────────────────────────────── */

.testimonial {
  background: var(--warm);
  max-width: none;
}

.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-video {
  margin-top: 2.5rem;
}

.testimonial-placeholder {
  aspect-ratio: 16/9;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
}

.testimonial-placeholder span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Contact shortcuts ──────────────────────────────────── */

.contact-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}

.contact-shortcut {
  padding: 1.5rem;
  background: var(--mist);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s;
}

.contact-shortcut:hover {
  border-color: var(--teal);
  background: #fff;
}

.contact-shortcut strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.contact-shortcut span {
  font-size: 0.78rem;
  color: var(--light);
}

/* ── Marquee ────────────────────────────────────────────── */

.marquee {
  overflow: hidden;
  padding: 1.4rem 0;
  background: var(--mist);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
  padding-right: 2rem;
  white-space: nowrap;
}

.marquee-group span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--light);
  letter-spacing: 0.06em;
}

.marquee-dot {
  color: var(--sage) !important;
  font-size: 1.4rem !important;
}

@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ── Medical showcase animations ──────────────────────────── */

.med-showcase {
  padding: 7rem var(--section-x);
  background: var(--ivory);
  max-width: none;
}

.med-showcase-header {
  max-width: 600px;
  margin: 0 auto 4.5rem;
}

.med-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1600px;
  margin: 0 auto;
}

.med-panel {
  display: grid;
  grid-template-rows: 320px auto;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.med-panel:hover {
  box-shadow: 0 24px 60px rgba(27, 43, 58, 0.1);
  transform: translateY(-4px);
}

.med-panel-visual {
  position: relative;
  background: linear-gradient(145deg, var(--mist) 0%, var(--ivory) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.med-panel--colon .med-panel-visual {
  background: linear-gradient(145deg, #E8F2EF 0%, var(--ivory) 100%);
}

.med-panel--gastric .med-panel-visual {
  background: linear-gradient(145deg, #F0EBE6 0%, var(--ivory) 100%);
}

.med-svg {
  width: 90%;
  max-width: 420px;
  height: auto;
}

.med-scan-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46, 125, 107, 0.03) 50%, transparent 60%);
  animation: scanSweep 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scanSweep {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* Colon animations */
.med-panel.is-animating .colon-tumor,
.med-panel--colon:hover .colon-tumor {
  animation: tumorBeat 2s ease-in-out infinite;
}

.med-panel.is-animating .colon-tumor-pulse,
.med-panel--colon:hover .colon-tumor-pulse {
  animation: tumorRing 2s ease-out infinite;
}

.med-panel.is-animating .colon-tumor-pulse--2,
.med-panel--colon:hover .colon-tumor-pulse--2 {
  animation: tumorRing 2s ease-out infinite 0.6s;
}

.med-panel.is-animating .colon-resection,
.med-panel--colon:hover .colon-resection {
  animation: drawLine 2.5s var(--ease-out) forwards;
}

.med-panel.is-animating .colon-suture,
.med-panel--colon:hover .colon-suture {
  animation: drawLine 2s var(--ease-out) 1.5s forwards;
}

.med-panel.is-animating .colon-instrument,
.med-panel--colon:hover .colon-instrument {
  animation: instrumentMove 4s ease-in-out infinite;
}

.med-panel.is-animating .colon-scan,
.med-panel--colon:hover .colon-scan {
  animation: scanLine 3s ease-in-out infinite;
}

.med-panel.is-animating .lap-port,
.med-panel--colon:hover .lap-port {
  animation: portGlow 2s ease-in-out infinite;
}

.med-panel.is-animating .lap-port--2,
.med-panel--colon:hover .lap-port--2 {
  animation: portGlow 2s ease-in-out infinite 0.4s;
}

.med-panel.is-animating .lap-port--3,
.med-panel--colon:hover .lap-port--3 {
  animation: portGlow 2s ease-in-out infinite 0.8s;
}

@keyframes tumorBeat {
  0%, 100% { fill-opacity: 0.25; }
  50%       { fill-opacity: 0.55; }
}

@keyframes tumorRing {
  0%   { r: 14; opacity: 0.6; }
  100% { r: 28; opacity: 0; }
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes instrumentMove {
  0%, 100% { transform: translate(0, 0); opacity: 0.7; }
  50%       { transform: translate(8px, -5px); opacity: 1; }
}

@keyframes scanLine {
  0%   { transform: translateY(60px); opacity: 0; }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(280px); opacity: 0; }
}

@keyframes portGlow {
  0%, 100% { fill: transparent; stroke-opacity: 0.5; }
  50%       { fill: rgba(46, 125, 107, 0.15); stroke-opacity: 1; }
}

/* Gastric animations */
.med-panel.is-animating .sleeve-cut,
.med-panel--gastric:hover .sleeve-cut {
  animation: drawLine 3s var(--ease-out) forwards;
}

.med-panel.is-animating .stomach-volume,
.med-panel--gastric:hover .stomach-volume {
  animation: volumeShrink 4s ease-in-out infinite;
}

.med-panel.is-animating .stomach-removed,
.med-panel--gastric:hover .stomach-removed {
  animation: fadeRemoved 4s ease-in-out infinite;
}

.med-panel.is-animating .staple,
.med-panel--gastric:hover .staple {
  animation: staplePop 3s ease-in-out infinite;
}

.med-panel.is-animating .staple--2,
.med-panel--gastric:hover .staple--2 { animation-delay: 0.3s; }
.med-panel.is-animating .staple--3,
.med-panel--gastric:hover .staple--3 { animation-delay: 0.6s; }
.med-panel.is-animating .staple--4,
.med-panel--gastric:hover .staple--4 { animation-delay: 0.9s; }
.med-panel.is-animating .staple--5,
.med-panel--gastric:hover .staple--5 { animation-delay: 1.2s; }

.med-panel.is-animating .volume-label,
.med-panel--gastric:hover .volume-label {
  animation: volumePulse 4s ease-in-out infinite;
}

@keyframes volumeShrink {
  0%, 100% { transform: scaleX(1); fill-opacity: 0.2; }
  50%       { transform: scaleX(0.55); fill-opacity: 0.35; transform-origin: center; }
}

@keyframes fadeRemoved {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 0.15; }
}

@keyframes staplePop {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.4); }
}

@keyframes volumePulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1; }
}

.med-panel-info {
  padding: 2.5rem 2.8rem 3rem;
}

.med-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  background: var(--mist);
}

.med-panel-info h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.med-panel-info p {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.med-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.med-steps li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--text);
}

.step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  animation: stepBlink 3s ease-in-out infinite;
}

.med-steps li:nth-child(2) .step-dot { animation-delay: 0.5s; }
.med-steps li:nth-child(3) .step-dot { animation-delay: 1s; }

@keyframes stepBlink {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50%       { opacity: 1; transform: scale(1.2); }
}

/* Spec card mini animations */
.spec-card--animated {
  position: relative;
}

.spec-mini-viz {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 100px;
  height: 60px;
  color: var(--sage);
  opacity: 0.35;
  transition: opacity 0.4s;
  pointer-events: none;
}

.spec-mini-viz--gastric {
  width: 70px;
  height: 85px;
  top: 1rem;
  right: 1.2rem;
}

.spec-card--animated:hover .spec-mini-viz {
  opacity: 0.7;
}

.spec-mini-viz--colon .mini-tumor {
  animation: miniTumorPulse 2.5s ease-in-out infinite;
}

.spec-mini-viz--colon .mini-cut {
  animation: drawLine 2s var(--ease-out) infinite;
}

.spec-mini-viz--gastric .mini-sleeve-line {
  animation: drawLine 2.5s var(--ease-out) infinite;
}

.spec-mini-viz--gastric .mini-sleeve {
  animation: miniSleeveFill 3s ease-in-out infinite;
}

@keyframes miniTumorPulse {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 1; }
}

@keyframes miniSleeveFill {
  0%, 100% { fill-opacity: 0.1; }
  50%       { fill-opacity: 0.3; }
}

/* ── Sections ───────────────────────────────────────────── */

.section {
  padding: 8rem var(--section-x);
  max-width: 1600px;
  margin: 0 auto;
}

.section-header {
  max-width: 600px;
  margin-bottom: 5rem;
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.5vw, 3.5rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 1.4rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--light);
  line-height: 1.8;
}

/* ── About ──────────────────────────────────────────────── */

.about {
  background: var(--warm);
  max-width: none;
}

.about .section-header,
.about-grid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  overflow: hidden;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.about-img-wrap:hover .about-img {
  transform: scale(1.03);
}

.about-tag {
  position: absolute;
  bottom: -1.2rem;
  right: -1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--teal);
  color: #fff;
  padding: 1rem 1.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}

.about-heading {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.6rem;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.about-credentials {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--text);
  padding: 1rem;
  background: rgba(250, 250, 248, 0.6);
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s;
}

.cred:hover {
  border-color: var(--sage);
  background: var(--ivory);
}

.cred-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mist);
  color: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* ── Specialties ────────────────────────────────────────── */

.site-chapter {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

article[id^="spec-"] {
  scroll-margin-top: calc(var(--header-h) + 2rem);
}

/* ── Chapter gates ──────────────────────────────────────── */

.chapter-gates {
  padding: 3rem var(--section-x) 4rem;
  max-width: 1600px;
  margin: 0 auto;
}

.chapter-gates-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.chapter-gate {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 2rem 2rem 2rem 2.2rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  text-decoration: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s, background 0.4s;
}

.chapter-gate:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(27, 43, 58, 0.08);
  border-color: var(--sage);
  background: #fff;
}

.chapter-gate-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(46, 125, 107, 0.35);
  line-height: 1;
}

.chapter-gate-label {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
}

.chapter-gate-desc {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.5;
}

.chapter-gate-arrow {
  position: absolute;
  top: 2rem;
  right: 1.8rem;
  font-size: 1.1rem;
  color: var(--teal);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
}

.chapter-gate:hover .chapter-gate-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── Site chapters ──────────────────────────────────────── */

.site-chapter {
  position: relative;
}

.site-chapter--parcours {
  background: var(--warm);
}

.site-chapter--consultation {
  background: var(--ivory);
}

.chapter-header {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  padding: 5rem var(--section-x) 3rem;
  max-width: 1600px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.chapter-header-num {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 300;
  color: rgba(46, 125, 107, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.chapter-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.6rem;
}

.chapter-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.chapter-intro {
  font-size: 0.95rem;
  color: var(--light);
  line-height: 1.75;
  max-width: 560px;
}

.specialties {
  background: var(--ivory);
  max-width: none;
}

.specialties .section-header,
.specialties-bento {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.specialties-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

.spec-card--large {
  grid-row: span 2;
}

.spec-card--wide {
  grid-column: span 2;
}

.spec-card--accent {
  background: linear-gradient(145deg, var(--mist) 0%, var(--ivory) 100%);
  border-color: var(--sage);
}

.spec-card {
  position: relative;
  padding: 3.5rem 2.8rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: background 0.4s, box-shadow 0.4s var(--ease-out);
  transform-style: preserve-3d;
  will-change: transform;
}

.spec-card:hover {
  background: var(--mist);
  box-shadow: 0 24px 60px rgba(27, 43, 58, 0.1);
}

.tilt-card {
  transition: transform 0.15s ease-out, box-shadow 0.4s;
}

.spec-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.spec-icon {
  width: 48px;
  height: 48px;
  color: var(--teal);
}

.spec-icon svg {
  width: 100%;
  height: 100%;
}

.spec-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(122, 174, 158, 0.2);
  line-height: 1;
}

.spec-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}

.spec-card p {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.spec-list li {
  font-size: 0.84rem;
  color: var(--light);
  padding-left: 1.2rem;
  position: relative;
}

.spec-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
}

.spec-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out);
}

.spec-card:hover .spec-line {
  transform: scaleX(1);
}

/* ── Why / Approach ─────────────────────────────────────── */

.why {
  position: relative;
  background: var(--navy);
  max-width: none;
  padding: 8rem var(--section-x);
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 16s ease-in-out infinite;
}

.why-glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(46, 125, 107, 0.08);
  top: -10%;
  right: 10%;
}

.why-glow--2 {
  width: 400px;
  height: 400px;
  background: rgba(122, 174, 158, 0.06);
  bottom: -5%;
  left: 5%;
  animation-delay: -8s;
}

.why-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

.why .section-eyebrow {
  color: var(--sage);
}

.why .section-title {
  color: #fff;
}

.why .section-intro {
  color: rgba(255, 255, 255, 0.45);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 4rem;
}

.why-item {
  padding: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.4s;
}

.why-item:nth-child(even) {
  border-right: none;
}

.why-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.why-num {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(122, 174, 158, 0.18);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.why-item h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.9rem;
}

.why-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
}

/* ── Hospital ───────────────────────────────────────────── */

.hospital {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 600px;
}

.hospital-visual {
  position: relative;
  overflow: hidden;
}

.hospital-img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.hospital-visual:hover .hospital-img {
  transform: scale(1.04);
}

.hospital-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(237, 244, 242, 0.3) 100%);
  pointer-events: none;
}

.hospital-text {
  padding: 6rem 4rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--mist);
}

.hospital-text p {
  font-size: 0.92rem;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 1rem;
}

.hospital-info {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.info-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  color: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.15rem;
}

.info-val {
  font-size: 0.88rem;
  color: var(--light);
}

/* ── Contact ────────────────────────────────────────────── */

.contact {
  background: var(--ivory);
  max-width: none;
}

.contact-wrapper {
  max-width: 1600px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 3rem;
  background: #fff;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.95rem 1.1rem;
  border: 1px solid var(--border);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--text);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 125, 107, 0.08);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 2.5rem;
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--light);
  pointer-events: none;
}

.form-submit {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.aside-card {
  padding: 3rem;
  background: var(--warm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.aside-block h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 1rem;
}

.aside-block p {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.75;
}

.aside-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--light);
  text-decoration: none;
  margin-bottom: 0.6rem;
  transition: color 0.25s;
}

.aside-link:hover {
  color: var(--teal);
}

.aside-link svg {
  color: var(--sage);
  flex-shrink: 0;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.4rem 2rem;
  font-size: 0.86rem;
}

.hours-day {
  color: var(--text);
}

.hours-time {
  color: var(--teal);
  font-weight: 500;
}

.aside-block--urgent {
  padding: 1.2rem;
  background: rgba(46, 125, 107, 0.06);
  border-left: 3px solid var(--teal);
}

.aside-block--urgent strong {
  color: var(--teal);
  font-weight: 600;
}

/* ── Footer ─────────────────────────────────────────────── */

.footer {
  background: var(--navy-deep);
  padding: 4rem var(--section-x) 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  max-width: 1600px;
  margin: 0 auto 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--sage);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-contact a:hover {
  color: var(--sage);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}

/* ── Toast ──────────────────────────────────────────────── */

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.2rem 1.6rem;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
  box-shadow: 0 12px 40px rgba(27, 43, 58, 0.25);
  z-index: 500;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--ease-spring), opacity 0.5s;
}

.toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.toast svg {
  color: var(--sage);
  flex-shrink: 0;
}

/* ── Scrollbar (desktop) ────────────────────────────────── */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--sage);
}

/* Magnetic button base */
.magnetic {
  transition: transform 0.2s var(--ease-out);
}

/* ============================================================
   Lot 1 — Restructuration desktop premium
   ============================================================ */

:root {
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --shadow-md: 0 12px 40px rgba(27, 43, 58, 0.08);
  --shadow-lg: 0 24px 64px rgba(27, 43, 58, 0.12);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-4);
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  border-radius: 2px;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: var(--space-4);
}

*:focus-visible {
  outline: 3px solid rgba(46, 125, 107, 0.55);
  outline-offset: 3px;
}

/* Hero bold */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding-bottom: var(--space-12);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(122, 174, 158, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(46, 125, 107, 0.1), transparent 55%),
    var(--ivory);
  animation: heroMesh 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes heroMesh {
  0% { filter: hue-rotate(0deg) brightness(1); transform: scale(1); }
  100% { filter: hue-rotate(8deg) brightness(1.03); transform: scale(1.02); }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

/* Chapter gates interactive */
.chapter-gate {
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.35s, background 0.35s;
}

.chapter-gate:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.chapter-gate:hover .chapter-gate-num {
  color: var(--teal);
  transform: scale(1.08);
}

.chapter-gate-num {
  transition: transform 0.35s var(--ease-spring), color 0.35s;
}

/* Spec sections zigzag */
.spec-sections {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: var(--space-16) var(--section-x);
  border-top: 1px solid var(--border);
}

.spec-section:nth-child(even) {
  background: var(--mist);
}

.spec-section--reverse .spec-section-visual {
  order: 2;
}

.spec-section--reverse .spec-section-body {
  order: 1;
}

.spec-section-visual {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.spec-section-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

.spec-section:hover .spec-section-visual img {
  transform: scale(1.04);
}

.spec-section-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 12px rgba(27, 43, 58, 0.35);
  line-height: 1;
}

.spec-section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}

.spec-section-body p {
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
  max-width: 52ch;
}

.spec-section-body .spec-list {
  margin-bottom: 1.75rem;
}

/* Experience timeline */
.experience {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.experience-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: var(--space-6);
}

.experience-timeline {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 1rem;
}

.experience-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(to bottom, var(--teal), var(--border));
}

.experience-item {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: var(--space-4);
  padding: var(--space-4) 0 var(--space-4) var(--space-6);
  position: relative;
}

.experience-item::before {
  content: "";
  position: absolute;
  left: -1.35rem;
  top: 1.35rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--ivory);
}

.experience-year {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding-top: 0.15rem;
}

.experience-content strong {
  display: block;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.experience-content span {
  font-size: 0.9rem;
  color: var(--light);
}

/* Journey timeline */
.journey-timeline {
  position: relative;
  padding-top: var(--space-4);
}

.journey-line {
  position: absolute;
  top: 4.85rem;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.journey-line-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--teal), var(--sage));
  transition: width 1.2s var(--ease-out);
}

.journey-timeline.is-active .journey-line-fill {
  width: 100%;
}

.journey-steps {
  position: relative;
  z-index: 1;
}

.journey-step {
  transition: transform 0.35s var(--ease-out);
}

.journey-step.is-active {
  transform: translateY(-4px);
}

.journey-step.is-active .journey-step-num {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
  box-shadow: 0 8px 24px rgba(46, 125, 107, 0.25);
}

.journey-sublist {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.journey-sublist li {
  font-size: 0.85rem;
  color: var(--light);
  padding-left: 1rem;
  position: relative;
}

.journey-sublist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--teal);
}

/* ── Responsive ─────────────────────────────────────────── */

@media (max-width: 1279px) {
  :root {
    --section-x: clamp(1.5rem, 5vw, 4rem);
  }

  .pillars,
  .services-quick-grid,
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-shortcuts {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .hospital,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hospital-img {
    min-height: 360px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-right: none !important;
  }

  .why-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 1023px) {
  :root {
    --header-h: 72px;
  }

  .nav {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .nav-links,
  .nav-item--dropdown {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-logo-sub {
    font-size: 0.62rem;
  }

  .nav-cta {
    padding: 0.4rem 0.45rem 0.4rem 1rem;
    font-size: 0.92rem;
  }

  .hero-main {
    grid-template-columns: 1fr;
    padding-top: 2.5rem;
    gap: 1.5rem;
  }

  .hero-right {
    min-height: 320px;
  }

  .hero-monitor-screen,
  .hero-monitor-svg {
    min-height: 300px;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .med-panels {
    grid-template-columns: 1fr;
  }

  .chapter-gates-inner {
    grid-template-columns: 1fr;
  }

  .spec-section,
  .spec-section--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .spec-section--reverse .spec-section-visual,
  .spec-section--reverse .spec-section-body {
    order: unset;
  }

  .experience-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-left: 1.25rem;
  }

  .journey-line {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (max-width: 767px) {
  :root {
    --section-x: 1.25rem;
  }

  .nav-cta-label {
    display: none;
  }

  .nav-cta {
    padding: 0.35rem;
    border-radius: 50%;
  }

  .nav-cta-icon {
    width: 36px;
    height: 36px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-blocks {
    grid-template-columns: 1fr;
  }

  .pillars,
  .services-quick-grid,
  .journey-steps,
  .contact-shortcuts {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }

  .surgery-types {
    padding: 1.5rem;
  }

  .why-item {
    padding: 2rem 1.5rem;
  }

  .med-showcase {
    padding: 4rem var(--section-x);
  }

  .chapter-header {
    flex-direction: column;
    gap: 1rem;
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .cursor-glow {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg { animation: none; }
  .cursor-glow { display: none; }
  .hero-monitor-screen { transform: none !important; }
  .hero-monitor.is-active .hero-monitor-rec-dot { animation: none; }
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-group--checkbox {
  margin-top: 0.5rem;
}

.checkbox-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--light);
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--teal);
}

.faq-page {
  padding: calc(var(--header-h) + 4rem) var(--section-x) 6rem;
  max-width: 800px;
  margin: 0 auto;
}

.faq-list details {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list details[open] summary { color: var(--teal); }

.faq-list p {
  margin-top: 0.75rem;
  color: var(--light);
  line-height: 1.7;
}
