:root {
  --forest-900: #24382a;
  --forest-800: #314a35;
  --forest-700: #49634a;
  --moss-500: #78876a;
  --clay-700: #815d48;
  --clay-600: #9b6d50;
  --sand-100: #f1ecdf;
  --cream-50: #fbfaf5;
  --ink: #243026;
  --muted: #637066;
  --line: rgba(36, 56, 42, 0.18);
  --white: #ffffff;
  --shadow: 0 20px 45px rgba(36, 56, 42, 0.12);
  --radius-sm: 0.65rem;
  --radius: 1.25rem;
  --shell: min(1160px, calc(100% - 2rem));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

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

.shell { width: var(--shell); margin-inline: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--forest-900);
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

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

.utility-bar {
  color: rgba(255, 255, 255, 0.84);
  background: var(--forest-900);
  font-size: 0.84rem;
}

.utility-inner {
  min-height: 2.45rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
}

.utility-inner a { text-decoration: none; }
.utility-inner a:hover { color: var(--white); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  background: rgba(251, 250, 245, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav-row {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
}

.wordmark span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.wordmark strong {
  margin-top: 0.3rem;
  color: var(--forest-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.75rem);
}

.main-nav a {
  position: relative;
  padding-block: 0.35rem;
  color: var(--forest-900);
  font-size: 0.92rem;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--clay-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after { transform: scaleX(1); }

.menu-button {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  color: var(--forest-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-icon { position: relative; }

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before { top: -5px; }
.menu-icon::after { top: 5px; }

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(184, 190, 168, 0.38), transparent 30rem),
    linear-gradient(135deg, var(--cream-50), #f4f1e8 68%, #e5e5d8);
}

.hero-grid {
  min-height: 39rem;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero-logo-wrap { position: relative; }

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 84%;
  aspect-ratio: 1;
  top: 8%;
  left: 4%;
  border: 1px solid rgba(49, 74, 53, 0.14);
  border-radius: 50%;
}

.hero-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 29rem);
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 24px rgba(36, 56, 42, 0.08));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--clay-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow-light { color: #d4c4aa; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.13; }

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  color: var(--forest-900);
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.25rem, 4.8vw, 4.3rem);
  letter-spacing: -0.035em;
}

h3 { margin-bottom: 0.75rem; font-size: 1.35rem; }

.lead,
.large-copy {
  max-width: 44rem;
  font-size: clamp(1.08rem, 1.9vw, 1.3rem);
}

.lead { color: var(--muted); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--forest-800); }
.button-primary:hover { background: var(--forest-900); }
.button-secondary { color: var(--white); background: var(--clay-600); }
.button-ghost { color: var(--forest-900); border-color: var(--forest-700); }
.button-ghost:hover { color: var(--white); background: var(--forest-800); }

.quick-section { position: relative; z-index: 2; margin-top: -2.3rem; }

.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: var(--forest-800);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.quick-card {
  min-height: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.quick-card:last-child { border-right: 0; }
.quick-card:hover, .quick-card:focus-visible { background: var(--forest-700); }
.quick-number { color: #cdd2c3; font-size: 0.76rem; letter-spacing: 0.14em; }
.quick-label { font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.quick-note { color: rgba(255, 255, 255, 0.72); font-size: 0.82rem; }

.section { padding-block: clamp(5rem, 9vw, 8rem); }
.section-light { background: var(--cream-50); }
.section-sand { background: var(--sand-100); }
.section-forest { color: var(--white); background: var(--forest-900); }
.section-clay { color: var(--white); background: var(--clay-700); }

.split-heading,
.hours-grid,
.online-grid,
.contact-grid,
.team-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: start;
}

.notice-card,
.hours-card,
.team-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius);
}

.notice-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(36, 56, 42, 0.07);
}

.notice-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.28rem 0.62rem;
  color: var(--clay-700);
  background: #f3e5d9;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.text-button {
  padding: 0;
  color: var(--forest-800);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  cursor: pointer;
}

.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.team-monogram {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  color: var(--forest-900);
  background: #d5d9ca;
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.placeholder-copy { color: rgba(255, 255, 255, 0.7); font-size: 0.94rem; }

.hours-card {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(36, 56, 42, 0.13);
}

.hours-row {
  min-height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child { border-bottom: 0; }
.hours-row strong { color: var(--clay-700); font-size: 0.9rem; }
.section-heading { max-width: 46rem; margin-bottom: 3rem; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.1rem; }
.service-list { border-top: 1px solid var(--line); }
.service-list details { border-bottom: 1px solid var(--line); }

.service-list summary {
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--forest-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.75rem);
  list-style: none;
  cursor: pointer;
}

.service-list summary::-webkit-details-marker { display: none; }

.summary-mark {
  position: relative;
  flex: 0 0 1.5rem;
  width: 1.5rem;
  height: 1.5rem;
}

.summary-mark::before,
.summary-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 1px;
  background: var(--clay-700);
  transform: translate(-50%, -50%);
}

.summary-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

details[open] .summary-mark::after { transform: translate(-50%, -50%) rotate(0deg); }
.service-list details > p, .service-list details > ul { margin-bottom: 2.2rem; }

.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 2.5rem;
  padding-left: 1.25rem;
}

