/* =========================================================
   Cabinet de chiropraxie — Adèle Pouliez
   Direction artistique : éditorial chaleureux / wellness moderne
   Fraunces (display) + Hanken Grotesk (texte)
   ========================================================= */

:root {
  /* Palette */
  --paper:      #F4ECE1;   /* fond principal, papier chaud */
  --paper-2:    #EBE0D1;   /* sections alternées */
  --card:       #FBF6EE;   /* surfaces */
  --sand:       #E0D1BB;   /* lignes / aplats */
  --clay:       #BC5A3C;   /* terracotta */
  --clay-deep:  #9E4830;
  --clay-soft:  #DC9077;
  --olive:      #6E7A56;   /* accent secondaire */
  --ink:        #241F1B;   /* texte fort, brun très foncé */
  --ink-2:      #5B5249;   /* texte secondaire */
  --line:       #D8C7B0;   /* filets */

  /* Typo */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Mesures */
  --maxw: 1200px;
  --r-sm: 8px;
  --r-md: 16px;
  --arch: 48% 48% 14px 14px / 30% 30% 14px 14px;
  --shadow: 0 30px 60px -28px rgba(45, 32, 22, 0.30);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----------------------- Reset ----------------------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}
h1 { font-size: clamp(2.8rem, 6.2vw, 5.2rem); font-weight: 400; }
h2 { font-size: clamp(2.1rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
em, .italic { font-style: italic; }

p { color: var(--ink-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(64px, 9vw, 120px) 0; }

/* Eyebrow : filet + micro-label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1.5px;
  background: var(--clay);
  display: inline-block;
}

.lead { font-size: clamp(1.1rem, 1.6vw, 1.28rem); color: var(--ink-2); line-height: 1.55; }
.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }

/* ----------------------- Buttons ----------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--clay);
  color: var(--paper);
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  border: 1.5px solid var(--clay);
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.btn::after {
  content: "→";
  font-size: 1.05em;
  transition: transform 0.3s var(--ease);
}
.btn:hover { background: var(--clay-deep); border-color: var(--clay-deep); transform: translateY(-2px); }
.btn:hover::after { transform: translateX(4px); }

.btn-outline { background: transparent; color: var(--clay); }
.btn-outline:hover { background: var(--clay); color: var(--paper); }

.btn-light { background: var(--paper); color: var(--clay-deep); border-color: var(--paper); }
.btn-light:hover { background: var(--card); color: var(--clay-deep); border-color: var(--card); }

/* Lien texte animé */
.text-link {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--clay); font-weight: 600;
  background-image: linear-gradient(var(--clay), var(--clay));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: left 100%;
  transition: background-size 0.35s var(--ease);
}
.text-link:hover { background-size: 100% 1.5px; }

/* ====================================================
   Top bar
   ==================================================== */
.topbar {
  background: var(--ink);
  color: rgba(244, 236, 225, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.topbar .container {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: 6px 24px; padding-top: 10px; padding-bottom: 10px;
}
.topbar-info { display: flex; flex-wrap: wrap; gap: 5px 24px; }
.topbar-info span { display: inline-flex; align-items: center; gap: 8px; }
.topbar a:hover { color: var(--clay-soft); }
.topbar svg { width: 14px; height: 14px; opacity: 0.7; flex: none; }

/* ====================================================
   Header
   ==================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 236, 225, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--clay); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 1.4rem; font-weight: 500;
  flex: none; overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.brand-text strong {
  font-family: var(--serif); font-size: 1.3rem; font-weight: 500;
  display: block; line-height: 1.05; letter-spacing: -0.01em;
}
.brand-text small {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--clay); font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  padding: 9px 14px; border-radius: 50px; font-size: 0.94rem;
  font-weight: 500; color: var(--ink-2);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover { color: var(--clay); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; display: block; height: 1.5px; width: 18px;
  background: var(--clay); margin: 3px auto 0;
}
.nav-cta { margin-left: 14px; }
.nav-cta a.active::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: 0.25s var(--ease); }

/* ====================================================
   Hero
   ==================================================== */
.hero { background: var(--paper); position: relative; overflow: hidden; }
.hero .container {
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(50px, 7vw, 90px);
}
.hero h1 { margin-bottom: 26px; }
.hero h1 em { color: var(--clay); }
.hero .slogan {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: var(--clay); margin-bottom: 20px;
}
.hero p { margin-bottom: 14px; font-size: 1.06rem; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: var(--arch); overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual img, .split-visual img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}

/* ====================================================
   Placeholders photo (sobres, éditoriaux)
   ==================================================== */
.photo-ph {
  position: relative; width: 100%; height: 100%; min-height: 220px;
  background: linear-gradient(150deg, var(--paper-2), var(--sand));
  display: grid; place-items: center; text-align: center;
  color: var(--clay-deep); border-radius: inherit;
}
.photo-ph::after {
  content: attr(data-label);
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  font-family: var(--sans); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-2); background: rgba(251, 246, 238, 0.85);
  padding: 7px 14px; border-radius: 50px; white-space: nowrap;
  max-width: 86%; overflow: hidden; text-overflow: ellipsis;
}
.photo-ph .ph-icon { width: 40px; height: 40px; opacity: 0.45; }

/* ====================================================
   Sections génériques
   ==================================================== */
.section-head { max-width: 760px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head.left .eyebrow { justify-content: flex-start; }

.bg-paper-2 { background: var(--paper-2); }
.bg-cream-dark { background: var(--paper-2); } /* alias compat */
.bg-ink { background: var(--ink); color: var(--paper); }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: var(--paper); }
.bg-ink p { color: rgba(244, 236, 225, 0.78); }
.bg-ink .eyebrow { color: var(--clay-soft); }
.bg-ink .eyebrow::before { background: var(--clay-soft); }
.bg-terracotta { background: var(--clay); color: var(--paper); position: relative; }
.bg-terracotta h2, .bg-terracotta h3 { color: var(--paper); }
.bg-terracotta p { color: rgba(244, 236, 225, 0.92); }

/* ----- Symptômes ----- */
.symptom-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0; margin-top: 36px; border-top: 1px solid var(--line);
}
.symptom {
  padding: 22px 8px 22px 0; border-bottom: 1px solid var(--line);
  font-weight: 500; color: var(--ink); font-size: 1.05rem;
  display: flex; align-items: center; gap: 14px;
  transition: padding-left 0.3s var(--ease);
}
.symptom:hover { padding-left: 8px; }
.symptom .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex: none; }

/* ----- Cards (épurées, filet fin) ----- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.card {
  background: var(--card); border-radius: var(--r-md);
  padding: 38px 34px; border: 1px solid var(--line);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--clay-soft); }
.card .card-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--paper-2); color: var(--clay);
  display: grid; place-items: center; margin-bottom: 22px;
}
.card .card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }

/* ----- Phases (éditorial numéroté) ----- */
.phases { display: grid; gap: 0; border-top: 1px solid var(--line); }
.phase {
  padding: 38px 0; border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: 90px 1fr; gap: 28px; align-items: start;
}
.phase-num {
  font-family: var(--serif); font-size: 3.2rem; font-weight: 400; font-style: italic;
  color: var(--clay-soft); line-height: 0.8;
}
.phase h3 { margin-bottom: 10px; }
.phase .phase-tag {
  display: inline-block; font-family: var(--sans); font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--olive); margin-bottom: 8px;
}

