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

:root {
  --navy: #0D1B2A;
  --navy-mid: #142033;
  --navy-light: #1E2E45;
  --ivory: #F5F0E8;
  --ivory-dim: #D4CDBF;
  --gold: #C4A962;
  --gold-dim: #9A7F3E;
  --white: #FFFFFF;
  --text-muted: rgba(245,240,232,0.5);
}

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

body {
  background: var(--navy);
  color: var(--ivory);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 400; line-height: 1.1; }

.eyebrow, .section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid rgba(196,169,98,0.15);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse at center, rgba(196,169,98,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.hero-geo-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(196,169,98,0.25), transparent);
  height: 1px;
}

.geo-1 {
  top: 30%;
  left: 0;
  width: 60%;
  transform: rotate(-8deg);
  transform-origin: left center;
  opacity: 0.4;
}

.geo-2 {
  top: 55%;
  left: 20%;
  width: 80%;
  transform: rotate(-3deg);
  transform-origin: left center;
  opacity: 0.2;
}

.geo-3 {
  bottom: 25%;
  right: 0;
  width: 40%;
  transform: rotate(12deg);
  transform-origin: right center;
  opacity: 0.15;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  padding: 4rem 8vw 3rem;
  min-height: 100vh;
}

.hero-top { display: flex; align-items: center; }
.hero-top::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--gold);
  margin-right: 1.25rem;
  flex-shrink: 0;
}

.hero-content { padding: 2.5rem 0; }

.hero-title {
  font-size: clamp(5rem, 14vw, 14rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.9;
  color: var(--ivory);
  margin-bottom: 2rem;
}

.title-line { display: block; }

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  max-width: 520px;
  line-height: 1.6;
  color: var(--ivory-dim);
  font-weight: 300;
}

.hero-bottom { display: flex; flex-direction: column; gap: 1.5rem; }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,169,98,0.2);
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ivory);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 3rem;
  background: rgba(196,169,98,0.3);
  flex-shrink: 0;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 7rem 8vw;
  border-bottom: 1px solid rgba(196,169,98,0.1);
}

.manifesto-inner { max-width: 960px; }

.manifesto-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.manifesto-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 4rem;
  background: rgba(196,169,98,0.4);
}

.manifesto-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  color: var(--ivory);
  margin-bottom: 2.5rem;
  padding-left: 2rem;
  border-left: 1px solid var(--gold);
}

.manifesto-detail {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  font-weight: 300;
  max-width: 540px;
  margin-left: 2rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 7rem 8vw;
  border-bottom: 1px solid rgba(196,169,98,0.1);
}

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

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

.section-header .section-label { display: block; margin-bottom: 1rem; }

.section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--ivory);
  max-width: 600px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.feature-card {
  padding: 3rem 2.5rem;
  border: 1px solid rgba(196,169,98,0.1);
  position: relative;
  transition: background 0.4s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover { background: rgba(196,169,98,0.04); }
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
  font-family: 'Cormorant Garamond', serif;
}

.feature-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ivory-dim);
  font-weight: 300;
}

/* ===== PRINCIPLES ===== */
.principles {
  padding: 7rem 8vw;
  border-bottom: 1px solid rgba(196,169,98,0.1);
}

.principles-inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}

.principles-left .section-label { display: block; margin-bottom: 1.5rem; }

.principles-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--ivory);
}

.principles-right { display: flex; flex-direction: column; gap: 0; }

.principle {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(196,169,98,0.12);
}

.principle:first-child { border-top: 1px solid rgba(196,169,98,0.12); }

.principle-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 400;
  padding-top: 0.25rem;
}

.principle h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
}

.principle p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--ivory-dim);
  font-weight: 300;
}

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 8vw;
  text-align: center;
}

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

.closing-mark {
  width: 1px;
  height: 5rem;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto 3rem;
}

.closing-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.closing-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ivory-dim);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.closing-cap {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 8vw;
  border-top: 1px solid rgba(196,169,98,0.1);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
}

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

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
}

.footer-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-inner { padding: 3rem 6vw 2.5rem; }
  .hero-title { font-size: clamp(3.5rem, 15vw, 7rem); }
  
  .manifesto { padding: 5rem 6vw; }
  .manifesto-quote, .manifesto-detail { margin-left: 0; }
  
  .features { padding: 5rem 6vw; }
  .feature-grid { grid-template-columns: 1fr; }
  
  .principles-inner { grid-template-columns: 1fr; gap: 3rem; }
  .principle { grid-template-columns: 2.5rem 1fr; }
  
  .closing { padding: 5rem 6vw; }
  
  .footer-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .hero-stats { gap: 1.5rem; }
  .stat-divider { height: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; align-items: flex-start; }
  .stat-divider { display: none; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
