:root {
  --bg: #FDF8EE;
  --bg-alt: #1B3A0F;
  --fg: #1A1A1A;
  --fg-inv: #FDF8EE;
  --accent: #D4A82A;
  --accent-dark: #A67A1A;
  --text-muted: #6B5F4A;
  --border: rgba(26,58,15,0.12);
  --radius: 4px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Nunito', system-ui, sans-serif;
  --max-w: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 24px 80px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(212,168,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(27,58,15,0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.geo-1 {
  width: 600px; height: 600px;
  background: var(--accent);
  top: -200px; right: -150px;
}
.geo-2 {
  width: 400px; height: 400px;
  background: #1B3A0F;
  bottom: -100px; left: -100px;
}
.geo-3 {
  width: 200px; height: 200px;
  background: var(--accent);
  bottom: 20%; left: 40%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: #1B3A0F;
  margin-bottom: 24px;
}

.hero-lede {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 440px;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.house-icon svg {
  width: 140px;
  height: 140px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  background: rgba(27,58,15,0.03);
}

.stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: #1B3A0F;
  line-height: 1;
}

.stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
}

.hero-scroll-hint {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── WHO WE SERVE ── */
.who {
  padding: 100px 24px;
  background: #F5EFE2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 600;
  line-height: 1.15;
  color: #1B3A0F;
  margin-bottom: 60px;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.who-card {
  padding: 48px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-card--accent {
  background: #1B3A0F;
  color: var(--fg-inv);
}

.who-card--accent .section-label {
  color: rgba(212,168,42,0.7);
}

.who-card--accent h3,
.who-card--accent p {
  color: var(--fg-inv);
}

.who-card--accent .who-icon {
  color: var(--accent);
}

.who-icon {
  margin-bottom: 28px;
  color: #1B3A0F;
}

.who-icon svg {
  width: 40px;
  height: 40px;
}

.who-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: #1B3A0F;
  margin-bottom: 16px;
  line-height: 1.3;
}

.who-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── SERVICES ── */
.services {
  padding: 100px 24px;
  background: var(--bg);
}

.services-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 60px;
}

.service-item {
  padding: 44px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.service-item:hover {
  background: rgba(212,168,42,0.04);
}

.service-item:nth-child(3n) {
  border-right: none;
}

.service-item:nth-child(n+4) {
  border-bottom: none;
}

.service-num {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(27,58,15,0.08);
  line-height: 1;
  margin-bottom: 12px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #1B3A0F;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── WHY IT MATTERS ── */
.why {
  padding: 100px 24px;
  background: #1B3A0F;
  color: var(--fg-inv);
}

.why-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why .section-label { color: rgba(212,168,42,0.7); }
.why-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--fg-inv);
  line-height: 1.2;
  margin-bottom: 28px;
}

.why-body {
  font-size: 16px;
  color: rgba(253,248,238,0.7);
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-stats {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid rgba(253,248,238,0.15);
}

.why-stat {}

.why-stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.why-stat-desc {
  font-size: 14px;
  color: rgba(253,248,238,0.55);
  line-height: 1.6;
}

/* ── VISION ── */
.vision {
  padding: 100px 24px;
  background: #F5EFE2;
  border-top: 1px solid var(--border);
}

.vision-inner {
  max-width: 860px;
  margin: 0 auto;
}

.vision-quote {
  margin-bottom: 60px;
  padding-left: 32px;
  border-left: 3px solid var(--accent);
}

.vision-quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 500;
  font-style: italic;
  color: #1B3A0F;
  line-height: 1.4;
  margin-bottom: 16px;
}

.vision-attr {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-dark);
  letter-spacing: 0.05em;
}

.vision-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: #1B3A0F;
  margin-bottom: 24px;
}

.vision-body p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 20px;
}

/* ── FOOTER ── */
.footer {
  padding: 48px 24px 40px;
  background: #111810;
  color: rgba(253,248,238,0.5);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.footer-name {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg-inv);
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(253,248,238,0.4);
}

.footer-info p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(253,248,238,0.35);
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  font-size: 12px;
  color: rgba(253,248,238,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .who-cards { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item { border-right: none; }
  .service-item:nth-child(n+4) { border-bottom: 1px solid var(--border); }
  .service-item:last-child { border-bottom: none; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { text-align: left; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .who, .services, .why, .vision { padding: 72px 20px; }
  .who-card { padding: 36px 28px; }
  .service-item { padding: 32px 24px; }
}