:root {
  --navy: #0b1d3a;
  --navy-deep: #07152b;
  --gold: #c5a255;
  --gold-light: #e0c37c;
  --emerald: #1b5e4b;
  --mauve: #8c5a6e;
  --charcoal: #2b2d33;
  --sage: #eff2ee;
  --parchment: #faf7f2;
  --white: #fffdf9;
  --border: rgba(11, 29, 58, 0.15);
  --font-display: "Playfair Display";
  --font-body: "Playfair Display";
  --font-functional: "Lato";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--parchment);
  color: var(--charcoal);
  font-family: var(--font-body), Georgia, serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
main { overflow: hidden; }
.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;
}

.site-header {
  height: 96px;
  padding: 0 clamp(28px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy);
  color: var(--parchment);
  border-bottom: 1px solid rgba(197, 162, 85, 0.35);
  position: relative;
  z-index: 20;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.brand-logo-small { width: 44px; height: 44px; }
.brand-mark {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--font-display), Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  position: relative;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(197, 162, 85, 0.45);
  border-radius: 50%;
}
.brand-copy { display: flex; flex-direction: column; gap: 2px; }
.brand-copy strong {
  font-family: var(--font-display), Georgia, serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.brand-copy small,
.footer-brand small {
  font-family: var(--font-functional), sans-serif;
  color: rgba(250, 247, 242, 0.62);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.header-nav { display: flex; align-items: center; gap: clamp(20px, 2.6vw, 42px); }
.header-nav a {
  font-family: var(--font-functional), sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: rgba(250, 247, 242, 0.78);
  transition: color 180ms ease;
}
.header-nav a:hover { color: var(--gold-light); }
.header-nav .nav-cta {
  border: 1px solid var(--gold);
  color: var(--parchment);
  padding: 13px 18px;
}
.header-nav .nav-cta:hover { background: var(--gold); color: var(--navy); }

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  padding: clamp(70px, 9vw, 130px) clamp(28px, 7vw, 120px) clamp(70px, 8vw, 110px);
  background: var(--navy);
  color: var(--parchment);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 36%, rgba(197, 162, 85, 0.08), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, 62px 62px, 62px 62px;
  pointer-events: none;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(197, 162, 85, 0.12);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit-one { width: 620px; height: 620px; right: -190px; top: -280px; }
.hero-orbit-two { width: 300px; height: 300px; left: -185px; bottom: -120px; }
.hero-copy, .hero-portrait-wrap { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-light);
  font-family: var(--font-functional), sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow > span { width: 36px; height: 1px; background: var(--gold); }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-display), Georgia, serif;
  font-size: clamp(72px, 9vw, 142px);
  line-height: 0.78;
  font-weight: 500;
  letter-spacing: -0.055em;
}
.hero h1 em {
  display: inline-block;
  font-size: 0.42em;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: -0.015em;
  transform: translateY(-0.15em);
}
.hero-lede {
  max-width: 650px;
  margin: clamp(34px, 4vw, 58px) 0 16px;
  font-size: clamp(23px, 2.2vw, 34px);
  line-height: 1.25;
  color: var(--white);
  font-weight: 300;
}
.hero-lede strong { color: var(--gold-light); font-weight: 400; }
.hero-body {
  max-width: 640px;
  margin: 0;
  color: rgba(250, 247, 242, 0.68);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  min-height: 56px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: var(--font-functional), sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--navy-deep); border: 1px solid var(--gold); }
