:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --forest: #2D5A27;
  --forest-dark: #1e3d1a;
  --cream: #FAF7F2;
  --warm-white: #FEFCF8;
  --charcoal: #2A2A2A;
  --muted: #7A7A6E;
  --border: rgba(201,168,76,0.25);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: "Jost", sans-serif; background: var(--warm-white); color: var(--charcoal); overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(254,252,248,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; font-weight: 400;
  letter-spacing: 0.1em; color: var(--forest);
  text-decoration: none; cursor: pointer;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 34px; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--charcoal); text-decoration: none;
  transition: color 0.25s; cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 11px 26px; border: none; cursor: pointer;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 9px 8px;
  background: transparent; border: none; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--forest); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* keep anchored program cards clear of the fixed header */
.product-card { scroll-margin-top: 100px; }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

/* HERO */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/photo-01.jpg');
  background-size: cover; background-position: center 20%;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: slowZoom 12s ease forwards;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1); }
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15,30,12,0.72) 0%,
    rgba(15,30,12,0.35) 55%,
    transparent 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 72px 100px; max-width: 820px;
}
.eyebrow {
  display: block;
  font-size: 0.64rem; font-weight: 400;
  letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  font-weight: 300; line-height: 1.06; color: #fff;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.55s forwards;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-rule {
  width: 56px; height: 1px; background: var(--gold);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s 0.75s forwards;
}
.hero-sub {
  font-size: 1rem; font-weight: 300;
  line-height: 1.9; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.84); max-width: 460px;
  margin-bottom: 42px;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* BUTTONS */
.btn {
  display: inline-block;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.26em; text-transform: uppercase;
  background: var(--gold); color: var(--charcoal);
  padding: 16px 40px; text-decoration: none; border: none;
  transition: background 0.3s, transform 0.2s; cursor: pointer;
}
.btn:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 15px 38px;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: transparent; transform: translateY(-2px); }
.btn-forest { background: var(--forest); color: #fff; }
.btn-forest:hover { background: var(--forest-dark); }
.btn-ghost {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn-ghost:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }

/* SECTIONS */
.sec { position: relative; }
.sec-inner { max-width: 1200px; margin: 0 auto; padding: 100px 48px; }
.label {
  display: block;
  font-size: 0.63rem; font-weight: 400;
  letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300; line-height: 1.12; color: var(--forest);
  margin-bottom: 20px;
}
.sec-title em { font-style: italic; }
.gold-bar { width: 56px; height: 1px; background: var(--gold); margin: 24px 0; }
.body-text {
  font-size: 0.97rem; font-weight: 300;
  line-height: 1.9; color: var(--muted);
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.25s; } .d3 { transition-delay: 0.4s; } .d4 { transition-delay: 0.55s; }

/* PILLARS BAND */
.pillars-band { background: var(--forest); padding: 52px 48px; }
.pillars-band-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.pillar-item {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.pillar-item:last-child { border-right: none; }
.pillar-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem; font-weight: 300; font-style: italic;
  color: var(--gold); display: block; margin-bottom: 8px;
}
.pillar-name {
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ABOUT TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col.reverse { }
.img-wrap { position: relative; }
.img-wrap img { width: 100%; display: block; object-fit: cover; height: 620px; object-position: top; }
.img-wrap::before {
  content: "";
  position: absolute; top: -18px; left: -18px;
  right: 18px; bottom: 18px;
  border: 1px solid var(--gold); z-index: -1;
}
.img-wrap-right::before {
  left: 18px; right: -18px; top: -18px; bottom: 18px;
}

/* YOGA MOSAIC */
.yoga-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 6px;
}
.mosaic-cell { overflow: hidden; position: relative; }
.mosaic-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.mosaic-cell:hover img { transform: scale(1.04); }
.mosaic-cell.tall { grid-row: span 2; }
.mosaic-cell.wide { grid-column: span 2; }
.mosaic-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; background: linear-gradient(transparent, rgba(0,0,0,0.5));
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* BOOK FEATURE */
.book-feature {
  background: var(--cream);
  padding: 100px 0;
}
.book-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: grid; grid-template-columns: 420px 1fr; gap: 80px; align-items: center;
}
.book-cover {
  background: var(--forest);
  padding: 52px 40px; text-align: center;
  position: relative;
}
.book-cover::after {
  content: "";
  position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,76,0.4);
  pointer-events: none;
}
.book-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
}
.book-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem; font-weight: 600; font-style: italic;
  color: #fff; line-height: 1.2; margin-bottom: 20px;
}
.book-subtitle {
  font-size: 0.78rem; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}
