:root {
  --paper: #f8f5f0;
  --paper-2: #f1ebe3;
  --paper-3: #e6ddd3;
  --ink: #1c1916;
  --muted: #544d47;
  --line: rgba(28, 25, 22, .14);
  --accent: #9a6b4d;
  --accent-dark: #704a34;
  --white: #fffdf9;
  --shadow: 0 22px 60px rgba(31, 25, 20, .10);
  --serif: Baskerville, "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: auto; }
picture { display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--accent); color: white; }

@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: .28s;
  animation-timing-function: var(--ease);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: .75rem;
  transform: translateY(-180%);
  background: var(--ink);
  color: white;
  padding: .65rem .9rem;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.shell { width: min(1160px, calc(100% - 64px)); margin-inline: auto; }
.section-pad { padding-block: clamp(5rem, 8vw, 7.5rem); }
.section-bottom { padding-bottom: clamp(5rem, 8vw, 7.5rem); }
.section-warm { background: var(--paper-2); }
.section-soft { background: #f4efe8; }
.section-ink { background: var(--ink); color: var(--white); }

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--accent-dark);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-weight: 400; }
h1, h2 {
  font-family: var(--serif);
  letter-spacing: -.035em;
  line-height: 1.01;
}
h1 { font-size: clamp(3.1rem, 6.3vw, 5.9rem); margin-bottom: 1.35rem; }
h2 { font-size: clamp(2.25rem, 4.5vw, 4rem); margin-bottom: 1.1rem; }
h3 { line-height: 1.2; }
.hero-intro, .section-intro {
  color: #514a44;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  max-width: 58ch;
}
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 4.6vw, 4rem); }
.section-head.center { text-align: center; margin-inline: auto; }
.lead-serif {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, .9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(28, 25, 22, .08);
}
.header-inner {
  position: relative;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: .96rem; letter-spacing: .15em; font-weight: 500; color: #171411; }
.brand-sub { margin-top: .32rem; color: #5a5048; font-size: .52rem; font-weight: 600; letter-spacing: .16em; }
.desktop-nav { display: flex; justify-content: center; gap: clamp(1rem, 2vw, 1.8rem); }
.desktop-nav a {
  position: relative;
  color: #2f2a26;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color .22s var(--ease);
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.38rem;
  height: 1px;
  background: var(--accent);
  transition: right .25s var(--ease);
}
.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--accent-dark); }
.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: .42rem;
  color: #4d453e;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .08em;
}
.language-switcher a {
  padding: .18rem 0;
  transition: color .2s var(--ease), opacity .2s var(--ease);
}
.language-switcher a:hover { color: var(--accent-dark); }
.language-switcher a[aria-current="page"] {
  color: var(--ink);
  font-weight: 800;
  border-bottom: 1px solid var(--accent-dark);
}
.language-separator { color: #9d948b; font-weight: 400; }
.menu-toggle {
  display: none;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 1.35; }
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  overflow: auto;
  background: var(--paper);
  padding: 2.4rem 28px 3rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-nav { display: flex; flex-direction: column; }
.mobile-nav a {
  padding: .58rem 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  line-height: 1.15;
}
.mobile-nav .mobile-book { margin-top: 1.15rem; color: var(--accent-dark); }
.mobile-menu-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: .77rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: .72rem 1.15rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: white;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.button:hover { transform: translateY(-1px); background: var(--accent-dark); border-color: var(--accent-dark); }
.button-outline { background: transparent; color: var(--ink); }
.button-outline:hover { color: white; }
.button-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid var(--line);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.text-link svg,
.contact-card > svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform .2s var(--ease);
}
.text-link:hover svg,
.contact-card:hover > svg { transform: translateX(3px); }
.text-link.large { font-size: .74rem; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
  gap: clamp(3.5rem, 7vw, 7rem);
  align-items: center;
  min-height: calc(100svh - var(--header-h));
}
.hero-copy { max-width: 720px; }
.hero-copy h1 { max-width: 760px; }
.hero-copy .hero-intro { max-width: 610px; }
.hero-actions { margin-top: 1.8rem; }
.hero-visual { width: 100%; }
.hero-picture { aspect-ratio: .82; overflow: hidden; }
.hero-picture img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }

