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

:root {
  --bg: #FBF5ED;
  --bg-alt: #F5E6D3;
  --fg: #1A1A1A;
  --fg-muted: #6B5B4E;
  --accent: #D4622A;
  --accent-light: #E8845A;
  --forest: #2C4A3D;
  --forest-light: #3D6B5A;
  --cream: #FBF5ED;
  --border: #E0D0BC;
  --card: #FFFFFF;
  --radius: 16px;
  --radius-sm: 8px;
}

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

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

::selection { background: var(--accent); color: white; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212, 98, 42, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 245, 237, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
  gap: 0;
}
.hero-bg-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F5E6D3 0%, #FBF5ED 60%, #E8D5B5 100%);
  height: 100%;
  min-height: 600px;
}
.hero-illustration {
  width: 100%;
  max-width: 480px;
  height: auto;
}
.hero-content {
  padding: 80px 60px 80px 40px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212, 98, 42, 0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
  font-weight: 300;
}

/* ===== WHY ===== */
.why {
  background: var(--forest);
  color: white;
  padding: 120px 0;
}
.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.why-label {
  margin-bottom: 40px;
}
.why-label .section-label {
  background: rgba(255,255,255,0.12);
  color: #C8A96E;
}
.why-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: white;
  margin-bottom: 24px;
  max-width: 600px;
}
.why-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 72px;
  font-weight: 300;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 48px;
}
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  font-weight: 300;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 0;
  background: var(--bg);
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.features-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 500px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 26, 26, 0.08);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  background: var(--bg-alt);
  padding: 120px 0;
}
.philosophy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.philosophy-quote {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
}
.quote-mark {
  display: block;
  margin: 0 auto 24px;
}
.philosophy-quote blockquote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
}
.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  border-left: 3px solid var(--accent);
  padding-left: 24px;
}
.pillar h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.pillar p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--forest);
  padding: 140px 0;
  text-align: center;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 32px;
  line-height: 1.1;
}
.closing-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  font-weight: 300;
}
.closing-vision p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: #1A1A1A;
  color: white;
  padding: 60px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 32px 0;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-bottom span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 64px; }
  .hero-bg-art { min-height: 360px; }
  .hero-content { padding: 60px 32px; }
  .why-stats { grid-template-columns: 1fr; gap: 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .philosophy-pillars { grid-template-columns: 1fr; gap: 32px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 20px; }
  .hero-headline { font-size: 2.2rem; }
  .closing-headline { font-size: 2rem; }
}