:root {
  --green-deep: #1B3D2F;
  --green-mid: #274D40;
  --green-light: #3A6B58;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --cream: #F5F0E8;
  --cream-dark: #EBE4D6;
  --white: #FFFFFF;
  --ink: #0F1A14;
  --muted: #7A9080;
}

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

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

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cream-dark);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

/* Hero */
.hero {
  padding: 140px 40px 80px;
  background: var(--cream);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content {
  max-width: 760px;
}
.hero-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px;
  color: var(--green-mid);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 56px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--cream-dark);
  margin: 0 40px 0 0;
}

/* Clients */
.clients {
  padding: 48px 40px;
  background: var(--green-deep);
}
.clients-inner { max-width: 1200px; margin: 0 auto; }
.clients-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 500;
  text-align: center;
  margin-bottom: 28px;
}
.clients-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.client-tag {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.55);
  padding: 6px 16px;
  border: 1px solid rgba(245, 240, 232, 0.15);
  border-radius: 100px;
  font-weight: 400;
}

/* What */
.what {
  padding: 100px 40px;
  background: var(--cream);
}
.what-inner { max-width: 1200px; margin: 0 auto; }
.section-overline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}
.what-header { margin-bottom: 64px; }
.what-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  max-width: 540px;
  line-height: 1.15;
}
.what-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--cream-dark);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  overflow: hidden;
}
.what-card {
  background: var(--white);
  padding: 40px 40px 44px;
  transition: background 0.2s;
}
.what-card:hover { background: var(--cream); }
.what-icon {
  color: var(--gold);
  margin-bottom: 20px;
}
.what-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.what-card p {
  font-size: 15px;
  color: var(--green-mid);
  line-height: 1.65;
  font-weight: 300;
}

/* Scarcity */
.scarcity {
  padding: 100px 40px;
  background: var(--green-deep);
}
.scarcity-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.scarcity-badge span {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.scarcity-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 24px;
}
.scarcity-body {
  font-size: 16px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  font-weight: 300;
}
.spot-track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.spot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  border-radius: 12px;
  border: 1px solid;
}
.spot--taken {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.25);
}
.spot--open {
  background: rgba(245, 240, 232, 0.05);
  border-color: rgba(245, 240, 232, 0.15);
}
.spot-label {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--cream);
}
.spot-status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.spot--taken .spot-status {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}
.spot--open .spot-status {
  background: rgba(58, 107, 88, 0.4);
  color: #6EE7B7;
}

/* Testimonials */
.testimonials {
  padding: 100px 40px;
  background: var(--cream);
}
.testimonials-inner { max-width: 1200px; margin: 0 auto; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
}
.testimonial--highlight {
  background: var(--green-deep);
  border-color: var(--green-deep);
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
  height: 32px;
}
.testimonial--highlight .testimonial-quote-mark { color: rgba(201, 168, 76, 0.5); }
.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial--highlight .testimonial-text { color: var(--cream); }
.testimonial-author { display: flex; flex-direction: column; gap: 2px; }
.author-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--green-deep);
}
.testimonial--highlight .author-name { color: var(--gold); }
.author-role {
  font-size: 12px;
  color: var(--muted);
}
.testimonial--highlight .author-role { color: rgba(245, 240, 232, 0.5); }

/* Closing */
.closing {
  padding: 100px 40px 120px;
  background: var(--green-deep);
  text-align: center;
}
.closing-inner { max-width: 720px; margin: 0 auto; }
.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 32px;
}
.closing-tagline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

/* Footer */
.footer {
  padding: 40px;
  background: var(--ink);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--cream);
}
.footer-desc {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 4px;
}
.footer-links { display: flex; gap: 24px; }
.footer-link {
  font-size: 13px;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--cream); }
.footer-copy {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 36px; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat { padding: 0; }
  .stat-divider { display: none; }
  .what-grid { grid-template-columns: 1fr; }
  .scarcity-inner { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-inner { padding: 14px 24px; }
  .clients, .what, .scarcity, .testimonials, .closing { padding: 72px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}