.book-ornament {
  color: var(--gold); font-size: 1.8rem; margin: 24px 0;
}
.book-author {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--gold-light);
}
.book-details { padding: 0; }
.book-details .sec-title { color: var(--forest); }
.feature-list { margin-top: 28px; }
.feature-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.feature-icon { color: var(--gold); font-size: 0.8rem; margin-top: 2px; flex-shrink: 0; }
.feature-text { font-size: 0.88rem; font-weight: 300; line-height: 1.6; color: var(--muted); }

/* SHOP */
.shop-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.product-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.product-img {
  height: 240px; overflow: hidden;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 28px 24px; }
.product-tag {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; font-weight: 400; color: var(--forest);
  margin-bottom: 10px;
}
.product-desc { font-size: 0.82rem; line-height: 1.65; color: var(--muted); margin-bottom: 20px; }
.product-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; color: var(--charcoal);
  margin-bottom: 18px;
}

/* COUPLE BANNER */
.couple-banner {
  position: relative; height: 70vh; min-height: 480px; overflow: hidden;
  display: flex; align-items: center;
}
.couple-bg {
  position: absolute; inset: 0;
  background-image: url('../images/photo-02.jpg');
  background-size: cover; background-position: center top;
}
.couple-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,30,12,0.78) 0%, rgba(15,30,12,0.3) 70%, transparent 100%);
}
.couple-content {
  position: relative; z-index: 2;
  padding: 0 80px; max-width: 580px;
}
.couple-content .sec-title { color: #fff; }
.couple-content .gold-bar { }
.couple-content .body-text { color: rgba(255,255,255,0.8); }

/* TESTIMONIALS */
.testimonials-bg { background: var(--forest); }
.testimonials-inner { max-width: 900px; margin: 0 auto; padding: 100px 48px; text-align: center; }
.testimonial-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 300; font-style: italic;
  color: #fff; line-height: 1.5; margin-bottom: 28px;
}
.testimonial-quote::before { content: "\201C"; color: var(--gold); }
.testimonial-quote::after { content: "\201D"; color: var(--gold); }
.testimonial-attr {
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* FOOTER */
footer {
  background: var(--charcoal); padding: 60px 48px;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem; color: var(--warm-white); letter-spacing: 0.1em;
}
.footer-logo span { color: var(--gold); }
.footer-center { text-align: center; }
.footer-tagline {
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-links { display: flex; gap: 28px; justify-content: flex-end; }
.footer-links a {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: color 0.2s; cursor: pointer;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  grid-column: 1/-1; text-align: center; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.65rem; color: rgba(255,255,255,0.25); letter-spacing: 0.12em;
}

/* ROADMAP PAGE */
.roadmap-header {
  background: var(--forest); padding: 140px 48px 80px;
  text-align: center;
}
.roadmap-header .sec-title { color: #fff; margin: 0 auto; }
.roadmap-header .body-text { color: rgba(255,255,255,0.7); max-width: 580px; margin: 20px auto 0; }
.roadmap-grid {
  max-width: 1000px; margin: 0 auto; padding: 80px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.roadmap-card {
  border: 1px solid var(--border);
  padding: 32px 28px; background: var(--warm-white);
  transition: border-color 0.3s, transform 0.3s;
}
.roadmap-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.roadmap-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem; font-weight: 300; color: var(--gold);
  line-height: 1; margin-bottom: 12px;
}
.roadmap-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem; font-weight: 600; color: var(--forest);
  margin-bottom: 10px;
}
.roadmap-body { font-size: 0.84rem; line-height: 1.7; color: var(--muted); }

/* ABOUT PAGE */
.about-hero {
  height: 60vh; min-height: 400px;
  margin-top: 72px;
  background-image: url('../images/photo-02.jpg');
  background-size: cover; background-position: center 25%;
  position: relative; display: flex; align-items: flex-end;
}
.about-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,30,12,0.75), transparent 60%);
}
.about-hero-content {
  position: relative; z-index: 2; padding: 0 72px 60px;
}
.about-hero-content .sec-title { color: #fff; }

/* PROGRAMS */
.programs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 52px; }
.program-card {
  position: relative; overflow: hidden; height: 480px;
}
.program-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.7s ease;
}
.program-card:hover .program-bg { transform: scale(1.05); }
.program-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.program-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 36px 28px; z-index: 2;
}
.program-tier {
  font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.program-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem; font-weight: 300; color: #fff;
  margin-bottom: 8px;
}
.program-price {
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  margin-bottom: 18px;
}
.program-btn {
  display: inline-block; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 9px 22px; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.program-btn:hover { background: var(--gold); color: var(--charcoal); }

/* MOBILE */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(254,252,248,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    padding: 8px 24px 18px;
    box-shadow: 0 14px 26px rgba(0,0,0,0.07);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 15px 2px; letter-spacing: 0.2em; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .hero-content { padding: 0 28px 60px; }
  .sec-inner { padding: 70px 24px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pillars-band-inner { grid-template-columns: 1fr 1fr; }
  .yoga-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mosaic-cell.tall { grid-row: span 1; }
  .shop-grid, .programs-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .book-inner { grid-template-columns: 1fr; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; }
  .couple-content { padding: 0 28px; }
}

/* ── OPT-IN FORM ─────────────────────────────────────────────── */
.optin-strip { background: var(--forest); padding: 80px 48px; }
.optin-strip-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.optin-strip-text .sec-title { color: #fff; font-size: clamp(1.8rem,3vw,2.8rem); }
.optin-strip-text .body-text { color: rgba(255,255,255,0.72); margin-top: 14px; }
.optin-box { background: rgba(255,255,255,0.06); border: 1px solid rgba(201,168,76,0.35); padding: 38px 32px; }
.optin-perks { list-style: none; margin: 16px 0 24px; }
.optin-perks li { font-size: 0.82rem; color: rgba(255,255,255,0.75); padding: 5px 0; display: flex; gap: 10px; align-items: flex-start; }
.optin-perks li::before { content: "✦"; color: var(--gold); font-size: 0.65rem; margin-top: 2px; flex-shrink: 0; }
.optin-field { display: block; width: 100%; padding: 14px 18px; margin-bottom: 10px; border: 1px solid rgba(201,168,76,0.35); background: rgba(255,255,255,0.05); font-family: "Jost",sans-serif; font-size: 0.88rem; color: #fff; outline: none; transition: border-color 0.25s; }
.optin-field::placeholder { color: rgba(255,255,255,0.35); }
.optin-field:focus { border-color: var(--gold); }
.optin-submit { width: 100%; padding: 16px; background: var(--gold); color: var(--charcoal); font-family: "Jost",sans-serif; font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; margin-top: 4px; }
.optin-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.optin-trust { font-size: 0.65rem; color: rgba(255,255,255,0.3); text-align: center; margin-top: 10px; letter-spacing: 0.06em; }
.optin-success { display: none; text-align: center; padding: 32px 16px; }
.optin-success .checkmark { font-size: 2.4rem; color: var(--gold); display: block; margin-bottom: 12px; }
.optin-success h3 { font-family: "Cormorant Garamond",serif; font-size: 1.6rem; color: #fff; margin-bottom: 8px; }
.optin-success p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ── ROADMAP PAGE ────────────────────────────────────────────── */
.roadmap-optin-hero { background: var(--forest); padding: 160px 48px 90px; text-align: center; }
.roadmap-optin-hero .sec-title { color: #fff; max-width: 700px; margin: 0 auto; }
.roadmap-optin-hero .body-text { color: rgba(255,255,255,0.7); max-width: 540px; margin: 18px auto 0; }
.roadmap-optin-center { max-width: 520px; margin: -40px auto 0; padding: 0 24px 80px; }
.roadmap-optin-card { background: var(--warm-white); border: 1px solid var(--border); padding: 44px 40px; box-shadow: 0 24px 60px rgba(0,0,0,0.10); }
.roadmap-perks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 28px 0 32px; }
.roadmap-perk { display: flex; gap: 10px; align-items: flex-start; }
.roadmap-perk-icon { color: var(--gold); font-size: 0.7rem; margin-top: 3px; flex-shrink: 0; }
.roadmap-perk-text { font-size: 0.82rem; line-height: 1.55; color: var(--muted); }
.roadmap-perk-text strong { color: var(--forest); display: block; margin-bottom: 2px; }
.roadmap-field { display: block; width: 100%; padding: 15px 18px; margin-bottom: 12px; border: 1px solid var(--border); background: var(--cream); font-family: "Jost",sans-serif; font-size: 0.9rem; color: var(--charcoal); outline: none; transition: border-color 0.25s; }
.roadmap-field:focus { border-color: var(--gold); }
.roadmap-submit { width: 100%; padding: 18px; background: var(--gold); color: var(--charcoal); font-family: "Jost",sans-serif; font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.25s, transform 0.2s; }
.roadmap-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.roadmap-trust { font-size: 0.65rem; color: var(--muted); text-align: center; margin-top: 12px; letter-spacing: 0.06em; }
.roadmap-success { display: none; text-align: center; padding: 48px 20px; }
.roadmap-success .rs-icon { font-size: 3rem; color: var(--gold); display: block; margin-bottom: 16px; }
.roadmap-success h3 { font-family: "Cormorant Garamond",serif; font-size: 2rem; color: var(--forest); margin-bottom: 10px; }
.roadmap-success p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.roadmap-preview { max-width: 1100px; margin: 0 auto; padding: 80px 48px; }
.roadmap-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 40px; }
.rp-card { padding: 28px 22px; border: 1px solid var(--border); background: var(--warm-white); transition: border-color 0.3s, transform 0.3s; }
.rp-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.rp-num { font-family: "Cormorant Garamond",serif; font-size: 2.4rem; font-weight: 300; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.rp-heading { font-family: "Cormorant Garamond",serif; font-size: 1.15rem; font-weight: 600; color: var(--forest); margin-bottom: 8px; }
.rp-body { font-size: 0.82rem; line-height: 1.65; color: var(--muted); }
.rp-lock { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }

/* ── BLOG PAGE ───────────────────────────────────────────────── */
.blog-hero { background: var(--forest); padding: 160px 48px 90px; text-align: center; }
.blog-hero .sec-title { color: #fff; }
.blog-hero .body-text { color: rgba(255,255,255,0.7); max-width: 500px; margin: 16px auto 0; }
.blog-grid { max-width: 1100px; margin: 0 auto; padding: 80px 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card { background: var(--warm-white); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; cursor: pointer; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.blog-card-img { height: 200px; overflow: hidden; background: var(--cream); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px 22px 28px; }
.blog-tag { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.blog-card-title { font-family: "Cormorant Garamond",serif; font-size: 1.25rem; font-weight: 400; color: var(--forest); margin-bottom: 10px; line-height: 1.3; }
.blog-card-excerpt { font-size: 0.82rem; line-height: 1.65; color: var(--muted); margin-bottom: 16px; }
.blog-read-more { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; }
.blog-read-more::after { content: "→"; }
.blog-featured { max-width: 1100px; margin: 0 auto; padding: 0 48px 80px; }
.blog-featured-card { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); overflow: hidden; }
.blog-featured-img { height: 420px; overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-tag { font-size: 0.6rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.blog-featured-title { font-family: "Cormorant Garamond",serif; font-size: 2rem; font-weight: 300; color: var(--forest); line-height: 1.2; margin-bottom: 16px; }
.blog-featured-excerpt { font-size: 0.9rem; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }
.blog-optin-bar { background: var(--cream); border-top: 1px solid var(--border); padding: 80px 48px; }
.blog-optin-bar-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.blog-optin-bar .sec-title { color: var(--forest); font-size: clamp(1.6rem,2.8vw,2.4rem); }
.blog-optin-bar .body-text { margin: 14px 0 28px; }
.blog-inline-form { display: flex; gap: 0; max-width: 480px; margin: 0 auto; }
.blog-inline-field { flex: 1; padding: 15px 18px; border: 1px solid var(--border); background: var(--warm-white); font-family: "Jost",sans-serif; font-size: 0.88rem; color: var(--charcoal); outline: none; border-right: none; transition: border-color 0.25s; }
.blog-inline-field:focus { border-color: var(--gold); }
.blog-inline-btn { padding: 15px 28px; background: var(--gold); color: var(--charcoal); font-family: "Jost",sans-serif; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; border: none; cursor: pointer; white-space: nowrap; transition: background 0.25s; }
.blog-inline-btn:hover { background: var(--gold-light); }

@media (max-width: 900px) {
  .optin-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .roadmap-perks-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-featured-card { grid-template-columns: 1fr; }
  .blog-featured-img { height: 260px; }
  .roadmap-preview-grid { grid-template-columns: 1fr 1fr; }
}