:root {
  --green-dark: #1f3d2b;
  --green: #2f6b3f;
  --green-bright: #5aa856;
  --gold: #c9a24b;
  --cream: #faf7f0;
  --ink: #22261f;
  --muted: #6b7266;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 61, 43, 0.12);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--green-dark);
  margin: 0 0 0.4em;
}

h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }

p { line-height: 1.7; color: var(--ink); }
.muted { color: var(--muted); }

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8em 1.6em;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
  text-align: center;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--green); color: var(--white); }
.btn-solid:hover { background: var(--green-dark); color: var(--white); box-shadow: var(--shadow); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--green-dark); }
.btn-ghost { border-color: var(--green); color: var(--green); }
.btn-ghost:hover { background: var(--green); color: var(--white); }
.btn-lg { padding: 1em 2em; font-size: 1.05rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 61, 43, 0.08);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--green-dark);
  margin-right: auto;
}
.logo img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 500;
}
.main-nav a:hover { color: var(--green); }
.header-cta { display: flex; gap: 10px; }
.header-cta .btn { padding: 0.6em 1.2em; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 38, 26, 0.75) 0%, rgba(20, 38, 26, 0.55) 45%, rgba(20, 38, 26, 0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 760px;
  padding: 0 24px;
}
.eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 5.5rem);
  margin-bottom: 0.15em;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.6em;
}
.hero-tag {
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 2em;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: var(--white); }
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin: 0 0 8px;
}
.section-intro {
  max-width: 640px;
  color: var(--muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); }
.service-img {
  height: 160px;
  background-size: cover;
  background-position: center;
}
.service-card h3, .service-card p { padding: 0 20px; }
.service-card h3 { margin-top: 18px; }
.service-card p { padding-bottom: 20px; color: var(--muted); }

/* Price List */
.price-list { margin-top: 56px; }
.price-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 0.9rem;
  font-style: italic;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 28px 8px;
}
.price-card h3 {
  border-bottom: 2px solid var(--gold);
  padding-bottom: 10px;
  margin-bottom: 12px;
}
.price-card dl { margin: 0 0 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(107, 114, 102, 0.25);
}
.price-row:last-child { border-bottom: none; }
.price-row dt { margin: 0; color: var(--ink); }
.price-row dd { margin: 0; color: var(--green); font-weight: 600; white-space: nowrap; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: 28px;
  margin-top: 40px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  text-align: center;
}
.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
}
.team-avatar-fallback {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.team-role { color: var(--muted); margin: 0; }
.team-bio { color: var(--muted); font-size: 0.9rem; margin: 12px 0 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  height: 340px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

/* Visit */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  margin-top: 32px;
  align-items: start;
}
.hours-table { border-collapse: collapse; margin-bottom: 24px; }
.hours-table td { padding: 4px 0; }
.hours-table td:first-child { padding-right: 24px; color: var(--muted); }
.visit-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 380px;
}
.visit-map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.85);
  padding: 48px 0;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.footer-address { color: var(--gold); }
.site-footer a { color: var(--gold); }
.footer-note { font-size: 0.85rem; color: var(--gold); opacity: 0.7; margin-top: 8px; }
.footer-links { font-size: 0.9rem; }

/* Products */
.products-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  margin: 40px 0 0;
  padding: 0;
}
.products-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--green-dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.products-list a:hover { color: var(--green); }

/* Policies */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}
.policy-item h3 { margin-bottom: 8px; }
.policy-item p { color: var(--muted); }

/* Fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 860px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-img { order: -1; height: 240px; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; order: 2; }
  .nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(31, 61, 43, 0.08);
  }
  .site-header.nav-open .nav-wrap { display: flex; }
  .main-nav { flex-direction: column; gap: 16px; }
  .header-cta { flex-direction: column; }
  .header-cta .btn { text-align: center; }

  .section { padding: 64px 0; }
}
