:root {
  --ink: #1b1b1a;
  --muted: #62615d;
  --paper: #ffffff;
  --warm: #f3f1ec;
  --line: #d8d5ce;
  --accent: #b51f2e;
  --accent-dark: #8f1723;
  --green: #176b43;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 6rem;
  --radius-control: 6px;
  --header-height: 4.75rem;
  --section-space: clamp(4.75rem, 8vw, 7.5rem);
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --max-width: 76rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
p, ul, ol, dl, figure, blockquote { margin-top: 0; }

h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 { font-size: clamp(3rem, 6.5vw, 5.8rem); }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.15rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid #e2a100;
  outline-offset: 3px;
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 4000;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  transition: transform 150ms ease;
}

.skip-link:focus { transform: translateY(0); }

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: var(--radius-control);
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
  padding: 0.95rem 1.35rem;
  transition: background-color 140ms ease, border-color 140ms ease, color 140ms ease;
}

.button:hover { border-color: var(--accent-dark); background: var(--accent-dark); }

.button--secondary {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover { background: var(--ink); color: #fff; }
.button--small { min-height: 2.75rem; padding: 0.75rem 1rem; }
.text-link, .phone-link, .legal-copy a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand { display: inline-flex; flex: 0 0 auto; align-items: center; gap: 0.75rem; }
.brand-mark {
  display: grid;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--ink);
  border-radius: 2px;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 600; }
.brand-copy span { margin-top: 0.2rem; color: var(--muted); font-size: 0.64rem; letter-spacing: 0.06em; }

.site-nav { display: flex; align-items: center; gap: clamp(0.85rem, 1.6vw, 1.5rem); }
.site-nav > a:not(.button) { position: relative; color: #343432; font-size: 0.78rem; font-weight: 700; }
.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  background: var(--accent);
  content: "";
  transform-origin: left;
  transition: transform 140ms ease;
}
.site-nav > a:hover::after, .site-nav > a[aria-current="page"]::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0.7rem 0.45rem;
}
.menu-toggle span { display: block; height: 1px; margin-block: 0.38rem; background: var(--ink); transition: transform 160ms ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(0.38rem) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-0.38rem) rotate(-45deg); }

.hero-kicker {
  margin-bottom: 1.25rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.035em;
}

.section { padding-block: var(--section-space); }
.section-heading { display: grid; align-items: end; gap: 2rem; grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.65fr); margin-bottom: clamp(2.5rem, 5vw, 4.25rem); }
.section-heading h2 { max-width: 14ch; margin-bottom: 0; }
.section-heading > p { max-width: 34rem; margin: 0; color: var(--muted); }

