:root {
  --bg: #FDF8F4;
  --fg: #2A1810;
  --accent: #D4623A;
  --accent-light: #F0C4AE;
  --sage: #8FA88A;
  --muted: #9A8276;
  --card-bg: #FFFFFF;
  --border: #E8D8CE;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 48px 100px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 580px;
}
.hero-eyebrow {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.08;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-body {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 460px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.box-mockup {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 48px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 8px 40px rgba(42,24,16,0.08), 0 2px 8px rgba(42,24,16,0.04);
  position: relative;
}
.box-mockup::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 12px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}
.box-label {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.box-sublabel {
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* PHILOSOPHY */
.philosophy {
  background: var(--fg);
  padding: 80px 48px;
}
.philosophy-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-style: italic;
  color: #FDF8F4;
  line-height: 1.4;
  margin-bottom: 32px;
}
.philosophy-body {
  font-size: 17px;
  color: #C4A89A;
  line-height: 1.7;
}
.philosophy-body em {
  color: var(--accent-light);
  font-style: normal;
}

/* THEMES */
.themes {
  padding: 100px 48px;
}
.themes-header {
  max-width: 600px;
  margin: 0 auto 64px;
  text-align: center;
}
.themes-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 16px;
}
.themes-subtitle {
  font-size: 16px;
  color: var(--muted);
}
.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.theme-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 28px 24px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.theme-card:hover {
  border-color: var(--accent-light);
  box-shadow: 0 4px 20px rgba(212,98,58,0.08);
}
.theme-icon {
  display: block;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 12px;
}
.theme-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 8px;
}
.theme-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* HOW */
.how {
  padding: 80px 48px;
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header {
  max-width: 600px;
  margin: 0 auto 56px;
  text-align: center;
}
.how-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--fg);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* CLOSING */
.closing {
  padding: 100px 48px;
  text-align: center;
  background: var(--bg);
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-tagline {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--accent);
}

/* FOOTER */
footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}
.footer-tagline {
  font-size: 14px;
  color: var(--muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 24px 80px;
    gap: 48px;
  }
  .hero-visual { order: -1; }
  .box-mockup { max-width: 260px; margin: 0 auto; }
  .philosophy { padding: 60px 24px; }
  .themes { padding: 80px 24px; }
  .themes-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .how { padding: 60px 24px; }
  .how-steps { grid-template-columns: 1fr; gap: 40px; }
  .step-number { font-size: 36px; }
  .closing { padding: 80px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .themes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 36px; }
}