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

:root {
  --bg: #F5F0E8;
  --bg-dark: #0D3B3E;
  --fg: #1A1A18;
  --fg-muted: #5A5A55;
  --accent: #E8A84C;
  --accent-dim: #C4893A;
  --teal: #0D3B3E;
  --teal-light: #1A5C5F;
  --cream: #F5F0E8;
  --cream-dark: #E8E0D0;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ─── Typography ─── */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(13, 59, 62, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--cream) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--teal-light) !important; }

/* ─── Hero ─── */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-media {
  position: relative;
  background: var(--teal);
  overflow: hidden;
}

/* CSS Villa Art */
.hero-villa-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.villa-sky {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #87C9D4 0%, #B8E0EC 40%, #F5D98A 70%, #E8A84C 100%);
}

.villa-sun {
  position: absolute;
  top: 12%;
  left: 38%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #FFE070 0%, #FFB820 60%, transparent 100%);
  box-shadow: 0 0 60px 20px rgba(255, 200, 80, 0.4);
}

.villa-palm {
  position: absolute;
  bottom: 32%;
}
.villa-palm--1 { left: 5%; }
.villa-palm--2 { right: 15%; }

.palm-trunk {
  width: 8px;
  height: 120px;
  background: linear-gradient(90deg, #5C3D1E 0%, #8B5E34 50%, #5C3D1E 100%);
  border-radius: 4px;
  transform-origin: bottom center;
  transform: rotate(-4deg);
}
.villa-palm--2 .palm-trunk {
  transform: rotate(5deg);
  height: 90px;
}

.palm-fronds {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.frond {
  position: absolute;
  width: 60px;
  height: 18px;
  background: #2D7A3A;
  border-radius: 50% 50% 0 0;
  transform-origin: 0% 100%;
}
.frond--1 { transform: rotate(-70deg) translateY(-20px); background: #1E6B2E; }
.frond--2 { transform: rotate(-35deg) translateY(-15px); }
.frond--3 { transform: rotate(0deg); background: #3A9250; }
.frond--4 { transform: rotate(35deg) translateY(-15px); }
.frond--5 { transform: rotate(70deg) translateY(-20px); background: #1E6B2E; }

.villa-buildings {
  position: absolute;
  bottom: 30%;
  left: 30%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.building {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.building--main .building-body {
  width: 90px;
  height: 80px;
  background: #F0E8D5;
  position: relative;
}
.building--main .building-roof {
  width: 110px;
  height: 30px;
  background: var(--teal);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.building-window {
  width: 18px;
  height: 22px;
  background: #87C9D4;
  border: 2px solid var(--teal);
  margin: 6px 4px;
  float: left;
  border-radius: 2px;
}
.building-door {
  width: 16px;
  height: 28px;
  background: var(--teal);
  margin: 0 auto;
  clear: both;
  border-radius: 2px 2px 0 0;
}
.building--side .building-body {
  width: 55px;
  height: 55px;
  background: #E8DCC8;
}
.building--side .building-roof {
  width: 65px;
  height: 22px;
  background: var(--accent-dim);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.building-veranda {
  display: flex;
  justify-content: space-between;
  width: 100px;
  padding: 0 2px;
  background: #D4C4A8;
  padding-top: 4px;
}
.veranda-pillar {
  width: 6px;
  height: 20px;
  background: #B8A888;
}

.villa-pool {
  position: absolute;
  bottom: 18%;
  left: 20%;
  right: 20%;
}
.pool-water {
  width: 100%;
  height: 28px;
  background: linear-gradient(180deg, #87C9D4 0%, #5BB8C8 100%);
  border-radius: 4px;
  border: 3px solid #3A8A9E;
  box-shadow: inset 0 2px 8px rgba(255,255,255,0.4);
}
.pool-deck {
  display: flex;
  justify-content: space-between;
  padding: 8px 12px;
}
.deck-lounger {
  width: 28px;
  height: 14px;
  background: #F5F0E8;
  border-radius: 3px;
  border: 1px solid #D4C4A8;
}
.pool-palm-shadow {
  position: absolute;
  top: -4px;
  left: 30%;
  width: 40px;
  height: 6px;
  background: rgba(0,0,0,0.1);
  border-radius: 50%;
  filter: blur(4px);
}

.villa-ground {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 18%;
  background: linear-gradient(180deg, #6B8F3A 0%, #4A7030 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 56px;
  background: var(--cream);
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--cream-dark);
}

/* ─── Proof / Locations ─── */
.proof { padding: 100px 0; background: var(--cream); }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.proof-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--teal);
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.proof-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(13,59,62,0.1);
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(13,59,62,0.12);
}

.proof-card-bg {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.proof-card--cayenne .proof-card-bg { background: linear-gradient(135deg, #87C9D4 0%, #5BB8C8 100%); }
.proof-card--kourou .proof-card-bg { background: linear-gradient(135deg, #0D3B3E 0%, #1A5C5F 100%); }

.proof-illustration {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
}

/* Cayenne city illustration */
.proof-illustration--cayenne {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.city-buildings {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100px;
  padding: 0 8px;
}
.c-building {
  background: rgba(255,255,255,0.9);
  border-radius: 3px 3px 0 0;
  flex-shrink: 0;
}
.c-building--1 { width: 22px; height: 55px; }
.c-building--2 { width: 28px; height: 75px; }
.c-building--3 { width: 18px; height: 45px; }
.c-building--4 { width: 32px; height: 65px; }
.c-building--5 { width: 20px; height: 50px; }

.city-palms {
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  margin-top: 8px;
}
.mini-palm {
  width: 6px;
  height: 35px;
  background: #5C3D1E;
  border-radius: 3px;
  position: relative;
}
.mini-palm::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  width: 22px;
  height: 22px;
  background: #2D7A3A;
  border-radius: 50%;
}

.city-label {
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Kourou rocket illustration */
.proof-illustration--kourou {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px;
}
.rocket-structure {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.rocket-tower {
  width: 10px;
  height: 40px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
}
.rocket-body {
  width: 28px;
  height: 60px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px 4px 2px 2px;
  position: relative;
}
.rocket-nose {
  width: 28px;
  height: 16px;
  background: var(--accent);
  border-radius: 14px 14px 0 0;
}
.rocket-flame {
  width: 16px;
  height: 20px;
  background: linear-gradient(180deg, #FF8C00 0%, #FFE070 50%, transparent 100%);
  border-radius: 0 0 8px 8px;
  margin: 0 auto;
}
.launch-support {
  display: flex;
  justify-content: space-between;
  width: 80px;
  margin-bottom: -4px;
  z-index: 1;
  position: relative;
}
.launch-tower {
  width: 8px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
}

.proof-card-content {
  padding: 28px 32px;
}
.proof-card-content h3 {
  font-size: 22px;
  color: var(--teal);
  margin-bottom: 10px;
}
.proof-card-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--cream);
  color: var(--teal);
  border-radius: 100px;
  border: 1px solid rgba(13,59,62,0.15);
}

/* ─── Locations / How it works ─── */
.locations { padding: 100px 0; background: var(--white); }
.locations-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.locations-title {
  font-size: clamp(30px, 4vw, 50px);
  color: var(--teal);
  margin-bottom: 64px;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 64px;
}
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.7;
}
.step-content h3 {
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.step-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: var(--cream-dark);
  margin-top: 32px;
  align-self: flex-start;
}

.commission-compare {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
}
.compare-item { display: flex; flex-direction: column; gap: 8px; }
.compare-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
}
.compare-bar {
  height: 8px;
  background: var(--cream-dark);
  border-radius: 100px;
  overflow: hidden;
}
.compare-fill {
  height: 100%;
  background: var(--teal);
  border-radius: 100px;
}
.compare-item--gs .compare-fill { background: var(--accent); }
.compare-pct {
  font-size: 13px;
  color: var(--fg-muted);
}

/* ─── Features ─── */
.features { padding: 100px 0; background: var(--teal); }
.features-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.features .section-tag { color: var(--accent); }
.features-title {
  font-size: clamp(28px, 4vw, 48px);
  color: var(--white);
  margin-bottom: 56px;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  padding: 40px 36px;
  background: rgba(255,255,255,0.04);
  transition: background 0.3s;
}
.feature-card:hover { background: rgba(255,255,255,0.08); }
.feature-icon {
  margin-bottom: 20px;
  opacity: 0.9;
}
.feature-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ─── Manifesto ─── */
.manifesto {
  padding: 100px 0;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}
.manifesto-quote {
  margin-bottom: 48px;
}
blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-style: italic;
  color: var(--teal);
  line-height: 1.4;
  border-left: 4px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 16px;
}
.manifesto-quote cite {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: normal;
  color: var(--fg-muted);
  padding-left: 28px;
}
.manifesto-body p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.manifesto-body p:last-child { margin-bottom: 0; }

/* ─── Closing ─── */
.closing {
  padding: 100px 0;
  background: var(--white);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  color: var(--teal);
  margin-bottom: 16px;
}
.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto 56px;
}
.closing-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
}
.closing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.closing-stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.closing-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 6px;
  max-width: 160px;
  text-align: center;
}

/* ─── Footer ─── */
.footer {
  background: var(--teal);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: 14px;
  margin-top: 8px;
  color: rgba(255,255,255,0.5);
}
.footer-links {
  display: flex;
  gap: 64px;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin: 0 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-media { height: 320px; }
  .hero-content { padding: 48px 28px; }
  .proof-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; gap: 32px; }
  .step-connector { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .closing-stats { flex-direction: column; gap: 32px; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .nav-links { display: none; }
}

@media (max-width: 480px) {
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .closing-stats { gap: 24px; }
}