.split-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 8rem);
  align-items: center;
}
.portrait-stack { width: min(100%, 470px); }
.about-picture { aspect-ratio: .82; overflow: hidden; }
.about-picture img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.image-caption {
  display: block;
  margin-top: .75rem;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.split-copy { max-width: 620px; }
.split-copy .section-head { margin-bottom: 1.8rem; }

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.course-card {
  background: transparent;
  min-width: 0;
}
.course-media { overflow: hidden; background: var(--paper-3); }
.course-media picture { height: 100%; }
.course-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.course-card:hover .course-media img { transform: scale(1.018); }
.course-card-compact .course-media { aspect-ratio: .82; }
.course-body { padding-top: 1rem; }
.card-kicker {
  margin-bottom: .45rem;
  color: var(--muted);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.course-body h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.2vw, 2.1rem);
  font-weight: 400;
}
.course-body > p:not(.card-kicker) {
  margin: .85rem 0 0;
  color: var(--muted);
  font-size: .91rem;
}
.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .66rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.course-grid-full {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4.5rem 3.2rem;
}
.course-grid-full .course-card {
  display: grid;
  grid-template-columns: minmax(140px, .78fr) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.course-grid-full .course-media { aspect-ratio: .8; }
.course-grid-full .course-body { padding-top: .2rem; }
.section-cta { margin-top: clamp(2.3rem, 4vw, 3.8rem); }

.treatment-list { border-top: 1px solid var(--line); }
.treatment-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 1.5rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}
.treatment-index { padding-top: .35rem; color: var(--accent); font-family: var(--serif); font-size: .95rem; }
.treatment-row h3 { margin: 0 0 .3rem; font-family: var(--serif); font-size: clamp(1.45rem, 2.4vw, 2.05rem); font-weight: 400; }
.treatment-row p { margin: 0; max-width: 68ch; color: var(--muted); font-size: .9rem; }
.treatments-preview .section-head { margin-bottom: 2.6rem; }

.editorial-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1rem;
  align-items: end;
}
.editorial-shot { overflow: hidden; background: var(--paper-3); }
.editorial-shot picture { height: 100%; }
.editorial-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s var(--ease);
}
.editorial-shot:hover img { transform: scale(1.015); opacity: .94; }
.shot-1 { aspect-ratio: .82; }
.shot-2, .shot-3 { aspect-ratio: .88; }

.booking-minimal { border-top: 1px solid var(--line); background: var(--paper-2); }
.booking-minimal-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
}
.booking-minimal .section-head { margin-bottom: 0; max-width: 720px; }
.booking-minimal .section-intro { max-width: 54ch; }

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .58fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
  min-height: 68vh;
}
.inner-hero-copy { max-width: 740px; }
.inner-hero-copy h1 { font-size: clamp(3rem, 5.6vw, 5rem); }
.inner-hero-media { width: 100%; max-width: 470px; justify-self: end; }
.inner-hero-media picture { aspect-ratio: .82; overflow: hidden; }
.inner-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.narrative-grid {
  display: grid;
  grid-template-columns: 160px minmax(0, 700px);
  gap: clamp(2rem, 8vw, 7rem);
  justify-content: center;
}
.narrative-index { color: var(--muted); }
.narrative-index span { display: block; color: var(--accent); font-family: var(--serif); font-size: 2.2rem; }
.narrative-index p { margin-top: .2rem; font-size: .73rem; }
.narrative-copy > p:not(.lead-serif) { color: var(--muted); }
.narrative-copy blockquote {
  margin: 2.5rem 0 0;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.4;
}
.about-training {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}
.about-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about-detail-grid picture { overflow: hidden; }
.about-detail-grid picture:first-child { aspect-ratio: .8; }
.about-detail-grid picture:nth-child(2) { aspect-ratio: .82; margin-top: 3rem; }
.about-detail-grid img { width: 100%; height: 100%; object-fit: cover; }

.future-band { max-width: 760px; }
.future-band .section-head { margin-bottom: 0; }
.future-band .section-intro { max-width: 58ch; }

