/* ========================================
   MBOKA LIVING — Custom Landing Page
   ======================================== */

:root {
  --sand:     #F5EFE6;
  --sand-dark: #E8DCCB;
  --terracotta: #C4704F;
  --terracotta-light: #D4866B;
  --forest:   #2D4A3E;
  --forest-light: #3A5F4E;
  --ink:      #1A1410;
  --muted:    #7A6E64;
  --white:    #FFFFFF;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(245, 239, 230, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(44, 74, 62, 0.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.3px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.5px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, #1a3328 50%, #0d2018 100%);
  z-index: 0;
}

.river-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(196, 112, 79, 0.25), transparent);
  clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0 100%);
}
.wave-2 {
  height: 35%;
  background: linear-gradient(to top, rgba(196, 112, 79, 0.12), transparent);
  clip-path: polygon(0 60%, 100% 40%, 100% 100%, 0 100%);
}

/* Diagonal texture lines */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 60px,
    rgba(255,255,255,0.015) 60px,
    rgba(255,255,255,0.015) 61px
  );
}

/* Golden orb accent */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(245, 190, 100, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.65);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 8px; height: 8px;
  background: var(--terracotta);
  border-radius: 50%;
  display: inline-block;
}

.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 700;
  color: var(--sand);
  line-height: 1.05;
  margin-bottom: 28px;
  max-width: 700px;
}

.hero-sub {
  font-size: 18px;
  color: rgba(245, 239, 230, 0.75);
  max-width: 540px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--terracotta-light);
}
.stat-label {
  font-size: 12px;
  color: rgba(245, 239, 230, 0.55);
  max-width: 120px;
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(245, 239, 230, 0.15);
}

/* Section eyebrow */
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

/* Vision */
.vision {
  padding: 100px 40px;
  background: var(--white);
}
.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}
.vision-heading {
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--ink);
  margin-bottom: 28px;
}
.vision-body {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.vision-emphasis {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--forest);
  font-style: italic;
  margin-top: 32px;
}

.vision-locations {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}
.location-card {
  background: var(--sand);
  border-left: 3px solid var(--terracotta);
  padding: 20px 24px;
}
.location-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.location-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 4px;
}
.location-detail {
  font-size: 13px;
  color: var(--muted);
}

/* Project */
.project {
  padding: 100px 40px;
  background: var(--sand);
}
.project-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.project-heading {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  margin-bottom: 56px;
  max-width: 600px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.project-block {
  background: var(--white);
  padding: 40px 36px;
}
.block-icon {
  margin-bottom: 20px;
}
.project-block h3 {
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 12px;
}
.project-block p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Investment */
.invest {
  padding: 100px 40px;
  background: var(--white);
}
.invest-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
}
.invest-heading {
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  margin-bottom: 48px;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--sand-dark);
  line-height: 1;
  min-width: 48px;
}
.step-content h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Payment card */
.payment-card {
  background: linear-gradient(145deg, var(--forest), var(--forest-light));
  border-radius: 16px;
  padding: 36px;
  color: var(--sand);
}
.payment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.payment-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
}
.payment-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  background: rgba(196, 112, 79, 0.9);
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
}
.payment-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.network-chip {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
}
.payment-note {
  font-size: 13px;
  color: rgba(245, 239, 230, 0.65);
  line-height: 1.6;
  margin-bottom: 28px;
}
.contact-btn {
  display: block;
  background: var(--terracotta);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: var(--terracotta-light);
}

/* Closing */
.closing {
  position: relative;
  padding: 120px 40px;
  overflow: hidden;
}
.closing-river {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a3328 0%, var(--forest) 40%, #3A2B1E 100%);
}
/* Terracotta light accent band */
.closing-river::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(196, 112, 79, 0.15), transparent);
}
/* Subtle grid overlay */
.closing-river::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.02) 48px,
    rgba(255,255,255,0.02) 49px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(255,255,255,0.02) 48px,
    rgba(255,255,255,0.02) 49px
  );
}
.closing-inner {
  position: relative;
  z-index: 1;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}
.closing-heading {
  font-size: clamp(30px, 4vw, 48px);
  color: var(--sand);
  line-height: 1.25;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: rgba(245, 239, 230, 0.72);
  line-height: 1.8;
  margin-bottom: 20px;
}
.closing-cta {
  font-size: 15px;
  color: var(--terracotta-light);
  font-weight: 500;
  margin-top: 40px;
}

/* Footer */
.footer {
  background: var(--ink);
  padding: 40px 40px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--sand);
}
.footer-tagline {
  display: block;
  font-size: 13px;
  color: rgba(245, 239, 230, 0.4);
}
.footer-legal {
  font-size: 12px;
  color: rgba(245, 239, 230, 0.3);
  line-height: 1.6;
  max-width: 600px;
}

/* Responsive */
@media (max-width: 900px) {
  .vision-inner,
  .invest-inner { grid-template-columns: 1fr; gap: 48px; }
  .project-grid { grid-template-columns: 1fr; }
  .vision-locations { flex-direction: row; flex-wrap: wrap; }
  .location-card { flex: 1; min-width: 200px; }
}
@media (max-width: 600px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .vision, .project, .invest, .closing { padding: 60px 20px; }
  .footer { padding: 32px 20px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .location-card { min-width: 100%; }
}