@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --bg: #eee6dc;
  --bg-deep: #bba792;
  --paper: rgba(255, 252, 248, 0.92);
  --panel: rgba(255, 251, 246, 0.94);
  --band-light: #eee6dc;
  --band-mid: #bba792;
  --band-dark: #332e28;
  --band-dark-2: #29241f;
  --text: #332e28;
  --muted: #4a433d;
  --line: rgba(51, 46, 40, 0.16);
  --accent: #bba792;
  --accent-deep: #332e28;
  --shadow: 0 24px 70px rgba(79, 56, 41, 0.12);
  --radius: 28px;
  --radius-sm: 20px;
  --content: 1840px;
  --header-height: 82px;
  --display-font: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  --body-font: "Montserrat", "Avenir Next", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  padding-top: var(--header-height);
  color: var(--text);
  font-family: var(--body-font);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, li { line-height: 1.8; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  min-height: var(--header-height);
  margin: 0;
  padding: 0 clamp(36px, 4vw, 80px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  border-radius: 0;
  background: var(--band-dark);
  border: 0;
  box-shadow: none;
  color: var(--bg);
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header.is-scrolled {
  background: var(--band-dark);
  color: var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand-mark {
  width: 0;
  height: 0;
  display: none;
  place-items: center;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 140ms linear;
}

.brand-text strong,
.brand-text small,
.eyebrow,
.section-kicker,
.site-nav,
.hero-contact-card span,
.hero-contact-card strong,
.service-meta span,
.price-row,
.fine-print {
  font-family: var(--body-font);
}

.brand-text strong,
.brand-text small { display: block; }
.brand-text strong {
  color: var(--bg);
  font-family: var(--display-font);
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.brand-text small,
.eyebrow,
.section-kicker,
.hero-contact-card span,
.service-meta span,
.fine-print { color: var(--muted); }
.brand-text small { font-size: 0.84rem; }

.site-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; font-size: 1rem; font-weight: 500; }
.site-nav a {
  position: relative;
  padding: 11px 0;
  border-radius: 0;
  color: rgba(238, 230, 220, 0.88);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 180ms ease, transform 180ms ease;
}
.site-nav a[data-primary-link] {
  min-width: 150px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--band-dark);
  text-align: center;
  text-transform: uppercase;
}
.site-nav a[data-primary-link]::after {
  content: none;
}
.site-header.is-scrolled .brand-text small,
.site-header.is-scrolled .brand-text strong,
.site-header.is-scrolled .eyebrow,
.site-header.is-scrolled .section-kicker,
.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .hero-contact-card span,
.site-header.is-scrolled .service-meta span,
.site-header.is-scrolled .fine-print {
  color: rgba(246, 239, 231, 0.92);
}

.site-nav a[aria-current="page"] {
  background: transparent;
  color: #ffffff;
}
.site-header .site-nav a[aria-current="page"] {
  color: #ffffff;
}
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}
.site-header.is-scrolled .site-nav a[data-primary-link],
.site-nav a[data-primary-link][aria-current="page"] {
  background: var(--bg-deep);
  color: var(--band-dark);
}
.site-nav a[data-primary-link][aria-current="page"] {
  box-shadow: inset 0 0 0 2px rgba(51, 46, 40, 0.38), 0 0 0 3px rgba(187, 167, 146, 0.22);
}
.site-header .brand-mark {
  background: linear-gradient(135deg, #f6efe7, #d9c1a8);
}

.single-page {
  width: 100%;
  margin: 0;
  display: grid;
  gap: 0;
}

.hero-section,
.intro-band,
.section-block,
.site-footer {
  width: 100%;
  border: 0;
  box-shadow: none;
}

@media (min-width: 981px) {
  .hero-section,
  .section-block {
    min-height: calc(100dvh - var(--header-height));
  }
}

.hero-section,
.section-block {
  min-height: calc(100svh - var(--header-height));
}

.hero-section,
.intro-band,
.section-block { border-radius: 0; }

.hero-section { background: var(--bg-deep); }
#services { background: var(--bg); color: var(--text); }
#services .lede,
#services .section-heading h2,
#services .section-heading h3,
#services .service-meta h3,
#services .service-copy p,
#services .service-meta span,
#services .benefits-panel,
#services .checklist li,
#services .fine-print {
  color: inherit;
}
#services .benefits-panel,
#services .service-row {
  background: transparent;
  border-color: transparent;
}
#services .fee-row {
  background: transparent;
  border-top-color: transparent;
  padding: 0 0 64px;
}
#services .fee-row:first-child { padding-top: 0; }
#services .fee-copy,
#services .fee-rates {
  color: inherit;
}
#services .rate-item {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
#fees { background: linear-gradient(180deg, #f0e3d2 0%, #e7d5c0 100%); }
#contact { background: linear-gradient(180deg, #3f2d22 0%, #2d2018 100%); color: #f7efe6; }
#contact .section-heading h2,
#contact .section-kicker,
#contact .hero-contact-card span,
#contact .hours-card h3,
#contact .price-row,
#contact .fine-print,
#contact .map-link {
  color: inherit;
}
#contact .hero-contact-card,
#contact .hours-card,
#contact .map-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}
#contact .price-row {
  border-bottom-color: rgba(255, 255, 255, 0.14);
}
#about { background: linear-gradient(180deg, #f7f0e7 0%, #f0e5d8 100%); }

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  height: calc(100dvh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-copy h1,
.services-block .section-heading h2 {
  margin: 0 0 34px;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 4.8rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-size: clamp(4rem, 4vw, 5.4rem);
  max-width: 14ch;
  text-wrap: balance;
}
.services-block .section-heading h2 { max-width: 14ch; }
.hero-subtitle {
  margin: 0 0 44px;
  color: var(--accent-deep);
  font-family: var(--display-font);
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  font-weight: 400;
  line-height: 1;
  max-width: 22ch;
  text-transform: uppercase;
}
#about > .section-heading h2 {
  margin: 0;
  color: var(--accent-deep);
  font-family: var(--display-font);
  font-size: clamp(3rem, 3.4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  max-width: 22ch;
  text-transform: uppercase;
}
.lede { font-size: 1.08rem; color: var(--muted); max-width: 62ch; }
.lede.narrow { max-width: 56ch; }
.eyebrow, .section-kicker { display: inline-block; text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.74rem; font-weight: 700; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}
.hero-copy > p:empty {
  display: none;
}
.hero-copy {
  align-self: center;
  display: grid;
  align-content: start;
  width: 100%;
  max-width: none;
  padding: clamp(32px, 4vw, 60px) clamp(32px, 4vw, 64px);
}
.hero-copy .intro-copy {
  max-width: 760px;
  gap: 16px;
}
.hero-copy .intro-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.35;
}
.button {
  min-height: 72px;
  min-width: 200px;
  padding: 0 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-family: var(--body-font);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.button.primary { background: var(--band-dark); color: var(--bg-deep); box-shadow: none; }
.button.secondary { background: var(--band-dark); border: 0; color: var(--bg-deep); }

.hero-media {
  display: grid;
  gap: 18px;
  align-items: stretch;
  align-self: stretch;
  min-height: 0;
}
.hero-image-frame, .portrait-panel, .services-image, .map-card, .contact-card, .hours-card, .about-trust, .price-notes, .benefits-panel {
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(82, 60, 42, 0.1);
}
.hero-image-frame {
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(93, 67, 51, 0.9), rgba(191, 146, 108, 0.82));
}
.hero-image-frame img, .portrait-panel img, .services-image img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

