:root {
  --bg: #FDF6EC;
  --bg-alt: #F5EBD9;
  --fg: #1A0E08;
  --fg-muted: #7A5C48;
  --accent: #C9943B;
  --accent-dark: #A07828;
  --accent-light: #EDD090;
  --surface: #FFFFFF;
  --border: rgba(26, 14, 8, 0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 64px 80px 64px;
  gap: 64px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 440px;
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-tagline {
  font-size: 13px;
  color: var(--accent-dark);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.01em;
  margin-top: 28px;
}

/* Email capture form */
.hero-subscribe-form {
  margin-bottom: 0;
}

.hero-form-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
  margin-bottom: 8px;
}

.hero-email-input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--fg);
  background: var(--surface);
  transition: border-color 0.15s;
  outline: none;
  min-width: 0;
}

.hero-email-input::placeholder {
  color: var(--fg-muted);
  opacity: 0.6;
}

.hero-email-input:focus {
  border-color: var(--accent);
}

.hero-subscribe-btn {
  padding: 12px 20px;
  background: var(--accent);
  color: var(--fg);
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  letter-spacing: 0.01em;
}

.hero-subscribe-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-subscribe-btn:active {
  transform: translateY(0);
}

.hero-form-note {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.7;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 520px;
}

.curl-orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.85;
}

.curl-orb--1 {
  width: 380px;
  height: 380px;
  background: conic-gradient(from 0deg, #C9943B 0%, #E8C06A 25%, #8B5E2A 50%, #C9943B 75%, #EDD090 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: curl-spin 12s linear infinite;
}

.curl-orb--2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 40% 40%, #F5EBD9, #C9943B 60%, #8B5E2A);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: curl-spin 8s linear infinite reverse;
}

.curl-orb--3 {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 40% 40%, #EDD090, #C9943B 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: curl-spin 5s linear infinite;
}

.hero-texture-text {
  position: absolute;
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--fg);
  opacity: 0.04;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  transform: rotate(-15deg);
}

@keyframes curl-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ── SECTION SHARED ────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── PHILOSOPHY ────────────────────────────── */
.philosophy {
  background: var(--fg);
  color: var(--bg);
  padding: 120px 64px;
}

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

.philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--bg);
  margin-bottom: 32px;
  max-width: 640px;
}

.philosophy-body {
  font-size: 17px;
  color: rgba(253, 246, 236, 0.7);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 72px;
  font-weight: 300;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.pillar h3 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.pillar p {
  font-size: 14px;
  color: rgba(253, 246, 236, 0.6);
  line-height: 1.7;
}

.pillar-icon {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 16px;
}

/* ── JOURNEY ────────────────────────────────── */
.journey {
  background: var(--bg-alt);
  padding: 120px 64px;
}

.journey-inner {
  max-width: 900px;
  margin: 0 auto;
}

.journey h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 64px;
}

.journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.journey-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.journey-step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}

.step-content h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}

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

.journey-callout {
  margin-top: 56px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 28px 32px;
  border-radius: 0 8px 8px 0;
}

.journey-callout p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.journey-callout strong {
  color: var(--accent-dark);
  font-weight: 600;
}

/* ── MANIFESTO ─────────────────────────────── */
.manifesto {
  background: var(--accent);
  padding: 120px 64px;
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  font-style: italic;
  color: var(--fg);
  line-height: 1.45;
  margin-bottom: 40px;
}

.manifesto-divider {
  width: 60px;
  height: 2px;
  background: rgba(26, 14, 8, 0.3);
  margin: 0 auto 40px;
}

.manifesto-body {
  font-size: 16px;
  color: rgba(26, 14, 8, 0.75);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 56px;
}

.cta-text {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
}

/* ── FOOTER ────────────────────────────────── */
.site-footer {
  background: var(--fg);
  color: var(--bg);
  padding: 64px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 8px;
}

.footer-inner p {
  font-size: 13px;
  color: rgba(253, 246, 236, 0.5);
}

.footer-links {
  font-size: 12px;
  color: var(--accent-light);
  letter-spacing: 0.06em;
}

.footer-copy {
  font-size: 11px;
  color: rgba(253, 246, 236, 0.3);
}

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 64px 32px;
    min-height: auto;
    gap: 48px;
  }

  .hero-visual { height: 280px; }
  .curl-orb--1 { width: 200px; height: 200px; }
  .curl-orb--2 { width: 140px; height: 140px; }
  .curl-orb--3 { width: 70px; height: 70px; }

  .philosophy, .journey, .manifesto {
    padding: 80px 32px;
  }

  .philosophy-pillars {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .journey-step {
    grid-template-columns: 48px 1fr;
    gap: 20px;
  }

  .step-num { font-size: 32px; }

  .site-footer { padding: 48px 32px; }
}