:root {
  --bg-dark: #1a1a1a;
  --bg-warm: #f5f0eb;
  --bg-cream: #faf8f5;
  --text-dark: #1a1a1a;
  --text-light: #f5f0eb;
  --text-muted: #8a8278;
  --accent: #c4783e;
  --accent-deep: #8b4513;
  --border-light: rgba(26, 26, 26, 0.1);
  --border-dark: rgba(245, 240, 235, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(2rem, 6vw, 8rem);
  padding-bottom: 8rem;
  background: var(--bg-dark);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(196, 120, 62, 0.15), transparent),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139, 69, 19, 0.08), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-light);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(245, 240, 235, 0.65);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  right: clamp(2rem, 6vw, 8rem);
  z-index: 2;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== MISSION ===== */
.mission {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-cream);
}

.mission-inner {
  max-width: 900px;
}

.mission-label,
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.mission-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 3rem;
}

.mission-body p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 1rem;
}

.mission-body p:last-child {
  color: var(--text-dark);
  font-weight: 500;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

/* ===== SERVICES ===== */
.services {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-warm);
}

.services-inner {
  max-width: 1200px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-cream);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
}

.service-card:first-child {
  border-radius: 4px 0 0 4px;
}

.service-card:last-child {
  border-radius: 0 4px 4px 0;
}

.service-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(196, 120, 62, 0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== IMPACT ===== */
.impact {
  padding: clamp(5rem, 10vw, 10rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-dark);
  color: var(--text-light);
}

.impact-inner {
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.impact-text .section-label {
  color: var(--accent);
}

.impact-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.impact-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 240, 235, 0.6);
}

.impact-stats {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-top: 1rem;
}

.stat {
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}

.stat-highlight {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.stat p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 240, 235, 0.55);
}

/* ===== CLOSING ===== */
.closing {
  padding: clamp(6rem, 12vw, 12rem) clamp(2rem, 6vw, 8rem);
  background: var(--bg-cream);
  text-align: center;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.closing-sub {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.closing-contact {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}

.closing-contact p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}

.closing-contact p:first-child {
  color: var(--accent-deep);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 3rem clamp(2rem, 6vw, 8rem);
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

.footer-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245, 240, 235, 0.4);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .service-card:first-child {
    border-radius: 4px 4px 0 0;
  }

  .service-card:last-child {
    border-radius: 0 0 4px 4px;
  }

  .impact-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero {
    padding-bottom: 5rem;
  }

  .hero-scroll-indicator {
    display: none;
  }
}