.hero-contact-card { display: grid; gap: 14px; padding: 20px; border-radius: 14px; background: rgba(255, 251, 246, 0.94); border: 1px solid rgba(82, 60, 42, 0.1); }
.hero-section .hero-contact-card { display: none; }
.hero-contact-card div { display: grid; gap: 4px; }
.hero-contact-card span { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.72rem; }
.hero-contact-card strong { font-size: 1rem; line-height: 1.4; }

.intro-band, .section-block { padding: 32px clamp(24px, 4vw, 72px); }
.section-heading { margin-bottom: 10px; }
.section-heading-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
.services-block {
  padding: 0 clamp(52px, 7vw, 150px) 110px;
}
.services-block .section-heading { margin-bottom:  10px; }
.services-block .services-title {
  position: relative;
  margin: 0 calc(-1 * clamp(52px, 7vw, 150px)) 78px;
  padding: 70px clamp(32px, 4vw, 64px) 7px;
  background: transparent;
  border-bottom: 0;
}
.services-block .services-title::after {
  content: "";
  position: absolute;
  left: clamp(32px, 4vw, 64px);
  right: clamp(32px, 4vw, 64px);
  bottom: 0;
  height: 2px;
  background: rgba(51, 46, 40, 0.28);
}
.services-block .services-title h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--display-font);
  font-size: clamp(4rem, 4vw, 5.4rem);
  font-weight: 400;
  line-height: 0.88;
  text-align: left;
  text-transform: uppercase;
}
.services-block .section-heading-row {
  display: grid;
  gap: 72px;
}
.services-block .section-heading:not(.services-title) h2 {
  margin: 0;
  max-width: none;
  text-align: center;
}
.services-block .lede {
  max-width: 1480px;
  color: var(--text);
  font-family: var(--display-font);
  font-size: 2.45rem;
  line-height: 0.98;
  text-transform: uppercase;
}
.benefits-panel {
  display: none;
}
.intro-layout, .about-layout, .services-layout, .fees-layout, .contact-layout { display: grid; gap: 22px; }
.intro-layout { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.intro-copy { display: grid; gap: 10px; }
.intro-copy p { margin: 0; }

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.checklist li { position: relative; padding-left: 24px; }
.checklist li::before { content: "•"; position: absolute; left: 0; top: -1px; color: var(--accent); font-size: 1.5rem; line-height: 1; }
.intro-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  padding: 18px 20px;
}

