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

:root {
  --bg: #FDF8F0;
  --fg: #1A0F0A;
  --accent: #C8922A;
  --accent-light: #F0E6CC;
  --text-muted: #7A5C3E;
  --card-bg: #F8F1E6;
  --border: #E0D4BC;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

*, *::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: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 24px 48px;
  display: flex;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--fg);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atmosphere-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 70vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(200,146,42,0.12) 0%, rgba(200,146,42,0.04) 40%, transparent 70%);
}

.atmosphere-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(200,146,42,0.15);
  top: 50%;
  right: -10%;
  transform: translateY(-50%);
}

.ring-1 { width: 400px; height: 400px; }
.ring-2 { width: 600px; height: 600px; border-color: rgba(200,146,42,0.08); }
.ring-3 { width: 850px; height: 850px; border-color: rgba(200,146,42,0.04); }

.atmosphere-dust {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 3px;
  height: 3px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(200,146,42,0.4);
  animation: dust 3s ease-in-out infinite;
}

@keyframes dust {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 0.8; transform: translateY(-20px); }
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.eyebrow-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
}

.eyebrow-text {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  margin-bottom: 36px;
  letter-spacing: -0.02em;
}

.headline-light {
  display: block;
  font-style: italic;
  color: var(--fg);
  font-weight: 300;
}

.headline-reimagined {
  display: block;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

.hero-origin {
  display: flex;
  align-items: center;
  gap: 12px;
}

.origin-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--fg);
  font-style: italic;
}

.origin-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.origin-meaning {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--fg);
  color: var(--bg);
  padding: 120px 48px;
}

.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
}

.manifesto-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 36px;
}

.manifesto-para {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.45;
  font-weight: 300;
  margin-bottom: 32px;
  font-style: italic;
}

.manifesto-divider {
  width: 80px;
  height: 1px;
  background: rgba(200,146,42,0.4);
  margin: 48px 0;
}

.response-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,146,42,0.6);
  margin-bottom: 20px;
}

.response-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(253,248,240,0.75);
}

/* ── What We Build ── */
.what-we-build {
  padding: 120px 48px;
  background: var(--bg);
}

.wwb-header {
  margin-bottom: 72px;
}

.wwb-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 16px;
}

.wwb-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.wwb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.wwb-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px 36px;
  position: relative;
  transition: transform 0.3s ease;
}

.wwb-card:hover {
  transform: translateY(-4px);
}

.card-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(200,146,42,0.2);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── How It Works ── */
.how-it-works {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 120px 48px;
}

.hiw-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hiw-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hiw-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hiw-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hiw-step {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.step-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

.step-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Closing ── */
.closing {
  padding: 140px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200,146,42,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.closing-inner {
  position: relative;
  z-index: 1;
}

.closing-glyph {
  font-size: 5rem;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(200,146,42,0.25);
  margin-bottom: 36px;
  line-height: 1;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.closing-divider {
  width: 1px;
  height: 60px;
  background: var(--accent);
  margin: 0 auto 48px;
  opacity: 0.4;
}

.closing-founder {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.closing-founder strong {
  color: var(--fg);
  font-weight: 500;
}

.closing-powered {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200,146,42,0.5);
}

/* ── Footer ── */
.footer {
  background: var(--fg);
  color: var(--bg);
  padding: 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(253,248,240,0.5);
  font-style: italic;
  font-family: var(--font-display);
}

.footer-copy {
  font-size: 0.7rem;
  color: rgba(253,248,240,0.3);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 3.5rem; }
  .manifesto { padding: 80px 24px; }
  .manifesto-para { font-size: 1.4rem; }
  .what-we-build { padding: 80px 24px; }
  .wwb-grid { grid-template-columns: 1fr; gap: 20px; }
  .hiw-layout { grid-template-columns: 1fr; gap: 40px; }
  .hiw-steps { margin-top: 0; }
  .closing { padding: 80px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.8rem; }
  .manifesto-para { font-size: 1.2rem; }
}
