/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF7F2;
  --text: #1A1814;
  --text-mid: #4A453D;
  --text-light: #7A7469;
  --accent: #BF9B6F;
  --accent-dark: #8A6F48;
  --border: #E8E3D9;
  --card-bg: #F4F0E8;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;

  --max-w: 1140px;
  --section-pad: clamp(5rem, 10vw, 8rem);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--white); }

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 3rem);
  max-width: var(--max-w);
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.nav__wordmark {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
}

.nav__tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--text-light);
  text-transform: uppercase;
}

.nav__cta {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.nav__cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ===== SHARED ===== */
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 3rem);
}

.hero__bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.35;
}

.hero__bg-shape--1 {
  width: clamp(300px, 50vw, 650px);
  height: clamp(300px, 50vw, 650px);
  background: radial-gradient(circle, rgba(191, 155, 111, 0.18) 0%, transparent 70%);
  top: -8%;
  right: -5%;
}

.hero__bg-shape--2 {
  width: clamp(200px, 35vw, 420px);
  height: clamp(200px, 35vw, 420px);
  background: radial-gradient(circle, rgba(191, 155, 111, 0.12) 0%, transparent 70%);
  bottom: 5%;
  left: -8%;
}

.hero__bg-shape--3 {
  width: clamp(100px, 20vw, 220px);
  height: clamp(100px, 20vw, 220px);
  background: radial-gradient(circle, rgba(191, 155, 111, 0.2) 0%, transparent 70%);
  top: 25%;
  left: 25%;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.hero__headline em {
  font-style: italic;
  color: var(--accent);
}

.hero__rule {
  width: clamp(80px, 15vw, 160px);
  height: 1px;
  background: var(--accent);
  margin-bottom: 2rem;
}

.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 300;
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}

.hero__meta {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero__meta-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero__meta-value {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
}

/* ===== PROBLEM ===== */
.problem {
  background: var(--text);
  color: var(--bg);
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
}

.problem__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.problem__header {
  margin-bottom: 4rem;
}

.problem .section-label { color: var(--accent); }

.problem__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--bg);
}

.problem__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 4rem;
  max-width: 900px;
}

.problem__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: #B8B3A8;
}

.problem__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  padding-top: 3rem;
}

.problem__stat {
  padding: 1.5rem 0;
  border-right: 1px solid rgba(250, 247, 242, 0.1);
}

.problem__stat:last-child { border-right: none; }

.problem__stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.problem__stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  color: #7A756B;
  line-height: 1.5;
}

/* ===== APPROACH ===== */
.approach {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
}

.approach__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.approach__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4rem;
  max-width: 600px;
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.approach__card {
  padding: 3rem 2.5rem;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.approach__card:nth-child(2n) { border-right: none; }
.approach__card:nth-last-child(-n+2) { border-bottom: none; }

.approach__icon {
  font-size: 1.5rem;
  color: var(--accent);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.approach__card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 0.85rem;
}

.approach__card-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ===== TIERS ===== */
.tiers {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.tiers__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.tiers__headline {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 4rem;
}

.tiers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.tier-card {
  background: var(--card-bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}

.tier-card--featured {
  background: var(--text);
  color: var(--bg);
}

.tier-card--featured .tier-card__desc { color: #B8B3A8; }
.tier-card--featured .tier-card__features li { color: #C8C3B8; }
.tier-card--featured .tier-card__features li::before { color: var(--accent); }
.tier-card--featured .tier-card__period { color: #8A857D; }

.tier-card__header {
  margin-bottom: 1.5rem;
}

.tier-card__name {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.tier-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.tier-card__amount {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.tier-card__period {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
}

.tier-card__desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.tier-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.tier-card__features li {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-mid);
  padding-left: 1.25rem;
  position: relative;
}

.tier-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* ===== PROOF ===== */
.proof {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
}

.proof__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.proof__quote {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.proof__quote p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.proof__attribution { }

.proof__name {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-light);
}

.proof__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.proof__trust-item {
  background: var(--bg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.proof__trust-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.proof__trust-value {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--section-pad) clamp(1.5rem, 5vw, 3rem);
  background: var(--text);
}

.closing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.closing__rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}

.closing__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--bg);
  max-width: 700px;
  margin-bottom: 2rem;
}

.closing__body {
  font-size: 1.05rem;
  font-weight: 300;
  color: #B8B3A8;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.closing__sub {
  font-size: 0.85rem;
  font-weight: 300;
  color: #6A665D;
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
}

.closing__cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 1px solid rgba(250, 247, 242, 0.25);
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}

.closing__cta:hover {
  border-color: var(--accent);
  background: var(--accent);
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem clamp(1.5rem, 5vw, 3rem);
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.footer__wordmark {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text);
}

.footer__tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
}

.footer__divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__legal {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--text-light);
}

.footer__copyright {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--text-light);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tiers__grid { grid-template-columns: 1fr 1fr; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__trust { grid-template-columns: 1fr 1fr; }
  .problem__stats { grid-template-columns: 1fr 1fr; }
  .problem__stat:nth-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  .hero__meta { gap: 1.5rem; }
  .approach__grid { grid-template-columns: 1fr; }
  .approach__card { border-right: none; }
  .approach__card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .approach__card:last-child { border-bottom: none; }
  .tiers__grid { grid-template-columns: 1fr; }
  .proof__grid { grid-template-columns: 1fr; }
  .proof__trust { grid-template-columns: 1fr 1fr; }
  .problem__body { grid-template-columns: 1fr; }
  .problem__stats { grid-template-columns: 1fr; }
  .problem__stat { border-right: none; }
  .nav__tagline { display: none; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 3.5rem; }
  .proof__trust { grid-template-columns: 1fr; }
}