.about-layout {
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: start;
}
.portrait-column { display: grid; justify-items: center; gap: 16px; }
.portrait-panel {
  width: min(100%, 280px);
  min-height: 0;
  aspect-ratio: 200 / 193;
  overflow: hidden;
}
.about-copy { display: grid; gap: 0; }
.about-lead { font-size: 1.12rem; color: var(--accent-deep); }
.about-trust { width: min(100%, 280px); padding: 18px; }
.about-trust h3, .contact-card h3, .hours-card h3 { margin: 0 0 10px; font-size: 1.1rem; }
.credentials-list { display: grid; gap: 7px; }
.credentials-list p { margin: 0; line-height: 1.4; }
.associations-inline { margin-top: 12px; max-width: 140px; }

.services-list { display: grid; gap: 14px; }
.service-row {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.service-visual {
  border-radius: 12px;
  overflow: hidden;
  min-height: 128px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, rgba(93, 67, 51, 0.16), rgba(191, 146, 108, 0.18));
}
.service-copy {
  display: grid;
  gap: 8px;
  align-content: start;
}
.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-meta { display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.service-meta h3 { margin: 0; font-size: 1.28rem; }
.service-meta span { white-space: nowrap; font-size: 0.88rem; }
.benefits-panel { margin-top: 22px; padding: 22px; }
.columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.price-list { display: grid; gap: 12px; }
.price-row { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.price-row strong { white-space: nowrap; }
.price-notes {
  display: grid;
  justify-items: start;
  gap: 7px;
  order: 7;
  padding: 20px;
  text-align: left;
}
.price-notes p { margin: 0; }

.fees-layout {
  display: grid;
  gap: 84px;
  grid-template-columns: 1fr;
}
.fees-layout > .section-heading {
  order: 6;
  justify-self: center;
  max-width: 920px;
  margin: 0;
  text-align: center;
}
.fees-layout > .section-heading .section-heading-row {
  gap: 0;
}
.fees-layout > .section-heading .lede {
  max-width: none;
  font-size: 1.65rem;
  line-height: 1.12;
}
.fee-row {
  position: relative;
  display: grid;
  grid-template-columns: 300px minmax(0, 620px) 300px;
  column-gap: clamp(28px, 3.4vw, 54px);
  row-gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 0 64px;
  border-top: 0;
}
.fee-row:first-child { border-top: 0; padding-top: 0; }
.fee-row::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(300px + clamp(28px, 3.4vw, 54px) + 900px);
  height: 2px;
  background: rgba(51, 46, 40, 0.2);
}
.fee-row:nth-child(1)::after,
.fee-row:nth-child(3)::after {
  left: auto;
  right: 0;
}
.fee-row:nth-child(5)::after {
  content: none;
}
.fee-row .service-visual {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  grid-column: 1;
  grid-row: 1 / span 2;
  min-height: 0;
  width: 300px;
}
.fee-copy {
  display: grid;
  grid-column: 2;
  gap: 26px;
  align-content: center;
}
.fee-copy h3 {
  color: var(--text);
  font-family: var(--display-font);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.fee-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.55rem;
  line-height: 1.5;
}
.fee-rates {
  display: grid;
  gap: 8px;
  justify-items: start;
  align-self: start;
  grid-column: 2;
  grid-row: 2;
}
.rate-label {
  display: none;
}
.rate-list {
  display: grid;
  gap: 8px;
  width: 100%;
}
.rate-item {
  display: flex;
  justify-content: start;
  gap: 28px;
  padding-bottom: 0;
  border-bottom: 0;
  color: var(--text);
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 800;
}
.rate-item strong { white-space: nowrap; }
.fee-row:nth-child(4) { order: 1; }
.fee-row:nth-child(1) { order: 2; }
.fee-row:nth-child(2) { order: 3; }
.fee-row:nth-child(3) { order: 4; }
.fee-row:nth-child(5) { order: 5; }
.fee-row:nth-child(1),
.fee-row:nth-child(3) {
  grid-template-columns: 300px minmax(0, 620px) 300px;
  justify-content: center;
}
.fee-row:nth-child(1) .service-visual,
.fee-row:nth-child(3) .service-visual {
  grid-column: 3;
  grid-row: 1 / span 2;
}
.fee-row:nth-child(1) .fee-copy,
.fee-row:nth-child(1) .fee-rates,
.fee-row:nth-child(3) .fee-copy,
.fee-row:nth-child(3) .fee-rates {
  grid-column: 2;
}

.contact-layout { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.55fr); align-items: start; }
.contact-stack { display: grid; gap: 18px; align-self: stretch; }
.contact-card, .hours-card, .map-card { padding: 22px; }
.contact-link { color: var(--accent-deep); font-size: 1.18rem; }
.compact-prices { gap: 10px; }
.compact-prices .price-row { padding-bottom: 10px; }
.map-card {
  overflow: hidden;
  min-height: clamp(420px, 52svh, 620px);
  padding: 0;
  width: 100%;
  align-self: stretch;
  grid-column: 1 / -1;
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
}
.map-link { font-family: var(--body-font); font-weight: 700; color: var(--accent-deep); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1400px) {
  .hero-copy {
    padding: 34px clamp(24px, 2.8vw, 46px);
  }
  .hero-copy h1,
  .services-block .services-title h2 {
    font-size: 3.55rem;
  }
  .hero-copy h1 {
    max-width: 16ch;
  }
  .hero-subtitle,
  #about > .section-heading h2 {
    margin-bottom: 22px;
    font-size: 1.28rem;
  }
  #about > .section-heading h2 {
    margin-bottom: 0;
    font-size: 2.56rem;
  }
  .hero-copy .intro-copy {
    gap: 12px;
    max-width: 620px;
  }
  .hero-copy .intro-copy p {
    font-size: 0.98rem;
  }
  .hero-actions {
    margin-top: 20px;
  }
  .button {
    min-height: 56px;
    min-width: 170px;
  }
  .map-card { min-height: clamp(380px, 48svh, 560px); }
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 16px 24px 26px;
  border-radius: 0;
  text-align: center;
}

