:root {
  --font-display: "Lora", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ink: #202427;
  --heading: #171d1a;
  --graphite: #38403b;
  --graphite-soft: #4a544e;
  --muted: #69706d;
  --soft: #f6f1e9;
  --paper: #fffdf8;
  --stone: #e5ddd1;
  --stone-deep: #d4cabb;
  --line: rgba(56, 64, 59, 0.14);
  --sage: #7b846f;
  --sage-soft: #eef0e8;
  --shadow: 0 22px 70px rgba(56, 64, 59, 0.13);
  --radius: 8px;
  --site-pad: clamp(1.25rem, 4vw, 3rem);
  --header-offset: clamp(5.25rem, 8vw, 6.5rem);
  --section-title-size: clamp(2.2rem, 4.1vw, 3.25rem);
  --section-title-leading: 1.05;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.62;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(56, 64, 59, 0.025) 1px, transparent 1px);
  background-size: 100% 9px;
  opacity: 0.4;
  z-index: -1;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(56, 64, 59, 0.34);
  outline-offset: 4px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  color: var(--heading);
  font-weight: 500;
  line-height: 1.04;
  overflow-wrap: break-word;
}

h1 {
  max-width: 16.5ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.75rem, 5.5vw, 4.65rem);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: var(--section-title-size);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--muted);
  line-height: 1.66;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  padding: 0.7rem 0.9rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-150%);
}

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

