@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/instrument-serif-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #161514;
  --muted: #6d6964;
  --paper: #fcfbf8;
  --white: #ffffff;
  --sand: #e6c89e;
  --gold: #eac086;
  --terracotta: #be351e;
  --line: rgba(22, 21, 20, 0.16);
  --radius: 18px;
  --pad: clamp(24px, 5vw, 72px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1.25em; }
h1, h2, h3 { margin: 0; line-height: 1.08; }
h1 { font-family: "Instrument Serif", Georgia, serif; font-weight: 400; }
h2 { font-size: clamp(2.25rem, 5vw, 5rem); font-weight: 400; letter-spacing: -0.045em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); font-weight: 600; letter-spacing: -0.02em; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
}
.brand { display: flex; align-items: baseline; gap: 10px; }
.brand-name { font-family: "Instrument Serif", Georgia, serif; font-size: 1.55rem; }
.brand-role { color: var(--muted); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 42px); font-size: 0.92rem; }
.main-nav a { border-bottom: 1px solid transparent; }
.main-nav a:hover, .main-nav a:focus-visible { border-color: currentColor; }
.main-nav .nav-cta { padding: 11px 18px; border: 1px solid var(--ink); border-radius: 999px; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { cursor: pointer; list-style: none; padding: 9px 14px; border: 1px solid var(--ink); border-radius: 999px; font-size: .82rem; font-weight: 700; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(22,21,20,.14);
}
.mobile-menu nav a { padding: 10px 12px; border-radius: 9px; }
.mobile-menu nav a:hover, .mobile-menu nav a:focus-visible { background: var(--paper); }

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 130px var(--pad) 80px;
  text-align: center;
  background: linear-gradient(120deg, #fcfbf8 5%, #f4dfc2 55%, #eac086 120%);
  background-size: 180% 180%;
  animation: hero-shift 16s ease-in-out infinite alternate;
}
@keyframes hero-shift { to { background-position: 100% 50%; } }
.hero-inner { max-width: 920px; }
.hero h1 { font-size: clamp(4.2rem, 10vw, 9.5rem); letter-spacing: -0.055em; margin-bottom: 38px; }
.hero h1 em { position: relative; font-weight: 700; }
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2%;
  right: 0;
  bottom: 0.05em;
  height: 0.08em;
  border-radius: 100%;
  background: var(--ink);
  transform: rotate(-1deg);
}
.hero p { max-width: 590px; margin: 0 auto 12px; font-size: clamp(1rem, 1.45vw, 1.25rem); }
.text-link { display: inline-block; margin-top: 34px; font-weight: 600; border-bottom: 1px solid var(--ink); }