.site-nav a:hover,
.map-link:hover { color: var(--accent-deep); }

@media (max-width: 1179px) {
  :root { --header-height: 84px; }
  html { scroll-padding-top: var(--header-height); }
  body { overflow-x: hidden; }
  p, li { line-height: 1.55; }
  .site-header, .hero-section, .intro-layout, .about-layout, .services-layout, .fees-layout, .contact-layout, .site-footer { grid-template-columns: 1fr; }
  .site-header {
    border-radius: 0;
    position: fixed;
    width: 100%;
    margin-top: 0;
    min-height: var(--header-height);
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    padding: 0 24px;
  }
  .site-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: end;
    gap: 12px;
    min-width: 0;
    font-size: 0.76rem;
    font-weight: 700;
  }
  .site-nav a { padding: 10px 0; white-space: nowrap; }
  .site-nav a::after { bottom: 5px; }
  .site-nav a[data-nav-link="services"] {
    font-size: 0;
  }
  .site-nav a[data-nav-link="services"]::before {
    content: "Service";
    font-size: 0.76rem;
  }
  .site-nav a[data-primary-link] {
    min-width: 0;
    padding: 10px 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: rgba(238, 230, 220, 0.88);
    text-transform: none;
  }
  .site-header.is-scrolled .site-nav a[data-primary-link] {
    background: transparent;
    box-shadow: none;
    color: rgba(238, 230, 220, 0.88);
  }
  .site-nav a[data-primary-link]::after { content: ""; }
  .site-header .site-nav a[data-primary-link][aria-current="page"] {
    background: transparent;
    box-shadow: none;
    color: #ffffff;
  }
  .site-header::after {
    content: none;
  }
  .brand-text strong {
    font-size: 1.55rem;
  }
  .hero-section {
    height: auto;
    min-height: calc(100svh - var(--header-height));
    overflow: visible;
    display: block;
  }
  .hero-copy {
    width: 100%;
    max-width: none;
    min-height: calc(100svh - var(--header-height));
    display: grid;
    align-content: center;
    padding: 38px 32px 42px;
  }
  .hero-copy h1 {
    font-size: 3.25rem;
    max-width: 11ch;
  }
  .hero-subtitle,
  #about > .section-heading h2 {
    margin-bottom: 22px;
    font-size: 1.25rem;
  }
  #about > .section-heading h2 {
    margin-bottom: 0;
    font-size: 2.5rem;
  }
  .hero-subtitle {
    max-width: 24ch;
  }
  .hero-copy .intro-copy p {
    font-size: 1rem;
    line-height: 1.45;
  }
  .hero-actions { justify-content: start; margin-top: 24px; }
  .hero-media { display: none; }
  .button {
    min-height: 54px;
    min-width: 0;
    padding: 0 26px;
    font-size: 0.88rem;
  }
  .section-block {
    min-height: 0;
    padding: 56px 32px;
  }
  .section-heading { margin-bottom: 28px; }
  .section-heading h2 {
    margin: 0;
    font-family: var(--display-font);
    font-size: 2.7rem;
    font-weight: 400;
    line-height: 0.95;
    text-transform: uppercase;
  }
  .services-block {
    padding: 0 32px 70px;
  }
  .services-block .services-title {
    margin: 0 -32px 44px;
    padding: 58px 32px 7px;
  }
  .services-block .services-title::after {
    left: 32px;
    right: 32px;
  }
  .services-block .services-title h2 {
    font-size: 3.25rem;
  }
  .services-block .section-heading {
    margin-bottom: 40px;
  }
  .services-block .section-heading-row { gap: 0; }
  .services-block > .section-heading .lede {
    max-width: 34rem;
    font-size: 1.65rem;
    line-height: 1;
    text-align: left;
  }
  .fees-layout > .section-heading .lede {
    font-size: 1.25rem;
    line-height: 1.35;
    text-align: center;
  }
  .fees-layout { gap: 54px; }
  .fee-row,
  .fee-row:nth-child(1),
  .fee-row:nth-child(3),
  .fee-row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-content: center;
    padding-bottom: 52px;
    text-align: center;
  }
  #services .fee-row {
    padding-bottom: 52px;
  }
  .fee-row::after,
  .fee-row:nth-child(1)::after,
  .fee-row:nth-child(3)::after {
    left: 50%;
    right: auto;
    width: min(360px, 82vw);
    transform: translateX(-50%);
  }
  .fee-row .service-visual,
  .fee-row:nth-child(1) .service-visual,
  .fee-row:nth-child(3) .service-visual,
  .fee-row:nth-child(even) .service-visual {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    width: min(58vw, 230px);
  }
  .fee-row:nth-child(1) .fee-copy,
  .fee-row:nth-child(1) .fee-rates,
  .fee-row:nth-child(3) .fee-copy,
  .fee-row:nth-child(3) .fee-rates,
  .fee-row:nth-child(even) .fee-copy,
  .fee-row:nth-child(even) .fee-rates,
  .fee-copy,
  .fee-rates {
    grid-column: auto;
    grid-row: auto;
  }
  .fee-copy { gap: 12px; }
  .fee-copy {
    width: 100%;
    max-width: 34rem;
    justify-self: center;
  }
  .fee-copy h3 {
    margin: 0;
    font-size: 2.35rem;
    text-align: center;
  }
  .fee-copy p {
    font-size: 1rem;
    line-height: 1.55;
    text-align: left;
  }
  .fee-rates,
  .rate-list {
    justify-items: start;
    width: 100%;
    max-width: 34rem;
    justify-self: center;
  }
  .rate-item {
    justify-content: start;
    gap: 14px;
    font-size: 1rem;
  }
  .price-notes {
    padding: 18px 0 0;
    text-align: left;
  }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-block { padding: 56px 32px; }
  .map-card { grid-column: auto; }
  .map-card { min-height: 420px; }
  .section-heading-row { flex-direction: column; }
  .about-block { padding: 58px 32px 70px; }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .portrait-column { display: contents; }
  .portrait-panel {
    order: 1;
    width: min(72vw, 280px);
    min-height: 0;
    justify-self: center;
    aspect-ratio: 200 / 193;
  }
  .about-trust {
    order: 3;
    width: min(72vw, 280px);
    max-width: none;
    justify-self: center;
  }
  .about-copy {
    order: 2;
    max-width: 38rem;
    justify-self: center;
    gap: 14px;
  }
  .about-copy p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 720px) {
  .site-header, .single-page, .site-footer { width: 100%; }
  .hero-section, .intro-band, .section-block, .site-footer { padding: 0; }
  .site-header {
    gap: 8px;
    padding: 0 14px;
  }
  .site-nav {
    gap: 7px;
    font-size: 0.6rem;
  }
  .site-nav a[data-nav-link="services"]::before { font-size: 0.6rem; }
  .brand-text strong { font-size: 1.08rem; }
  .hero-section {
    padding: 0;
    background: var(--bg-deep);
  }
  .hero-copy {
    padding: 28px 20px 32px;
    max-width: 100%;
  }
  .hero-copy h1 {
    margin-bottom: 24px;
    font-size: 2.45rem;
  }
  .hero-subtitle,
  #about > .section-heading h2 {
    max-width: 22ch;
    margin-bottom: 18px;
    font-size: 1rem;
  }
  #about > .section-heading h2 {
    margin-bottom: 0;
    font-size: 2rem;
  }
  .services-block .section-heading h2 { font-size: 2.15rem; }
  .hero-copy .intro-copy p,
  .fee-copy p {
    font-size: 0.92rem;
  }
  .button { width: 100%; }
  .hero-actions { align-items: stretch; gap: 10px; margin-top: 18px; }
  .hero-actions .button {
    min-height: 48px;
  }
  .columns, .intro-points { grid-template-columns: 1fr; }
  .service-meta { flex-direction: column; align-items: start; }
  .service-row { grid-template-columns: 1fr; }
  .service-visual { min-height: 180px; aspect-ratio: 16 / 10; }
  .hero-image-frame { width: calc(100% - 40px); min-height: 0; aspect-ratio: 1 / 1; }
  .section-block,
  .services-block {
    padding: 0 20px 60px;
  }
  .section-block.booking-block {
    padding: 0 20px 60px;
  }
  .services-block .services-title {
    margin: 0 -20px 34px;
    padding: 42px 20px 7px;
  }
  .services-block .services-title::after {
    left: 20px;
    right: 20px;
  }
  .services-block .services-title h2 {
    font-size: 2.45rem;
  }
  .services-block > .section-heading .lede {
    font-size: 1.28rem;
    line-height: 1.08;
  }
  .fees-layout > .section-heading .lede {
    font-size: 1rem;
    line-height: 1.45;
  }
  .fees-layout { gap: 42px; }
  .fee-row,
  .fee-row:nth-child(1),
  .fee-row:nth-child(3),
  .fee-row:nth-child(even) {
    padding-bottom: 46px;
  }
  #services .fee-row {
    padding-bottom: 46px;
  }
  .fee-row::after,
  .fee-row:nth-child(1)::after,
  .fee-row:nth-child(3)::after {
    width: min(280px, 78vw);
  }
  .fee-rates,
  .rate-list {
    justify-items: start;
    width: 100%;
    max-width: 34rem;
    justify-self: center;
  }
  .rate-item {
    justify-content: start;
  }
  .fee-row .service-visual,
  .fee-row:nth-child(1) .service-visual,
  .fee-row:nth-child(3) .service-visual,
  .fee-row:nth-child(even) .service-visual {
    width: min(68vw, 190px);
  }
  .fee-copy h3 {
    font-size: 2rem;
  }
  .rate-item {
    flex-direction: row;
    gap: 12px;
  }
  .portrait-panel {
    width: min(72vw, 280px);
  }
  .contact-block,
  .about-block {
    padding: 48px 20px 60px;
  }
  .hero-contact-card,
  .hours-card,
  .about-trust,
  .price-notes {
    padding: 16px;
  }
  .price-row {
    align-items: start;
    gap: 8px;
  }
  .price-row strong {
    white-space: normal;
    text-align: right;
  }
  .map-card { min-height: 320px; }
  .map-card iframe { min-height: 320px; }
}