.results-shell { margin-top: -1.2rem; }
.filter-bar {
  position: sticky;
  top: calc(var(--header-h) + .3rem);
  z-index: 20;
  display: flex;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  margin: 0 0 1.5rem;
  padding: .72rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(248, 245, 240, .94);
  backdrop-filter: blur(12px);
}
.filter-button {
  padding: .28rem 1.05rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: .71rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.filter-button + .filter-button { border-left: 1px solid var(--line); }
.filter-button:hover,
.filter-button.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.results-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7rem; }
.result-card {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--paper-3);
  cursor: zoom-in;
  aspect-ratio: .84;
}
.result-card picture { height: 100%; }
.result-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease), opacity .25s var(--ease);
}
.result-card:hover img { transform: scale(1.02); opacity: .95; }
.result-card > span { display: none; }
.result-card[hidden] { display: none; }
.lightbox {
  width: min(920px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  padding: 0;
  border: 0;
  background: #111;
  color: white;
  box-shadow: var(--shadow);
}
.lightbox::backdrop { background: rgba(11, 9, 8, .82); backdrop-filter: blur(5px); }
.lightbox img { max-height: calc(100vh - 7rem); width: 100%; object-fit: contain; }
.lightbox p { margin: 0; padding: .8rem 1rem; color: rgba(255,255,255,.72); font-size: .76rem; }
.lightbox-close {
  position: absolute;
  z-index: 2;
  right: .75rem;
  top: .75rem;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(0,0,0,.4);
  color: white;
  cursor: pointer;
}
.lightbox-close svg { width: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; }

.review-placeholder {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.quote-mark { color: var(--accent); font-family: var(--serif); font-size: 4rem; line-height: .75; }
.review-placeholder h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); }
.review-placeholder p { max-width: 600px; color: var(--muted); }