.service-columns li::marker { color: var(--moss-500); }
.fine-print { color: var(--muted); font-size: 0.92rem; }
.online-grid { align-items: center; }
.online-cards { display: grid; gap: 0.9rem; }

.online-card {
  min-height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background-color 180ms ease;
}

.online-card:hover, .online-card:focus-visible { background: rgba(255, 255, 255, 0.1); }
.online-card strong, .online-card small { display: block; }
.online-card strong { font-size: 1.1rem; }
.online-card small { margin-top: 0.15rem; color: rgba(255, 255, 255, 0.74); }
.contact-grid { align-items: stretch; }

address {
  margin-bottom: 1.5rem;
  font-style: normal;
  font-size: 1.08rem;
}

.contact-list { margin-bottom: 1.7rem; }
.contact-list p { display: flex; gap: 1rem; margin-bottom: 0.25rem; }
.contact-list span { min-width: 5rem; color: var(--muted); }
.contact-list strong { color: var(--clay-700); }

.map-shell {
  min-height: 30rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(36, 56, 42, 0.82), rgba(36, 56, 42, 0.82)),
    repeating-linear-gradient(35deg, #7a8b76 0 1px, transparent 1px 32px);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-consent {
  min-height: 30rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  color: var(--white);
  text-align: center;
}

.map-consent p { max-width: 30rem; color: rgba(255, 255, 255, 0.78); }
.map-consent > a { margin-top: 1rem; font-size: 0.88rem; }

.map-pin {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--forest-900);
  background: var(--sand-100);
  border-radius: 50%;
  font-size: 2rem;
}

.map-frame { width: 100%; height: 30rem; display: block; border: 0; }

.site-footer {
  padding-block: 2.2rem;
  color: rgba(255, 255, 255, 0.74);
  background: #1c2a20;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.footer-grid strong { color: var(--white); }
.footer-grid p { margin-bottom: 0; }
.footer-grid nav { display: flex; gap: 1rem; }
.footer-grid a { text-underline-offset: 0.25rem; }

.notice-dialog {
  width: min(38rem, calc(100% - 2rem));
  padding: 0;
  color: var(--ink);
  background: var(--cream-50);
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.notice-dialog::backdrop { background: rgba(21, 31, 24, 0.68); backdrop-filter: blur(3px); }
.dialog-inner { position: relative; padding: clamp(2rem, 6vw, 3.5rem); }
.dialog-inner h2 { font-size: clamp(2rem, 5vw, 3.2rem); }

.dialog-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--forest-900);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}

.legal-page {
  min-height: 70vh;
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--sand-100);
}

.legal-content { max-width: 54rem; }
.legal-content h1 { max-width: none; font-size: clamp(2.7rem, 6vw, 4.7rem); }

.legal-content h2 {
  margin-top: 2.8rem;
  margin-bottom: 0.8rem;
  color: var(--forest-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.legal-warning {
  margin: 2rem 0 3rem;
  padding: 1rem 1.2rem;
  background: #f3e5d9;
  border-left: 4px solid var(--clay-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 1.5rem, 760px); }
  .utility-inner { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .menu-button { display: inline-flex; }

  .main-nav {
    position: fixed;
    inset: 7.4rem 0 auto;
    max-height: calc(100vh - 7.4rem);
    display: grid;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: var(--cream-50);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 35px rgba(36, 56, 42, 0.14);
    overflow-y: auto;
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform 180ms ease, visibility 180ms ease;
  }

  .main-nav.is-open { transform: translateY(0); visibility: visible; }

  .main-nav a {
    min-height: 3rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .hero-grid { min-height: auto; grid-template-columns: 0.82fr 1.18fr; gap: 2rem; }
  .quick-grid { grid-template-columns: repeat(3, 1fr); }
  .quick-card:nth-child(3) { border-right: 0; }
  .quick-card:nth-child(-n+3) { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }

  .split-heading,
  .hours-grid,
  .online-grid,
  .contact-grid,
  .team-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 5.2rem; }
  .utility-bar { display: none; }
  .nav-row { min-height: 4.7rem; }
  .main-nav { inset: 4.7rem 0 auto; max-height: calc(100vh - 4.7rem); }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 2.4rem;
    padding-bottom: 5rem;
  }

  .hero-logo-wrap { width: min(19rem, 74vw); }
  .hero-logo-wrap::before { width: 76%; }
  .hero-logo { width: 100%; }
  h1 { max-width: 12ch; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .quick-section { margin-top: -1.5rem; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }

  .quick-card {
    min-height: 8.7rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .quick-card:nth-child(even) { border-right: 0; }
  .quick-card:last-child { grid-column: 1 / -1; min-height: 7.5rem; border-bottom: 0; }
  .service-columns { grid-template-columns: 1fr; }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
    padding-block: 0.65rem;
  }

  .team-card { grid-template-columns: 1fr; }
  .map-shell, .map-consent, .map-frame { min-height: 24rem; height: 24rem; }
  .footer-grid nav { flex-wrap: wrap; }
}

@media (max-width: 390px) {
  .quick-grid { grid-template-columns: 1fr; }
  .quick-card, .quick-card:nth-child(even) { border-right: 0; }
  .quick-card:last-child { grid-column: auto; }
  .contact-list p { flex-direction: column; gap: 0; }
}

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