@media (min-width: 721px) and (max-width: 1179px) {
  .hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
    height: calc(100svh - var(--header-height));
    overflow: hidden;
  }
  .hero-copy {
    min-height: 0;
    padding: 48px 34px;
  }
  .hero-copy h1,
  .services-block .services-title h2 {
    font-size: 4.25rem;
  }
  .hero-copy h1 {
    max-width: 11ch;
  }
  .hero-subtitle,
  #about > .section-heading h2 {
    font-size: 1.45rem;
    max-width: 20ch;
  }
  #about > .section-heading h2 {
    font-size: 2.9rem;
  }
  .hero-copy .intro-copy p {
    font-size: 1.05rem;
  }
  .hero-actions {
    justify-content: start;
    margin-top: 28px;
  }
  .hero-media {
    display: grid;
    width: 100%;
    height: 100%;
  }
  .hero-image-frame {
    width: 100%;
    height: 100%;
    min-height: 0;
    margin: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 430px) and (max-height: 720px) {
  .hero-copy {
    padding-top: 22px;
    padding-bottom: 24px;
  }
  .hero-copy h1,
  .services-block .services-title h2 {
    margin-bottom: 18px;
    font-size: 2.15rem;
  }
  .services-block .services-title h2 {
    margin-bottom: 0;
  }
  .hero-subtitle,
  #about > .section-heading h2 {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }
  #about > .section-heading h2 {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
  .hero-copy .intro-copy p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 8px;
    margin-top: 14px;
  }
  .hero-actions .button {
    min-height: 44px;
    padding-inline: 12px;
    font-size: 0.72rem;
  }
}

@media (min-width: 431px) and (max-width: 720px) and (max-height: 600px) {
  .hero-copy {
    padding: 20px 20px 22px;
  }
  .hero-copy h1,
  .services-block .services-title h2 {
    margin-bottom: 14px;
    font-size: 2rem;
  }
  .hero-copy h1 {
    max-width: 18ch;
  }
  .services-block .services-title h2 {
    margin-bottom: 0;
  }
  .hero-subtitle,
  #about > .section-heading h2 {
    margin-bottom: 10px;
    font-size: 0.85rem;
    max-width: 36ch;
  }
  #about > .section-heading h2 {
    margin-bottom: 0;
    font-size: 1.7rem;
  }
  .hero-copy .intro-copy {
    gap: 8px;
  }
  .hero-copy .intro-copy p {
    font-size: 0.82rem;
    line-height: 1.35;
  }
  .hero-actions {
    gap: 10px;
    margin-top: 14px;
  }
  .hero-actions .button {
    min-height: 42px;
  }
}