.button-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.button-secondary { border: 1px solid rgba(250, 247, 242, 0.35); color: var(--parchment); }
.button-secondary:hover { border-color: var(--gold); color: var(--gold-light); }
.availability {
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250, 247, 242, 0.55);
  font-family: var(--font-functional), sans-serif;
  font-size: 11px;
  letter-spacing: 0.03em;
}
.availability span { width: 7px; height: 7px; border-radius: 50%; background: #6fb69b; box-shadow: 0 0 0 5px rgba(111, 182, 155, 0.12); }
.hero-portrait-wrap { max-width: 560px; justify-self: end; }
.portrait-frame {
  padding: 12px;
  border: 1px solid rgba(197, 162, 85, 0.65);
  position: relative;
}
.portrait-frame::before,
.portrait-frame::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 78px;
  border-color: var(--gold-light);
  pointer-events: none;
}
.portrait-frame::before { top: -9px; left: -9px; border-top: 1px solid; border-left: 1px solid; }
.portrait-frame::after { right: -9px; bottom: -9px; border-right: 1px solid; border-bottom: 1px solid; }
.hero-portrait { width: 100%; aspect-ratio: 0.79; object-fit: cover; object-position: 50% 30%; filter: contrast(0.98) sepia(0.06); }
.portrait-note {
  width: 182px;
  min-height: 96px;
  margin: -58px 0 0 -58px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--parchment);
  color: var(--navy);
  position: relative;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.portrait-note-number { font-family: var(--font-display), Georgia, serif; font-size: 54px; line-height: 1; color: var(--mauve); }
.portrait-note > span:last-child { font-family: var(--font-functional), sans-serif; font-size: 10px; text-transform: uppercase; line-height: 1.5; letter-spacing: 0.1em; }
.portrait-caption { margin: 20px 0 0; color: rgba(250, 247, 242, 0.42); font-family: var(--font-functional), sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.16em; text-align: right; }