/* ----- Consultation ----- */
.consult {
  background: var(--card); border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line);
}
.consult-header {
  display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 26px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.duration-pill {
  font-family: var(--sans); background: var(--paper-2); color: var(--clay-deep);
  font-weight: 600; font-size: 0.85rem; padding: 7px 16px; border-radius: 50px;
}
.steps-list { list-style: none; display: grid; gap: 20px; }
.steps-list li { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.step-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: transparent; color: var(--clay); border: 1.5px solid var(--clay);
  display: grid; place-items: center; font-family: var(--serif);
  font-weight: 500; font-size: 0.95rem; flex: none;
}
.steps-list li strong { color: var(--ink); font-weight: 600; }

/* ----- Split ----- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split.reverse .split-text { order: 2; }
.split-visual { aspect-ratio: 4/5; border-radius: var(--arch); overflow: hidden; box-shadow: var(--shadow); }
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 16px; }

/* ----- Avis ----- */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.review {
  background: var(--card); border-radius: var(--r-md);
  padding: 30px; border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: border-color 0.4s var(--ease);
}
.review:hover { border-color: var(--clay-soft); }
.stars { color: #D08A2C; letter-spacing: 3px; margin-bottom: 14px; font-size: 0.95rem; }
.review p { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--ink); margin-bottom: 18px; line-height: 1.45; flex: 1; }
.review .reviewer { display: flex; align-items: center; gap: 13px; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clay-soft); color: var(--paper);
  display: grid; place-items: center; font-family: var(--serif); font-weight: 500; flex: none;
}
.review .reviewer small { color: var(--ink-2); font-size: 0.8rem; }
.google-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 50px; padding: 9px 18px; font-weight: 600; font-size: 0.9rem;
  margin-bottom: 4px;
}

