/* acupuncture-lausanne.ch
   Desktop values come from the 1440px mock-ups, phone values from Mobile.html.
   Breakpoints: 1240px (full nav), 900px (two-column layouts), 700px (phone). */

@font-face { font-family: 'Source Serif 4'; src: url('../fonts/source-serif-4-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Serif 4'; src: url('../fonts/source-serif-4-400-italic.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('../fonts/source-sans-3-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Source Sans 3'; src: url('../fonts/source-sans-3-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }

:root {
  --cream: #f2f0eb;
  --sage: #dde3d6;
  --sage-hover: #d1d9c9;
  --stone: #e6e4dc;
  --green: #2f4a35;
  --green-dark: #1f3324;
  --blob: #5e7d54;
  --ink: #1f2620;
  --muted: #5b665e;
  --line: #d6d3cb;

  --serif: 'Source Serif 4', Georgia, serif;
  --sans: 'Source Sans 3', system-ui, sans-serif;

  --max: 1440px;
  /* 24px at 390px wide, 96px at 1440px */
  --gutter: clamp(24px, calc(6.857vw - 2.74px), 96px);
  /* header row: 20px on phones */
  --gutter-header: clamp(20px, calc(7.238vw - 8.23px), 96px);

  /* body copy: 19px on phones, 22px on desktop */
  --text-lg: clamp(19px, calc(17.89px + 0.286vw), 22px);
}

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; }

h1, h2, h3 { margin: 0; font-family: var(--serif); font-weight: 400; color: var(--ink); }
p { margin: 0; }

a { color: var(--green); text-underline-offset: 3px; }
a:hover { color: var(--green-dark); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

.site { overflow: hidden; min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1 0 auto; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--header { padding-inline: var(--gutter-header); }

.skip-link {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  padding: 10px 18px; border-radius: 999px;
  background: var(--green); color: #fff; font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  align-self: flex-start;
  min-height: 46px; padding: 0 26px;
  border: 0; border-radius: 999px;
  font-family: var(--sans); font-size: 18px; font-weight: 600; line-height: 1.2;
  text-decoration: none; text-align: center;
  cursor: pointer;
  transition: background-color .15s ease;
}
.btn--primary { background: var(--green); color: #fff; }
.btn--primary:hover { background: var(--green-dark); color: #fff; }
.btn--light { background: var(--sage); color: var(--green); }
.btn--light:hover { background: var(--sage-hover); color: var(--green-dark); }
/* On sage surfaces a sage pill is invisible and its padding reads as a gap: use cream there */
.info-band .btn--light, .ready .btn--light, .contact__card .btn--light { background: var(--cream); }
.info-band .btn--light:hover, .ready .btn--light:hover, .contact__card .btn--light:hover { background: #fff; }
.btn--lg { min-height: 52px; padding: 0 30px; font-size: 19px; }
.btn--sm { min-height: 44px; padding: 0 22px; font-size: 16px; }

.linklike {
  padding: 0; border: 0; background: none;
  font: inherit; color: var(--green);
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer;
}
.linklike:hover { color: var(--green-dark); }

/* ---------- Top bar ---------- */

.topbar {
  height: 44px;
  display: flex; justify-content: flex-end; align-items: center; gap: 28px;
  font-size: 15px; color: var(--muted);
}
.topbar__tel { color: inherit; text-decoration: none; }
.topbar__tel:hover { color: var(--ink); }
.topbar__client { text-decoration: underline; }
.lang-switch { display: flex; gap: 10px; }
.lang-switch__current { font-weight: 600; color: var(--ink); }
.lang-switch a { text-decoration: underline; }
.lang-switch .short { display: none; }

/* ---------- Header ---------- */

.mainbar {
  height: 96px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}

.logo { display: flex; align-items: center; gap: 16px; color: var(--ink); text-decoration: none; flex-shrink: 0; }
.logo:hover { color: var(--ink); }
.logo__mark { position: relative; width: 34px; height: 64px; overflow: hidden; flex-shrink: 0; }
.logo__mark img {
  position: absolute; left: 0; top: 0;
  width: 34px; height: 107px; max-width: none;
  object-fit: cover; mix-blend-mode: multiply;
}
.logo__text { display: flex; flex-direction: column; gap: 2px; }
.logo__name { font-family: var(--serif); font-size: 28px; line-height: 1.1; }
.logo__sub { font-size: 16px; line-height: 1.3; color: var(--green); }

.mainbar__right { display: flex; align-items: center; gap: 36px; }

.nav { display: flex; align-items: center; gap: 36px; font-size: 18px; white-space: nowrap; }
.nav a { color: var(--ink); text-decoration: none; }
.nav a:hover { color: var(--green); }
.nav a[aria-current] { color: var(--green); font-weight: 600; }

.btn--header { min-height: 48px; font-size: 18px; white-space: nowrap; }

html[lang="fr"] .nav { gap: 24px; font-size: 16px; }
html[lang="fr"] .mainbar__right { gap: 24px; }
html[lang="fr"] .btn--header { padding: 0 22px; font-size: 16px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px; padding: 0;
  border: 0; border-radius: 22px;
  background: var(--sage); color: var(--ink);
  align-items: center; justify-content: center;
  cursor: pointer;
}
.menu-toggle:hover { background: var(--sage-hover); }
.menu-toggle .icon-close { display: none; }
.menu-toggle[aria-expanded="true"] .icon-menu { display: none; }
.menu-toggle[aria-expanded="true"] .icon-close { display: block; }

.mobile-menu { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--cream); }
.mobile-menu ul { list-style: none; margin: 0; padding-block: 8px 16px; }
.mobile-menu li + li { border-top: 1px solid var(--line); }
.mobile-menu a {
  display: flex; align-items: center; min-height: 52px;
  font-size: 20px; color: var(--ink); text-decoration: none;
}
.mobile-menu a[aria-current] { color: var(--green); font-weight: 600; }
.mobile-menu .mobile-menu__client { font-size: 17px; color: var(--green); text-decoration: underline; }

@media (max-width: 1239px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .mainbar__right, html[lang="fr"] .mainbar__right { gap: 10px; }
}
@media (min-width: 1240px) {
  .mobile-menu { display: none; }
}

/* ---------- Hero (homepage) ---------- */

.hero__inner {
  position: relative;
  min-height: 730px;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 470px);
  column-gap: clamp(48px, 6.667vw, 96px);
  align-items: center;
}
.hero__bg {
  position: absolute; right: -100px; top: -40px;
  width: 900px; height: 900px; max-width: none;
  object-fit: cover; opacity: .10; mix-blend-mode: multiply;
  pointer-events: none;
}
.hero__branch {
  position: absolute; right: 12px; top: 306px;
  width: 132px; height: 416px;
  object-fit: cover; mix-blend-mode: multiply; transform: rotate(3deg);
  pointer-events: none;
}
.hero__text { position: relative; display: flex; flex-direction: column; }
.hero h1 {
  font-size: clamp(46px, calc(30px + 3.75vw), 84px);
  line-height: 1.02; letter-spacing: -0.015em;
}
.hero__intro { margin-top: 32px; font-size: var(--text-lg); line-height: 1.6; max-width: 30em; }
.hero__text .btn { margin-top: 28px; }

.portrait { position: relative; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.portrait__frame { position: relative; width: 100%; max-width: 470px; aspect-ratio: 470 / 610; }
.portrait__blob {
  position: absolute; left: 5.1%; top: 23%; width: 89.4%; height: 70.5%;
  background: var(--blob);
  border-radius: 52% 48% 46% 54% / 46% 54% 50% 50%;
  transform: rotate(-3deg);
}
.portrait__frame img {
  position: absolute; left: 3.2%; top: 9.8%; width: 93.6%; height: auto;
  display: block; pointer-events: none;
}
.portrait figcaption { font-size: 16px; line-height: 1.45; color: var(--muted); max-width: 480px; }

@media (max-width: 1319px) {
  .hero__branch { display: none; }
}

/* ---------- Tiles ---------- */

.tiles { padding: 24px 0 clamp(56px, calc(41.14px + 3.81vw), 96px); }
.tiles__head { display: flex; flex-direction: column; gap: 12px; }
.tiles h2 { font-size: clamp(34px, calc(29.54px + 1.143vw), 46px); line-height: 1.1; }
.tiles__head p { font-size: clamp(18px, calc(17.26px + 0.19vw), 20px); line-height: 1.5; color: var(--muted); }

.tiles__grid {
  margin-top: 40px;
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 20px;
}
.tile {
  display: flex; flex-direction: column; gap: 14px;
  min-height: 272px; padding: 30px 26px;
  border-radius: 26px; background: var(--sage);
  color: var(--ink); text-decoration: none;
  transition: background-color .15s ease;
}
.tile:hover { background: var(--sage-hover); color: var(--ink); }
.tile--outline { background: transparent; border: 1.5px solid var(--green); padding: 28.5px 24.5px; }
.tile--outline:hover { background: rgba(47, 74, 53, .06); }
.tile .icon { color: var(--green); flex-shrink: 0; }
.tile__title { font-family: var(--serif); font-size: 30px; line-height: 1.1; color: var(--green); }
.tile__text { font-size: 18px; line-height: 1.5; }
.tile__more { margin-top: auto; font-size: 17px; color: var(--green); text-decoration: underline; text-underline-offset: 4px; }

@media (max-width: 1239px) {
  .tiles__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile { min-height: 0; }
  .tile:last-child:nth-child(odd) { grid-column: 1 / -1; }
}

/* ---------- How I work ---------- */

.work { padding: 24px 0 clamp(64px, calc(55.6px + 2.1vw), 96px); }
.work__inner {
  display: grid;
  grid-template-columns: 380px minmax(0, 544px);
  column-gap: 96px;
  align-items: start;
}
.work__head { display: flex; flex-direction: column; gap: 24px; }
.work h2 { font-size: clamp(40px, calc(34.06px + 1.524vw), 56px); line-height: 1.05; }
.work__branch { width: 92px; height: 290px; object-fit: cover; mix-blend-mode: multiply; }
.work__body { display: flex; flex-direction: column; gap: 22px; }
.work__body p { font-size: var(--text-lg); line-height: 1.65; }

@media (max-width: 1239px) {
  .work__inner { grid-template-columns: minmax(200px, 280px) minmax(0, 544px); column-gap: 56px; }
}

/* ---------- About ---------- */

.about { padding: 88px 0; background: var(--stone); }
.about__inner { display: flex; align-items: center; gap: 96px; }
.about__media { width: 520px; flex-shrink: 0; display: flex; justify-content: center; }
.about__media img { width: 340px; height: 340px; object-fit: cover; border-radius: 26px; display: block; }
.about__body { display: flex; flex-direction: column; gap: 22px; max-width: 512px; }
.about h2 { font-size: clamp(38px, calc(32.8px + 1.333vw), 52px); line-height: 1.05; }
.about__body p { font-size: var(--text-lg); line-height: 1.65; }

@media (max-width: 1239px) {
  .about__inner { gap: 56px; }
  .about__media { width: 40%; }
}

/* ---------- Book / Find me / Rates band ---------- */

.info-band { padding: 80px 0; background: var(--sage); }
.info-band__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 64px; }
.info-band__col { display: flex; flex-direction: column; gap: 14px; }
.info-band__col--book { gap: 18px; }
.info-band h2 { font-size: clamp(28px, calc(26.51px + 0.381vw), 32px); line-height: 1.2; }
.info-band p { font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.6; }
.info-band .info-band__note { font-size: clamp(16px, calc(15.63px + 0.095vw), 17px); line-height: 1.55; color: var(--muted); }
.info-band__tel { font-size: 19px; color: var(--ink); text-decoration: none; }
.info-band__tel:hover { color: var(--green); }

@media (max-width: 1239px) {
  .info-band__grid { gap: 40px; }
}

/* ---------- Footer ---------- */

/* Bottom padding keeps the footer above the floating WhatsApp button (32px + 60px + gap)
   and above the cookie banner while it's open, so no link can end up behind either */
.site-footer { padding: 40px 0 calc(112px + var(--cookie-offset, 0px)); font-size: 16px; color: var(--muted); }
.site-footer__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 14px 32px; justify-content: flex-end; }
.site-footer a { text-decoration: underline; }
.site-footer__social { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Floating WhatsApp button ---------- */

.fab {
  position: fixed; right: 32px; bottom: 32px; z-index: 40;
  width: 60px; height: 60px; border-radius: 30px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff;
  box-shadow: 0 4px 16px rgba(31, 38, 32, .18);
  transition: bottom .2s ease, background-color .15s ease;
}
.fab:hover { background: var(--green-dark); color: #fff; }

/* ---------- Cookie banner ---------- */

.cookie {
  position: fixed; left: 32px; bottom: 32px; z-index: 50;
  width: min(640px, calc(100% - 64px));
  padding: 18px 20px 18px 24px;
  border-radius: 18px; border: 1px solid var(--line);
  background: #fbfaf7;
  box-shadow: 0 6px 24px rgba(31, 38, 32, .10);
  display: flex; align-items: center; gap: 20px;
  font-size: 16px; line-height: 1.45;
}
.cookie[hidden] { display: none; }
.cookie__text { flex: 1; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }

/* ---------- Inner pages: intro with image card ---------- */

.page-hero {
  background: radial-gradient(ellipse 900px 500px at 85% 0%, rgba(94, 125, 84, .10), rgba(94, 125, 84, 0) 70%);
}
.page-hero__inner {
  padding-top: clamp(28px, calc(20.57px + 2.286vw), 56px);
  padding-bottom: 24px;
  display: flex; align-items: center; gap: 80px;
}
.page-hero__text { flex: 1; max-width: 660px; display: flex; flex-direction: column; }
.page-hero__icon { display: flex; margin-bottom: 8px; color: var(--green); }
.page-hero h1 {
  font-size: clamp(44px, calc(35.09px + 2.286vw), 68px);
  line-height: 1.05; letter-spacing: -0.015em;
}
.page-hero--wide h1 { font-size: clamp(46px, calc(36.34px + 2.476vw), 72px); }
.page-hero__tagline {
  margin-top: 22px;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(22px, calc(20.51px + 0.381vw), 26px); line-height: 1.35;
  color: var(--green);
}
.page-hero__intro { margin-top: 28px; font-size: var(--text-lg); line-height: 1.6; }
.page-hero__tagline + .page-hero__intro { margin-top: 20px; }

.page-hero__media { width: 340px; flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }
.page-hero--wide .page-hero__media { width: 460px; }
.page-hero__card { border-radius: 26px; background: var(--sage); overflow: hidden; }
.page-hero__card img {
  display: block; width: 100%; height: auto; max-height: 400px;
  object-fit: cover; object-position: center 20%;
}

/* Quote block */
.quote { margin: 0; padding: 4px 0 4px 22px; border-left: 3px solid #b7c4ad; }
.quote blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.5; }
.quote figcaption { margin-top: 10px; font-size: 15px; color: var(--muted); }
.quotes { display: flex; flex-direction: column; gap: 28px; }

/* ---------- Inner pages: heading + text sections ---------- */

.prose {
  max-width: 708px;
  padding: 40px 0 52px;
  display: flex; flex-direction: column; gap: 44px;
}
.prose__section { display: flex; flex-direction: column; gap: 12px; }
.prose h2 { font-size: clamp(26px, calc(24.51px + 0.381vw), 30px); line-height: 1.2; color: var(--green); }
.prose p { font-size: clamp(18px, calc(17.26px + 0.19vw), 20px); line-height: 1.65; }
.prose__buttons { display: flex; flex-direction: column; gap: 10px; padding-top: 12px; }

.tiles--overview { padding: 40px 0 clamp(76px, calc(61.14px + 3.81vw), 116px); }
.tiles--overview .tiles__grid { margin-top: 0; }

/* ---------- "Ready when you are." band ---------- */

.ready { padding: 80px 0; background: var(--sage); }
.ready__inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.ready__text { display: flex; flex-direction: column; gap: 8px; }
.ready h2 { font-size: clamp(32px, calc(29.03px + 0.762vw), 40px); line-height: 1.15; }
.ready p { font-size: 19px; color: var(--muted); }
.ready__actions { display: flex; align-items: center; gap: 28px; flex-shrink: 0; }

@media (max-width: 899px) {
  .page-hero__inner { flex-direction: column; align-items: stretch; gap: 36px; }
  .page-hero__media, .page-hero--wide .page-hero__media { width: 100%; max-width: 340px; }
  .page-hero--wide .page-hero__media { max-width: 460px; }
  .ready { padding: 56px 0; }
  .ready__inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .ready__actions { flex-wrap: wrap; gap: 14px; }
}

@media (max-width: 699px) {
  .prose { padding: 32px 0 48px; gap: 36px; }
  .prose__buttons .btn { font-size: 17px; }
  .ready p { font-size: 18px; }
}

/* ---------- Group 2 variants ---------- */

/* Heading sizes */
.page-hero--large h1 { font-size: clamp(46px, calc(36.34px + 2.476vw), 72px); }
.page-hero--long h1 { font-size: clamp(38px, calc(31.31px + 1.714vw), 56px); line-height: 1.08; }
.page-hero--long .page-hero__tagline { font-size: clamp(20px, calc(19.26px + 0.19vw), 22px); }
.page-hero--long .page-hero__intro { margin-top: 22px; font-size: clamp(18px, calc(17.26px + 0.19vw), 20px); }

/* ® as in the design */
.page-hero h1 .reg { font-size: .4em; vertical-align: super; line-height: 0; }
.page-hero__intro .reg { font-size: .7em; vertical-align: super; line-height: 0; }

/* Tall cropped portrait card (How I work, Compassionate Inquiry) */
.page-hero--tall .page-hero__media { width: 360px; }
.page-hero--tall .page-hero__card { height: 420px; }
.page-hero--tall .page-hero__card img { height: 100%; max-height: none; }
.page-hero--large.page-hero--tall .page-hero__inner { padding-bottom: 72px; }

/* Buttons whose text wraps onto several lines stay readable */
.prose__buttons .btn, .more__links .btn { padding-block: 10px; text-align: left; justify-content: flex-start; }
.prose__buttons--small .btn, .btn--small { min-height: 44px; padding-inline: 24px; font-size: 17px; }
.btn i, .btn em { font-style: italic; }

/* How I work: steps separated by rules */
.steps { list-style: none; margin: 0; padding: 0 0 clamp(56px, calc(41.14px + 3.81vw), 96px); max-width: 760px; }
.steps__item { padding: 44px 0; border-top: 1px solid #cfd6c8; }
.steps__item:last-child { border-bottom: 1px solid #cfd6c8; }
.steps h2 { font-size: clamp(26px, calc(24.51px + 0.381vw), 30px); line-height: 1.2; }
.steps p { margin-top: 12px; font-size: clamp(18px, calc(17.26px + 0.19vw), 20px); line-height: 1.65; }

.more { padding-bottom: clamp(56px, calc(41.14px + 3.81vw), 96px); }
.more__inner { display: flex; align-items: flex-start; gap: 96px; }
.more .quotes { width: 520px; flex-shrink: 0; }
.more__links { display: flex; flex-direction: column; gap: 18px; }
.more__links h2 { font-size: clamp(24px, calc(22.51px + 0.381vw), 28px); line-height: 1.2; }

/* Compassionate Inquiry: two-column box and training block */
.highlights {
  max-width: 1248px;
  padding: 44px 48px; border-radius: 26px; background: var(--sage);
  display: flex; align-items: flex-start; gap: 56px;
}
.highlights__item { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.highlights__item + .highlights__item { padding-left: 56px; border-left: 1px solid #b9c4ae; }
.highlights h2 { font-size: clamp(24px, calc(23.26px + 0.19vw), 26px); line-height: 1.2; color: var(--green); }
.highlights p { font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.6; }

.prose--after { padding-top: 52px; padding-bottom: clamp(56px, calc(41.14px + 3.81vw), 96px); }
.training { display: flex; align-items: center; gap: 32px; }
.training__badge { width: 108px; height: 108px; flex-shrink: 0; border-radius: 50%; }
.training .btn { align-self: flex-start; }

/* Acupuncture / Preparation: quote and Book button at the bottom */
.closing { display: flex; align-items: center; gap: 40px; padding-bottom: 52px; }
.closing .quotes { flex: 1; max-width: 700px; }
.closing .btn { flex-shrink: 0; }

@media (max-width: 1239px) {
  .more__inner { gap: 56px; }
  .more .quotes { width: 40%; }
}

@media (max-width: 899px) {
  .page-hero--tall .page-hero__media { width: 100%; max-width: 360px; }
  .more__inner { flex-direction: column; gap: 40px; }
  .more .quotes { width: auto; }
  .highlights { flex-direction: column; gap: 28px; padding: 32px 28px; }
  .highlights__item + .highlights__item { padding-left: 0; padding-top: 28px; border-left: 0; border-top: 1px solid #b9c4ae; }
  .closing { flex-direction: column; align-items: flex-start; gap: 28px; }
}

@media (max-width: 699px) {
  .page-hero--tall .page-hero__card { height: auto; aspect-ratio: 360 / 420; }
  .steps__item { padding: 32px 0; }
  .training { flex-direction: column; align-items: flex-start; gap: 20px; }
  .training__badge { width: 88px; height: 88px; }
}

/* ---------- Group 3: plain page title (Writing, Contact, Privacy policy) ---------- */

.page-title__inner { max-width: 804px; padding: clamp(28px, calc(20.57px + 2.286vw), 56px) 0 24px; }
.page-title h1,
.about-page h1 { font-size: clamp(44px, calc(35.09px + 2.286vw), 68px); line-height: 1.05; letter-spacing: -0.015em; }

/* ---------- About ---------- */

.about-page__inner {
  padding-top: clamp(28px, calc(20.57px + 2.286vw), 56px);
  display: grid;
  grid-template-columns: minmax(0, 820px) 340px;
  grid-template-areas: "title portrait" "prose portrait";
  grid-template-rows: auto 1fr;
  justify-content: space-between;
  column-gap: 56px;
}
.about-page h1 { grid-area: title; }
.about-page__portrait {
  grid-area: portrait; margin: 0;
  border-radius: 26px; background: var(--sage); overflow: hidden; align-self: start;
}
.about-page__portrait img { display: block; width: 100%; height: 420px; object-fit: cover; object-position: center 20%; }
.about-page__prose { grid-area: prose; padding-top: 28px; padding-bottom: 0; max-width: 820px; }
.prose__section .btn { align-self: flex-start; }

.bring {
  margin-top: 52px; max-width: 1248px;
  padding: 48px; border-radius: 26px; background: var(--sage);
  display: flex; flex-direction: column; gap: 28px;
}
.bring__head { display: flex; flex-direction: column; gap: 10px; }
.bring h2 { font-size: clamp(26px, calc(24.51px + 0.381vw), 30px); line-height: 1.2; color: var(--green); }
.bring p { font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.6; }
.bring__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px 48px; }
.bring b { color: var(--green); font-weight: 600; }

.closing--about { padding-top: 52px; padding-bottom: 52px; }
.closing--about .quotes { max-width: 520px; }
.about-books { display: flex; align-items: center; gap: 20px; }
.about-books__cover { width: 62px; height: 88px; border-radius: 5px; box-shadow: 0 3px 10px rgba(31, 38, 32, .2); flex-shrink: 0; }

/* ---------- Writing ---------- */

.writing { max-width: 884px; padding: 40px 0 72px; display: flex; flex-direction: column; gap: 44px; }
.writing__group { display: flex; flex-direction: column; gap: 28px; }
.writing h2 { font-size: clamp(26px, calc(24.51px + 0.381vw), 30px); line-height: 1.2; color: var(--green); }

.book { display: flex; align-items: flex-start; gap: 32px; padding: 32px; border-radius: 22px; background: var(--sage); }
.book__cover { width: 140px; height: 200px; flex-shrink: 0; border-radius: 8px; box-shadow: 0 4px 14px rgba(31, 38, 32, .18); }
.book__body { display: flex; flex-direction: column; gap: 10px; }
.book__title { font-family: var(--serif); font-style: italic; font-size: clamp(22px, calc(20.51px + 0.381vw), 26px); line-height: 1.25; }
.book__body p { font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.6; }
.book__buy { display: flex; flex-wrap: wrap; align-items: center; gap: 4px 6px; }
.book .book__buy-label { margin-right: 4px; font-size: 16px; color: var(--muted); }
.book__buy a {
  display: inline-flex; align-items: center; min-height: 36px; padding: 0 8px; border-radius: 999px;
  font-size: 17px; font-weight: 600; text-decoration: none;
}
.book__buy a:hover { text-decoration: underline; }

.posts { list-style: none; margin: 0; padding: 0; border-top: 1px solid #cfd6c8; }
.posts li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid #cfd6c8; }
.posts a { font-family: var(--serif); font-size: clamp(19px, calc(18.26px + 0.19vw), 21px); line-height: 1.35; text-decoration: none; }
.posts a:hover { text-decoration: underline; }
.posts time { font-size: 16px; color: var(--muted); flex-shrink: 0; }

/* Blog post */
.post__inner { max-width: 708px; padding: clamp(28px, calc(20.57px + 2.286vw), 56px) 0 72px; }
.post__back { display: inline-block; margin-bottom: 24px; font-size: 17px; }
.post h1 { font-size: clamp(36px, calc(30.06px + 1.524vw), 52px); line-height: 1.1; letter-spacing: -0.01em; }
.post__date { display: block; margin-top: 14px; font-size: 16px; color: var(--muted); }
.post__image { display: block; width: 100%; height: auto; margin-top: 32px; border-radius: 22px; }
.post__text { padding: 32px 0 0; gap: 20px; }
.post__text h2 { margin-top: 16px; }
.post__text figure { margin: 0; }
.post__text img { display: block; width: 100%; height: auto; border-radius: 16px; }
.post__text iframe { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; border: 0; border-radius: 16px; }
.post__text ul, .post__text ol { margin: 0; padding-left: 24px; font-size: clamp(18px, calc(17.26px + 0.19vw), 20px); line-height: 1.65; }

/* ---------- Contact ---------- */

.contact { padding: 40px 0 clamp(56px, calc(41.14px + 3.81vw), 96px); display: flex; align-items: flex-start; gap: 96px; }
.contact__info { flex: 1; max-width: 620px; display: flex; flex-direction: column; gap: 44px; }
.contact__section { display: flex; flex-direction: column; gap: 12px; }
.contact h2 { font-size: clamp(24px, calc(22.51px + 0.381vw), 28px); line-height: 1.2; color: var(--green); }
.contact__section p, .contact__lines p { font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.6; }
.contact__rates { margin: 0; padding-left: 22px; font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.75; }
.contact__section .contact__note { margin-top: 6px; font-size: 17px; line-height: 1.55; color: var(--muted); }
.contact__section .btn { align-self: flex-start; }
.contact__maps { display: flex; flex-wrap: wrap; gap: 10px; }

.contact__card {
  width: 420px; flex-shrink: 0;
  padding: 40px; border-radius: 26px; background: var(--sage);
  display: flex; flex-direction: column; gap: 22px;
}
.contact__lines { display: flex; flex-direction: column; gap: 14px; }
.contact__lines a:not(.btn) { color: var(--ink); }
.contact__lines a:not(.btn):hover { color: var(--green); }
.contact__lines .btn { align-self: flex-start; }
.contact__actions { display: flex; flex-direction: column; gap: 14px; padding-top: 22px; border-top: 1px solid #b9c4ae; }
.contact__actions .btn { align-self: stretch; }

/* Contact form */
.contact-form { padding-top: 22px; border-top: 1px solid #b9c4ae; }
.contact-form form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 16px; font-weight: 600; }
.field input, .field textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid #b9c4ae; border-radius: 12px; background: #fbfaf7;
  font: inherit; font-size: 17px; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus-visible, .field textarea:focus-visible { outline: 3px solid var(--green); outline-offset: 1px; border-color: var(--green); }
.form-note { font-size: 15px; line-height: 1.5; color: var(--muted); }
.contact-form .btn { align-self: flex-start; }
.form-alert { padding: 14px 16px; border-radius: 12px; font-size: 17px; line-height: 1.5; }
.form-alert--ok { background: #fbfaf7; border-left: 4px solid var(--green); }
.form-alert--error { margin-bottom: 16px; background: #f7e9e4; border-left: 4px solid #9c3d2a; color: #5e2519; }
.hp { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

/* Booking calendar (Healthadvisor) */
.booking { padding: clamp(56px, calc(41.14px + 3.81vw), 96px) 0; background: #fbfaf7; border-top: 1px solid var(--line); scroll-margin-top: 16px; }
.booking h2 { font-size: clamp(32px, calc(29.03px + 0.762vw), 40px); line-height: 1.15; }
.booking__note { margin-top: 12px; font-size: 17px; color: var(--muted); }
.booking__frame { margin-top: 28px; }
.booking iframe { display: block; width: 100%; height: 640px; border: 0; }

/* ---------- Privacy policy ---------- */

.prose--legal { max-width: 884px; padding-bottom: 80px; gap: 40px; }
.prose--legal .prose__section { gap: 14px; }
.prose--legal p, .prose--legal li { font-size: clamp(18px, calc(17.63px + 0.095vw), 19px); line-height: 1.6; }
.prose--legal ul { margin: 0; padding-left: 24px; display: flex; flex-direction: column; gap: 8px; }
.prose__updated { font-size: 16px !important; font-style: italic; color: var(--muted); }

@media (max-width: 1239px) {
  .contact { gap: 48px; }
  .contact__card { width: 380px; padding: 32px; }
}

@media (max-width: 899px) {
  .about-page__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "portrait" "prose";
    grid-template-rows: auto;
    row-gap: 28px;
  }
  .about-page__portrait { max-width: 340px; }
  .about-page__prose { padding-top: 8px; }
  .bring { padding: 32px 28px; }
  .bring__grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .closing--about { align-items: flex-start; }
  .contact { flex-direction: column; gap: 44px; }
  .contact__info { max-width: none; }
  .contact__card { width: 100%; max-width: 560px; }
}

@media (max-width: 699px) {
  .about-page__portrait img { height: auto; aspect-ratio: 340 / 420; }
  .book { flex-direction: column; gap: 20px; padding: 24px; }
  .book__cover { width: 112px; height: 160px; }
  .contact__card { padding: 24px; }
  .booking iframe { height: 720px; }
}

/* ---------- Temporary inner-page intro ---------- */

.page-intro { padding: 56px 0 96px; }
.page-intro h1 { font-size: clamp(44px, calc(36.6px + 2.1vw), 68px); line-height: 1.05; letter-spacing: -0.015em; }

/* ======================================================
   Tablet and below: single-column hero and band
   ====================================================== */

@media (max-width: 899px) {
  .hero__inner { grid-template-columns: minmax(0, 1fr); min-height: 0; padding-top: 28px; }
  .hero__bg { left: -160px; right: auto; top: 380px; width: 700px; height: 700px; }
  .portrait { margin-top: 36px; align-items: center; gap: 14px; }
  .portrait__frame { max-width: 400px; }
  .portrait figcaption { text-align: center; max-width: 22em; font-size: 15px; }

  .work__inner { grid-template-columns: minmax(0, 1fr); row-gap: 20px; }
  .work__head { flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .work__branch { width: 46px; height: 146px; }
  .work__body { gap: 20px; }

  .about { padding: 56px 0; }
  .about__inner { flex-direction: column; align-items: stretch; gap: 22px; }
  .about__media { width: 100%; }
  .about__body { max-width: none; }

  .info-band { padding: 56px 0; }
  .info-band__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .info-band__col { gap: 12px; }
  .info-band__col--book { gap: 16px; }

  .site-footer { padding: 36px 0 calc(112px + var(--cookie-offset, 0px)); }
  .site-footer__inner { flex-direction: column-reverse; gap: 14px; }
  .site-footer__links { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ======================================================
   Phone (Mobile.html)
   ====================================================== */

@media (max-width: 699px) {
  .topbar { height: 40px; justify-content: space-between; }
  .topbar__client { display: none; }
  .lang-switch .long { display: none; }
  .lang-switch .short { display: inline; }

  /* Row: logo | Book | menu (Mobile.html) */
  .mainbar {
    height: auto; min-height: 72px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "logo book menu";
    column-gap: 8px;
    align-items: center;
  }
  .mainbar__right { display: contents; }
  .logo { grid-area: logo; gap: 12px; min-width: 0; }
  .btn--header { grid-area: book; }
  .menu-toggle { grid-area: menu; }
  .logo__mark { width: 24px; height: 46px; }
  .logo__mark img { width: 24px; height: 76px; }
  .logo__text { gap: 1px; }
  .logo__name { font-size: 21px; }
  .logo__sub { font-size: 14px; }
  .btn--header,
  html[lang="fr"] .btn--header { min-height: 44px; padding: 0 18px; font-size: 16px; }

  /* Light pill buttons turn into underlined text links on phones */
  .btn--collapse {
    min-height: 44px; padding: 0; border-radius: 0;
    background: none; font-size: 18px; font-weight: 400;
    text-decoration: underline; text-underline-offset: 5px; justify-content: flex-start; text-align: left;
  }
  .btn--collapse:hover { background: none; }
  .hero__text .btn { margin-top: 12px; }
  .hero__intro { margin-top: 22px; }
  .portrait__frame { max-width: 340px; }
  .work__body .btn--collapse, .about__body .btn--collapse { font-size: 19px; margin-top: -8px; }

  .tiles__head { gap: 10px; }
  .tiles__grid { margin-top: 26px; grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .tile { gap: 8px; padding: 22px; border-radius: 22px; }
  .tile--outline { padding: 20.5px; }
  .tile .icon, .tile__more { display: none; }
  .tile__title { font-size: 27px; }
  .tile__text { font-size: 17px; }

  .work { padding-top: 8px; }
  .about__media img { width: 220px; height: 220px; }

  .info-band__col .btn--light {
    min-height: 44px; padding: 0; background: none; border-radius: 0;
    font-size: 18px; font-weight: 400; text-decoration: underline; text-underline-offset: 4px;
  }
  .info-band__col .btn--light:hover { background: none; }
  .info-band__col .btn--primary { padding: 0 28px; font-size: 18px; }
  .info-band__tel { font-size: 18px; }

  .fab { right: 16px; bottom: calc(16px + var(--cookie-offset, 0px)); width: 56px; height: 56px; border-radius: 28px; }
  .fab svg { width: 28px; height: 28px; }

  .cookie {
    left: 16px; right: 16px; bottom: 16px; width: auto;
    flex-direction: column; align-items: stretch; gap: 14px;
    padding: 18px 18px 16px;
  }
  .cookie__actions .btn { flex: 1; }
}

@media (max-width: 399px) {
  .logo { gap: 10px; }
  .logo__name { font-size: 18px; }
  .logo__sub { font-size: 13px; }
  .btn--header { padding: 0 16px; }
}

/* When logo, Book and menu don't fit on one row (French label, very narrow
   phones), Book moves to its own full-width row under the logo */
@media (max-width: 369px) {
  .mainbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 72px auto;
    grid-template-areas: "logo menu" "book book";
    padding-bottom: 12px;
  }
  .btn--header { width: 100%; }
}
@media (max-width: 529px) {
  html[lang="fr"] .mainbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 72px auto;
    grid-template-areas: "logo menu" "book book";
    padding-bottom: 12px;
  }
  html[lang="fr"] .btn--header { width: 100%; }
}

/* Keep the WhatsApp button clear of the cookie banner on narrow tablets */
@media (min-width: 700px) and (max-width: 819px) {
  .fab { bottom: calc(32px + var(--cookie-offset, 0px)); }
}

/* Google Ads test mode panel (only shown in test mode) */
.ads-test {
  position: fixed; top: 12px; right: 12px; z-index: 70;
  width: min(420px, calc(100% - 24px)); max-height: 45vh; overflow: auto;
  padding: 12px 14px; border-radius: 12px;
  background: rgba(31, 38, 32, .92); color: #f2f0eb;
  font: 12px/1.45 ui-monospace, Consolas, monospace;
}
.ads-test strong { display: block; margin-bottom: 6px; font-family: var(--sans); font-size: 13px; }
.ads-test ol { margin: 0 0 8px; padding-left: 18px; }
.ads-test li { word-break: break-all; }
.ads-test button { padding: 4px 10px; border: 0; border-radius: 999px; background: #dde3d6; color: #1f2620; font: 600 12px var(--sans); cursor: pointer; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}
