/* === COLORS === */
:root {
  --green-deep: #1B2D27;
  --green-mid: #243D35;
  --green-light: #2E5248;
  --gold: #C8952B;
  --gold-light: #E8B84B;
  --gold-muted: #A07820;
  --cream: #F7F4EE;
  --cream-dark: #EDE8DE;
  --ink: #1A1A1A;
  --ink-soft: #4A4A4A;
  --ink-muted: #8A8A8A;
}

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

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

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

/* === HERO === */
.hero {
  background: var(--green-deep);
  color: var(--cream);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,149,43,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
  border: 1px solid rgba(200,149,43,0.4);
  padding: 5px 12px;
  border-radius: 2px;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-lede {
  font-size: 17px;
  color: rgba(247,244,238,0.75);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gold);
  border: 1px solid rgba(200,149,43,0.3);
  padding: 4px 10px;
  border-radius: 2px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-frame {
  position: relative;
  width: 360px;
  height: 360px;
}

.hero-graphic {
  width: 100%;
  height: 100%;
  position: relative;
}

.compass-rose {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  animation: spin-slow 60s linear infinite;
}

@keyframes spin-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.treasure-pile {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
}

.coin {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,149,43,0.08);
}

.coin-face {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 700;
}

.coin-1 { top: 10px; left: 50%; transform: translateX(-50%) rotate(-8deg); }
.coin-2 { bottom: 10px; left: 20px; transform: rotate(12deg); }
.coin-3 { bottom: 10px; right: 20px; transform: rotate(-5deg); }

.gem {
  position: absolute;
  width: 30px;
  height: 30px;
}

.gem svg { width: 100%; height: 100%; }
.gem-1 { top: 50%; left: 5px; transform: translateY(-50%) rotate(20deg); }
.gem-2 { top: 50%; right: 5px; transform: translateY(-50%) rotate(-15deg); }

.watch-icon {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 46px;
}

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

.hero-rule {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* === PRESS === */
.press {
  background: var(--cream);
  border-bottom: 1px solid var(--cream-dark);
}

.press-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px;
}

.press-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 28px;
}

.press-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.press-item {
  padding: 24px 20px;
  border-left: 1px solid var(--cream-dark);
}

.press-item:first-child { border-left: none; }

.press-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 6px;
}

.press-desc {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--cream);
}

.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  border-bottom: 1px solid var(--cream-dark);
}

.manifesto-inner--alt {
  background: var(--cream-dark);
}

.manifesto-inner:last-child { border-bottom: none; }

.manifesto-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  padding-top: 4px;
}

.manifesto-heading {
  font-size: 26px;
  color: var(--green-deep);
  margin-bottom: 16px;
}

.manifesto-text {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* === DISCOVER === */
.discover {
  background: var(--green-mid);
  padding: 80px 0;
}

.discover-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

.discover-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.discover-heading {
  font-size: clamp(28px, 3vw, 42px);
  color: var(--cream);
  margin-bottom: 56px;
}

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

.discover-card {
  background: var(--green-deep);
  padding: 40px;
  border: 1px solid rgba(200,149,43,0.15);
  transition: background 0.2s;
}

.discover-card:hover { background: rgba(200,149,43,0.06); }

.discover-icon { width: 44px; height: 44px; margin-bottom: 20px; }
.discover-icon svg { width: 100%; height: 100%; }

.discover-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--cream);
  margin-bottom: 12px;
}

.discover-card-text {
  font-size: 14px;
  color: rgba(247,244,238,0.6);
  line-height: 1.7;
}

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

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

.closing-ornament { margin-bottom: 40px; }
.closing-ornament svg { display: inline-block; width: 120px; height: 30px; }

.closing-headline {
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  color: var(--green-deep);
  margin-bottom: 24px;
  line-height: 1.3;
}

.closing-sub {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* === FOOTER === */
.footer {
  background: var(--green-deep);
  padding: 40px 48px;
}

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

.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(247,244,238,0.4);
}

.footer-separator { color: var(--gold); opacity: 0.4; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 24px 48px;
  }
  .hero-image-frame { width: 260px; height: 260px; }
  .hero-visual { order: -1; }
  .press-items { grid-template-columns: 1fr 1fr; }
  .press-item { border-left: 1px solid var(--cream-dark); }
  .press-item:nth-child(odd) { border-left: none; }
  .press-inner { padding: 40px 24px; }
  .manifesto-inner {
    grid-template-columns: 40px 1fr;
    padding: 40px 24px;
    gap: 20px;
  }
  .manifesto-number { font-size: 28px; }
  .discover-inner { padding: 0 24px; }
  .discover-grid { grid-template-columns: 1fr; }
  .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}