.skip-link:focus:not(:focus-visible) {
  transform: translateY(-150%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem var(--site-pad);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(56, 64, 59, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex: 0 0 auto;
  padding: 0.1rem 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(3.0rem, 4.2vw, 3.35rem);
  object-fit: contain;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
}

.site-nav a {
  padding: 0.45rem 0;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--ink);
}

.header-call {
  display: none;
  min-height: 2.8rem;
  align-items: center;
  padding: 0 1rem;
  color: var(--paper);
  background: var(--graphite);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1;
}

.hero {
  display: grid;
  gap: 2rem;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 3rem var(--site-pad) 2rem;
}

.eyebrow {
  margin-bottom: 0.6rem;
  color: var(--graphite-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-kicker {
  margin-bottom: 0.9rem;
  color: var(--graphite-soft);
  font-size: clamp(0.96rem, 1.7vw, 1.06rem);
  font-weight: 600;
  line-height: 1.32;
}

.hero-text {
  max-width: 33rem;
  font-size: clamp(1.03rem, 2.2vw, 1.16rem);
  line-height: 1.64;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.65rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--paper);
  background: var(--graphite);
}

.button-primary:hover {
  background: var(--ink);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.44);
}

.button-secondary:hover {
  border-color: rgba(56, 64, 59, 0.32);
}

.hero-media {
  position: relative;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  background: var(--stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-media img,
.about-image img,
.gallery img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: var(--stone);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  border-radius: inherit;
  box-shadow: none;
  object-position: 50% 48%;
}

.hero-note {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  max-width: 14rem;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.hero-note span,
.hero-note strong {
  display: block;
}

.hero-note span {
  color: var(--graphite-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero-note strong {
  margin-top: 0.2rem;
  font-size: 0.9rem;
  line-height: 1.18;
  white-space: nowrap;
}

.trust-strip {
  display: grid;
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--site-pad);
}

.trust-strip div {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 0.16rem;
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) var(--site-pad);
}

.section-heading {
  display: grid;
  gap: 0;
  max-width: 50rem;
  margin-bottom: 2.1rem;
}

.section-heading h2,
.section-heading p {
  max-width: 42rem;
}

.section-heading h2 {
  max-width: 18ch;
  font-size: var(--section-title-size);
  line-height: var(--section-title-leading);
}

.gallery {
  display: grid;
  gap: 1rem;
}

figure {
  margin: 0;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.gallery-feature img {
  aspect-ratio: 4 / 5;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
}

.gallery figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(56, 64, 59, 0.86));
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.gallery-feature figcaption {
  padding: 4rem 1.15rem 1.15rem;
}

.gallery-feature figcaption span {
  display: block;
  max-width: 25rem;
  margin-top: 0.25rem;
  color: rgba(255, 253, 248, 0.82);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.45;
}

.choice-section {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.choice-intro {
  max-width: 32rem;
}

.choice-intro h2,
.services-copy h2,
.about-copy h2,
.areas-copy h2 {
  font-size: var(--section-title-size);
  line-height: var(--section-title-leading);
}

.choice-list {
  display: grid;
  gap: 1rem;
}

.choice-list article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.choice-list span {
  display: block;
  margin-bottom: 1.1rem;
  color: var(--sage);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.05;
}

.services-section {
  display: grid;
  gap: 2rem;
}

.services-copy {
  max-width: 34rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.4rem;
  color: var(--graphite);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.service-stack {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}

.service-icon {
  width: clamp(1.75rem, 3vw, 2.25rem);
  height: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.7rem;
  object-fit: contain;
}

.service-item h3 {
  margin-bottom: 0;
}

.service-item p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.58;
}

.reviews-section {
  background: var(--soft);
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.reviews-section .section-heading,
.reviews-section .section-heading h2 {
  max-width: 100%;
}

.reviews {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

blockquote {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100%;
  padding: clamp(1.15rem, 2.5vw, 1.65rem);
  background: var(--paper);
  border: 1px solid rgba(56, 64, 59, 0.08);
  border-radius: var(--radius);
}

blockquote p {
  margin-bottom: 1.35rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.05vw, 0.96rem);
  line-height: 1.62;
}

cite {
  margin-top: auto;
  color: var(--graphite-soft);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.25;
}

.about-section {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--stone);
}

.about-image img {
  aspect-ratio: 5 / 4;
  filter: saturate(0.86) contrast(0.96);
}

.areas-section {
  display: grid;
  gap: 2rem;
  border-top: 1px solid var(--line);
}

.area-directory {
  display: grid;
  gap: 1rem;
  align-self: center;
  padding: clamp(1.15rem, 2.8vw, 1.75rem);
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.area-directory p {
  max-width: 34rem;
  margin: 0;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem clamp(0.75rem, 1.5vw, 1rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.area-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  padding: 0.46rem 0;
  color: var(--heading);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  font-weight: 500;
  line-height: 1.15;
}

.area-list li::before {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  flex: 0 0 0.58rem;
  border: 1.5px solid var(--sage);
  border-radius: 50% 50% 50% 0;
  background: radial-gradient(circle at 50% 50%, var(--sage) 0 21%, transparent 23%);
  opacity: 0.76;
  transform: rotate(-45deg) translateY(-0.02rem);
}

.final-cta {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  width: min(calc(100% - (var(--site-pad) * 2)), var(--max));
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  padding: clamp(2rem, 6vw, 4rem);
  color: var(--paper);
  background: var(--graphite);
  border-radius: var(--radius);
}

.final-cta h2 {
  max-width: 11ch;
  color: var(--paper);
  font-size: clamp(2.25rem, 4.8vw, 3.65rem);
  line-height: 1.04;
}

.final-cta p,
.final-cta small {
  max-width: 34rem;
  color: rgba(255, 253, 248, 0.72);
}

.final-cta .eyebrow {
  color: #d8ded0;
}

.final-cta .button-secondary {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 253, 248, 0.28);
}

.final-cta .contact-actions {
  margin-top: 0;
}

.final-phone {
  display: inline-flex;
  max-width: 100%;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 8vw, 4rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.final-phone:hover {
  color: #d8ded0;
}

.contact-actions small {
  display: block;
  flex-basis: 100%;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 2rem var(--site-pad) 6rem;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 28rem;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer .copyright {
  margin-top: 0;
}

.mobile-call {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  z-index: 12;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  color: var(--paper);
  background: rgba(56, 64, 59, 0.96);
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  backdrop-filter: blur(14px);
}


.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 360px) {
  .area-list {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 680px) {
  .site-nav,
  .header-call {
    display: inline-flex;
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-strip div {
    padding: 1.25rem 1.5rem 1.25rem 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .gallery {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-feature img {
    aspect-ratio: auto;
  }

  .gallery-grid img {
    aspect-ratio: 5 / 4;
  }

  .choice-section,
  .services-section,
  .about-section,
  .areas-section,
  .final-cta {
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
    column-gap: clamp(2.25rem, 7vw, 5rem);
  }

  .final-cta .contact-actions {
    align-self: end;
    justify-self: end;
    justify-content: flex-end;
    transform: translateY(-0.35rem);
  }

  .choice-list {
    gap: 0;
  }

  .area-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .area-list li {
    white-space: nowrap;
  }

  .site-footer {
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
  }

  .mobile-call {
    display: none;
  }
}

@media (min-width: 680px) and (max-width: 1040px) {
  .choice-section,
  .services-section,
  .about-section,
  .areas-section,
  .final-cta {
    grid-template-columns: minmax(0, 1fr);
  }

  .choice-intro,
  .services-copy,
  .about-copy,
  .areas-copy {
    max-width: 42rem;
  }

  .choice-intro h2,
  .services-copy h2,
  .about-copy h2,
  .areas-copy h2 {
    max-width: 12ch;
  }
}

@media (min-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1.08fr) minmax(18rem, 0.68fr);
    align-items: center;
    padding-top: clamp(2rem, 5vh, 4rem);
    padding-bottom: clamp(2.5rem, 5vh, 4rem);
  }

  .hero-media {
    transform: translateY(-2.5rem);
  }
}

@media (min-width: 980px) {
  .hero {
    min-height: calc(100svh - 8rem);
  }

  .reviews {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-media {
    min-height: 0;
  }

  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3) {
    transform: translateY(2rem);
  }
}
