/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f0f0f;
  --bg-alt: #161616;
  --fg: #f5f5f0;
  --fg-muted: #a0a09a;
  --accent: #e85d04;
  --accent-dim: rgba(232, 93, 4, 0.12);
  --border: rgba(245, 245, 240, 0.08);
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.15;
  font-weight: 700;
}

/* === NAV === */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: var(--fg);
}

.nav-tag {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-accent-bar {
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: var(--accent);
}

.hero-geo {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
}

.geo-1 {
  width: 600px;
  height: 600px;
  right: -200px;
  top: -100px;
  background: radial-gradient(circle at 50% 50%, rgba(232, 93, 4, 0.04) 0%, transparent 70%);
}

.geo-2 {
  width: 300px;
  height: 300px;
  right: 80px;
  bottom: 80px;
  background: radial-gradient(circle at 50% 50%, rgba(232, 93, 4, 0.07) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 3rem 5rem 5rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-headline {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  max-width: 14ch;
  color: var(--fg);
}

.hero-headline br { display: block; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-badge span {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 600;
}

.badge-sep { color: var(--accent); font-size: 1rem; }

/* === MANIFESTO === */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem;
}

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

.manifesto-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.manifesto-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.4;
  color: var(--fg);
  margin-bottom: 2.5rem;
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 2rem;
  text-align: left;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 300;
}

/* === WHY === */
.why {
  padding: 7rem 2rem;
}

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

.why-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 20ch;
  margin-bottom: 4rem;
  color: var(--fg);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}

.why-card {
  background: var(--bg);
  padding: 3rem 2.5rem;
}

.why-card--accent {
  background: var(--accent-dim);
}

.why-card-num {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.why-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--fg);
}

.why-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === COLLECTION === */
.collection {
  background: var(--bg-alt);
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

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

.collection-header {
  margin-bottom: 4rem;
}

.collection-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.collection-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
  color: var(--fg);
}

.collection-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 55ch;
  font-weight: 300;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.collection-item {
  background: var(--bg-alt);
  padding: 2.5rem 2rem;
}

.collection-item-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.collection-item-icon svg {
  width: 100%;
  height: 100%;
}

.collection-item h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--fg);
}

.collection-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* === APPROACH === */
.approach {
  padding: 7rem 2rem;
  border-top: 1px solid var(--border);
}

.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.approach-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.approach-headline {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.approach-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1rem;
}

.approach-col--right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding-top: 1rem;
}

.approach-stat {
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
}

.approach-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.approach-stat-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* === CLOSING === */
.closing {
  background: var(--accent-dim);
  padding: 8rem 2rem;
  border-top: 1px solid rgba(232, 93, 4, 0.2);
  text-align: center;
}

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

.closing-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--fg);
}

.closing-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 3rem;
}

.closing-rule {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 3rem;
}

.closing-signoff {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg);
  font-weight: 700;
}

/* === FOOTER === */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 2rem;
}

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

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.25em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.footer-tagline {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 300;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-content {
    padding: 3rem 2rem;
  }

  .hero-headline br {
    display: none;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .manifesto-quote {
    font-size: 1.25rem;
    padding-left: 1.25rem;
  }

  .approach-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-grid,
  .collection-grid {
    grid-template-columns: 1fr;
  }

  .closing-headline br {
    display: none;
  }

  .approach-stat-num {
    font-size: 2.25rem;
  }

  .hero {
    min-height: 75vh;
  }
}

@media (max-width: 480px) {
  .hero-badge {
    gap: 0.5rem;
  }

  .nav-tag {
    display: none;
  }
}