/* ----- FAQ ----- */
.faq-list { max-width: 840px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 26px 4px; font-family: var(--serif); font-size: clamp(1.15rem, 1.7vw, 1.4rem);
  font-weight: 500; color: var(--ink); letter-spacing: -0.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  transition: color 0.25s var(--ease);
}
.faq-q:hover { color: var(--clay); }
.faq-q .chev { transition: transform 0.35s var(--ease); color: var(--clay); flex: none; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding: 0 4px 28px; max-width: 70ch; }
.faq-a-inner p { margin-bottom: 10px; }

/* ----- Tarifs ----- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; max-width: 760px; margin: 0 auto; }
.price-card {
  background: var(--card); border-radius: var(--r-md); padding: 44px 36px;
  text-align: center; border: 1px solid var(--line);
}
.price-card .amount { font-family: var(--serif); font-size: 3.4rem; font-weight: 400; color: var(--clay); line-height: 1; margin: 16px 0; }
.price-card h3 { margin-bottom: 4px; }
.price-card .note { font-size: 0.9rem; color: var(--ink-2); }

/* ====================================================
   Contact
   ==================================================== */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 5vw, 60px); align-items: start; }
.info-block { display: grid; gap: 24px; }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.info-item .info-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--paper-2); color: var(--clay);
  display: grid; place-items: center; flex: none;
}
.info-item h4 { font-family: var(--sans); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--clay); margin-bottom: 4px; font-weight: 600; }
.info-item p, .info-item a { color: var(--ink); }
.info-item a:hover { color: var(--clay); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.97rem; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--ink); }
.hours-table tr.closed td { color: var(--ink-2); }
.hours-table tr:last-child td { border-bottom: none; }

.map-embed {
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--shadow); min-height: 480px; border: 1px solid var(--line);
}
.map-embed .photo-ph { min-height: 480px; }
.map-embed iframe { border: 0; width: 100%; height: 100%; min-height: 480px; display: block; }

/* Façade carte (chargement au clic) */
.map-consent {
  width: 100%; min-height: 480px;
  background: linear-gradient(150deg, var(--paper-2), var(--sand));
  display: grid; place-items: center; text-align: center; padding: 32px;
  color: var(--clay-deep);
}
.map-consent-inner { max-width: 360px; display: grid; justify-items: center; gap: 8px; }
.map-consent-inner svg { color: var(--clay); margin-bottom: 6px; }
.map-consent-inner h3 { color: var(--ink); }
.map-consent-inner p { color: var(--ink-2); margin: 0; }
.map-consent-note { font-size: 0.85rem; margin-top: 4px !important; }
.map-consent .btn { margin-top: 14px; }
.map-consent .text-link { margin-top: 6px; font-size: 0.9rem; }