.section { padding: clamp(86px, 11vw, 160px) var(--pad); }
.section-heading { max-width: 920px; margin-bottom: clamp(52px, 8vw, 105px); }
.section-heading h2 { max-width: 820px; }
.wide-heading h2 { max-width: 1120px; }
.eyebrow {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-intro { max-width: 760px; margin-top: 30px; color: var(--muted); font-size: 1.08rem; }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 0.85fr 1.25fr; gap: clamp(12px, 2vw, 32px); align-items: end; }
.photo-card { margin: 0; overflow: hidden; border-radius: var(--radius); background: #eee; }
.photo-tall { aspect-ratio: 2 / 3; }
.photo-portrait { aspect-ratio: 1 / 1; align-self: center; }
.about-copy { padding-left: clamp(0px, 2vw, 28px); }
.about-copy h3 { margin-bottom: 26px; }
.about-copy p { color: var(--muted); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 13px 25px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-dark { background: var(--ink); color: white; }
.button-outline { border: 1.5px solid var(--terracotta); color: var(--terracotta); }
.button-outline:hover { background: var(--terracotta); color: white; }
.button-large { padding: 18px 34px; font-size: 1.05rem; }

.situations { background: var(--paper); }
.situation-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.situation-list li {
  display: grid;
  grid-template-columns: minmax(60px, 0.35fr) 1.65fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.situation-list .number { color: var(--terracotta); font-family: "Instrument Serif", Georgia, serif; font-size: 2.1rem; }
.situation-list h3 { margin-bottom: 8px; }
.situation-list p { max-width: 700px; margin: 0; color: var(--muted); }
.medical-note {
  max-width: 970px;
  margin: clamp(70px, 10vw, 130px) auto 0;
  text-align: center;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.08;
}

.trust { background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.trust-grid article { min-height: 420px; padding: clamp(28px, 4vw, 54px); background: white; }
.trust-grid article > span { display: block; margin-bottom: 70px; color: var(--terracotta); font-family: "Instrument Serif", Georgia, serif; font-size: 1.8rem; }
.trust-grid h3 { min-height: 3.4em; margin-bottom: 22px; }
.trust-grid p { color: var(--muted); }

.testimonials { background: var(--paper); overflow: hidden; }
.testimonial-track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(310px, 38vw); gap: 18px; overflow-x: auto; padding-bottom: 20px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.testimonial-track blockquote { min-height: 330px; margin: 0; padding: clamp(28px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: white; scroll-snap-align: start; }
.testimonial-track blockquote p { font-family: "Instrument Serif", Georgia, serif; font-size: clamp(1.45rem, 2.4vw, 2.15rem); line-height: 1.25; }
.testimonial-track cite { font-style: normal; font-weight: 700; }
.stars { margin-bottom: 28px; color: var(--terracotta); letter-spacing: 0.08em; }
.centered-action { text-align: center; margin-top: 45px; }

.session-pair { display: grid; grid-template-columns: 1fr 1fr; background: white; }
.session-copy { display: flex; flex-direction: column; justify-content: center; min-height: 720px; padding: clamp(56px, 9vw, 140px); }
.session-copy h2 { max-width: 650px; margin-bottom: 32px; font-size: clamp(2.25rem, 4.5vw, 4.4rem); }
.session-copy p:not(.eyebrow) { max-width: 650px; color: var(--muted); }
.session-copy .price { margin-top: 16px; color: var(--ink); }
.session-photo { min-height: 720px; margin: 0; overflow: hidden; }
.session-photo img { transition: transform .8s ease; }
.session-photo:hover img { transform: scale(1.025); }

.final-cta { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(48px, 9vw, 140px); padding: clamp(88px, 12vw, 170px) var(--pad); background: var(--sand); }
.final-cta h2 { font-family: "Instrument Serif", Georgia, serif; font-size: clamp(4rem, 8vw, 8.5rem); letter-spacing: -0.04em; }
.final-cta-copy { align-self: end; }
.final-cta-copy p { max-width: 620px; }

.site-footer { display: grid; grid-template-columns: 1.15fr .85fr .85fr; gap: 38px; align-items: start; padding: 58px var(--pad); background: var(--ink); color: white; font-size: 0.86rem; }
.site-footer a { border-bottom: 1px solid currentColor; }
.footer-brand a { display: inline-block; margin-top: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-links strong { margin-bottom: 4px; }
.footer-links a { width: fit-content; color: rgba(255,255,255,.72); border-bottom-color: transparent; }
.footer-links a:hover, .footer-links a:focus-visible { color: white; border-bottom-color: currentColor; }
.site-footer .footer-note { grid-column: 1 / -1; max-width: 920px; margin: 18px 0 0; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.15); color: rgba(255,255,255,.65); }

/* Pages intérieures */
.site-header-solid { position: relative; background: var(--paper); border-bottom: 1px solid var(--line); }
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  min-height: 78svh;
  padding: clamp(100px, 14vw, 185px) var(--pad) clamp(72px, 9vw, 120px);
  background: linear-gradient(125deg, #fcfbf8 3%, #f3dec0 62%, #eac086 120%);
}
.page-hero-copy { max-width: 900px; }
.page-hero h1 { font-size: clamp(3.65rem, 8.5vw, 8.3rem); letter-spacing: -.055em; }
.page-hero h1 em { font-weight: 400; color: var(--terracotta); }
.page-hero-lead { max-width: 690px; margin: 32px 0 0; font-size: clamp(1.05rem, 1.5vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.page-hero-aside { max-width: 440px; padding: 30px; border: 1px solid rgba(22,21,20,.22); border-radius: var(--radius); background: rgba(255,255,255,.35); }
.page-hero-aside p:last-child { margin-bottom: 0; }
.page-hero-aside strong { font-size: 1.12rem; }
.inner-section { padding: clamp(78px, 10vw, 145px) var(--pad); }
.inner-section.white { background: var(--white); }
.inner-section.sand { background: #f4e5cf; }
.split-story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(42px, 9vw, 140px); align-items: center; }
.split-story.reverse .story-figure { order: 2; }
.story-figure { min-height: min(720px, 76svh); margin: 0; overflow: hidden; border-radius: var(--radius); }
.story-copy { max-width: 720px; }
.story-copy h2 { margin-bottom: 30px; font-size: clamp(2.5rem, 5vw, 5.3rem); }
.story-copy h3 { margin: 32px 0 14px; }
.story-copy p, .story-copy li { color: var(--muted); }
.story-copy ul { padding-left: 1.25em; }
.content-heading { max-width: 940px; margin-bottom: clamp(44px, 7vw, 84px); }
.content-heading h2 { margin-bottom: 24px; }
.content-heading > p:last-child { max-width: 760px; color: var(--muted); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card { min-height: 320px; padding: clamp(27px, 3.5vw, 46px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.feature-card .card-number { display: block; margin-bottom: 55px; color: var(--terracotta); font-family: "Instrument Serif", Georgia, serif; font-size: 1.8rem; }
.feature-card h3 { margin-bottom: 17px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.detail-list { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.detail-item { padding: 32px 7vw 32px 0; border-bottom: 1px solid var(--line); }
.detail-item:nth-child(even) { padding-right: 0; padding-left: 7vw; border-left: 1px solid var(--line); }
.detail-item h3 { margin-bottom: 12px; }
.detail-item p { margin: 0; color: var(--muted); }
.price-band { display: grid; grid-template-columns: 1.2fr .8fr; gap: 50px; align-items: center; padding: clamp(54px, 7vw, 92px) var(--pad); background: var(--ink); color: var(--white); }
.price-band h2 { font-family: "Instrument Serif", Georgia, serif; font-size: clamp(3rem, 6vw, 6.6rem); }
.price-band-copy { max-width: 580px; justify-self: end; }
.price-band-copy p { color: rgba(255,255,255,.72); }
.price-band .button { background: var(--white); color: var(--ink); }
.medical-callout { max-width: 1000px; margin: 0 auto; text-align: center; }
.medical-callout p { margin: 0; font-family: "Instrument Serif", Georgia, serif; font-size: clamp(2rem, 4vw, 4rem); line-height: 1.12; }
.faq-list { max-width: 980px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-list details { padding: 24px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { cursor: pointer; list-style: none; padding-right: 36px; font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 650; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 0; top: -.15em; color: var(--terracotta); font-family: "Instrument Serif", Georgia, serif; font-size: 1.7em; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { max-width: 780px; margin: 18px 0 0; color: var(--muted); }
.quote-feature { max-width: 1080px; margin: 0 auto; padding: clamp(36px, 6vw, 76px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.quote-feature blockquote { margin: 0; }
.quote-feature blockquote p { font-family: "Instrument Serif", Georgia, serif; font-size: clamp(1.65rem, 3.2vw, 3.2rem); line-height: 1.2; }
.quote-feature cite { font-style: normal; font-weight: 700; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: flex; flex-direction: column; justify-content: space-between; min-height: 245px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, border-color .2s ease; }
.related-card:hover, .related-card:focus-visible { transform: translateY(-3px); border-color: var(--terracotta); }
.related-card span { color: var(--terracotta); font-weight: 700; }
.breadcrumb { margin: 0 0 28px; color: var(--muted); font-size: .83rem; }
.breadcrumb a { border-bottom: 1px solid currentColor; }
.not-found { min-height: 70svh; display: grid; place-items: center; padding: 100px var(--pad); text-align: center; }
.not-found h1 { font-size: clamp(5rem, 15vw, 12rem); }
.not-found p { max-width: 580px; }

@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
  .about-copy { grid-column: 1 / -1; padding: 45px 0 0; max-width: 760px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 0; }
  .trust-grid article > span { margin-bottom: 30px; }
  .trust-grid h3 { min-height: 0; }
  .session-copy { min-height: 640px; padding: 64px var(--pad); }
  .session-photo { min-height: 640px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-note { grid-column: 1 / -1; }
  .page-hero { grid-template-columns: 1fr; min-height: 0; }
  .page-hero-aside { max-width: 660px; }
  .split-story { grid-template-columns: 1fr 1fr; gap: 45px; }
  .feature-grid, .related-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid article:last-child, .related-grid a:last-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .site-header { position: absolute; align-items: flex-start; }
  .brand { display: block; }
  .brand-role { display: block; }
  .desktop-nav { display: none; }
  .mobile-menu { display: block; }
  .hero { min-height: 92svh; }
  .hero h1 { font-size: clamp(3.9rem, 20vw, 6.6rem); }
  .section { padding-top: 86px; padding-bottom: 86px; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .photo-tall { aspect-ratio: 3 / 4; }
  .photo-portrait { aspect-ratio: 3 / 4; }
  .situation-list li { grid-template-columns: 48px 1fr; gap: 14px; }
  .testimonial-track { grid-auto-columns: 88%; }
  .session-pair { grid-template-columns: 1fr; }
  .session-copy { min-height: 0; }
  .session-photo { min-height: 68svh; }
  .session-photo-left { grid-row: 4; }
  .final-cta { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer .footer-note { grid-column: auto; }
  .page-hero { min-height: 0; padding-top: 88px; }
  .page-hero h1 { font-size: clamp(3.5rem, 17vw, 5.8rem); }
  .page-hero-aside { padding: 24px; }
  .split-story { grid-template-columns: 1fr; }
  .split-story.reverse .story-figure { order: 0; }
  .story-figure { min-height: 62svh; }
  .feature-grid, .related-grid { grid-template-columns: 1fr; }
  .feature-grid article:last-child, .related-grid a:last-child { grid-column: auto; }
  .detail-list { grid-template-columns: 1fr; }
  .detail-item, .detail-item:nth-child(even) { padding: 28px 0; border-left: 0; }
  .price-band { grid-template-columns: 1fr; }
  .price-band-copy { justify-self: start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero { animation: none; }
  .button, .session-photo img { transition: none; }
}
