:root {
  --green: #4A5916;
  --green-dark: #2e3a0d;
  --green-light: #8BA07A;
  --cream: #F5F0E8;
  --cream-dark: #EAE4D8;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --gray: #6B6B6B;
  --gray-light: #D4D0C8;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--black); background: var(--white); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(74,89,22,0.96);
  backdrop-filter: blur(12px);
}
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 12px; }
.nav-logo-mark {
  width: 40px; height: 40px;
}
.nav-brand { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-main { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 900; color: white; letter-spacing: 1px; }
.nav-brand-sub { font-size: 9px; font-weight: 500; color: rgba(255,255,255,0.6); letter-spacing: 4px; text-transform: uppercase; }
.nav-cta {
  background: var(--cream); color: var(--green);
  padding: 10px 22px; border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: white; }

/* HERO */
.city-hero {
  background: var(--green);
  padding: 160px 80px 100px;
  position: relative; overflow: hidden;
}
.city-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,160,122,0.12) 0%, transparent 70%);
}
.city-hero::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 300px; height: 300px;
  background: var(--green-dark);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
.hero-eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--green-light);
  margin-bottom: 20px;
}
.city-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 68px); font-weight: 300;
  color: white; line-height: 1.1; margin-bottom: 24px;
  max-width: 700px; position: relative; z-index: 1;
}
.city-hero h1 em { font-style: italic; color: var(--green-light); }
.city-hero p {
  font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.75);
  max-width: 560px; margin-bottom: 40px; position: relative; z-index: 1;
}
.hero-btns { display: flex; gap: 16px; align-items: center; position: relative; z-index: 1; flex-wrap: wrap; }
.btn-primary {
  background: var(--cream); color: var(--green);
  padding: 14px 32px; border-radius: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--cream); transition: all 0.25s;
}
.btn-primary:hover { background: transparent; color: var(--cream); }
.btn-ghost {
  color: rgba(255,255,255,0.8); font-size: 12px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.btn-ghost:hover { color: white; }

/* STATS */
.city-stats {
  background: var(--cream-dark);
  padding: 48px 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; border-bottom: 1px solid var(--gray-light);
}
.stat-item {
  padding: 20px 32px;
  border-right: 1px solid var(--gray-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px; font-weight: 600; color: var(--green); line-height: 1;
}
.stat-label { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray); margin-top: 6px; }

/* SECTIONS */
section { padding: 80px; }
.section-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 48px); font-weight: 300;
  color: var(--black); line-height: 1.15; margin-bottom: 16px;
}
.section-title strong { font-weight: 600; }
.section-desc { font-size: 15px; line-height: 1.75; color: var(--gray); max-width: 560px; margin-bottom: 48px; }

/* SERVICES GRID */
.services-bg { background: var(--cream); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 48px;
}
.service-card {
  background: white; padding: 36px 28px;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--green-light); transform: translateY(-4px); }
.service-icon { font-size: 28px; margin-bottom: 16px; }
.service-name {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.service-desc { font-size: 14px; line-height: 1.65; color: var(--gray); }

/* PACKAGES */
.packages-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px;
}
.pkg-card {
  background: white; border-radius: 12px; padding: 32px 24px;
  border: 2px solid var(--cream-dark);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
}
.pkg-card:hover {
  background: var(--green-light); border-color: var(--green-light);
  transform: translateY(-8px); box-shadow: 0 20px 50px rgba(74,89,22,0.2);
}
.pkg-card:hover .pkg-name,
.pkg-card:hover .pkg-features li { color: rgba(255,255,255,0.9); }
.pkg-card:hover .pkg-price { color: white; }
.pkg-card:hover .pkg-sub { color: rgba(255,255,255,0.7); }
.pkg-card:hover .pkg-features li::before { color: var(--cream); }
.pkg-card:hover .pkg-btn { background: white; color: var(--green); border-color: white; }
.pkg-name {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green); margin-bottom: 8px;
}
.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 600; color: var(--black); line-height: 1; margin-bottom: 4px;
}
.pkg-price span { font-size: 22px; font-weight: 300; vertical-align: super; }
.pkg-sub { font-size: 11px; color: var(--gray); margin-bottom: 24px; }
.pkg-divider { height: 1px; background: var(--cream-dark); margin-bottom: 20px; }
.pkg-features { list-style: none; margin-bottom: 28px; }
.pkg-features li {
  font-size: 13px; color: var(--black); padding: 5px 0;
  display: flex; align-items: flex-start; gap: 8px; line-height: 1.4;
}
.pkg-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.pkg-btn {
  display: block; width: 100%; padding: 12px;
  background: var(--cream); color: var(--green);
  border: 2px solid var(--cream-dark); border-radius: 6px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; text-align: center; transition: all 0.25s;
}
.pkg-btn:hover { background: var(--green); color: white; border-color: var(--green); }

/* LOCAL SECTION */
.local-bg { background: var(--cream); }
.local-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-top: 48px; }
.local-areas { list-style: none; }
.local-areas li {
  padding: 14px 0; border-bottom: 1px solid var(--cream-dark);
  font-size: 15px; color: var(--black); display: flex; align-items: center; gap: 12px;
}
.local-areas li::before { content: '📍'; font-size: 14px; }
.local-why h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--black); margin-bottom: 16px;
}
.local-why p { font-size: 15px; line-height: 1.75; color: var(--gray); margin-bottom: 16px; }

/* FAQ */
.faq-list { margin-top: 48px; max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--cream-dark); padding: 24px 0; }
.faq-q { font-size: 16px; font-weight: 600; color: var(--black); margin-bottom: 10px; }
.faq-a { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* CTA BAND */
.cta-band {
  background: var(--green); padding: 80px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 52px); font-weight: 300; color: white;
  margin-bottom: 16px;
}
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 40px; }
.cta-band .btn-primary { display: inline-block; }

/* FOOTER */
footer {
  background: var(--black); padding: 40px 80px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-brand { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 900; color: white; letter-spacing: 1px; }
.footer-sub { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 3px; text-transform: uppercase; margin-top: 4px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.35); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .city-hero { padding: 120px 24px 72px; }
  .city-stats { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--gray-light); }
  section { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .local-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { padding: 60px 24px; }
  footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* Cross-links band */
.also-covers {
  background: var(--cream-dark);
  padding: 40px 80px;
  text-align: center;
}
.also-covers p {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green); font-weight: 600; margin-bottom: 18px;
}
.also-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.also-links a {
  display: inline-block; padding: 8px 18px;
  border: 1px solid var(--green-light); border-radius: 100px;
  font-size: 13px; color: var(--green-dark); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.also-links a:hover {
  background: var(--green); color: white;
}
@media (max-width: 768px) {
  .also-covers { padding: 32px 24px; }
}
