:root {
  --ink: #26352d;
  --muted: #66736b;
  --sage: #789474;
  --sage-dark: #526c50;
  --sage-pale: #eaf0e8;
  --cream: #faf8f2;
  --white: #ffffff;
  --gold: #e9c41f;
  --line: #dfe5dc;
  --shadow: 0 18px 60px rgba(38, 53, 45, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: none; }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(120, 148, 116, 0.18);
  background: rgba(250, 248, 242, 0.93);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand { flex: 0 0 auto; }
.brand img { width: 200px; height: auto; }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  content: "";
}

.site-nav { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.site-nav a {
  position: relative;
  color: var(--sage-dark);
  font-size: 0.96rem;
  text-decoration: none;
}
.site-nav .button { color: white; }
.site-nav a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--gold);
  content: "";
  transition: transform 180ms ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--sage-dark);
  border-radius: 999px;
  background: var(--sage-dark);
  color: white;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(38, 53, 45, 0.18); }
.button--light { border-color: white; background: white; color: var(--sage-dark); }
.button--outline { background: transparent; color: var(--sage-dark); }
.button--small { min-height: 42px; padding: 10px 18px; font-size: 0.92rem; }

h1, h2, h3, blockquote {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
}
h1 { font-size: clamp(2.6rem, 6vw, 5.6rem); letter-spacing: -0.035em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.85rem); }
p { margin: 0 0 1.25em; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eyebrow::before { width: 34px; height: 2px; background: var(--gold); content: ""; }

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 104px));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #55685a;
}
.hero__image, .page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__image { object-position: 48% 40%; }
.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 36, 30, 0.05) 18%, rgba(25, 36, 30, 0.78) 100%);
  content: "";
}
.hero__content {
  position: relative;
  z-index: 1;
  width: min(670px, 55%);
  margin: 0 6vw 7vw auto;
  color: white;
}
.hero h1 { margin-bottom: 24px; font-size: clamp(2.7rem, 5vw, 5rem); }
.hero p { max-width: 610px; font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.section { padding-block: clamp(72px, 9vw, 126px); }
.section--white { background: white; }
.section--sage { background: var(--sage-pale); }
.section--dark { background: var(--ink); color: white; }
.section-intro { max-width: 750px; margin-bottom: 52px; }
.section-intro p { color: var(--muted); font-size: 1.12rem; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(44px, 8vw, 108px);
}
.split__media { position: relative; }
.split__media::before {
  position: absolute;
  z-index: 0;
  right: -20px;
  bottom: -20px;
  width: 58%;
  height: 58%;
  border-radius: var(--radius);
  background: var(--gold);
  content: "";
}
.split__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}
.split__content > p { color: var(--muted); }

.feature-list { display: grid; gap: 26px; margin: 32px 0; }
.feature { display: grid; grid-template-columns: 44px 1fr; gap: 16px; }
.feature__number {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-pale);
  color: var(--sage-dark);
  font-size: 0.85rem;
  font-weight: 800;
}
.feature h3 { margin: 3px 0 7px; font-family: inherit; font-size: 1.05rem; font-weight: 800; }
.feature p { margin: 0; color: var(--muted); font-size: 0.96rem; }

.callout {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: var(--radius);
  background: var(--sage-dark);
  color: white;
  box-shadow: var(--shadow);
}
.callout::after {
  position: absolute;
  right: -70px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 42px solid rgba(233, 196, 31, 0.2);
  border-radius: 50%;
  content: "";
}
.callout > * { position: relative; z-index: 1; }
.callout h2 { margin-bottom: 12px; }
.callout p { max-width: 660px; margin: 0; color: rgba(255,255,255,.82); }

.page-hero {
  position: relative;
  min-height: 510px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}
