@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --green-dark:   #1A3A2A;
  --green-darker: #0e2419;
  --green-mid:    #4A8C3F;
  --gold:         #C8A84B;
  --cream:        #F5F2EB;
  --tan:          #8B7355;
  --blue-snow:    #1a4a72;
  --blue-snow-lt: #5eaef0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--gold);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.01em;
  text-decoration: none;
}
.logo span { color: var(--gold); }
.logo small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  margin-top: -4px;
}

.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.55rem 1.4rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.85; }

/* ── HERO ── */
.hero {
  background: var(--green-dark);
  padding: 5.5rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: repeating-linear-gradient(90deg, rgba(74,140,63,0.06) 0px, rgba(74,140,63,0.06) 2px, transparent 2px, transparent 28px);
  pointer-events: none;
}
.hero-grass {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
}
.hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,168,75,0.15);
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-contact {
  margin-top: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-contact a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.hero-contact a:hover { color: var(--gold); }
.hero-contact a b { color: rgba(255,255,255,0.9); }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}
.btn-gold:hover { opacity: 0.88; }

.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: #fff; }

.btn-dark {
  background: var(--green-dark);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-dark:hover { opacity: 0.85; }

.btn-outline-dark {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.btn-outline-dark:hover { opacity: 0.7; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--green-darker);
  padding: 0.9rem 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 3px solid var(--gold);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.trust-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── SECTION SHARED ── */
.sec-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 2.75rem;
  line-height: 1.15;
}

/* ── SERVICES ── */
.services {
  padding: 5rem 2rem;
  max-width: 1040px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.25rem;
}
.svc {
  background: var(--cream);
  border-radius: 5px;
  padding: 1.75rem 1.4rem;
  border-bottom: 3px solid transparent;
  transition: border-color 0.22s, transform 0.22s;
  cursor: default;
}
.svc:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
}
.svc-icon {
  width: 42px; height: 42px;
  background: var(--green-dark);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.svc-icon svg {
  width: 22px; height: 22px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}
.svc-desc {
  font-size: 0.83rem;
  color: #5a5a5a;
  line-height: 1.55;
}
.svc.snow .svc-icon { background: var(--blue-snow); }
.svc.snow { border-top: 3px solid var(--blue-snow-lt); }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--green-dark);
}
.about-stats {
  background: var(--green-mid);
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
}
.stat-block {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.25rem;
}
.about-text {
  padding: 3.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text .sec-eyebrow { color: var(--gold); }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.2rem;
  line-height: 1.2;
}
.about-text p {
  color: rgba(255,255,255,0.68);
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
}
.chk {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 9px;
  color: var(--green-dark);
  font-weight: 700;
}

/* ── REVIEWS ── */
.reviews-section {
  padding: 5rem 2rem;
  background: #fafaf8;
  border-top: 1px solid #ece9e1;
}
.reviews-inner { max-width: 1040px; margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}
.rv {
  background: #fff;
  border: 0.5px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
}
.rv.rv-ethan { border-left: 3px solid var(--gold); }
.rv-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
}
.rv-text {
  font-size: 0.87rem;
  color: #444;
  line-height: 1.65;
  font-style: italic;
  flex: 1;
  margin-bottom: 1rem;
}
.rv-author {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-dark);
}
.rv-meta {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

/* ── AREAS ── */
.areas {
  padding: 4rem 2rem;
  background: var(--cream);
  border-top: 1px solid #ddd9cc;
}
.areas-inner {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}
.areas h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.areas p {
  color: var(--tan);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
}
.areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.area-tag {
  background: #fff;
  border: 1px solid #ccc7b8;
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: background 0.2s, border-color 0.2s;
}
.area-tag:hover {
  background: var(--green-dark);
  color: #fff;
  border-color: var(--green-dark);
}

/* ── CTA BAR ── */
.cta-bar {
  background: var(--gold);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-bar h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 0.6rem;
}
.cta-bar p {
  color: rgba(26,58,42,0.72);
  margin-bottom: 2rem;
  font-size: 0.98rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FOOTER ── */
footer {
  background: var(--green-darker);
  color: rgba(255,255,255,0.5);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  border-top: 2px solid var(--green-dark);
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: #fff;
  font-size: 1.1rem;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-contact { flex-direction: column; align-items: center; gap: 0.5rem; }
  nav { padding: 0 1.25rem; }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
