/* ── Base ── */
:root {
  --bg: #F6F0E9;
  --bg-alt: #EEE5D8;
  --fg: #1a1a1a;
  --fg-muted: #6b6355;
  --accent: #B8946A;
  --accent-light: #D4B48A;
  --dark: #1a3a2f;
  --dark-mid: #264F40;
  --dark-text: #D4E8E0;
  --dark-muted: #8AADA0;
  --border: rgba(26,58,47,0.12);
  --card-shadow: 0 4px 24px rgba(26,58,47,0.08);
}

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

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

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  background: rgba(246,240,233,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -150px;
  right: -100px;
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: #5FBFAA;
  bottom: -50px;
  left: 200px;
  opacity: 0.1;
}

.hero-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,106,0.18);
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}

.hero-orb::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,106,0.12);
}

.hero-orb::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(184,148,106,0.08);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-headline em {
  color: var(--accent-light);
  font-style: italic;
}

.hero-sub {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dark-muted);
  max-width: 560px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--dark-muted);
  max-width: 130px;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(184,148,106,0.25);
  flex-shrink: 0;
}

.hero-context {
  font-size: 0.85rem;
  color: var(--dark-muted);
  font-style: italic;
}

/* ── The Leak ── */
.the-leak {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.leak-inner {
  max-width: 680px;
  margin: 0 auto;
}

.leak-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.leak-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.leak-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ── Flows ── */
.flows {
  background: var(--bg);
  padding: 100px 48px;
}

.flows-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.flows-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.flows-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  letter-spacing: -0.02em;
}

.flows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.flow-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.flow-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26,58,47,0.14);
}

.flow-icon {
  width: 48px;
  height: 48px;
  background: var(--dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.flow-number {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--bg-alt);
  font-weight: 700;
  line-height: 1;
}

.flow-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.flow-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Pricing ── */
.pricing {
  background: var(--dark);
  padding: 100px 48px;
  color: var(--dark-text);
}

.pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}

.pricing-kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
  text-align: center;
}

.pricing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 56px;
  text-align: center;
  letter-spacing: -0.02em;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
}

.pricing-card-featured {
  border-color: rgba(184,148,106,0.35);
  background: rgba(184,148,106,0.06);
}

.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 10px 0 6px;
  line-height: 1;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--dark-muted);
  margin-bottom: 28px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--dark-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-clarity {
  font-size: 0.82rem;
  color: var(--dark-muted);
  text-align: center;
  font-style: italic;
}

/* ── Promise ── */
.promise {
  background: var(--bg-alt);
  padding: 100px 48px;
}

.promise-inner {
  max-width: 780px;
  margin: 0 auto;
}

.promise-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: var(--accent-light);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.promise-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.promise-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.promise-icon {
  width: 32px;
  height: 32px;
  background: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.promise-item strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.promise-item {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Contact ── */
.contact {
  background: var(--dark);
  padding: 80px 48px;
  text-align: center;
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}

.contact-badge {
  display: inline-block;
  background: rgba(184,148,106,0.15);
  color: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-body {
  font-size: 1.05rem;
  color: var(--dark-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-phone {
  font-size: 1rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.contact-divider {
  color: var(--dark-muted);
  font-size: 1.2rem;
}

.contact-location {
  font-size: 0.9rem;
  color: var(--dark-muted);
}

.contact-email {
  font-size: 0.9rem;
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 500;
}

.contact-email:hover {
  text-decoration: underline;
}

/* ── Closing ── */
.closing {
  background: var(--bg);
  padding: 100px 48px;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  padding: 40px 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.footer-tag {
  font-size: 0.8rem;
  color: var(--dark-muted);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--dark-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 60px 24px; min-height: auto; }
  .hero-orb { display: none; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stat-divider { display: none; }
  .the-leak, .flows, .pricing, .promise, .closing { padding: 70px 24px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .flows-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 20px; }
}