@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg-deep: #0c0a09;
  --bg-warm: #1c1917;
  --bg-card: #292524;
  --fg-primary: #fafaf9;
  --fg-secondary: #a8a29e;
  --fg-muted: #78716c;
  --accent: #f59e0b;
  --accent-soft: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.15);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--fg-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

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

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fg-muted), transparent);
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.15;
  color: var(--fg-primary);
  margin-bottom: 2rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent-soft);
}

.hero-lede {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 400;
  color: var(--fg-secondary);
  max-width: 640px;
  line-height: 1.8;
}

/* ═══ STORY SECTION ═══ */
.story {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--fg-muted);
  border-radius: 50%;
  margin-top: -20px;
  background: var(--bg-warm);
}

.story::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  margin-top: -3px;
}

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

.story-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--fg-primary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
  border-left: 2px solid var(--accent);
}

.story-body {
  font-size: 1.05rem;
  color: var(--fg-secondary);
  line-height: 1.9;
}

.story-body p + p {
  margin-top: 1.5rem;
}

/* ═══ FEATURES / PILLARS ═══ */
.pillars {
  padding: 6rem 2rem;
  background: var(--bg-deep);
}

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

.pillars-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pillars-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
}

.pillars-header p {
  color: var(--fg-muted);
  font-size: 1rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pillar {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(168, 162, 158, 0.1);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.pillar:hover {
  border-color: var(--accent-glow);
  transform: translateY(-2px);
}

.pillar-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: block;
  opacity: 0.9;
}

.pillar h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--fg-primary);
  margin-bottom: 0.75rem;
}

.pillar p {
  color: var(--fg-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  text-align: center;
  position: relative;
}

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

.closing h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.3;
  color: var(--fg-primary);
  margin-bottom: 1.5rem;
}

.closing h2 em {
  color: var(--accent-soft);
  font-style: italic;
}

.closing p {
  color: var(--fg-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  font-family: var(--serif);
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 3rem 2rem;
  background: var(--bg-deep);
  text-align: center;
  border-top: 1px solid rgba(168, 162, 158, 0.08);
}

.footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.footer .footer-name {
  color: var(--fg-secondary);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 640px) {
  .hero { padding: 4rem 1.5rem 3rem; }
  .story { padding: 4rem 1.5rem; }
  .pillars { padding: 4rem 1.5rem; }
  .closing { padding: 4rem 1.5rem; }
  .pillars-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .pillar { padding: 2rem 1.5rem; }
  .story-quote { font-size: 1.3rem; }
}