/* === BASE === */
:root {
  --bg: #0B0B0D;
  --text: #F5F0E8;
  --text-muted: #7A7166;
  --accent: #C84B31;
  --accent-dark: #A03A24;
  --ivory: #E8DDD4;
  --charcoal: #1E1B18;
  --font-display: 'Cormorant Garant', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(200,75,49,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(200,75,49,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

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

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.hero-line-1 { color: var(--text); }
.hero-line-2 { color: var(--accent); }
.hero-line-3 { color: var(--text); }
.hero-line-4 { color: var(--ivory); }

.hero-divider {
  width: 3rem;
  height: 1px;
  background: var(--accent);
  margin: 2rem 0;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 28rem;
  line-height: 1.7;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-left: 2rem;
  border-left: 1px solid rgba(245,240,232,0.1);
}

.hero-quote-block {
  position: relative;
}

.hero-quote-mark {
  font-family: var(--font-display);
  font-size: 8rem;
  color: var(--accent);
  line-height: 0.5;
  display: block;
  margin-bottom: -1rem;
  opacity: 0.4;
}

.hero-pullquote {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.5;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
}

.hero-tag-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(200,75,49,0.3);
  color: var(--accent);
  border-radius: 2px;
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 4rem;
  background: var(--charcoal);
}

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

.manifesto-rule {
  width: 2rem;
  height: 1px;
  background: var(--accent);
  margin-bottom: 4rem;
}

.manifesto-quote {
  margin-bottom: 4rem;
}

.manifesto-quote p {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

.manifesto-quote em {
  color: var(--accent);
  font-style: normal;
}

.manifesto-body {
  display: grid;
  gap: 1.5rem;
}

.manifesto-body p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 38rem;
}

.manifesto-body strong {
  color: var(--ivory);
  font-weight: 500;
}

/* === FEATURES === */
.features {
  padding: 8rem 4rem;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.feature-item {
  padding: 3rem 2.5rem;
  border-top: 1px solid rgba(245,240,232,0.08);
  border-right: 1px solid rgba(245,240,232,0.08);
}

.feature-item:nth-child(2n) {
  border-right: none;
}

.feature-item:nth-child(3),
.feature-item:nth-child(4) {
  border-top: none;
}

.feature-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

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

/* === CREED === */
.creed {
  padding: 8rem 4rem;
  background: var(--charcoal);
}

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

.creed-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
}

.creed-statement p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.creed-statement p:first-child {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
}

.creed-highlight {
  color: var(--accent);
}

.creed-rule {
  width: 2rem;
  height: 1px;
  background: var(--accent);
  margin: 4rem auto;
}

.creed-sigma {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
}

/* === CLOSING === */
.closing {
  padding: 10rem 4rem 8rem;
}

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

.closing-headline p {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
}

.closing-sub p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

.closing-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.closing-brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
}

.closing-brand-by {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* === FOOTER === */
.footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(245,240,232,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-sep {
  opacity: 0.3;
}

.footer-bottom {
  font-size: 0.7rem;
  color: rgba(122,113,102,0.5);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero {
    padding: 5rem 1.5rem 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-right {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(245,240,232,0.1);
    padding-top: 2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-item {
    border-right: none;
  }
  .feature-item:nth-child(3) {
    border-top: 1px solid rgba(245,240,232,0.08);
  }
  .manifesto,
  .features,
  .creed,
  .closing {
    padding: 5rem 1.5rem;
  }
  .footer {
    padding: 2rem 1.5rem;
  }
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }
  .creed-sigma {
    align-items: center;
  }
}