/* ---- Design tokens ---- */
:root {
  --bg: #fafaf7;
  --bg-alt: #f1f4f1;
  --surface: #ffffff;
  --ink: #1c2a2a;
  --ink-2: #3b4a4a;
  --muted: #6b7878;
  --line: #e3e7e3;
  --primary: #2f6b5e;          /* calm teal-green */
  --primary-2: #244f47;
  --accent: #c98a4b;            /* warm clay accent */
  --accent-soft: #f4e7d6;
  --shadow: 0 6px 20px rgba(20, 40, 35, 0.06), 0 2px 6px rgba(20, 40, 35, 0.04);
  --radius: 14px;
  --radius-sm: 10px;
  --maxw: 1140px;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-display: 'Playfair Display', 'Inter', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2rem, 4vw + 1rem, 3.4rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem); }
h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 600; }
h4 { font-size: 1rem; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-2); }

.container { width: min(var(--maxw), 92%); margin: 0 auto; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); color: #fff; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-ghost { color: var(--ink); background: transparent; }
.btn-ghost:hover { color: var(--primary); }
.btn-link { background: transparent; color: var(--primary); padding: .5rem; border-radius: 0; }
.btn-lg { padding: .95rem 1.6rem; font-size: 1rem; }
.btn-block { display: block; width: 100%; text-align: center; margin-top: .5rem; }

/* ---- Header / Nav ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 1.25rem;
  padding: .9rem 0;
}
.brand { display: flex; flex-direction: column; line-height: 1.1; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand-mark { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--primary-2); }
.brand-sub { font-size: .75rem; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

.nav-links {
  display: flex; gap: 1.25rem; margin-left: auto; flex-wrap: wrap;
}
.nav-links a { color: var(--ink-2); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--primary); text-decoration: none; }

.nav-cta { display: flex; gap: .5rem; align-items: center; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .2s; }

/* ---- Hero ---- */
.hero {
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(circle at 90% -10%, rgba(47,107,94,.10), transparent 50%),
    radial-gradient(circle at 0% 110%, rgba(201,138,75,.08), transparent 45%),
    var(--bg);
}
.hero-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.2fr .85fr;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em;
  font-size: .8rem; font-weight: 600; color: var(--primary);
  margin: 0 0 .8rem;
}
.lede { font-size: 1.1rem; max-width: 56ch; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-badges {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin: 2rem 0 0; padding: 0; list-style: none;
  font-size: .9rem; color: var(--ink-2);
}
.hero-badges strong { color: var(--ink); display: block; font-size: 1.1rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card h3 { margin-top: 0; }
.hours { list-style: none; padding: 0; margin: 1rem 0; }
.hours li {
  display: flex; justify-content: space-between;
  padding: .45rem 0; border-bottom: 1px dashed var(--line);
  font-size: .95rem;
}
.hours li:last-child { border-bottom: 0; }
.hours .closed { color: var(--muted); }

/* ---- Sections ---- */
.section { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head h2 { margin-bottom: .5rem; }
.section-lede { color: var(--ink-2); font-size: 1.05rem; }
.section-note { text-align: center; color: var(--muted); margin-top: 2rem; }

.grid { display: grid; gap: 1.25rem; }

/* ---- Services ---- */
.services { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(47,107,94,.3); }
.service-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 1rem;
}
.service h3 { margin-bottom: .4rem; color: var(--primary-2); }
.service p { margin: 0; font-size: .95rem; }

/* ---- Conditions chips ---- */
.chip-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: .6rem;
  justify-content: center;
}
.chip-list li {
  background: var(--surface); border: 1px solid var(--line);
  padding: .55rem 1rem; border-radius: 999px;
  font-size: .9rem; color: var(--ink-2);
}

/* ---- About ---- */
.about-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
}
.checks { list-style: none; padding: 0; margin: 1rem 0 0; }
.checks li {
  position: relative; padding-left: 1.6rem; margin-bottom: .5rem;
  color: var(--ink-2);
}
.checks li::before {
  content: "✓"; color: var(--primary);
  position: absolute; left: 0; font-weight: 700;
}
.about-card {
  background: linear-gradient(180deg, var(--accent-soft), #fff);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
}
.about-card blockquote {
  margin: 0 0 1rem; padding: 0;
  font-family: var(--font-display);
  font-size: 1.2rem; line-height: 1.5; color: var(--ink);
}
.about-card cite { color: var(--muted); font-style: normal; font-size: .9rem; }

/* ---- Reviews ---- */
.reviews { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.review {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem; margin: 0;
}
.stars { color: var(--accent); font-size: 1rem; margin-bottom: .6rem; letter-spacing: 2px; }
.review blockquote { margin: 0 0 1rem; font-size: 1rem; color: var(--ink); }
.review figcaption { color: var(--muted); font-size: .9rem; }

.cta-row { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* ---- Insurance ---- */
.insurance-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1.2fr 1fr; align-items: center;
}
.insurance-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
}
.insurance-list li {
  background: var(--surface); border: 1px solid var(--line);
  padding: .9rem 1rem; border-radius: var(--radius-sm);
  font-weight: 500; color: var(--ink);
}

/* ---- Resources ---- */
.resources { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.resource {
  display: block; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; color: inherit;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.resource:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow); text-decoration: none; }
.resource h3 { color: var(--primary-2); margin-bottom: .35rem; }
.resource p { margin: 0; font-size: .95rem; }

/* ---- Visit / Map ---- */
.visit-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 1fr 1fr; align-items: stretch;
}
.visit-grid p { margin-bottom: .9rem; }
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 380px;
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ---- Footer ---- */
.site-footer {
  background: #14201e; color: #cdd5d3;
  padding: 3rem 0 1.5rem; margin-top: 2rem;
}
.site-footer .brand-mark { color: #fff; }
.site-footer h4 { color: #fff; margin-bottom: .6rem; }
.site-footer p { color: #cdd5d3; }
.site-footer a { color: #cdd5d3; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; gap: 2rem;
  grid-template-columns: 2fr 1fr 1fr 1fr;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem; padding-top: 1.5rem;
  text-align: center;
}
.site-footer .muted { color: #8a948f; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero-grid, .about-grid, .insurance-grid, .visit-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { gap: 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-header.open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); padding: 1rem 5%;
    border-bottom: 1px solid var(--line); gap: 1rem;
  }
  .site-header.open .nav-cta {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--surface); padding: 0 5% 1.25rem;
    margin-top: 12rem; gap: .5rem;
  }
}
@media (max-width: 540px) {
  .hero-badges { gap: 1rem; }
  .insurance-list { grid-template-columns: 1fr; }
}