.page-hero::after { background: linear-gradient(90deg, rgba(25,36,30,.8), rgba(25,36,30,.18)); }
.page-hero__image { object-position: center 45%; }
.page-hero__content { position: relative; z-index: 1; max-width: 760px; padding-block: 90px 70px; color: white; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { max-width: 670px; margin: 0; font-size: 1.18rem; }

.intro-session {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-bottom: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.intro-session h3 { margin-bottom: 10px; }
.intro-session p { margin: 0; color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.service-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 10px 38px rgba(38,53,45,.06);
}
.service-card__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.service-card__body { display: flex; flex: 1; flex-direction: column; padding: 30px; }
.service-card__top { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 14px; }
.service-card h3 { margin: 0; }
.price { flex: 0 0 auto; color: var(--sage-dark); font-size: 1.08rem; font-weight: 800; white-space: nowrap; }
.service-card__summary { color: var(--muted); font-style: italic; }
.check-list { margin: 10px 0 28px; padding: 0; list-style: none; }
.check-list li { position: relative; margin: 10px 0; padding-left: 28px; }
.check-list li::before { position: absolute; left: 0; color: var(--sage); font-weight: 900; content: "✓"; }
.service-card .button { margin-top: auto; align-self: flex-start; }
.medical-note { margin-top: 42px; padding: 26px 30px; border-left: 4px solid var(--gold); background: var(--sage-pale); }
.medical-note p { margin: 0; }

.quote-band { padding-block: 70px; background: var(--ink); color: white; text-align: center; }
.quote-band blockquote { max-width: 900px; margin: 0 auto 14px; font-size: clamp(1.8rem, 3.5vw, 3rem); }
.quote-band cite { color: rgba(255,255,255,.65); font-style: normal; }

.faq-list { display: grid; gap: 14px; }
.faq {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}
.faq summary {
  position: relative;
  padding: 25px 62px 25px 26px;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  line-height: 1.35;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  position: absolute;
  top: 25px;
  right: 26px;
  color: var(--sage-dark);
  font-family: inherit;
  font-size: 1.5rem;
  content: "+";
}
.faq[open] summary::after { content: "−"; }
.faq__answer { padding: 0 26px 26px; color: var(--muted); }
.faq__answer p:last-child { margin-bottom: 0; }

.bio { position: relative; }
.bio .split__media img { object-position: center 20%; }
.credential {
  position: absolute;
  z-index: 2;
  right: -36px;
  bottom: -36px;
  width: 142px;
  filter: drop-shadow(0 8px 16px rgba(38,53,45,.18));
}
.bio-copy { font-size: 1.08rem; }

.contact-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}
.contact-card__image { width: 100%; height: 100%; min-height: 600px; object-fit: cover; }
.contact-card__content { display: flex; flex-direction: column; justify-content: center; padding: clamp(38px, 6vw, 76px); }
.contact-options { display: grid; gap: 14px; margin-top: 26px; }
.contact-option { padding: 20px 22px; border: 1px solid var(--line); border-radius: 14px; text-decoration: none; }
.contact-option:hover { border-color: var(--sage); background: var(--sage-pale); }
.contact-option strong, .contact-option span { display: block; }
.contact-option span { margin-top: 3px; color: var(--muted); font-size: .9rem; }

.site-footer { padding-block: 58px 32px; background: #1e2a24; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 48px; padding-bottom: 44px; }
.footer-brand img { width: 230px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: .9; }
.footer-brand p { max-width: 400px; }
.site-footer h2 { margin-bottom: 18px; color: white; font-family: inherit; font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.12); font-size: .86rem; }

.not-found { min-height: 65vh; display: grid; place-items: center; padding-block: 80px; text-align: center; }
.not-found p { max-width: 620px; margin-inline: auto; color: var(--muted); }

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

@media (max-width: 900px) {
  .nav-wrap { min-height: 82px; }
  .brand img { width: 130px; }
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    box-shadow: 0 18px 32px rgba(38,53,45,.12);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { padding: 12px 8px; }
  .site-nav .button { margin-top: 10px; }
  .site-nav a:not(.button)::after { display: none; }
  .hero { min-height: 680px; align-items: end; }
  .hero::after { background: linear-gradient(0deg, rgba(25,36,30,.84), rgba(25,36,30,.05) 72%); }
  .hero__content { width: auto; margin: 0; padding-block: 160px 56px; }
  .split, .contact-card { grid-template-columns: 1fr; }
  .split__media { max-width: 650px; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-card__image { min-height: 420px; max-height: 520px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: 650px; }
  .hero__image { object-position: 43% center; }
  .page-hero { min-height: 430px; }
  .page-hero__content { padding-block: 100px 48px; }
  .callout, .intro-session { grid-template-columns: 1fr; }
  .callout .button, .intro-session .button { justify-self: start; }
  .service-card__top { display: block; }
  .price { margin-top: 8px; }
  .credential { right: -8px; bottom: -30px; width: 112px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 6px; }
}

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