:root {
  --bg: #f7f5f0;
  --bg-alt: #ffffff;
  --fg: #111827;
  --fg-muted: #6b7280;
  --accent: #1a3a2a;
  --accent-light: #2d5a42;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --border: #e5e0d8;
  --card: #ffffff;
  --text-inv: #f7f5f0;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

a { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }

em { font-style: italic; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247, 245, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-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: baseline; gap: 2px; font-weight: 600; font-size: 1.05rem; }
.logo-mark { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--accent); font-style: italic; }
.logo-word { font-family: 'DM Sans', sans-serif; text-transform: lowercase; letter-spacing: -0.03em; }
.nav-links { display: flex; gap: 36px; align-items: center; font-size: 0.875rem; font-weight: 500; color: var(--fg-muted); }
.nav-links a:hover { color: var(--fg); }
.nav-blog { background: var(--accent); color: var(--text-inv) !important; padding: 6px 16px; border-radius: 4px; }
.nav-blog:hover { background: var(--accent-light) !important; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60%;
  height: 90%;
  background: radial-gradient(ellipse at center, rgba(26,58,42,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 28px;
  line-height: 1.15;
}
.hero-headline em { color: var(--accent); }
.hero-accent { color: var(--gold); }
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--text-inv);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--accent-light); }
.btn-ghost {
  display: inline-block;
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: var(--fg); background: rgba(17,24,39,0.04); }
.hero-stats { display: flex; align-items: center; gap: 0; }
.stat { padding: 0 24px; }
.stat:first-child { padding-left: 0; }
.stat-divider { width: 1px; height: 36px; background: var(--border); }
.stat-num { display: block; font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.stat-label { font-size: 0.7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; }

/* ── Hero Visual ── */
.hero-right { display: flex; align-items: center; justify-content: center; }
.hero-visual { position: relative; width: 360px; height: 360px; display: flex; align-items: center; justify-content: center; }
.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(26,58,42,0.15);
}
.ring-outer { width: 360px; height: 360px; animation: spin-slow 30s linear infinite; }
.ring-mid { width: 240px; height: 240px; border-color: rgba(26,58,42,0.2); animation: spin-slow 22s linear infinite reverse; }
.ring-inner { width: 140px; height: 140px; border-color: rgba(26,58,42,0.3); animation: spin-slow 14s linear infinite; }
.visual-core {
  width: 80px; height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 40px rgba(26,58,42,0.3);
}
.core-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-inv); font-style: italic; }
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(184,134,11,0.3);
}
.orbit-1 { width: 300px; height: 300px; animation: spin-slow 40s linear infinite; }
.orbit-2 { width: 280px; height: 280px; transform: rotate(45deg); animation: spin-slow 35s linear infinite reverse; }
.orbit-3 { width: 320px; height: 320px; transform: rotate(-30deg); animation: spin-slow 45s linear infinite; }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── Shared Section Styles ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 96px 32px; }
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 64px;
  max-width: 540px;
}

/* ── Philosophy ── */
.philosophy { background: var(--accent); color: var(--text-inv); }
.philosophy .section-label { color: rgba(247,245,240,0.5); }
.philosophy .section-title { color: var(--text-inv); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(247,245,240,0.15);
}
.philosophy-card {
  background: var(--accent);
  padding: 40px 36px;
}
.phil-icon { margin-bottom: 24px; color: var(--gold-light); }
.philosophy-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-inv);
}
.philosophy-card p { font-size: 0.9rem; color: rgba(247,245,240,0.7); line-height: 1.7; }

/* ── Offers ── */
.offers { background: var(--bg); }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.offer-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(17,24,39,0.08); }
.offer-featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); position: relative; }
.offer-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.featured-tag { color: var(--accent); }
.offer-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.offer-price { margin-bottom: 12px; }
.price { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--fg); }
.per { font-size: 0.85rem; color: var(--fg-muted); margin-left: 4px; }
.offer-desc { font-size: 0.88rem; color: var(--fg-muted); line-height: 1.65; margin-bottom: 24px; flex-grow: 1; }
.offer-features { list-style: none; margin-bottom: 28px; }
.offer-features li {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-features li::before { content: ''; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; flex-shrink: 0; }
.offer-link { font-size: 0.875rem; font-weight: 600; color: var(--accent); margin-top: auto; }
.offer-cta { text-align: center; display: block; }

/* ── Manifesto ── */
.manifesto { background: var(--bg-alt); }
.manifesto-inner { max-width: 1200px; margin: 0 auto; padding: 96px 32px; }
.manifesto-content {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.manifesto-last { border-bottom: none; }
.manifesto-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,58,42,0.2);
  line-height: 1;
  padding-top: 4px;
}
.manifesto-text h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 16px; }
.manifesto-text p { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.75; max-width: 640px; }

/* ── Closing ── */
.closing {
  background: var(--accent);
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,134,11,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.closing-visual {
  width: 80px;
  height: 80px;
  margin: 0 auto 48px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.closing-ring {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid rgba(247,245,240,0.25);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}
.closing-dot {
  width: 12px;
  height: 12px;
  background: var(--gold-light);
  border-radius: 50%;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.2; }
}
.closing-headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}
.closing-headline em { color: var(--gold-light); }
.closing-sub { font-size: 1rem; color: rgba(247,245,240,0.65); max-width: 480px; margin: 0 auto; line-height: 1.7; }

/* ── Footer ── */
.footer { background: #0d1f17; color: rgba(247,245,240,0.6); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 64px 32px 40px; }
.footer-top { display: flex; align-items: center; gap: 32px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(247,245,240,0.1); }
.footer-brand { display: flex; align-items: baseline; gap: 4px; }
.footer-logo-mark { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--text-inv); font-style: italic; }
.footer-logo-word { font-size: 1rem; text-transform: lowercase; color: var(--text-inv); }
.footer-tagline { font-size: 0.85rem; max-width: 400px; line-height: 1.6; }
.footer-links { display: flex; gap: 32px; margin-bottom: 40px; }
.footer-links a { font-size: 0.85rem; }
.footer-links a:hover { color: var(--text-inv); }
.footer-bottom { display: flex; justify-content: space-between; font-size: 0.75rem; }
.footer-note { color: rgba(247,245,240,0.35); }

/* ── Mobile ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
  .manifesto-content { grid-template-columns: 48px 1fr; gap: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .nav-links { gap: 20px; }
  .nav-links a:not(.nav-blog) { display: none; }
  .hero { padding: 100px 24px 60px; }
  .section-inner { padding: 64px 24px; }
  .manifesto-inner { padding: 64px 24px; }
  .closing-inner { padding: 80px 24px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .stat { padding: 0; }
}

@media (max-width: 600px) {
  .hero-headline { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; text-align: center; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}