.proof-strip {
  min-height: 154px;
  padding: 34px clamp(28px, 7vw, 120px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.proof-strip > div { display: flex; flex-direction: column; justify-content: center; padding: 0 28px; border-right: 1px solid var(--border); }
.proof-strip > div:first-child { padding-left: 0; }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { font-family: var(--font-display), Georgia, serif; font-size: clamp(38px, 3.2vw, 54px); line-height: 1; font-weight: 500; color: var(--navy); }
.proof-strip span { margin-top: 9px; font-family: var(--font-functional), sans-serif; font-size: 10px; text-transform: uppercase; letter-spacing: 0.13em; color: rgba(43, 45, 51, 0.58); }

.section-shell { width: min(1320px, calc(100% - 56px)); margin-inline: auto; }
.about { padding-top: clamp(100px, 11vw, 175px); padding-bottom: clamp(100px, 10vw, 160px); }
.section-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 50px;
  font-family: var(--font-functional), sans-serif;
  color: rgba(43, 45, 51, 0.54);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.section-kicker span { color: var(--gold); font-size: 12px; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(60px, 9vw, 150px); }
.about-heading h2,
.section-intro h2,
.intro-grid h2,
.questions-heading h2,
.credentials h2 {
  margin: 0;
  font-family: var(--font-display), Georgia, serif;
  color: var(--navy);
  font-size: clamp(50px, 5.5vw, 80px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.035em;
}
.gold-rule { width: 92px; height: 2px; margin-top: 36px; background: var(--gold); }
.about-copy p { margin: 0 0 28px; font-size: clamp(18px, 1.5vw, 21px); line-height: 1.72; color: #42434a; }
.about-copy .dropcap::first-letter {
  float: left;
  margin: 5px 9px 0 0;
  font-family: var(--font-display), Georgia, serif;
  color: var(--mauve);
  font-size: 75px;
  line-height: 0.72;
}
.belief-quote {
  margin: clamp(80px, 9vw, 130px) 0 0;
  padding: 52px clamp(28px, 6vw, 90px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  color: var(--navy);
}
.belief-quote .quote-mark { font-family: var(--font-display), Georgia, serif; color: var(--gold); font-size: 86px; line-height: 0.5; }
.belief-quote p { margin: 0; font-family: var(--font-display), Georgia, serif; font-size: clamp(38px, 4vw, 62px); font-style: italic; line-height: 1; }
.belief-quote footer { max-width: 220px; font-family: var(--font-functional), sans-serif; font-size: 10px; line-height: 1.6; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(43, 45, 51, 0.55); }

.fit-section { padding: clamp(100px, 10vw, 150px) 0; background: var(--sage); border-top: 1px solid rgba(27, 94, 75, 0.12); border-bottom: 1px solid rgba(27, 94, 75, 0.12); }
.fit-inner > div:first-child { display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.eyebrow-dark { color: var(--emerald); margin-bottom: 22px; }
.eyebrow-dark > span { background: var(--emerald); }
.fit-inner h2 { margin: 0; font-family: var(--font-display), Georgia, serif; color: var(--navy); font-size: clamp(50px, 5.8vw, 86px); line-height: 0.95; font-weight: 500; letter-spacing: -0.035em; }
.fit-inner h2 em { color: var(--emerald); font-weight: 400; }
.fit-cards { margin-top: 75px; display: grid; grid-template-columns: repeat(3, 1fr); }
.fit-cards article { min-height: 310px; padding: 38px clamp(24px, 3.5vw, 50px); border-top: 1px solid rgba(27, 94, 75, 0.34); border-right: 1px solid rgba(27, 94, 75, 0.22); }
.fit-cards article:last-child { border-right: 0; }
.fit-icon { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--emerald); font-family: var(--font-display), Georgia, serif; font-size: 22px; }
.fit-cards h3 { margin: 50px 0 14px; font-family: var(--font-display), Georgia, serif; color: var(--navy); font-size: 30px; font-weight: 600; }
.fit-cards p { margin: 0; font-size: 17px; line-height: 1.68; color: rgba(43, 45, 51, 0.72); }

.topics { padding-top: clamp(100px, 11vw, 175px); padding-bottom: clamp(100px, 11vw, 175px); }
.section-intro { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 80px; align-items: end; }
.section-intro .section-kicker { margin-bottom: 38px; }
.section-intro > p { margin: 0 0 6px; font-size: 20px; line-height: 1.65; color: rgba(43, 45, 51, 0.62); }
.topic-grid { margin-top: 82px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.topic-card { min-height: 380px; padding: clamp(32px, 4.4vw, 62px); border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 220ms ease, transform 220ms ease; }
.topic-card:hover { background: var(--white); }
.topic-number { font-family: var(--font-functional), sans-serif; color: var(--gold); font-size: 11px; letter-spacing: 0.12em; }
.topic-card h3 { max-width: 510px; margin: 45px 0 20px; font-family: var(--font-display), Georgia, serif; color: var(--navy); font-size: clamp(33px, 3.3vw, 47px); line-height: 1; font-weight: 600; letter-spacing: -0.025em; }
.topic-card > p { max-width: 540px; margin: 0; font-size: 17px; line-height: 1.68; color: rgba(43, 45, 51, 0.7); }
.topic-card small { display: block; max-width: 510px; margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(197, 162, 85, 0.38); color: var(--mauve); font-family: var(--font-functional), sans-serif; font-size: 11px; line-height: 1.6; letter-spacing: 0.02em; }
.audience-fit { margin-top: 58px; display: grid; grid-template-columns: 190px 1fr; gap: 30px; align-items: start; }
.audience-fit > span { padding-top: 12px; font-family: var(--font-functional), sans-serif; color: rgba(43, 45, 51, 0.48); font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; }
.audience-fit > div { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-fit b { padding: 11px 15px; border: 1px solid rgba(27, 94, 75, 0.25); color: var(--emerald); font-family: var(--font-functional), sans-serif; font-size: 11px; font-weight: 500; letter-spacing: 0.03em; }

.intro-section { padding: clamp(100px, 11vw, 160px) 0; background: var(--navy); color: var(--parchment); }
.intro-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: clamp(60px, 9vw, 145px); align-items: start; }
.section-kicker-light { color: rgba(250, 247, 242, 0.55); }
.intro-grid h2 { color: var(--parchment); }
.intro-note { max-width: 340px; margin: 28px 0 0; color: rgba(250, 247, 242, 0.56); font-size: 17px; line-height: 1.65; }
.intro-card { padding: clamp(34px, 5vw, 68px); background: var(--parchment); color: var(--charcoal); position: relative; }
.intro-card::before { content: "“"; position: absolute; top: -32px; right: 30px; font-family: var(--font-display), Georgia, serif; color: var(--gold); font-size: 120px; line-height: 1; }
.intro-card > p { margin: 0; font-size: clamp(18px, 1.65vw, 23px); line-height: 1.72; }
.copy-button { margin-top: 38px; padding: 0 0 8px; display: flex; align-items: center; gap: 12px; border: 0; border-bottom: 1px solid var(--gold); background: transparent; color: var(--navy); cursor: pointer; font-family: var(--font-functional), sans-serif; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }
.copy-button:hover { color: var(--mauve); }

.questions { padding-top: clamp(100px, 11vw, 175px); padding-bottom: clamp(100px, 11vw, 175px); display: grid; grid-template-columns: 0.78fr 1.22fr; gap: clamp(70px, 10vw, 160px); }
.questions-heading { position: sticky; top: 42px; align-self: start; }
.questions-heading h2 em { color: var(--mauve); font-weight: 400; }
.questions-heading > p { max-width: 430px; margin: 32px 0 0; font-size: 18px; line-height: 1.68; color: rgba(43, 45, 51, 0.63); }
.question-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.question-list li { padding: 28px 0; display: grid; grid-template-columns: 58px 1fr; gap: 24px; border-bottom: 1px solid var(--border); }
.question-list span { padding-top: 7px; font-family: var(--font-functional), sans-serif; color: var(--gold); font-size: 11px; letter-spacing: 0.12em; }
.question-list p { margin: 0; font-family: var(--font-display), Georgia, serif; color: var(--navy); font-size: clamp(22px, 2vw, 29px); line-height: 1.25; }

.credentials { padding-bottom: clamp(100px, 11vw, 175px); }
.credentials-grid { padding-top: 65px; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(70px, 10vw, 170px); border-top: 1px solid var(--gold); }
.credentials-grid dl { margin: 0; }
.credentials-grid dl > div { padding: 24px 0; display: grid; grid-template-columns: 150px 1fr; gap: 35px; border-bottom: 1px solid var(--border); }
.credentials-grid dt { font-family: var(--font-functional), sans-serif; color: var(--mauve); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.13em; }
.credentials-grid dd { margin: 0; font-size: 18px; line-height: 1.6; }

.booking-section { padding: clamp(100px, 12vw, 180px) 28px; background: var(--emerald); color: var(--parchment); text-align: center; position: relative; }
.booking-section::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(197, 162, 85, 0.42); pointer-events: none; }
.eyebrow-center { justify-content: center; color: var(--gold-light); }
.booking-section h2 { margin: 0; font-family: var(--font-display), Georgia, serif; font-size: clamp(66px, 8vw, 120px); line-height: 0.84; font-weight: 500; letter-spacing: -0.045em; }
.booking-section > p:not(.eyebrow) { max-width: 670px; margin: 38px auto 0; color: rgba(250, 247, 242, 0.74); font-size: 19px; line-height: 1.65; }
.button-gold { margin-top: 38px; background: var(--gold); color: var(--navy); border: 1px solid var(--gold); }
.button-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.booking-email { display: block; width: fit-content; margin: 28px auto 0; padding-bottom: 5px; border-bottom: 1px solid rgba(250, 247, 242, 0.5); color: rgba(250, 247, 242, 0.78); font-family: var(--font-functional), sans-serif; font-size: 11px; letter-spacing: 0.08em; }
.booking-leaf { position: absolute; width: 220px; height: 220px; border: 1px solid rgba(197, 162, 85, 0.16); border-radius: 70% 0 70% 0; transform: rotate(35deg); }
.booking-leaf-left { left: -80px; bottom: -80px; }
.booking-leaf-right { right: -80px; top: -80px; transform: rotate(215deg); }

.footer { padding: 62px clamp(28px, 6vw, 95px) 36px; display: grid; grid-template-columns: 1fr auto; gap: 38px; align-items: start; background: var(--navy-deep); color: var(--parchment); }
.footer-brand { display: flex; align-items: center; gap: 13px; }
.brand-mark-small { width: 40px; font-size: 21px; }
.footer-brand > div { display: flex; flex-direction: column; gap: 4px; }
.footer-brand strong { font-family: var(--font-display), Georgia, serif; font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: end; gap: 25px; }
.footer-links a { font-family: var(--font-functional), sans-serif; color: rgba(250, 247, 242, 0.62); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links a:hover { color: var(--gold-light); }
.footer-disclaimer { grid-column: 1 / -1; max-width: 760px; margin: 10px 0 0; color: rgba(250, 247, 242, 0.42); font-family: var(--font-functional), sans-serif; font-size: 10px; line-height: 1.6; }
.footer-copy { grid-column: 1 / -1; margin: 0; padding-top: 25px; border-top: 1px solid rgba(250, 247, 242, 0.1); color: rgba(250, 247, 242, 0.35); font-family: var(--font-functional), sans-serif; font-size: 9px; text-transform: uppercase; letter-spacing: 0.12em; }

:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }

@media (max-width: 1050px) {
  .header-nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr 0.75fr; padding-inline: 48px; }
  .hero h1 { font-size: clamp(70px, 10vw, 106px); }
  .portrait-note { margin-left: -30px; }
  .about-grid, .intro-grid, .questions, .credentials-grid { gap: 70px; }
  .fit-cards article { padding-inline: 28px; }
}

@media (max-width: 800px) {
  .site-header { height: 82px; padding-inline: 22px; }
  .brand-mark { width: 42px; }
  .brand-copy small { display: none; }
  .header-nav .nav-cta { padding: 11px 13px; font-size: 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 62px; padding: 76px 28px 88px; }
  .hero-copy { order: 1; }
  .hero-portrait-wrap { order: 2; width: min(86%, 540px); justify-self: center; }
  .hero h1 { font-size: clamp(66px, 20vw, 112px); }
  .hero-lede { font-size: 26px; }
  .hero-body { font-size: 17px; }
  .portrait-note { margin-left: -18px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); padding-inline: 28px; }
  .proof-strip > div { min-height: 105px; border-bottom: 1px solid var(--border); }
  .proof-strip > div:nth-child(2) { border-right: 0; }
  .proof-strip > div:nth-child(3), .proof-strip > div:nth-child(4) { border-bottom: 0; }
  .section-shell { width: min(100% - 40px, 1320px); }
  .about-grid, .section-intro, .intro-grid, .questions, .credentials-grid { grid-template-columns: 1fr; gap: 52px; }
  .belief-quote { grid-template-columns: auto 1fr; padding-inline: 22px; }
  .belief-quote footer { grid-column: 2; }
  .fit-inner > div:first-child { display: block; }
  .fit-cards { grid-template-columns: 1fr; }
  .fit-cards article { min-height: auto; border-right: 0; }
  .topic-grid { grid-template-columns: 1fr; }
  .topic-card { min-height: auto; }
  .audience-fit { grid-template-columns: 1fr; gap: 10px; }
  .questions-heading { position: static; }
  .credentials-grid dl > div { grid-template-columns: 120px 1fr; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: start; }
}

@media (max-width: 520px) {
  .brand-copy strong { font-size: 16px; }
  .header-nav .nav-cta { padding: 10px 11px; letter-spacing: 0.06em; }
  .hero h1 { line-height: 0.84; }
  .hero h1 em { display: block; margin-top: 20px; transform: none; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; justify-content: space-between; }
  .hero-portrait-wrap { width: 92%; }
  .portrait-note { width: 165px; margin-top: -48px; }
  .portrait-note-number { font-size: 46px; }
  .portrait-caption { text-align: left; }
  .proof-strip > div { padding: 0 14px; }
  .proof-strip strong { font-size: 38px; }
  .proof-strip span { font-size: 8px; }
  .section-kicker { margin-bottom: 34px; }
  .belief-quote { gap: 16px; }
  .belief-quote .quote-mark { font-size: 58px; }
  .belief-quote p { font-size: 36px; }
  .topic-card { padding: 34px 25px; }
  .intro-card { padding: 36px 24px; }
  .question-list li { grid-template-columns: 38px 1fr; gap: 12px; }
  .credentials-grid dl > div { grid-template-columns: 1fr; gap: 9px; }
  .booking-section h2 { font-size: 64px; }
  .footer-links { flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
