:root {
  --cream: #FAF7F0;
  --cream-dark: #F0EAE0;
  --terracotta: #C84B2F;
  --terracotta-deep: #A83A20;
  --forest: #2D4A3E;
  --sand: #D4C4B0;
  --ink: #1C1612;
  --ink-soft: #4A3F35;
  --ink-muted: #7A6F62;
  --white: #FFFFFF;
  --font-display: 'Crimson Pro', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--sand);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* ── HERO ── */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 48px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 420px;
}
.map-grid {
  position: relative;
}
.map-grid-inner {
  background: var(--cream-dark);
  border: 1px solid var(--sand);
  border-radius: 4px;
  padding: 32px;
  position: relative;
}
.map-grid-inner svg {
  width: 100%;
  height: auto;
}
.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--ink-muted);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot.discovered { background: var(--terracotta); opacity: 0.7; }
.legend-dot.active { background: var(--terracotta); }
.legend-label { margin-right: 8px; }

/* ── DISCOVERY ── */
.discovery {
  background: var(--cream-dark);
  padding: 96px 48px;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.discovery-header, .village-grid-header, .manifesto-inner, .closing {
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
  max-width: 560px;
}
.discovery-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.discovery-step {
  padding: 0 40px 0 0;
  border-right: 1px solid var(--sand);
}
.discovery-step:last-child { border-right: none; padding-right: 0; }
.discovery-step:first-child { padding-left: 0; }
.discovery-step:not(:first-child) { padding-left: 40px; }
.step-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: var(--sand);
  margin-bottom: 16px;
  line-height: 1;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ── VILLAGE GRID ── */
.village-grid-section {
  padding: 96px 48px;
}
.village-grid-header { margin-bottom: 48px; }
.village-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.village-card {
  background: var(--cream-dark);
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.card-tall { grid-row: span 2; min-height: 560px; }
.card-wide { grid-column: span 2; }
.card-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  opacity: 0.12;
}
.pattern-ikat {
  background: repeating-linear-gradient(
    45deg,
    var(--terracotta) 0px,
    var(--terracotta) 2px,
    transparent 2px,
    transparent 12px
  );
}
.pattern-batik {
  background: radial-gradient(ellipse at 30% 40%, var(--forest) 0%, transparent 60%),
              repeating-linear-gradient(
    -45deg,
    var(--terracotta) 0px,
    var(--terracotta) 1px,
    transparent 1px,
    transparent 8px
  );
}
.pattern-sculpture {
  background: linear-gradient(160deg, var(--forest) 0%, transparent 60%);
}
.pattern-organic {
  background: repeating-conic-gradient(
    var(--terracotta) 0deg 15deg,
    transparent 15deg 30deg
  );
}
.card-content { position: relative; z-index: 1; }
.card-region {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 8px;
}
.card-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.card-feature {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 16px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 11px;
  font-weight: 500;
  background: var(--sand);
  color: var(--ink-soft);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ── MANIFESTO ── */
.manifesto {
  background: var(--forest);
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 800px;
}
.manifesto-rule {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 32px;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ── CLOSING ── */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px 80px;
  border-top: 1px solid var(--sand);
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  max-width: 640px;
}
.closing-body {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 40px;
}
.closing-vision {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: var(--terracotta);
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--sand);
  padding: 28px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-muted);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .village-grid { grid-template-columns: 1fr 1fr; }
  .card-tall { grid-row: span 1; min-height: 280px; }
  .card-wide { grid-column: span 1; }
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .discovery, .village-grid-section, .manifesto, .closing { padding: 64px 24px; }
  .discovery-steps { grid-template-columns: 1fr; gap: 40px; }
  .discovery-step { border-right: none; padding-left: 0 !important; padding-right: 0; border-bottom: 1px solid var(--sand); padding-bottom: 40px; }
  .discovery-step:last-child { border-bottom: none; padding-bottom: 0; }
  .village-grid { grid-template-columns: 1fr; }
  .footer { padding: 20px 24px; }
  .footer-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
}