/* ── Base ── */
:root {
  --bg: #FAF8F5;
  --fg: #1A1814;
  --muted: #8A847D;
  --accent: #C4673A;
  --border: #E2DDD7;
  --surface: #F0EBE3;
}

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

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

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

/* ── Typography ── */
h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

/* ── Nav ── */
.site-nav {
  padding: 28px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 100px 48px 96px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.hero-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
}
.hero-headline {
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 36px;
  color: var(--fg);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 72px;
}
.hero-aperture {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.12;
}
.aperture-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
}
.ring-1 { width: 80px; height: 80px; }
.ring-2 { width: 140px; height: 140px; }
.ring-3 { width: 210px; height: 210px; }
.aperture-center {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── Pipeline ── */
.pipeline {
  background: var(--fg);
  color: var(--bg);
  padding: 96px 48px;
}
.section-header {
  max-width: 1100px;
  margin: 0 auto 64px;
}
.section-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 300;
}
.pipeline-stages {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.stage {
  flex: 1;
  padding: 0 40px 0 0;
}
.stage-connector {
  color: var(--accent);
  padding-top: 12px;
  flex-shrink: 0;
}
.stage-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.stage-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--bg);
}
.stage-desc {
  font-size: 0.88rem;
  color: #9A948D;
  line-height: 1.65;
}

/* ── Credentials ── */
.credentials {
  padding: 96px 48px;
  border-bottom: 1px solid var(--border);
}
.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cred-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  margin: 16px 0 24px;
}
.cred-body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}
.cred-areas {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.area {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--fg);
}
.area:first-child { border-top: 1px solid var(--border); }
.area-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── Manifesto ── */
.manifesto {
  padding: 96px 48px;
  background: var(--surface);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-ornament {
  margin-bottom: 48px;
  display: flex;
  justify-content: center;
}
.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 32px;
  font-style: normal;
  color: var(--fg);
}
.manifesto-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Closing ── */
.closing {
  padding: 120px 48px;
  max-width: 1100px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  margin-bottom: 28px;
  color: var(--fg);
}
.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 36px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
}
.footer-location {
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--muted);
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-sep { color: var(--border); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .site-nav, .hero, .pipeline, .credentials, .manifesto, .closing, .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero { padding-top: 64px; padding-bottom: 64px; }
  .hero-aperture { display: none; }
  .credentials-inner { grid-template-columns: 1fr; gap: 40px; }
  .pipeline-stages { flex-direction: column; }
  .stage-connector { display: none; }
  .stage { padding-right: 0; padding-bottom: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}