:root {
  color-scheme: light;
  --bg: #f6f4ec;
  --card: rgba(255, 255, 255, 0.95);
  --text: #1b231a;
  --muted: #576354;
  --accent: #2f6b2f;
  --accent-dark: #234f23;
  --accent-soft: #e4efdc;
  --accent-warm: #8e5b2f;
  --accent-gold: #d2ad62;
  --border: #d9dfd2;
  --shadow: 0 22px 48px rgba(20, 32, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(129, 173, 93, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(210, 173, 98, 0.14), transparent 20%),
    linear-gradient(180deg, #fbfbf7 0%, #f6f4ec 100%);
}

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

.wrap {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(780px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(246, 244, 236, 0.88);
  border-bottom: 1px solid rgba(217, 223, 210, 0.9);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 70px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.top-nav a,
.footer-nav a,
.card-link,
.inline-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.top-nav a:hover,
.top-nav a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.card-link:hover,
.card-link:focus-visible,
.inline-link:hover,
.inline-link:focus-visible {
  color: var(--accent);
}

.hero,
.page-hero {
  padding: 56px 0 58px;
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.9fr);
  gap: 26px;
  align-items: stretch;
}

.hero-copy,
.page-hero-copy {
  align-self: center;
}

.hero-stack {
  display: grid;
  gap: 18px;
}

.hero-card,
.card,
.value-card,
.contact-box,
.content-card,
.scene-card,
.art-card,
.quote-strip,
.local-card,
.service-badges {
  background: var(--card);
  border: 1px solid rgba(217, 223, 210, 0.95);
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.value-card,
.content-card,
.scene-card,
.art-card,
.local-card {
  border-radius: 22px;
  padding: 24px;
}

.hero-card {
  align-self: start;
}

.art-card,
.scene-card {
  overflow: hidden;
  padding: 0;
}

.scene-art {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(180deg, #f7f6ef 0%, #eef3e2 100%);
}

.scene-copy {
  padding: 20px 22px 22px;
}

.eyebrow,
.mini-label,
.section-label,
.scene-kicker {
  margin: 0 0 10px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.scene-kicker {
  font-size: 0.76rem;
  margin-bottom: 8px;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 14px;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  max-width: 920px;
}

h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
}

.lede,
.footer-copy,
.card p,
.value-card p,
.hero-card p,
.contact-box p,
.content-card p,
.scene-copy p,
.local-card p,
.quote-strip p,
.service-badges p,
.page-hero-copy p {
  color: var(--muted);
}

.hero-points,
.check-list,
.area-list,
.detail-pills,
.local-points {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.hero-points li,
.check-list li,
.local-points li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-points li::before,
.check-list li::before,
.local-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.detail-pills {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.detail-pills li,
.service-badge {
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.button:hover {
  background: var(--accent-dark);
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.button-block {
  width: 100%;
  margin-top: 18px;
}

.section {
  padding: 52px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(230, 241, 222, 0.62) 0%, rgba(238, 243, 235, 0.72) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-heading {
  margin-bottom: 20px;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards,
.value-grid,
.area-list,
.footer-nav,
.scene-grid,
.local-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card-link {
  color: var(--text);
}

.area-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: 0 10px 26px rgba(20, 32, 20, 0.04);
}

.contact-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-radius: 22px;
  padding: 24px;
}

.quote-strip {
  border-radius: 18px;
  padding: 20px 22px;
  background: linear-gradient(135deg, rgba(47, 107, 47, 0.08), rgba(142, 91, 47, 0.08));
}

.quote-strip strong {
  display: block;
  margin-bottom: 8px;
}

.local-grid {
  align-items: stretch;
}

.local-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 239, 0.96));
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 28px 0 36px;
}

.footer-nav {
  display: grid;
  gap: 10px;
}

@media (max-width: 860px) {
  .hero-grid,
  .page-hero-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-row {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 10px 0;
  }

  .top-nav {
    gap: 12px;
  }

  .hero,
  .page-hero {
    padding: 42px 0 44px;
  }

  .contact-box {
    align-items: flex-start;
    flex-direction: column;
  }
}
