:root {
  --forest: #1f3d2b;
  --forest-dark: #142a1c;
  --amber: #d9a441;
  --amber-dark: #b8862b;
  --ink: #24201a;
  --gray: #6b6357;
  --border: #e8e1d3;
  --bg-soft: #faf6ee;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(31, 61, 43, 0.1);
  --font-display: 'Fraunces', Georgia, serif;
  --font: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--forest);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--amber);
  color: var(--forest-dark);
}
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.btn-outline:hover { background: var(--forest); color: #fff; }
.btn-outline-light {
  border-color: rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.15); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--forest);
  flex-shrink: 0;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--forest);
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.logo-text.light { color: #fff; }
.main-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
.main-nav a:hover { color: var(--amber-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, #2a4d38 0%, var(--forest) 45%, var(--forest-dark) 100%);
  color: #fff;
  padding: 72px 0 60px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  margin: 0 0 12px;
}
.eyebrow.center { text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 700;
}
.hero-sub {
  font-size: 1.05rem;
  color: #dbe5dc;
  max-width: 46ch;
  margin: 0 0 28px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #dbe5dc;
}
.stars {
  color: var(--amber);
  letter-spacing: 2px;
  font-size: 1.1rem;
}
.stars.center { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 40px; font-size: 1.3rem; }
.stars.center span { color: var(--gray); font-size: 0.95rem; letter-spacing: normal; }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-card-title {
  font-family: var(--font-display);
  margin: 0 0 18px;
  font-size: 1.15rem;
  color: #fff;
}
.hero-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-card-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #e3ecE4;
  font-size: 0.95rem;
}
.hero-card-list a { color: var(--amber); font-weight: 600; }
.icon { font-size: 1.2rem; line-height: 1; }

/* Trust strip */
.trust-strip {
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding: 20px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--forest);
}

/* Sections */
.section { padding: 84px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 14px;
  font-weight: 700;
  color: var(--forest);
}
.section-title.center { text-align: center; }
.section-sub {
  color: var(--gray);
  max-width: 62ch;
  margin: 0 auto 48px;
}
.section-sub.center { text-align: center; }
.center { text-align: center; }

/* Menu */
.menu { background: #fff; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.menu-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease;
}
.menu-card:hover { transform: translateY(-4px); }
.menu-icon { font-size: 1.8rem; margin-bottom: 14px; }
.menu-card h3 { font-family: var(--font-display); margin: 0 0 10px; font-size: 1.15rem; color: var(--forest); }
.menu-card p { margin: 0; color: var(--gray); font-size: 0.95rem; }

/* About */
.about { background: var(--bg-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
}
.about-copy p { color: var(--gray); }
.about-points {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.about-points li {
  padding-left: 28px;
  position: relative;
  font-weight: 500;
  color: var(--ink);
}
.about-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--amber-dark);
  font-weight: 800;
}
.about-stats {
  display: grid;
  gap: 20px;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--forest);
}
.stat-label {
  display: block;
  color: var(--gray);
  font-size: 0.9rem;
  margin-top: 6px;
}

/* Reviews */
.reviews { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.review-card {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--bg-soft);
}
.review-card p {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--ink);
}
.review-card footer {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 600;
}
.reviews-cta a {
  font-weight: 700;
  color: var(--forest);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 2px;
}

/* Location */
.location { background: var(--bg-soft); }
.location-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 10px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.hours-table th, .hours-table td {
  text-align: left;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table th { color: var(--forest); font-weight: 600; }
.hours-table td { color: var(--gray); }
.hours-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0 0 24px;
  font-style: italic;
}
address {
  font-style: normal;
  margin: 0 0 24px;
  color: var(--gray);
  line-height: 1.7;
}
address a { color: var(--forest); font-weight: 600; }
.location-map {
  min-height: 340px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: #fff;
  text-align: center;
}
.cta-band-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin: 0 0 12px;
}
.cta-band-inner p {
  color: #dbe5dc;
  margin: 0 0 28px;
}
.cta-band .hero-actions { justify-content: center; }

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: #cddccf;
  padding: 56px 0 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-inner h3 {
  color: #fff;
  font-size: 0.95rem;
  margin: 0 0 14px;
}
.footer-inner p { margin: 0 0 8px; font-size: 0.92rem; }
.footer-inner a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 20px;
  font-size: 0.85rem;
  color: #8fa392;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .location-inner { grid-template-columns: 1fr; }
  .menu-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .main-nav li { border-top: 1px solid var(--border); }
  .main-nav a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .menu-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
