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

:root {
  --cream: #FAF7F0;
  --cream-dark: #F0EBE0;
  --forest: #2C4A3E;
  --forest-light: #3A5F4E;
  --forest-dark: #1A2E27;
  --amber: #C9A84C;
  --amber-light: #E2C97A;
  --text: #1C1C1A;
  --text-mid: #4A4A42;
  --text-light: #7A7A6C;
  --divider: rgba(44, 74, 62, 0.15);
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--forest-dark);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
}

.nav-logo-mark {
  font-size: 14px;
  color: var(--amber);
}

.nav-logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--forest-dark);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
  font-family: 'Source Serif 4', serif;
}

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

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(44, 74, 62, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  z-index: 0;
}

/* Vertical text strip on the left */
.hero-bg-texture::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--amber), transparent);
}

/* Subtle geometric lines */
.hero-bg-texture::after {
  content: '';
  position: absolute;
  right: 10%;
  top: 15%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(44, 74, 62, 0.07);
  border-radius: 50%;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

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

.hero-label-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--amber);
}

.hero-label-text {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: 'Source Serif 4', serif;
}

.hero-headline {
  font-size: clamp(52px, 7.5vw, 88px);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.05;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}

.hero-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.hero-sub {
  font-size: 20px;
  color: var(--text-mid);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}

.hero-meta-label {
  font-size: 12px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-meta-divider {
  width: 1px;
  height: 40px;
  background: var(--divider);
}

/* ===== MISSION ===== */
.mission {
  background: var(--forest);
  color: var(--cream);
  padding: 100px 40px;
}

.mission-inner {
  max-width: 820px;
  margin: 0 auto;
}

.mission-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 36px;
  font-family: 'Source Serif 4', serif;
}

.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 34px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--cream);
  border-left: 3px solid var(--amber);
  padding-left: 28px;
  margin-bottom: 40px;
}

.mission-body {
  font-size: 17px;
  color: rgba(250, 247, 240, 0.75);
  line-height: 1.75;
  max-width: 640px;
}

/* ===== AUDIENCE ===== */
.audience {
  padding: 100px 40px;
  background: var(--cream);
}

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

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
  font-family: 'Source Serif 4', serif;
}

.audience-header {
  margin-bottom: 64px;
}

.audience-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--forest-dark);
  max-width: 560px;
  letter-spacing: -0.02em;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--divider);
}

.audience-card {
  background: var(--cream);
  padding: 48px 44px;
}

.audience-card-icon {
  color: var(--forest);
  margin-bottom: 20px;
  opacity: 0.8;
}

.audience-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.audience-card-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 40px;
  background: var(--cream-dark);
  border-top: 1px solid var(--divider);
}

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

.manifesto-headline {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: var(--forest-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
  position: sticky;
  top: 120px;
}

.manifesto-accent {
  color: var(--amber);
  font-style: italic;
  font-weight: 400;
}

.manifesto-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.manifesto-pillars {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--divider);
}

.manifesto-pillar {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--divider);
}

.manifesto-pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--amber);
  font-weight: 600;
  min-width: 28px;
}

.manifesto-pillar-text {
  font-size: 15px;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ===== CLOSING ===== */
.closing {
  background: var(--forest-dark);
  color: var(--cream);
  padding: 100px 40px;
  text-align: center;
}

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

.closing-decoration {
  color: var(--amber);
  margin-bottom: 36px;
  display: flex;
  justify-content: center;
}

.closing-statement {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.45;
  margin-bottom: 28px;
}

.closing-tagline {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 240, 0.45);
  font-family: 'Source Serif 4', serif;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--forest-dark);
  border-top: 1px solid rgba(250, 247, 240, 0.08);
  padding: 40px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(250, 247, 240, 0.6);
  margin-bottom: 8px;
}

.footer-logo-mark {
  font-size: 12px;
  color: var(--amber);
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(250, 247, 240, 0.7);
}

.footer-note {
  font-size: 13px;
  color: rgba(250, 247, 240, 0.35);
  font-style: italic;
}

.footer-copy {
  font-size: 12px;
  color: rgba(250, 247, 240, 0.2);
  margin-top: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-inner { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 120px 24px 80px; }
  .hero-sub { font-size: 17px; }
  .hero-meta-row { gap: 20px; }
  .hero-meta-num { font-size: 22px; }
  .mission { padding: 72px 24px; }
  .audience { padding: 72px 24px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { padding: 36px 28px; }
  .manifesto { padding: 72px 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto-headline { position: static; font-size: 32px; }
  .closing { padding: 72px 24px; }
}

@media (max-width: 480px) {
  .hero-meta-row { flex-wrap: wrap; gap: 16px; }
  .hero-meta-divider { display: none; }
}