:root {
  --sand: #faf7f2;
  --cream: #f0ebe0;
  --amber: #c97a3a;
  --amber-light: #e8a85c;
  --teal: #0f3d46;
  --teal-mid: #1a5f6e;
  --charcoal: #2a2a2a;
  --warm-grey: #7a7268;
  --border: #e0dbd3;
}

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

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

body {
  background: var(--sand);
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0 48px;
  padding-top: 96px;
  background: linear-gradient(135deg, #faf7f2 0%, #f5ede3 40%, #e8cfc0 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201, 122, 58, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 30%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(15, 61, 70, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-text {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 0.92;
  color: var(--teal);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--warm-grey);
  max-width: 380px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.hero-block {
  padding: 28px 32px;
  border-radius: 4px;
  position: relative;
}
.hero-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 4px;
  opacity: 0.06;
}
.block-1 {
  background: var(--teal);
  margin-left: 48px;
}
.block-2 {
  background: var(--amber);
  margin-left: 24px;
}
.block-3 {
  background: var(--cream);
  border: 1px solid var(--border);
}
.block-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.block-3 .block-label { color: var(--warm-grey); }
.block-detail {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.4;
}
.block-3 .block-detail { color: var(--teal); }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--teal);
  padding: 100px 48px;
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}
.manifesto-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  padding-top: 8px;
}
.manifesto-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* ── EXPERIENCE ── */
.experience {
  background: var(--sand);
  padding: 100px 48px;
}
.experience-header {
  max-width: 1200px;
  margin: 0 auto 72px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.experience-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.02em;
}
.exp-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
}
.exp-card {
  background: var(--sand);
  padding: 48px 40px;
  position: relative;
}
.exp-card--offset {
  background: var(--cream);
}
.exp-icon {
  color: var(--amber);
  margin-bottom: 20px;
}
.exp-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.exp-desc {
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.75;
}

/* ── LOMBOK FACTS ── */
.lombok {
  background: var(--cream);
  padding: 100px 48px;
}
.lombok-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lombok-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1.25;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}
.lombok-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.fact {}
.fact-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 6px;
}
.fact-desc {
  font-size: 0.85rem;
  color: var(--warm-grey);
  line-height: 1.5;
}
.lombok-card {
  background: var(--teal);
  padding: 40px;
  border-radius: 4px;
}
.lombok-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
}
.lombok-card-body {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-style: italic;
}

/* ── VISION ── */
.vision {
  background: var(--sand);
  padding: 100px 48px;
  border-top: 1px solid var(--border);
}
.vision-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 48px;
  align-items: start;
}
.vision-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  padding-top: 8px;
}
.vision-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--teal);
  line-height: 1.45;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.vision-body {
  font-size: 0.95rem;
  color: var(--warm-grey);
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  background: var(--charcoal);
  padding: 64px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.footer-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 120px 24px 60px;
    min-height: auto;
  }
  .hero-headline { font-size: 4rem; }
  .hero-visual { margin-top: 48px; }
  .hero-block { margin-left: 0 !important; }
  .manifesto-inner,
  .vision-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .manifesto-number,
  .vision-number { display: none; }
  .manifesto, .experience, .lombok, .vision { padding: 72px 24px; }
  .exp-grid { grid-template-columns: 1fr; }
  .lombok-grid { grid-template-columns: 1fr; gap: 48px; }
  .lombok-facts { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer { padding: 48px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .lombok-facts { grid-template-columns: 1fr; }
}