/* ── VARIABLES ─────────────────────────── */
:root {
  --bg:          #F9F5EE;
  --bg-dark:     #2C2416;
  --bg-section:  #EDE7DA;
  --terracotta:  #C4885A;
  --forest:      #3D5A47;
  --sand:        #D4C5A9;
  --ink:         #2C2416;
  --ink-light:   #6B5D4D;
  --cream:       #FDF9F3;
  --white:       #FFFFFF;
}

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

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────── */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--sand);
  background: var(--cream);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 400;
}

/* ── HERO ───────────────────────────────── */
.hero {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 80px 40px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(196,136,90,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(61,90,71,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 17px;
  color: rgba(253,249,243,0.7);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

/* Globe SVG */
.hero-vessel {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-globe {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.globe-sphere {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #5C8A6A 0%, #3D5A47 40%, #2A3F32 100%);
  position: relative;
  box-shadow: inset -20px -10px 40px rgba(0,0,0,0.3), 4px 4px 20px rgba(0,0,0,0.4);
}
.globe-hemisphere--top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 60px 60px 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 100%);
}
.globe-hemisphere--bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  border-radius: 0 0 60px 60px;
  background: linear-gradient(0deg, rgba(0,0,0,0.15) 0%, transparent 100%);
}
.globe-meridian {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
  transform: rotate(25deg);
}
.globe-parallel {
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255,255,255,0.12);
}
.globe-ring {
  position: absolute;
  left: -5px;
  top: 50%;
  transform: translateY(-50%) rotateY(20deg) rotateX(-10deg);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1.5px solid rgba(196,136,90,0.35);
  box-shadow: none;
}
.globe-base {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 2px;
  background: rgba(196,136,90,0.4);
}
.globe-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  box-shadow: 0 0 8px rgba(196,136,90,0.6);
}
.globe-dot--1 { top: 28%; left: 35%; }
.globe-dot--2 { top: 45%; left: 60%; width: 8px; height: 8px; }
.globe-dot--3 { top: 55%; left: 28%; }
.globe-dot--4 { top: 65%; left: 52%; }
.globe-dot--5 { top: 38%; left: 72%; }

.hero-compass {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.compass-svg {
  width: 100px;
  height: 100px;
  opacity: 0.85;
}

.hero-lines { display: none; }

/* Pillars */
.hero-pillars {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px 32px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.pillar-number {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
}
.pillar-label {
  font-size: 11px;
  color: rgba(253,249,243,0.5);
  text-align: center;
  line-height: 1.4;
  max-width: 100px;
}
.pillar-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  margin: 0 16px;
}

/* ── STATS ──────────────────────────────── */
.stats-section {
  background: var(--bg);
  padding: 80px 40px;
}
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.stats-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stats-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
  border-radius: 8px;
}
.stats-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
}
.stats-body {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── ABOUT ──────────────────────────────── */
.about-section {
  background: var(--bg-section);
  padding: 80px 40px;
}
.about-inner { max-width: 720px; margin: 0 auto; }
.about-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}
.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.about-body {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-rule {
  margin-top: 48px;
  height: 1px;
  background: linear-gradient(to right, var(--terracotta), transparent);
  max-width: 200px;
}

/* ── FEATURES ──────────────────────────── */
.features-section {
  background: var(--bg);
  padding: 80px 40px;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { margin-bottom: 56px; }
.features-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 12px;
}
.features-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(44,36,22,0.08);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-section);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.3;
}
.feature-body {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.65;
}

/* ── MANIFESTO ──────────────────────────── */
.manifesto-section {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 80px 40px;
}
.manifesto-inner { max-width: 760px; margin: 0 auto; }
.manifesto-quote { margin-bottom: 48px; }
.manifesto-mark {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--terracotta);
  margin-bottom: 24px;
  display: block;
  opacity: 0.5;
}
.manifesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 30px);
  font-style: italic;
  line-height: 1.55;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.manifesto-cite {
  display: block;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(253,249,243,0.5);
  font-style: normal;
  letter-spacing: 0.05em;
}
.manifesto-rule {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 48px;
}
.manifesto-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.manifesto-value {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.value-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--terracotta);
}
.value-body {
  font-size: 14px;
  color: rgba(253,249,243,0.6);
  line-height: 1.6;
}

/* ── CLOSING ────────────────────────────── */
.closing-section {
  background: var(--bg-section);
  padding: 100px 40px;
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.closing-body {
  font-size: 18px;
  color: var(--ink-light);
  line-height: 1.65;
  margin-bottom: 48px;
}
.closing-stamp {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  border: 2px solid var(--forest);
  border-radius: 40px;
  padding: 10px 28px;
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 12px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
}

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(253,249,243,0.5);
  padding: 56px 40px 32px;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { margin-bottom: 40px; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.65;
  max-width: 400px;
}
.footer-rule {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px; }
  .hero-pillars {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  .pillar-divider { display: none; }
  .hero-vessel { width: 100%; height: 160px; }
  .hero-globe { left: 0; }
  .hero-compass { right: 0; }
  .stats-section, .about-section, .features-section { padding: 60px 24px; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .manifesto-section { padding: 60px 24px; }
  .manifesto-values { grid-template-columns: 1fr; gap: 24px; }
  .closing-section { padding: 60px 24px; }
  .footer { padding: 40px 24px 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .hero-pillars { display: none; }
}