.service-list { display: grid; border-top: 1px solid var(--ink); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-list article { min-height: 12.5rem; border-bottom: 1px solid var(--line); padding: 1.75rem 2rem 2rem 0; }
.service-list article:not(:nth-child(3n + 1)) { border-left: 1px solid var(--line); padding-left: 2rem; }
.service-list h3 { margin-bottom: 1rem; }
.service-list p { max-width: 25rem; margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }
.service-list--detailed article { min-height: 14rem; }

.price-table-wrap { width: 100%; overflow-x: auto; }
.price-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.price-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.price-table th, .price-table td { border-bottom: 1px solid #cbc8c1; padding: 1.25rem 1rem; text-align: left; }
.price-table thead th { border-top: 2px solid var(--ink); border-bottom-color: var(--ink); color: var(--muted); font-size: 0.75rem; font-weight: 700; }
.price-table tbody th { font-family: Georgia, "Times New Roman", serif; font-size: 1.05rem; font-weight: 600; }
.price-table tbody th small { display: block; margin-top: 0.25rem; color: var(--muted); font-family: Arial, Helvetica, sans-serif; font-size: 0.7rem; font-weight: 400; }
.price-table td { font-size: 1.05rem; font-variant-numeric: tabular-nums; font-weight: 700; }

.gallery-grid { display: grid; grid-auto-rows: 13rem; gap: 0.75rem; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-item { min-width: 0; margin: 0; overflow: hidden; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item button { width: 100%; height: 100%; border: 0; border-radius: 2px; background: #ddd; cursor: zoom-in; padding: 0; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 240ms ease; }
.gallery-item button:hover img { transform: scale(1.015); }
.gallery-grid--full { grid-auto-rows: 15rem; }

.reviews-section { background: var(--paper); }
.reviews-heading strong { color: var(--accent-dark); font-size: 1.2em; }
.review-list { display: grid; gap: 2.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review { display: flex; min-width: 0; min-height: 16rem; flex-direction: column; justify-content: space-between; margin: 0; border-top: 2px solid var(--ink); padding-top: 1.4rem; }
.review > p { margin-bottom: 2.5rem; color: #343331; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem, 1.8vw, 1.4rem); line-height: 1.5; }
.review footer { display: grid; gap: 0.2rem; }
.review cite { font-style: normal; font-size: 0.78rem; font-weight: 700; }
.review footer span { color: var(--muted); font-size: 0.7rem; }

.visit-section { background: var(--ink); color: #fff; }
.visit-section h2, .visit-section h3 { color: #fff; }
.visit-section .section-heading > p { color: #c9c7c1; }
.visit-grid { display: grid; border-top: 1px solid #66645f; grid-template-columns: minmax(14rem, 0.72fr) minmax(15rem, 0.76fr) minmax(20rem, 1.2fr); }
.visit-details, .visit-hours { padding: clamp(2rem, 4vw, 3.25rem) clamp(1.5rem, 3vw, 2.75rem) clamp(2rem, 4vw, 3.25rem) 0; }
.visit-hours { border-left: 1px solid #66645f; padding-left: clamp(1.5rem, 3vw, 2.75rem); }
.visit-details address { margin: 2rem 0 1.4rem; color: #ddd; font-style: normal; line-height: 1.75; }
.visit-details address strong { color: #fff; }
.visit-details .phone-link { color: #fff; }
.visit-details .button { margin-top: 0.4rem; }
.visit-hours h3 { margin-bottom: 1.25rem; }
.open-status { display: flex; align-items: center; gap: 0.65rem; color: #dedcd6; font-size: 0.84rem; }
.status-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: #cf5a63; }
.open-status.is-open .status-dot { background: #55ad79; }
.hours-list { margin: 0; }
.hours-list > div { display: flex; min-height: 2.5rem; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid #4c4b48; color: #d8d6d0; font-size: 0.82rem; }
.hours-list > div.is-today { border-bottom-color: #fff; color: #fff; font-weight: 700; }
.hours-list dt, .hours-list dd { margin: 0; }
.hours-list dd { font-variant-numeric: tabular-nums; }
.hours-list > div.is-today dt::after { margin-left: 0.5rem; color: #c6c3bc; content: "Today"; font-size: 0.66rem; font-weight: 400; }
.hours-note { margin: 1rem 0 0; color: #a9a7a2; font-size: 0.72rem; }

.map-shell, .map-placeholder, .map-frame-wrap, .map-shell iframe { min-height: 31rem; }
.map-shell { border-left: 1px solid #66645f; background: #dedbd3; color: var(--ink); }
.map-placeholder { display: grid; place-items: center; background: #dedbd3; }
.map-placeholder__content { max-width: 22rem; text-align: center; padding: 2rem; }
.map-placeholder__content p { margin-bottom: 1.35rem; }
.map-placeholder__content small { display: block; margin-top: 1rem; color: var(--muted); font-size: 0.68rem; }
.map-pin { display: block; width: 1rem; height: 1rem; margin: 0 auto 1rem; border: 3px solid var(--accent); border-radius: 50%; }
.map-frame-wrap { position: relative; display: flex; flex-direction: column; }
.map-shell iframe { width: 100%; flex: 1 1 auto; border: 0; }
.map-frame-actions { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin: 0; background: #fff; color: var(--ink); font-size: 0.72rem; padding: 0.75rem 1rem; }
.map-frame-actions a { color: var(--accent-dark); font-weight: 700; text-decoration: underline; text-underline-offset: 0.2em; }

.faq-section { border-top: 1px solid var(--line); }
.faq-layout { display: grid; align-items: start; gap: clamp(3rem, 6vw, 5.5rem); grid-template-columns: minmax(15rem, 0.65fr) minmax(0, 1.35fr); }
.faq-intro { position: sticky; top: calc(var(--header-height) + 2rem); }
.faq-intro h2 { max-width: 10ch; }
.faq-intro p { max-width: 26rem; color: var(--muted); }
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h3 { margin: 0; font-family: Arial, Helvetica, sans-serif; }
.faq-question { display: grid; width: 100%; min-height: 4.5rem; align-items: center; border: 0; background: transparent; color: var(--ink); cursor: pointer; gap: 1rem; grid-template-columns: 1fr 1.1rem; padding: 1rem 0; text-align: left; font-size: 1rem; font-weight: 700; transition: color 140ms ease; }
.faq-question:hover { color: var(--accent-dark); }
.faq-question > span { position: relative; width: 1rem; height: 1rem; }
.faq-question > span::before, .faq-question > span::after { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: var(--ink); content: ""; transition: transform 150ms ease; }
.faq-question > span::after { transform: rotate(90deg); }
.faq-question[aria-expanded="true"] > span::after { transform: rotate(0); }
.faq-answer { max-width: 42rem; padding: 0 2rem 1.5rem 0; }
.faq-answer p { margin: 0; color: var(--muted); }
.faq-answer[hidden] { display: none; }

.area-note { border-top: 1px solid var(--line); background: var(--warm); padding-block: 2rem; }
.area-note p { max-width: 58rem; margin: 0; color: var(--muted); font-size: 0.82rem; }

.inner-hero { border-bottom: 1px solid var(--line); background: var(--warm); padding-block: clamp(4.5rem, 8vw, 7.5rem); }
.inner-hero h1 { max-width: 13ch; margin-bottom: 1.25rem; }
.inner-hero p:last-child { max-width: 43rem; margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }
.page-section { background: var(--paper); }
.page-cta { display: flex; align-items: center; justify-content: space-between; gap: 2rem; margin-top: 3rem; border-top: 1px solid var(--ink); padding-top: 1.5rem; }
.page-cta p { margin: 0; color: var(--muted); }

.site-footer { background: #151514; color: #d1cfca; padding-top: clamp(3.25rem, 5vw, 4.5rem); }
.footer-main { display: grid; gap: clamp(2.5rem, 4vw, 3.75rem); grid-template-columns: minmax(15rem, 1.05fr) minmax(15rem, 0.9fr) minmax(15rem, 0.85fr); padding-bottom: 3rem; }
.brand--footer .brand-mark { border-color: #fff; color: #fff; }
.brand--footer .brand-copy strong { color: #fff; }
.brand--footer .brand-copy span { color: #aaa8a2; }
.footer-brand address { margin: 1.5rem 0 0.45rem; color: #aaa8a2; font-size: 0.78rem; font-style: normal; }
.footer-brand > a:not(.brand) { color: #fff; font-size: 0.82rem; }
.footer-hours { display: grid; align-content: start; gap: 0.25rem; color: #aaa8a2; font-size: 0.78rem; }
.footer-hours strong { margin-bottom: 0.65rem; color: #fff; font-size: 0.78rem; }
.footer-hours small { margin-top: 0.45rem; color: #807f7a; }
.footer-nav { display: grid; align-content: start; column-gap: 1.5rem; gap: 0.45rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-nav a, .footer-link-button { color: #aaa8a2; font-size: 0.76rem; }
.footer-nav a:hover, .footer-nav a[aria-current="page"], .footer-link-button:hover { color: #fff; }
.footer-link-button { border: 0; background: transparent; cursor: pointer; font: inherit; padding: 0; text-align: left; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-top: 1px solid #393835; padding-block: 1.2rem; }
.footer-bottom p { margin: 0; color: #777570; font-size: 0.67rem; }

.mobile-action-bar { display: none; }

.lightbox { width: min(92vw, 75rem); max-width: none; height: min(88svh, 52rem); max-height: none; border: 0; border-radius: 4px; background: #111; color: #fff; padding: 1.5rem; }
.lightbox::backdrop { background: rgba(0, 0, 0, 0.88); }
.lightbox figure { display: grid; height: 100%; place-items: center; margin: 0; }
.lightbox figure img { max-width: 100%; max-height: calc(100% - 2.5rem); object-fit: contain; }
.lightbox figcaption { min-height: 2rem; padding-top: 0.6rem; color: #ccc; font-size: 0.75rem; text-align: center; }
.lightbox__close, .lightbox__nav { position: absolute; z-index: 1; display: grid; width: 2.75rem; height: 2.75rem; place-items: center; border: 1px solid #777; border-radius: 2px; background: #111; color: #fff; cursor: pointer; padding: 0.65rem; }
.lightbox__close { top: 1rem; right: 1rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--previous { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox__close svg, .lightbox__nav svg { width: 1.25rem; height: 1.25rem; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }

.legal-page { background: var(--paper); }
.legal-header { border-bottom: 1px solid var(--line); }
.legal-header .nav-shell { min-height: var(--header-height); }
.legal-back { color: var(--muted); font-size: 0.78rem; font-weight: 700; }
.legal-back:hover { color: var(--accent-dark); }
.legal-hero { border-bottom: 1px solid var(--line); background: var(--warm); padding-block: clamp(4rem, 7vw, 6.5rem); }
.legal-hero h1 { margin-bottom: 1.2rem; }
.legal-hero p:not(.eyebrow) { max-width: 42rem; margin-bottom: 0; color: var(--muted); }
.eyebrow { margin-bottom: 1rem; color: var(--accent-dark); font-size: 0.75rem; font-weight: 700; }
.legal-content { display: grid; align-items: start; gap: clamp(3rem, 7vw, 6rem); grid-template-columns: minmax(11rem, 0.42fr) minmax(0, 1.58fr); padding-block: var(--section-space); }
.legal-index { position: sticky; top: calc(var(--header-height) + 2rem); display: grid; gap: 0.55rem; border-top: 1px solid var(--ink); padding-top: 1rem; }
.legal-index span { margin-bottom: 0.25rem; color: var(--muted); font-size: 0.7rem; font-weight: 700; }
.legal-index a { font-size: 0.78rem; font-weight: 700; }
.legal-index a:hover { color: var(--accent-dark); }
.legal-copy { max-width: 48rem; }
.legal-copy section { border-top: 1px solid var(--line); padding-block: 2.5rem; }
.legal-copy section:first-child { border-top-color: var(--ink); }
.legal-copy h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.legal-copy h3 { margin-top: 2rem; font-size: 1.05rem; }
.legal-copy p, .legal-copy li { color: #494844; }
.legal-copy code { border-radius: 2px; background: var(--warm); color: var(--ink); font-size: 0.88em; padding: 0.12em 0.3em; }
.legal-table-wrap { overflow-x: auto; }
.legal-copy table { width: 100%; border-collapse: collapse; font-size: 0.84rem; }
.legal-copy th, .legal-copy td { min-width: 8rem; border-bottom: 1px solid var(--line); padding: 0.8rem 0.65rem; text-align: left; vertical-align: top; }
.legal-copy th { border-bottom-color: var(--ink); font-size: 0.72rem; }

.js-only { display: none; }
.js .js-only { display: inline-flex; }

.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2000;
  display: grid;
  width: min(45rem, calc(100% - 2rem));
  margin-inline: auto;
  border: 1px solid #555;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.12);
  gap: 1.25rem;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 0.45fr);
  padding: 1.25rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__copy strong { display: block; margin-bottom: 0.4rem; }
.cookie-banner__copy p { margin: 0 0 0.4rem; color: var(--muted); font-size: 0.8rem; }
.cookie-banner__copy a { color: var(--accent-dark); font-size: 0.75rem; font-weight: 700; text-decoration: underline; text-underline-offset: 0.2em; }
.cookie-banner__actions { display: grid; align-self: center; gap: 0.6rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cookie-choice { min-height: 2.8rem; border: 1px solid var(--ink); border-radius: 3px; cursor: pointer; font-size: 0.78rem; font-weight: 700; }
.cookie-choice--decline { background: #fff; color: var(--ink); }
.cookie-choice--accept { background: var(--ink); color: #fff; }
.cookie-choice:hover { border-color: var(--accent); }

@media (max-width: 70rem) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    transform: translateY(-0.75rem);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.05);
    gap: 0;
    opacity: 0;
    padding: 0.75rem var(--gutter) 1.25rem;
    pointer-events: none;
    transition: opacity 150ms ease, transform 150ms ease, visibility 0s linear 150ms;
    visibility: hidden;
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; transition-delay: 0s; visibility: visible; }
  .site-nav > a:not(.button) { border-bottom: 1px solid var(--line); font-size: 1rem; padding-block: 0.7rem; }
  .site-nav > a:not(.button)::after { display: none; }
  .site-nav .button { width: fit-content; margin-top: 1rem; }
  .visit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .map-shell { grid-column: 1 / -1; border-top: 1px solid #66645f; border-left: 0; }
}

/* Homepage redesign */
.home-page {
  --home-space: clamp(var(--space-xl), 7vw, 7rem);
}

.home-page h1 { font-size: clamp(3rem, 5vw, 4.4rem); }
.home-page h2 { font-size: clamp(2.25rem, 3.75vw, 3rem); }
.home-page h3 { font-size: clamp(1.18rem, 1.55vw, 1.42rem); }
.home-section { padding-block: var(--home-space); }

.home-eyebrow {
  margin-bottom: var(--space-sm);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-text-link { margin: var(--space-lg) 0 0; }
.home-text-link a,
.home-faq .faq-answer a,
.home-faq .faq-intro a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.25em;
}

.home-hero {
  border-bottom: 1px solid var(--line);
  background: #f2f0eb;
  padding-block: clamp(var(--space-lg), 5vw, 4.75rem);
}

.home-hero__grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 5.5vw, 5.25rem);
  grid-template-columns: minmax(0, 0.92fr) minmax(25rem, 1.08fr);
}

.home-hero__copy { max-width: 37rem; }
.home-hero h1 { max-width: 13.5ch; margin-bottom: var(--space-md); }
.home-hero__lead { max-width: 34rem; margin-bottom: var(--space-md); color: #4d4c48; font-size: clamp(1rem, 1.45vw, 1.18rem); }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-xs); }

.home-hero__facts {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid #c8c4bb;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-hero__facts > * { min-width: 0; padding: 1rem 1rem 0 0; }
.home-hero__facts > * + * { border-left: 1px solid #c8c4bb; padding-left: 1rem; }
.home-hero__facts a { display: grid; color: var(--muted); font-size: 0.72rem; line-height: 1.45; }
.home-hero__facts a strong { color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; line-height: 1.1; }
.rating-star { margin-left: 0.06em; }
.home-hero__facts .open-status { align-content: center; flex-wrap: wrap; color: var(--muted); line-height: 1.45; }

.home-hero__media { min-width: 0; margin: 0; }
.home-hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 70% center; }
.home-hero__media figcaption { border-top: 3px solid var(--accent); color: var(--muted); font-size: 0.7rem; padding-top: 0.65rem; }

.proof-header,
.home-heading,
.final-cta__heading {
  display: grid;
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.55fr);
  margin-bottom: clamp(2.75rem, 5vw, 4.25rem);
}

.home-heading { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr); }
.final-cta__heading { grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.66fr); }

.proof-header h2,
.home-heading h2 { max-width: 14ch; margin-bottom: 0; }
.proof-score { display: grid; margin: 0; border-top: 2px solid var(--ink); padding-top: 1rem; }
.proof-score strong { color: var(--accent-dark); font-family: Georgia, "Times New Roman", serif; font-size: 2.35rem; line-height: 1; }
.proof-score span { margin-top: 0.4rem; color: var(--muted); font-size: 0.75rem; }
.proof-score strong span { margin: 0; color: inherit; font-size: inherit; }

.customer-quotes { display: grid; border-top: 1px solid var(--ink); grid-template-columns: repeat(3, minmax(0, 1fr)); }
.customer-quotes blockquote { display: flex; min-width: 0; min-height: 12rem; flex-direction: column; justify-content: space-between; margin: 0; padding: 1.6rem clamp(1.5rem, 3vw, 2.5rem) 0 0; }
.customer-quotes blockquote + blockquote { border-left: 1px solid var(--line); padding-left: clamp(1.5rem, 3vw, 2.5rem); }
.customer-quotes blockquote > p { max-width: 23rem; margin-bottom: 2rem; color: #33322f; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.1rem, 1.65vw, 1.35rem); line-height: 1.48; }
.customer-quotes footer { display: grid; gap: 0.15rem; padding-top: 0.25rem; }
.customer-quotes cite { font-size: 0.75rem; font-style: normal; font-weight: 700; }
.customer-quotes footer span { color: var(--muted); font-size: 0.68rem; }

.problem-section { border-block: 1px solid var(--line); background: #f2f0eb; }
.problem-grid { display: grid; align-items: center; gap: clamp(3rem, 7vw, 7rem); grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr); }
.problem-media { min-width: 0; margin: 0; }
.problem-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; }
.problem-copy h2 { max-width: 14ch; margin-bottom: 1.4rem; }
.problem-copy > p:not(.home-eyebrow) { max-width: 38rem; color: var(--muted); }
.problem-copy .problem-cost { margin: 2rem 0 0; border-top: 1px solid var(--ink); color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 600; line-height: 1.4; padding-top: 1.25rem; }

.home-heading > div:last-child { max-width: 31rem; }
.home-heading > div:last-child p { margin-bottom: 1rem; color: var(--muted); }
.value-rows { border-top: 2px solid var(--ink); }
.value-row { display: grid; align-items: stretch; border-bottom: 1px solid var(--line); grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.value-row:nth-child(even) .value-photo { order: 2; }
.value-photo { min-width: 0; margin: 0; }
.value-photo button { display: block; width: 100%; height: 100%; min-height: 23rem; border: 0; border-radius: 0; background: #d8d5ce; cursor: zoom-in; padding: 0; }
.value-photo img { width: 100%; height: 100%; min-height: 23rem; max-height: 30rem; object-fit: cover; }
.value-items { display: grid; align-items: stretch; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.value-items > div { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(2rem, 3.5vw, 3rem); }
.value-items > div + div { border-left: 1px solid var(--line); }
.value-number { margin-bottom: var(--space-md); color: var(--muted); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.07em; }
.value-items h3 { margin-bottom: 0.85rem; }
.value-items p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.pricing-preview {
  display: grid;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: var(--space-lg);
  border-block: 1px solid var(--ink);
  grid-template-columns: minmax(15rem, 0.85fr) minmax(20rem, 1.15fr) auto;
  padding-block: 2rem;
}
.pricing-preview__intro h3 { margin-bottom: 0.7rem; }
.pricing-preview__intro .home-eyebrow { margin-bottom: 0.65rem; }
.pricing-preview__intro > p:last-child { max-width: 28rem; margin: 0; color: var(--muted); font-size: 0.88rem; }
.pricing-preview__list { margin: 0; }
.pricing-preview__list > div { display: flex; min-height: 2.5rem; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); font-size: 0.82rem; }
.pricing-preview__list > div:first-child { border-top: 1px solid var(--line); }
.pricing-preview__list dt,
.pricing-preview__list dd { margin: 0; }
.pricing-preview__list dd { color: var(--accent-dark); font-weight: 800; font-variant-numeric: tabular-nums; }

.process-section { background: var(--ink); color: #fff; }
.process-section h2,
.process-section h3 { color: #fff; }
.process-section .home-eyebrow { color: #e18b94; }
.process-heading { display: grid; align-items: end; gap: var(--space-sm) 4rem; grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.45fr); margin-bottom: var(--space-lg); }
.process-heading .home-eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.process-heading h2 { max-width: 13ch; margin-bottom: 0; }
.process-heading > p:last-child { margin: 0; color: #c1bfba; }
.process-steps { display: grid; margin: 0; border-top: 1px solid #676560; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; padding: 0; }
.process-steps li { display: grid; align-content: start; gap: var(--space-md); min-width: 0; padding: 1.5rem clamp(1.25rem, 2.5vw, 2rem) 0 0; }
.process-steps li + li { border-left: 1px solid #494844; padding-left: clamp(1.25rem, 2.5vw, 2rem); }
.process-steps > li > span { color: #e18b94; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; }
.process-steps h3 { margin-bottom: 0.75rem; }
.process-steps p { margin: 0; color: #c1bfba; font-size: 0.92rem; }

.home-faq .faq-intro h2 { max-width: 8ch; }
.home-faq .faq-intro p:not(.home-eyebrow) { color: var(--muted); }
.home-faq .faq-question { min-height: 4.5rem; }

.final-cta { background: #8f1723; color: #fff; padding-block: var(--home-space); }
.final-cta h2,
.final-cta h3 { color: #fff; }
.final-cta .home-eyebrow { color: #f2c6ca; }
.final-cta__heading { margin-bottom: 3rem; }
.final-cta__heading h2 { max-width: 13ch; margin-bottom: 0; }
.final-cta__actions > p { max-width: 30rem; margin-bottom: 1.25rem; color: #f0dfe1; }
.final-cta__actions > div { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.button--light { border-color: #fff; background: #fff; color: #72111b; }
.button--light:hover { border-color: #eee8e5; background: #eee8e5; color: #5d0e16; }
.button--dark-outline { border-color: rgba(255, 255, 255, 0.65); background: transparent; color: #fff; }
.button--dark-outline:hover { border-color: #fff; background: #fff; color: #72111b; }
.final-cta__meta { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem 3rem; border-top: 1px solid rgba(255, 255, 255, 0.34); padding-top: 1.5rem; }
.final-cta__meta .open-status { color: #f2dfe1; }
.final-cta__meta address { color: #f5e8e9; font-size: 0.78rem; font-style: normal; }

.home-page .footer-brand > a:not(.brand) { display: block; margin-top: 0.35rem; }

@media (max-width: 64rem) {
  .home-hero__grid { gap: 3rem; grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.95fr); }
  .value-items { grid-template-columns: 1fr; }
  .value-items > div { min-height: 11.5rem; }
  .value-items > div + div { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 56rem) {
  .section-heading { align-items: start; grid-template-columns: 1fr; }
  .section-heading h2 { max-width: 16ch; }
  .service-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-list article:not(:nth-child(3n + 1)) { border-left: 0; padding-left: 0; }
  .service-list article:nth-child(even) { border-left: 1px solid var(--line); padding-left: 2rem; }
  .gallery-grid { grid-auto-rows: 11rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .gallery-grid--full { grid-auto-rows: 13rem; }
  .review-list { gap: 1.5rem; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .legal-content { grid-template-columns: 1fr; }
  .legal-index { position: static; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal-index span { grid-column: 1 / -1; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-nav { grid-column: 1 / -1; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cookie-banner { grid-template-columns: 1fr; }
  .home-page { --home-space: 5rem; }
  .home-hero__grid,
  .problem-grid,
  .proof-header,
  .home-heading,
  .process-heading,
  .final-cta__heading { grid-template-columns: 1fr; }
  .home-hero__copy { max-width: 42rem; }
  .home-hero__media img { aspect-ratio: 16 / 9; }
  .proof-header,
  .home-heading { align-items: start; gap: 2rem; }
  .proof-score { max-width: 20rem; }
  .problem-media img { aspect-ratio: 16 / 9; }
  .problem-copy { max-width: 43rem; }
  .value-row { grid-template-columns: 1fr; }
  .value-row:nth-child(even) .value-photo { order: 0; }
  .value-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-items > div { min-height: 13rem; }
  .value-items > div + div { border-top: 0; border-left: 1px solid var(--line); }
  .value-photo button,
  .value-photo img { min-height: 0; }
  .value-photo button { height: auto; }
  .value-photo img { height: auto; max-height: none; aspect-ratio: 3 / 2; }
  .pricing-preview { align-items: start; grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr); }
  .pricing-preview .button { width: fit-content; }
  .process-heading { align-items: start; }
  .process-heading .home-eyebrow { grid-column: auto; }
  .final-cta__meta { align-items: flex-start; flex-wrap: wrap; }
}

@media (max-width: 43rem) {
  :root { --header-height: 4.25rem; --section-space: 4.5rem; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.35rem); }
  .brand-copy span { display: none; }
  .service-list { grid-template-columns: 1fr; }
  .service-list article, .service-list article:not(:nth-child(3n + 1)), .service-list article:nth-child(even) { min-height: 0; border-left: 0; padding: 1.5rem 0; }
  .price-table th, .price-table td { padding: 0.95rem 0.35rem; }
  .price-table thead th { font-size: 0.65rem; line-height: 1.25; }
  .price-table tbody th { font-size: 0.9rem; }
  .price-table tbody th small { font-size: 0.6rem; }
  .price-table td { font-size: 0.9rem; }
  .page-cta { align-items: flex-start; flex-direction: column; }
  .page-cta .button { width: 100%; }
  .gallery-grid, .gallery-grid--full { grid-auto-rows: 8.5rem; gap: 0.45rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-item--wide { grid-column: span 2; }
  .review-list { grid-template-columns: 1fr; }
  .review { min-height: 0; padding-bottom: 1rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-details, .visit-hours { padding: 2rem 0; }
  .visit-hours { border-top: 1px solid #66645f; border-left: 0; }
  .map-shell { grid-column: auto; }
  .map-shell, .map-placeholder, .map-frame-wrap, .map-shell iframe { min-height: 25rem; }
  .faq-question { min-height: 4.25rem; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-nav { grid-column: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
  .legal-index { grid-template-columns: 1fr; }
  .legal-index span { grid-column: auto; }
  .lightbox { width: 100vw; height: 100svh; border-radius: 0; padding: 1rem; }
  .lightbox__nav { top: auto; bottom: 1rem; transform: none; }
  .lightbox__close { top: 1rem; right: 1rem; }
  .lightbox figcaption { padding-inline: 3rem; }
  .mobile-action-bar { position: fixed; right: max(0.85rem, env(safe-area-inset-right)); bottom: max(0.85rem, env(safe-area-inset-bottom)); left: auto; z-index: 1200; display: block; transition: opacity 150ms ease, visibility 150ms ease; }
  .mobile-action-bar a { display: grid; width: 3.25rem; min-height: 3.25rem; place-items: center; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 50%; background: var(--green); box-shadow: 0 0.3rem 0.9rem rgba(0, 0, 0, 0.14); color: #fff; line-height: 0; }
  .mobile-action-bar svg { width: 1.65rem; height: 1.65rem; fill: currentColor; }
  .cookie-panel-open .mobile-action-bar { opacity: 0; pointer-events: none; visibility: hidden; }
  .cookie-banner { bottom: 0.5rem; }
  .cookie-banner__actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-page { --home-space: 4rem; }
  .home-page h1 { font-size: clamp(2.5rem, 12.5vw, 3.35rem); }
  .home-page h2 { font-size: clamp(2rem, 9.5vw, 2.55rem); }
  .home-hero { padding-block: 2.75rem; }
  .home-hero__grid { gap: 2rem; }
  .home-hero__facts { grid-template-columns: 1fr; }
  .home-hero__facts > * { padding: 0.9rem 0; }
  .home-hero__facts > * + * { border-top: 1px solid #c8c4bb; border-left: 0; padding-left: 0; }
  .home-hero__media img { aspect-ratio: 16 / 10; }
  .problem-media img { aspect-ratio: 4 / 3; }
  .customer-quotes { grid-template-columns: 1fr; }
  .customer-quotes blockquote { min-height: 0; padding: 1.5rem 0; }
  .customer-quotes blockquote + blockquote { border-top: 1px solid var(--line); border-left: 0; padding-left: 0; }
  .customer-quotes footer { max-width: none; }
  .value-photo img { aspect-ratio: 4 / 3; }
  .value-items { grid-template-columns: 1fr; }
  .value-items > div { min-height: 0; padding: 2rem 0; }
  .value-items > div + div { border-top: 1px solid var(--line); border-left: 0; }
  .value-number { margin-bottom: 1rem; }
  .pricing-preview { gap: 1.75rem; grid-template-columns: 1fr; margin-top: 2rem; }
  .pricing-preview .button { width: 100%; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li,
  .process-steps li + li { min-height: 0; border-bottom: 1px solid #494844; border-left: 0; gap: 1.25rem; grid-template-columns: 2rem 1fr; padding: 1.5rem 0; }
  .process-steps li:last-child { border-bottom: 0; }
  .home-faq .faq-layout { gap: 2.5rem; }
  .final-cta__heading { gap: 2rem; }
  .final-cta__actions > div { align-items: stretch; flex-direction: column; }
  .final-cta__actions .button { width: 100%; }
  .final-cta__meta { display: grid; justify-items: start; gap: 0.75rem; }
}

@media (max-width: 22rem) {
  :root { --gutter: 1.125rem; }
  .price-table th, .price-table td { padding-inline: 0.2rem; }
  .price-table thead th { font-size: 0.59rem; }
  .price-table tbody th, .price-table td { font-size: 0.8rem; }
  .footer-nav { grid-template-columns: 1fr; }
  .cookie-banner__actions { grid-template-columns: 1fr; }
  .home-hero__actions { align-items: stretch; flex-direction: column; }
  .home-hero__actions .button { width: 100%; }
  .home-page h1 { font-size: 2.35rem; }
  .home-page h2 { font-size: 2rem; }
}
