/* === TOKENS === */
:root {
  --bg: #f7f4ef;
  --bg-alt: #ede9e0;
  --fg: #1a1a18;
  --fg-muted: #6b6b5e;
  --accent: #2d5a3d;
  --accent-light: #3d7a52;
  --gold: #b8963a;
  --border: #d6cfc0;
  --card-bg: #ffffff;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 600; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.15rem; font-weight: 600; }
p { font-size: 1.05rem; color: var(--fg-muted); line-height: 1.75; }

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4vw;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 7rem 4vw 8rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(45,90,61,0.07) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(45,90,61,0.015) 40px,
      rgba(45,90,61,0.015) 41px
    );
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(184,150,58,0.04) 0%,
    transparent 50%,
    rgba(45,90,61,0.04) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-sub {
  max-width: 540px;
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* === PHILOSOPHY === */
.philosophy {
  background: var(--fg);
  color: #fff;
  padding: 7rem 4vw;
}

.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.philosophy .section-label { color: var(--gold); }

.philosophy-headline {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.philosophy-body {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}

.philosophy-image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 1rem;
}

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

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* === SERVICES === */
.services {
  background: var(--bg);
  padding: 7rem 4vw;
}

.services-inner { max-width: 1100px; margin: 0 auto; }

.services-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 3.5rem;
  max-width: 480px;
}

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

.service-card {
  background: var(--card-bg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

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

.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: flex;
}

/* === HOW === */
.how {
  background: var(--bg-alt);
  padding: 7rem 4vw;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how-inner { max-width: 1100px; margin: 0 auto; }

.how-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 4rem;
  max-width: 480px;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.step { position: relative; }

.step-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(45,90,61,0.12);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* === CLOSING === */
.closing {
  background: var(--accent);
  padding: 8rem 4vw;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: #fff;
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.closing-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === FOOTER === */
.footer {
  background: var(--fg);
  padding: 3rem 4vw;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-desc {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-legal {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding: 5rem 6vw 6rem; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .nav { padding: 1.25rem 6vw; }
}