/* ====================================================
   Blog
   ==================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.blog-card {
  background: var(--card); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line); display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--clay-soft); }
.blog-thumb { aspect-ratio: 16/11; }
.blog-thumb .photo-ph { border-radius: 0; }
.blog-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.blog-tag { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.16em; color: var(--clay); margin-bottom: 12px; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.blog-card .read { margin-top: auto; color: var(--clay); font-weight: 600; font-size: 0.9rem; padding-top: 16px; }

/* ====================================================
   Bandeau image pleine largeur
   ==================================================== */
.image-band {
  position: relative; height: clamp(320px, 46vw, 560px); overflow: hidden;
}
.image-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.image-band .band-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(28px, 5vw, 56px);
  background: linear-gradient(to top, rgba(36,31,27,0.72), rgba(36,31,27,0));
}
.image-band .band-caption .eyebrow { color: var(--clay-soft); margin-bottom: 8px; }
.image-band .band-caption .eyebrow::before { background: var(--clay-soft); }
.image-band .band-caption p {
  font-family: var(--serif); font-style: italic; color: var(--paper);
  font-size: clamp(1.3rem, 2.6vw, 2.1rem); line-height: 1.2; max-width: 22ch;
}

/* ====================================================
   Prose (pages légales)
   ==================================================== */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.35rem, 2.4vw, 1.9rem); margin: 40px 0 14px; }
.prose h3 { font-size: 1.2rem; margin: 22px 0 8px; }
.prose p, .prose li { color: var(--ink-2); margin-bottom: 12px; line-height: 1.6; }
.prose ul { margin: 0 0 14px 1.2em; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--clay); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--clay-deep); }
.prose .updated { font-size: 0.88rem; color: var(--ink-2); margin-top: 6px; }

/* ====================================================
   CTA band
   ==================================================== */
.cta-band { text-align: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { margin-bottom: 18px; max-width: 16ch; margin-inline: auto; }
.cta-band p { max-width: 56ch; margin: 0 auto 30px; }

/* ====================================================
   Footer
   ==================================================== */
.site-footer { background: var(--ink); color: rgba(244, 236, 225, 0.72); padding: clamp(56px, 7vw, 88px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr; gap: 44px; margin-bottom: 48px; }
.site-footer h4 { color: var(--paper); margin-bottom: 20px; font-family: var(--sans); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.site-footer .brand-text strong { color: var(--paper); }
.footer-links { list-style: none; display: grid; gap: 11px; }
.footer-links a { transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--clay-soft); }
.footer-contact { display: grid; gap: 11px; font-size: 0.95rem; }
.footer-contact a:hover { color: var(--clay-soft); }
.footer-bottom {
  border-top: 1px solid rgba(244, 236, 225, 0.14); padding-top: 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 0.83rem;
}
.footer-bottom a:hover { color: var(--clay-soft); }
.footer-disclaimer {
  flex-basis: 100%; width: 100%; margin-top: 14px;
  font-size: 0.74rem; line-height: 1.5; color: rgba(244, 236, 225, 0.45);
}

/* ====================================================
   Reveal
   ==================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ====================================================
   Responsive
   ==================================================== */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 440px; margin: 0 auto; width: 100%; }
  .hero p { max-width: none; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-text { order: 0; }
  .split-visual { max-width: 460px; width: 100%; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 82vw);
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 104px 30px 30px; gap: 4px; box-shadow: -16px 0 50px rgba(0,0,0,0.14);
    transition: right 0.35s var(--ease); z-index: 90;
  }
  .nav-links.open { right: 0; }
  .nav-links a { width: 100%; padding: 13px 14px; font-size: 1.08rem; }
  .nav-links a.active::after { margin-left: 0; }
  .nav-toggle { display: block; z-index: 95; }
  .nav-cta { display: none; }
  .phase { grid-template-columns: 64px 1fr; gap: 18px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .topbar-info { font-size: 0.76rem; gap: 4px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .phase { grid-template-columns: 1fr; gap: 6px; }
  .phase-num { font-size: 2.4rem; }
}