.booking-simple { max-width: 760px; }
.booking-status {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 2.1rem;
  color: var(--muted);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.booking-status p { margin: 0; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.contact-cards { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.contact-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  min-height: 86px;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.contact-card:hover { color: var(--accent-dark); padding-left: .2rem; }
.contact-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.contact-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.contact-icon svg .fill { fill: currentColor; stroke: none; }
.contact-card strong, .contact-card small { display: block; }
.contact-card strong { font-family: var(--serif); font-size: 1.28rem; font-weight: 400; }
.contact-card small { margin-top: .06rem; color: var(--muted); font-size: .74rem; }
.contact-layout { display: grid; grid-template-columns: 1fr .72fr; gap: clamp(3rem, 7vw, 6rem); align-items: start; }
.location-card {
  padding: 0 0 0 2rem;
  border-left: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.location-card .eyebrow { margin-top: 1rem; }
.location-card h2 { font-size: clamp(1.9rem, 3vw, 3rem); }
.location-card p:last-child { color: var(--muted); }

.faq-list { max-width: 880px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.65rem);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary > span { color: var(--accent); font-family: var(--sans); font-size: .72rem; }
.faq-item summary i { font-family: var(--sans); font-style: normal; font-size: 1.35rem; transition: transform .2s var(--ease); }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item div { max-width: 760px; padding: 0 3.35rem 1.4rem; color: var(--muted); }

.legal-layout { max-width: 850px; }
.legal-updated { margin-bottom: 2.4rem; color: var(--muted); font-size: .76rem; }
.legal-block { padding: 1.75rem 0; border-top: 1px solid var(--line); }
.legal-block h2 { margin-bottom: .6rem; font-size: clamp(1.65rem, 2.8vw, 2.5rem); }
.legal-block p { max-width: 76ch; color: var(--muted); }

.site-footer { padding: 2.6rem 0 2rem; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; gap: 2rem; align-items: start; }
.footer-brand { font-family: var(--serif); font-size: .9rem; letter-spacing: .12em; }
.footer-grid p { margin: .45rem 0 0; color: var(--muted); font-size: .72rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1rem; font-size: .73rem; }
.footer-links a { border-bottom: 1px solid transparent; }
.footer-links a:hover { border-color: currentColor; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-end; color: var(--muted); font-size: .68rem; }
.not-found { min-height: 70vh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.not-found h1 { max-width: 800px; }

.toast {
  position: fixed;
  z-index: 300;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  width: min(390px, calc(100vw - 2rem));
  padding: .9rem 1rem;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.toast[hidden] { display: none; }
.toast span { flex: 1; color: rgba(255,255,255,.82); font-size: .78rem; }
.toast button { flex: 0 0 auto; padding: .15rem; border: 0; background: transparent; color: white; cursor: pointer; }
.toast button svg { width: 15px; fill: none; stroke: currentColor; stroke-width: 1.4; }

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  .desktop-nav { gap: .9rem; }
  .desktop-nav a { font-size: .7rem; }
  .brand-name { font-size: .82rem; }
  .header-inner { gap: 1.1rem; }
  .course-grid-full .course-card { grid-template-columns: 1fr; }
  .course-grid-full .course-media { aspect-ratio: 1.1; }
}

@media (max-width: 1024px) {
  :root { --header-h: 68px; }
  .shell { width: min(100% - 44px, 920px); }
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: grid; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr .72fr; gap: 3rem; }
  .course-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .course-grid .course-card-compact:last-child { grid-column: 1 / -1; width: calc(50% - .5rem); }
  .results-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .inner-hero { min-height: auto; grid-template-columns: 1fr .58fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .location-card { padding: 2rem 0 0; border-left: 0; border-top: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-meta { grid-column: 1 / -1; align-items: flex-start; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.8rem; }
  .hero-copy { max-width: 690px; }
  .hero-visual { width: min(72%, 520px); margin-left: auto; }
  .split-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portrait-stack { width: min(74%, 460px); }
  .about-training { grid-template-columns: 1fr; }
  .narrative-grid { grid-template-columns: 120px minmax(0, 1fr); gap: 2rem; }
  .booking-minimal-inner { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 720px) {
  :root { --header-h: 64px; }
  .shell { width: calc(100% - 28px); }
  .section-pad { padding-block: 4.4rem; }
  .section-bottom { padding-bottom: 4.4rem; }
  h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  h2 { font-size: clamp(2.15rem, 9.5vw, 3.25rem); }
  .brand-sub { display: none; }
  .brand-name { font-size: .74rem; letter-spacing: .12em; }
  .header-actions { gap: .5rem; }
  .mobile-menu { padding: 2rem 14px 3rem; }
  .hero-grid { padding-top: 3.2rem; gap: 2.3rem; }
  .hero-visual { width: 100%; margin: 0; }
  .hero-picture { aspect-ratio: .86; }
  .hero-copy .hero-intro { max-width: 52ch; }
  .portrait-stack { width: 100%; }
  .course-grid,
  .course-grid-full { grid-template-columns: 1fr; gap: 2.7rem; }
  .course-grid .course-card-compact:last-child { grid-column: auto; width: 100%; }
  .course-card-compact .course-media { aspect-ratio: 1.02; }
  .course-grid-full .course-card { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding-top: 1rem; }
  .course-grid-full .course-media { aspect-ratio: .8; }
  .course-grid-full .course-body > p:not(.card-kicker) { font-size: .84rem; }
  .course-meta { font-size: .61rem; }
  .treatment-row { grid-template-columns: 34px 1fr; gap: .65rem; padding: 1.05rem 0; }
  .treatment-row h3 { font-size: 1.4rem; }
  .treatment-row p { font-size: .82rem; }
  .editorial-gallery { grid-template-columns: 1fr 1fr; gap: .55rem; align-items: stretch; }
  .shot-1 { grid-column: 1 / -1; aspect-ratio: 1.2; }
  .shot-2, .shot-3 { aspect-ratio: .88; }
  .inner-hero { grid-template-columns: 1fr; gap: 2.4rem; padding-top: 3.6rem; }
  .inner-hero-media { width: min(86%, 470px); margin-left: auto; }
  .narrative-grid { grid-template-columns: 1fr; gap: 1rem; }
  .narrative-index { display: flex; align-items: baseline; gap: .7rem; }
  .narrative-index span { font-size: 1.6rem; }
  .about-detail-grid { gap: .6rem; }
  .about-detail-grid picture:nth-child(2) { margin-top: 1.6rem; }
  .results-shell { margin-top: 0; }
  .filter-bar { top: calc(var(--header-h) + .2rem); width: 100%; justify-content: flex-start; overflow-x: auto; gap: 0; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-button { white-space: nowrap; }
  .results-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: .45rem; }
  .contact-card { min-height: 78px; }
  .faq-item summary { grid-template-columns: 28px 1fr auto; gap: .65rem; font-size: 1.2rem; }
  .faq-item div { padding-left: 2.1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .footer-meta { grid-column: auto; }
}

@media (max-width: 460px) {
  .shell { width: calc(100% - 22px); }
  .course-grid-full .course-card { grid-template-columns: 105px 1fr; }
  .course-grid-full .course-body > p:not(.card-kicker) { display: none; }
  .course-grid-full .course-meta { margin-top: .7rem; }
  .inner-hero-media { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* Contact page — intentionally compact and minimal. */
.contact-page { min-height: calc(100vh - var(--header-h)); }
.contact-hero-compact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(2.5rem, 7vw, 6rem);
  padding-top: clamp(4.25rem, 7vw, 6.5rem);
  padding-bottom: clamp(2.75rem, 4.5vw, 4rem);
}
.contact-copy-compact { max-width: 680px; }
.contact-copy-compact h1 {
  max-width: 650px;
  margin-bottom: 1rem;
  font-size: clamp(2.75rem, 4.6vw, 4.35rem);
}
.contact-copy-compact .hero-intro { max-width: 540px; margin-bottom: 0; }
.contact-page-actions { min-width: 250px; padding-bottom: .2rem; }
.contact-page-actions .contact-cards {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  border: 0;
}
.contact-page-actions .contact-card {
  display: flex;
  min-height: 0;
  width: max-content;
  padding: .25rem 0;
  border: 0;
  gap: .7rem;
}
.contact-page-actions .contact-card:hover { padding-left: 0; transform: translateX(3px); }
.contact-page-actions .contact-card > svg,
.contact-page-actions .contact-card small { display: none; }
.contact-page-actions .contact-icon {
  width: 31px;
  height: 31px;
  border-color: rgba(28, 25, 22, .18);
}
.contact-page-actions .contact-icon svg { width: 15px; height: 15px; }
.contact-page-actions .contact-card strong {
  font-family: var(--sans);
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .01em;
}
.contact-location-line {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  max-width: 820px;
  margin-left: max(32px, calc((100vw - 1160px) / 2));
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-location-line .contact-icon { width: 31px; height: 31px; }
.contact-location-line .eyebrow { margin: .05rem 0 .4rem; }
.contact-location-line h2 {
  margin: 0 0 .35rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -.025em;
}
.contact-location-line p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

@media (max-width: 860px) {
  .contact-hero-compact { grid-template-columns: 1fr; gap: 2rem; }
  .contact-page-actions { min-width: 0; }
  .contact-page-actions .contact-cards { flex-direction: row; gap: 1.5rem; }
  .contact-location-line { margin-left: auto; max-width: none; }
}

@media (max-width: 720px) {
  .contact-hero-compact { padding-top: 3rem; padding-bottom: 2.4rem; gap: 1.7rem; }
  .contact-copy-compact h1 { font-size: clamp(2.35rem, 11vw, 3.2rem); }
  .contact-copy-compact .hero-intro { font-size: .92rem; }
  .contact-page-actions .contact-cards { gap: 1.1rem; }
  .contact-location-line { padding-top: 1.6rem; padding-bottom: 4rem; }
}

@media (max-width: 420px) {
  .contact-page-actions .contact-cards { flex-direction: column; gap: .65rem; }
}

/* Desktop 100% zoom tuning */
.button,
.text-link,
.desktop-nav a,
.language-switcher,
.brand {
  white-space: nowrap;
}

@media (min-width: 1025px) {
  .shell {
    width: min(1220px, calc(100% - 64px));
  }

  .header-inner {
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
    gap: clamp(.9rem, 1.7vw, 1.55rem);
  }

  .desktop-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    flex-wrap: nowrap;
    gap: clamp(.9rem, 1.55vw, 1.4rem);
  }

  .desktop-nav a {
    font-size: clamp(.72rem, .78vw, .8rem);
  }

  .header-actions {
    flex-wrap: nowrap;
    white-space: nowrap;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.17fr) minmax(340px, .83fr);
    gap: clamp(3.5rem, 5vw, 4.6rem);
    min-height: auto;
    padding-top: clamp(4.8rem, 7vh, 6rem);
    padding-bottom: clamp(4rem, 6vh, 5.25rem);
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-copy h1 {
    max-width: 700px;
    font-size: clamp(3.85rem, 4.8vw, 4.55rem);
    line-height: .99;
    text-wrap: balance;
  }

  .hero-copy .hero-intro {
    max-width: 58ch;
  }

  .hero-visual {
    width: 100%;
    max-width: 410px;
    justify-self: end;
  }

  .hero-picture {
    aspect-ratio: .84;
  }
}

