@import url('https://fonts.googleapis.com/css2?family=Newsreader:ital,opsz,wght@0,6..72,400;0,6..72,600;0,6..72,700;1,6..72,400;1,6..72,600&family=Source+Sans+3:wght@400;600;700&display=swap');

:root {
  --cream: #F5F0E6;
  --paper: #FDFAF3;
  --taupe: #8B7D6B;
  --taupe-light: #C4B9A8;
  --taupe-faint: #E8E0D4;
  --burgundy: #7B2D3B;
  --burgundy-dark: #5C1F2C;
  --ink: #2C2420;
  --ink-soft: #5C524A;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
iframe { width: 100%; border: 0; }
blockquote { margin: 0; }

/* ── NAV ───────────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px dashed var(--taupe-light);
  padding: 0 1.25rem;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.nav-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--burgundy);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-family: var(--sans);
  color: var(--ink-soft);
  border: 1px solid var(--taupe-light);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  line-height: 1;
  white-space: nowrap;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--taupe-light);
  display: inline-block;
  flex-shrink: 0;
}

/* ── HERO ──────────────────────────────────── */

.hero {
  background: var(--paper);
  padding: 2.5rem 1.25rem 2rem;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.hero-ornament {
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.55;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 4.2rem);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--burgundy);
}

.hero-sub {
  font-family: var(--sans);
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--burgundy);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 3px;
  text-decoration: none;
  min-height: 44px;
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--burgundy-dark); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--taupe);
  border-radius: 3px;
  text-decoration: none;
  min-height: 44px;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: var(--burgundy); color: var(--burgundy); }

.hero-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border: 2px solid var(--taupe-light);
  border-radius: 2px;
}

/* ── STATS BAND ────────────────────────────── */

.stats-band {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 1.25rem;
}

.stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  text-align: center;
}

.stat { flex: 1 1 130px; }

.stat-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.85rem;
  line-height: 1.15;
  display: block;
  color: #fff;
}

.stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-top: 0.25rem;
  display: block;
}

/* ── PAGE RULE DIVIDERS ────────────────────── */

.page-rule {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.25rem;
  border-top: 1px dashed var(--taupe-light);
}

/* ── SECTION HEADINGS ──────────────────────── */

.section-h {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 2rem;
}

/* ── SERVICES ──────────────────────────────── */

.services {
  padding: 3rem 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.svc-card {
  border-left: 2px solid var(--burgundy);
  padding-left: 1.25rem;
}

.svc-card h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.svc-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ── TEAM ──────────────────────────────────── */

.team {
  padding: 3rem 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.team-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-photo {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border: 2px solid var(--taupe-light);
  border-radius: 2px;
}

.team-name {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.team-role {
  font-family: var(--sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
  display: block;
}

.team-desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── TESTIMONIALS ──────────────────────────── */

.testimonials {
  padding: 3rem 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.rv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-card {
  border-top: 1px dashed var(--taupe-light);
  padding-top: 1.5rem;
}

.review-stars {
  color: var(--burgundy);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.review-text {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.review-author {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--taupe);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── VISIT ─────────────────────────────────── */

.visit {
  padding: 3rem 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.visit-info h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.visit-info p,
.visit-info address {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.visit-info a {
  color: var(--burgundy);
  text-decoration: none;
}

.visit-info a:hover { text-decoration: underline; }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.hours-table td {
  padding: 0.3rem 0;
  border-bottom: 1px dotted var(--taupe-faint);
  color: var(--ink-soft);
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  padding-right: 1rem;
  white-space: nowrap;
}

.visit-map {
  width: 100%;
  border: 2px solid var(--taupe-light);
  border-radius: 2px;
  min-height: 280px;
}

/* ── FOOT CTA ──────────────────────────────── */

.foot-cta {
  background: var(--burgundy);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.25rem;
}

.foot-cta h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--burgundy);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  text-decoration: none;
  min-height: 44px;
  transition: background 0.2s;
}

.btn-cta:hover { background: var(--cream); }

/* ── FOOTER ────────────────────────────────── */

.site-footer {
  background: var(--ink);
  color: var(--taupe-light);
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.7;
}

.site-footer a {
  color: var(--cream);
  text-decoration: none;
}

.site-footer a:hover { text-decoration: underline; }

.footer-fine {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--taupe);
}

/* ── DESKTOP ───────────────────────────────── */

@media (min-width: 720px) {
  .site-nav { padding: 0 2rem; }

  .hero { padding: 4rem 2rem 3rem; }
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
  .hero-photo {
    height: 460px;
  }

  .svc-grid { grid-template-columns: 1fr 1fr; }
  .rv-grid { grid-template-columns: 1fr 1fr; }
  .visit-grid { grid-template-columns: 1fr 1fr; }

  .team-block {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
  }
  .team-photo {
    width: 340px;
    max-height: 400px;
    flex-shrink: 0;
  }

  .services,
  .team,
  .testimonials,
  .visit { padding: 4rem 2rem; }

  .page-rule { padding: 0 2rem; }
}

@media (min-width: 1024px) {
  .stats-inner {
    justify-content: space-between;
    gap: 1rem;
  }
}
