:root {
  --bg: #FAF7F2;
  --bg-warm: #F3ECE0;
  --bg-dark: #2C2418;
  --fg: #2C2418;
  --fg-light: #7A6E5D;
  --fg-inverse: #FAF7F2;
  --accent: #B8860B;
  --accent-soft: #D4A843;
  --accent-glow: rgba(184, 134, 11, 0.12);
  --card-warm: #EDE4D3;
  --card-dark: #3A3024;
  --card-light: #FFFFFF;
  --card-accent: #C9A84C;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
}

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

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

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

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent-glow), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 720px;
  text-align: left;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.hero-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-light);
  max-width: 540px;
}

.hero-accent {
  position: absolute;
  bottom: 8%;
  right: 8%;
  display: flex;
  gap: 12px;
}

.accent-circle {
  border-radius: 50%;
  opacity: 0.5;
}

.accent-circle.c1 {
  width: 80px;
  height: 80px;
  background: var(--accent);
  opacity: 0.15;
}

.accent-circle.c2 {
  width: 50px;
  height: 50px;
  background: var(--card-warm);
  opacity: 0.6;
  margin-top: 30px;
}

.accent-circle.c3 {
  width: 30px;
  height: 30px;
  background: var(--accent-soft);
  opacity: 0.3;
  margin-top: 55px;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  background: var(--bg-warm);
  padding: var(--space-xl) var(--space-md);
}

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.philosophy-label,
.features-label,
.metrics-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-md);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.philosophy-statement h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.3;
  color: var(--fg);
}

.philosophy-detail p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--fg-light);
  margin-bottom: var(--space-sm);
}

/* ─── FEATURES ─── */
.features {
  padding: var(--space-xl) var(--space-md);
}

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

.features-header {
  margin-bottom: var(--space-lg);
}

.features-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  line-height: 1.3;
  max-width: 600px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.feature-card {
  padding: var(--space-md) var(--space-md) var(--space-lg);
  border-radius: 16px;
  position: relative;
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-number {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--space-sm);
  opacity: 0.5;
}

.feature-card h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: var(--space-xs);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-dark {
  background: var(--card-dark);
  color: var(--fg-inverse);
}

.card-dark .feature-number { color: var(--accent-soft); opacity: 0.7; }
.card-dark h3 { color: #FAF7F2; }
.card-dark p { color: #C2B8A8; }

.card-warm {
  background: var(--card-warm);
  color: var(--fg);
}

.card-warm .feature-number { color: var(--accent); }
.card-warm p { color: var(--fg-light); }

.card-light {
  background: var(--card-light);
  color: var(--fg);
  border: 1px solid rgba(44, 36, 24, 0.08);
}

.card-light .feature-number { color: var(--accent); }
.card-light p { color: var(--fg-light); }

.card-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  color: #FFFFFF;
}

.card-accent .feature-number { color: rgba(255,255,255,0.5); }
.card-accent h3 { color: #FFFFFF; }
.card-accent p { color: rgba(255,255,255,0.85); }

/* ─── METRICS ─── */
.metrics {
  background: var(--bg-dark);
  color: var(--fg-inverse);
  padding: var(--space-xl) var(--space-md);
}

.metrics-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.metrics-label {
  color: var(--accent-soft);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.metric {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.metric-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent-soft);
  line-height: 1;
}

.metric-desc {
  font-size: 0.85rem;
  color: #A09585;
  line-height: 1.5;
}

/* ─── CLOSING ─── */
.closing {
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

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

.closing h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: var(--space-md);
}

.closing-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--fg-light);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
.site-footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(44, 36, 24, 0.08);
}

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

.footer-brand {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
}

.footer-sep {
  font-size: 0.8rem;
  color: var(--fg-light);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .hero {
    min-height: 70vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .hero-accent {
    display: none;
  }

  .philosophy,
  .features,
  .metrics,
  .closing {
    padding: var(--space-lg) var(--space-sm);
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }
}
/* ─── HERO CTA ─── */
.hero-cta-row {
  margin-top: var(--space-md);
}

.hero-cta-btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--fg-inverse);
  background: var(--accent);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(184,134,11,0.25);
}

.hero-cta-btn:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,134,11,0.35);
}
