:root {
  --teal: #476c6e;
  --teal-deep: #355658;
  --aqua: #b0e8df;
  --cream: #dedcce;
  --plum: #66475c;
  --charcoal: #373838;
  --white: #ffffff;
  --paper: #f7f7f3;
  --line: rgba(55, 56, 56, 0.18);
  --max: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--paper);
  font-family: "Gantari", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--white);
  color: var(--charcoal);
}

.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(71, 108, 110, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
}

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

.brand { display: block; width: 205px; text-decoration: none; }
.brand img { display: block; width: 100%; height: auto; object-fit: contain; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a { text-decoration: none; }
.nav-links > a:not(.button):hover,
.nav-links > a:not(.button):focus-visible { color: var(--aqua); }

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.45);
  background: transparent;
  color: var(--white);
  padding: 9px 12px;
  border-radius: 4px;
  font: inherit;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--aqua);
  border-radius: 5px;
  background: var(--aqua);
  color: var(--charcoal);
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.button:hover, .button:focus-visible {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.button.outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.65);
}

.button.outline:hover, .button.outline:focus-visible {
  background: var(--white);
  color: var(--charcoal);
}

.button.dark {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.button.dark:hover, .button.dark:focus-visible {
  background: var(--plum);
  border-color: var(--plum);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin-top: 0;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.04em;
}

h1 { margin-bottom: 22px; font-size: clamp(48px, 6.5vw, 88px); }
h2 { margin-bottom: 20px; font-size: clamp(36px, 4.6vw, 62px); }
h3 { margin-bottom: 10px; font-size: clamp(23px, 2.5vw, 31px); }
p { margin: 0 0 20px; }
.lede { max-width: 650px; font-size: clamp(19px, 2vw, 23px); line-height: 1.48; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, .9fr);
  min-height: min(780px, calc(100svh - 82px));
  background: var(--teal);
  color: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 10vw, 145px) var(--gutter) clamp(70px, 8vw, 115px) max(var(--gutter), calc((100vw - var(--max)) / 2));
}

.hero-copy .eyebrow { color: var(--white); }
.hero-copy h1 { max-width: 760px; color: var(--aqua); }
.hero-copy .lede { color: rgba(255,255,255,.9); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 34px;
  color: var(--white);
  font-size: 14px;
}

.hero-trust a { text-underline-offset: 4px; }

.hero-photo { position: relative; min-height: 560px; overflow: hidden; background: var(--cream); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 18px solid rgba(176,232,223,.65);
  border-left: 0;
  pointer-events: none;
}

.urgent {
  background: var(--plum);
  color: var(--white);
}

.urgent-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.urgent p { margin: 0; font-size: 19px; }
.urgent strong { font-weight: 500; color: var(--aqua); }
.urgent a { font-weight: 500; text-underline-offset: 5px; }

.jump-nav {
  position: sticky;
  top: 82px;
  z-index: 25;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.jump-links {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  white-space: nowrap;
}

.jump-links::-webkit-scrollbar { display: none; }
.jump-links span { color: var(--plum); font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.jump-links a { flex: 0 0 auto; color: var(--charcoal); font-size: 15px; font-weight: 500; text-decoration: none; }
.jump-links a:hover, .jump-links a:focus-visible { color: var(--teal); text-decoration: underline; text-underline-offset: 5px; }

.section { padding: clamp(76px, 10vw, 132px) 0; }
.section.white { background: var(--white); }
.section.cream { background: var(--cream); }
.section.aqua { background: var(--aqua); }
.section.teal { background: var(--teal); color: var(--white); }
.section.plum { background: var(--plum); color: var(--white); }

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr .65fr;
  gap: clamp(50px, 9vw, 130px);
  align-items: end;
}

.intro-grid h2 { max-width: 760px; }
.intro-grid p { max-width: 480px; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--charcoal);
  border-left: 1px solid var(--charcoal);
}

.service {
  scroll-margin-top: 160px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 48px);
  border-right: 1px solid var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  color: var(--charcoal);
  text-decoration: none;
}

.service:nth-child(1) { background: var(--aqua); }
.service:nth-child(2) { background: var(--cream); }
.service:nth-child(3) { background: var(--teal); color: var(--white); }
.service:nth-child(4) { background: var(--plum); color: var(--white); }
.service:nth-child(5) { background: var(--cream); }
.service:nth-child(6) { background: var(--aqua); }
.service .index { margin-bottom: auto; font-size: 14px; letter-spacing: .12em; }
.service h3 { max-width: 480px; }
.service p { max-width: 510px; margin-bottom: 0; opacity: .87; }
.service .more { margin-top: 26px; font-weight: 500; text-decoration: underline; text-underline-offset: 5px; }
.service:hover .more, .service:focus-visible .more { text-decoration-thickness: 2px; }

.story-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: clamp(50px, 10vw, 140px);
  align-items: start;
}

.story-mark { display: block; width: min(100%, 310px); height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.story-copy { max-width: 770px; }
.story-copy h2 { color: var(--aqua); }
.story-copy .lede { color: var(--white); }

.credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255,255,255,.35);
}

.credentials.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.credential { padding: 24px 24px 0 0; color: var(--white); }
.credential + .credential { padding-left: 24px; border-left: 1px solid rgba(255,255,255,.35); }
.credential strong { display: block; margin-bottom: 6px; color: var(--white); font-weight: 500; }

.review-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 40px;
}

.review-line h2 { max-width: 820px; margin: 0; }
.rating-block { flex: 0 0 auto; text-align: right; }
.rating-block strong { display: block; font-size: clamp(52px, 7vw, 92px); font-weight: 500; line-height: .9; }
.rating-block span { color: var(--plum); }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.35);
}

.visit-block { padding: clamp(30px, 5vw, 58px); background: var(--charcoal); }
.visit-block .eyebrow { color: var(--aqua); }
.visit-block address { margin-bottom: 28px; color: var(--white); font-style: normal; font-size: 23px; line-height: 1.45; }

.hours { margin: 0; }
.hours-row { display: flex; justify-content: space-between; gap: 25px; padding: 11px 0; border-top: 1px solid rgba(255,255,255,.18); }
.hours dt { color: var(--cream); }
.hours dd { margin: 0; text-align: right; font-weight: 500; }
.hours-note { margin-top: 18px; color: var(--cream); font-size: 14px; }

.page-hero {
  padding: clamp(74px, 10vw, 135px) 0 clamp(68px, 9vw, 115px);
  background: var(--teal);
  color: var(--white);
}

.page-hero .eyebrow { color: var(--white); }
.page-hero h1 { max-width: 980px; color: var(--aqua); }
.page-hero .lede { color: rgba(255,255,255,.9); }
.breadcrumbs { margin-bottom: 30px; color: var(--cream); font-size: 14px; }
.breadcrumbs a { text-underline-offset: 4px; }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.prose { max-width: 760px; }
.prose h2 { margin-top: 54px; font-size: clamp(31px, 3.6vw, 48px); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 34px; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 9px; }

.side-note { padding-top: 21px; border-top: 5px solid var(--plum); }
.side-note h3 { font-size: 25px; }
.side-note .button { width: 100%; margin-top: 8px; }
.side-note small { display: block; margin-top: 16px; color: #5c5d5d; }

.quick-list { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.quick-list div { padding: 24px 22px 24px 0; border-bottom: 1px solid var(--line); }
.quick-list div:nth-child(even) { padding-left: 22px; border-left: 1px solid var(--line); }
.quick-list strong { display: block; font-weight: 500; }

.faq { margin-top: 48px; border-top: 1px solid var(--line); }
.faq details { padding: 18px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 500; }
.faq p { margin: 10px 0 0; color: #5c5d5d; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.contact-card { padding: clamp(30px, 5vw, 56px); background: var(--white); border: 1px solid var(--line); }
.contact-card address { font-style: normal; font-size: 23px; }

.site-footer { padding: 65px 0 26px; background: var(--plum); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr .8fr; gap: 55px; }
.footer-brand { display: block; width: 220px; max-width: 100%; height: auto; object-fit: contain; margin-bottom: 18px; }
.site-footer h3 { font-size: 17px; letter-spacing: 0; }
.site-footer p, .site-footer address { color: var(--cream); font-style: normal; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin: 7px 0; }
.footer-links a { color: var(--white); text-underline-offset: 4px; }
.legal { margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.25); color: var(--cream); font-size: 13px; }

.mobile-call { display: none; }

@media (max-width: 940px) {
  .nav { min-height: 72px; }
  .jump-nav { top: 72px; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px var(--gutter) 28px;
    background: var(--teal);
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 11px 0; }
  .nav-links .button { margin-top: 10px; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 82px var(--gutter) 74px; }
  .hero-photo { min-height: min(720px, 92vw); }
  .hero-photo::after { border-left: 18px solid rgba(176,232,223,.65); }
  .intro-grid, .story-grid, .content-grid { grid-template-columns: 1fr; }
  .story-mark { width: 210px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  body { padding-bottom: 68px; font-size: 16px; }
  .brand { width: 175px; }
  .jump-links { width: 100%; padding-inline: 20px; gap: 20px; }
  .hero-copy { padding-top: 64px; }
  .hero-photo { min-height: 590px; }
  .hero-photo img { object-position: center top; }
  .hero-photo::after { border-width: 10px; }
  .urgent-inner, .review-line { align-items: flex-start; flex-direction: column; padding-block: 22px; }
  .rating-block { text-align: left; }
  .service-grid, .visit-grid, .contact-cards, .quick-list { grid-template-columns: 1fr; }
  .service { min-height: 270px; }
  .quick-list div:nth-child(even) { padding-left: 0; border-left: 0; }
  .credentials { grid-template-columns: 1fr; }
  .credentials.two { grid-template-columns: 1fr; }
  .credential { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.35); }
  .credential + .credential { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .mobile-call {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 10px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 5px;
    background: var(--aqua);
    color: var(--charcoal);
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(0,0,0,.2);
  }
}

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