@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Poppins:wght@300;400;500;600&display=swap");

/* ══════════════════════════════════════ */
/* ── 1. FOUNDATION ── */
/* ══════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --black: #262724;
  --green: #1f4f44;
  --blush: #e0bfa6;
  --orange: #bf642c;
  --gold: #c6934e;
  --cream: #f7f2ea;

  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-serif: "Cormorant Garamond", "Georgia", serif;
  --font-body: "Poppins", sans-serif;

  --max-w: 1280px;
  --gutter: clamp(20px, 5vw, 80px);

  /* Transparency variants */
  --green-12: rgba(31, 79, 68, 0.12);
  --green-10: rgba(31, 79, 68, 0.1);
  --green-02: rgba(31, 79, 68, 0.02);
  --green-40: rgba(31, 79, 68, 0.4);
  --cream-80: rgba(247, 242, 234, 0.8);
  --cream-75: rgba(247, 242, 234, 0.75);
  --cream-70: rgba(247, 242, 234, 0.7);
  --cream-60: rgba(247, 242, 234, 0.6);
  --cream-50: rgba(247, 242, 234, 0.5);
  --cream-30: rgba(247, 242, 234, 0.3);
  --cream-10: rgba(245, 240, 231, 0.1);
  --black-75: rgba(38, 39, 36, 0.75);
  --black-70: rgba(38, 39, 36, 0.7);
  --black-60: rgba(38, 39, 36, 0.6);
  --black-35: rgba(38, 39, 36, 0.35);
  --blush-15: rgba(224, 191, 166, 0.15);
  --gold-15: rgba(191, 100, 44, 0.15);
  --gold-82: rgba(191, 100, 44, 0.82);
  --white-40: rgba(255, 255, 255, 0.4);
  --white-08: rgba(255, 255, 255, 0.08);
  --white-06: rgba(255, 255, 255, 0.06);
  --white-04: rgba(255, 255, 255, 0.04);
  --green-08: rgba(31, 79, 68, 0.08);
  --gold-65: rgba(198, 147, 78, 0.65);
  --cream-65: rgba(247, 242, 234, 0.65);
  --cream-68: rgba(247, 242, 234, 0.68);
  --black-82: rgba(38, 39, 36, 0.82);
  --black-85: rgba(38, 39, 36, 0.85);

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 14px;
}

body {
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Main site pages only */
body.site-page {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--cream);
  background: var(--black);
}

/* ── Grain Overlay (main site pages only) ── */
body.site-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px;
  opacity: 0.14;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul,
ol {
  list-style: none;
}

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

h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
}
h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}
h4 {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

p {
  font-size: 1.05rem;
  line-height: 1.85;
}

/* Default p color for main site pages (dark bg) —
   service detail pages set their own p/body color inline */
body.site-page p {
  color: var(--blush);
  margin-bottom: 1rem;
}
/* Cream text on dark/green backgrounds */
body.site-page .recognition p,
body.site-page .what p,
body.site-page .framework p,
body.site-page .obj-section p,
body.site-page .foryou p,
body.site-page .closing p,
body.site-page .sixmo p,
body.site-page .elysha-text p,
body.site-page .invest p,
body.site-page .big-statement p {
  color: var(--cream);
}

p[style*="font-style:italic"],
summary[style*="font-style:italic"],
p.italic {
  font-size: 1.15rem;
}

body.site-page .label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Layout ── */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.wrap--narrow {
  max-width: 860px;
}
.wrap--wide {
  max-width: 1440px;
}

body.site-page section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
body.site-page section.elysha,
body.site-page section.split {
  padding-top: 0;
  padding-bottom: 0;
}
body.site-page section.hero--site {
  padding-top: 0;
  padding-bottom: 13.73rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 16px 38px;
  border: 1.5px solid var(--gold);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  z-index: 0;
  overflow: hidden;
  background: transparent;
  color: var(--gold);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  z-index: -1;
}

.btn:hover {
  color: var(--black);
}
.btn:hover::before {
  transform: scaleX(1);
}

.btn--solid {
  background: var(--gold);
  color: var(--black);
}

.btn--solid::before {
  background: var(--cream);
}
.btn--solid:hover {
  color: var(--black);
  border-color: var(--cream);
}

.btn--light {
  border-color: var(--cream);
  color: var(--cream);
}

.btn--light::before {
  background: var(--cream);
}
.btn--light:hover {
  color: var(--gold);
}
.btn--hover-orange:hover {
  color: var(--orange) !important;
}

.btn__arrow {
  transition: transform 0.3s;
  font-size: 1.1em;
}
.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ══════════════════════════════════════ */
/* ── 2. NAVIGATION ── */
/* ══════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition:
    background 0.4s,
    padding 0.3s,
    backdrop-filter 0.4s;
}

.nav.scrolled {
  background: rgba(247, 242, 234, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  position: relative;
  display: inline-block;
  line-height: 0;
}

.nav__logo .logo {
  display: none;
  height: 52px;
  width: auto;
}

.nav__logo .logo--white {
  display: block;
}

.nav__logo .logo--black {
  display: none;
}

.nav.scrolled .nav__logo .logo--white {
  display: none;
}

.nav.scrolled .nav__logo .logo--black {
  display: block;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
  position: relative;
}

.nav__links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--cream);
}
.nav__links a:hover::after,
.nav__links a.active::after {
  width: 100%;
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown > a::after {
  display: none;
}

.nav__dropdown-toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.3s;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(38, 39, 36, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
  border: 1px solid var(--green);
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown:hover .nav__dropdown-toggle::after,
.nav__dropdown.open .nav__dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blush);
  transition:
    color 0.3s,
    background 0.3s;
  white-space: nowrap;
}

.nav__dropdown-menu a::after {
  display: none;
}

.nav__dropdown-menu a:hover {
  color: var(--cream);
  background: rgba(247, 242, 234, 0.06);
}

/* Scrolled dropdown */
.nav.scrolled .nav__dropdown-menu {
  background: rgba(247, 242, 234, 0.98);
  border-color: rgba(0, 0, 0, 0.08);
}

.nav.scrolled .nav__dropdown-menu a {
  color: var(--gold);
}

.nav.scrolled .nav__dropdown-menu a:hover {
  color: var(--black);
  background: rgba(0, 0, 0, 0.03);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(247, 242, 234, 0.5);
  color: var(--cream);
  transition: all 0.25s;
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

/* Scrolled state — cream bg */

.nav.scrolled .nav__links a {
  color: var(--gold);
}
.nav.scrolled .nav__links a:hover,
.nav.scrolled .nav__links a.active {
  color: var(--black);
}
.nav.scrolled .nav__cta {
  border-color: var(--gold);
  color: var(--gold);
}
.nav.scrolled .nav__cta:hover {
  background: var(--gold);
  color: var(--black);
}
.nav.scrolled .nav__hamburger span {
  background: var(--black);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav__hamburger span {
  width: 26px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ══════════════════════════════════════ */
/* ── 3. HERO (v2 style) ── */
/* ══════════════════════════════════════ */

/* Main site hero (home/about pages only — uses .hero__bg) */
.hero--site {
  min-height: 55vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  padding-bottom: 13.73rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(38, 39, 36, 0.55) 0%,
    rgba(38, 39, 36, 0.1) 60%,
    transparent 100%
  );
}

.hero--about .hero__bg img {
  opacity: 1;
}
.hero--about .hero__bg::after {
  background:
    linear-gradient(
      180deg,
      rgba(38, 39, 36, 0.5) 0%,
      rgba(38, 39, 36, 0.1) 40%,
      rgba(38, 39, 36, 0.75) 100%
    ),
    linear-gradient(90deg, rgba(38, 39, 36, 0.7) 0%, transparent 60%);
}

.hero--blog .hero__bg img {
  opacity: 0.55;
}
.hero--blog .hero__bg::after {
  background:
    linear-gradient(
      180deg,
      rgba(38, 39, 36, 0.5) 0%,
      rgba(38, 39, 36, 0.1) 40%,
      rgba(38, 39, 36, 0.75) 100%
    ),
    linear-gradient(90deg, rgba(38, 39, 36, 0.7) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-top: 200px;
}

.hero--site h1 {
  margin-bottom: 28px;
  color: var(--cream);
}

.hero--site h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

body.site-page .hero--site p {
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 20px;
  color: var(--cream);
}

body.site-page .hero--site .label {
  color: var(--blush);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════ */
/* ── 4. HOME PAGE SECTIONS ── */
/* ══════════════════════════════════════ */

/* ── Recognition ── */
.recognition__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.recognition__item {
  padding: 28px 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.2);
  font-size: 1.05rem;
  color: var(--cream);
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.recognition__item:nth-child(odd) {
  padding-right: 40px;
  border-right: 1px solid rgba(247, 242, 234, 0.2);
}
.recognition__item:nth-child(even) {
  padding-left: 40px;
}
.recognition__item:nth-last-child(-n + 2) {
  border-bottom: none;
}

.recognition__item::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ── Image Divider ── */
.img-divider {
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
  position: relative;
  padding: 6rem 0;
}

.img-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--black) 0%,
    transparent 20%,
    transparent 80%,
    var(--black) 100%
  );
  pointer-events: none;
}

.img-divider--no-fade::after {
  display: none;
}

/* ── Testimonial ── */
.testimonial {
  padding: 5rem 0;
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 12rem;
  color: var(--green);
  position: absolute;
  top: 40px;
  left: var(--gutter);
  line-height: 1;
  opacity: 0.3;
  z-index: 1;
  pointer-events: none;
}

.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 28px;
  text-align: center;
}

.testimonial__author {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Testimonial Carousel ── */
.testimonial-carousel {
  position: relative;
  height: 280px;
}

.testimonial-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel__slide.active {
  opacity: 1;
}

.testimonial-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.testimonial-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}

.testimonial-carousel__dot.active {
  background: var(--gold);
}

.testimonial-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(247, 242, 234, 0.3);
  color: var(--cream);
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s,
    color 0.3s;
  z-index: 2;
  padding: 0;
}
.testimonial-carousel__arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.testimonial-carousel__arrow--prev {
  left: 0;
}
.testimonial-carousel__arrow--next {
  right: 0;
}

/* ── Areas of Expertise (adapted from v2 — small circles) ── */
.expertise {
  padding: 5rem 0;
  background: var(--cream);
  text-align: center;
}

.expertise__script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 4px;
}

.expertise h2 {
  color: var(--black);
  margin-bottom: 16px;
}

.expertise > .wrap > p {
  max-width: 600px;
  margin: 0 auto 50px;
  color: var(--gold);
}

.expertise__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.expertise__item {
  text-align: center;
}

.expertise__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
}

.expertise__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.expertise__item:hover .expertise__image img {
  transform: scale(1.05);
}

.expertise__item h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 8px;
}

.expertise__item p {
  font-size: 1.05rem;
  color: var(--gold);
  max-width: 260px;
  margin: 0 auto;
}

/* ── Offerings Section (NEW — blush cards on dark bg) ── */
.offerings-section {
  background: var(--black);
  padding: 5rem 0;
}

.offerings-section__script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 4px;
}

.offerings-section h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.offerings-section > .wrap > p {
  color: var(--gold);
  max-width: 560px;
}

.offerings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 50px;
}

.offering-card {
  background: var(--blush);
  padding: clamp(30px, 4vw, 50px);
  transition: box-shadow 0.3s;
}

.offering-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.offering-card h3 {
  font-family: var(--font-display);
  color: var(--green);
  margin-bottom: 4px;
}

.offering-card__duration {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.offering-card p {
  color: var(--black);
  font-size: 1.05rem;
}

.offering-card .btn {
  margin-top: 20px;
}

/* ── Opt-in Freebie Section ── */
body.site-page .optin {
  background: #f5f0e7;
  padding: 100px 72px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: stretch;
}

body.site-page .optin .optin-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 72px;
}

body.site-page .optin p.optin-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a7560;
  margin-bottom: 20px;
}

body.site-page .optin h2.optin-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 56px;
  color: #1f4f44;
  line-height: 1.05;
  margin-bottom: 20px;
}

body.site-page .optin h2.optin-heading em {
  font-style: italic;
  color: #bf642c;
}

body.site-page .optin p.optin-subhead {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  color: #8a7560;
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 0;
}

body.site-page .optin .optin-divider {
  width: 1px;
  background: #c6934e;
  align-self: stretch;
}

body.site-page .optin .optin-right {
  display: flex;
  flex-direction: column;
  padding-left: 72px;
  padding-top: 4px;
}

body.site-page .optin p.optin-body {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.85;
  margin-bottom: 32px;
}

body.site-page .optin .optin-what {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

body.site-page .optin .optin-what-item {
  display: flex;
  align-items: baseline;
  gap: 14px;
}

body.site-page .optin span.optin-what-label {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c6934e;
  flex-shrink: 0;
  font-weight: 400;
  min-width: 52px;
}

body.site-page .optin span.optin-what-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #4a4540;
  letter-spacing: 0.01em;
  line-height: 1.6;
}

body.site-page .optin .optin-form {
  display: flex;
  flex-direction: column;
  border-top: 0.5px solid #d4cec5;
  padding-top: 32px;
  margin-top: auto;
}

body.site-page .optin .optin-fields {
  display: flex;
  margin-bottom: 16px;
}

body.site-page .optin input.optin-input {
  flex: 1;
  border: none;
  border-bottom: 1px solid #c8c0b4;
  background: transparent;
  padding: 12px 4px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #4a4540;
  letter-spacing: 0.04em;
  outline: none;
  margin-right: 20px;
}

body.site-page .optin input.optin-input:last-child {
  margin-right: 0;
}

body.site-page .optin input.optin-input::placeholder {
  color: #b0a898;
}

body.site-page .optin button.optin-btn {
  background: #1f4f44;
  color: #f5f0e7;
  border: none;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  align-self: flex-start;
  transition: opacity 0.3s ease;
}

body.site-page .optin button.optin-btn:hover {
  opacity: 0.85;
}

body.site-page .optin p.optin-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: #b0a898;
  letter-spacing: 0.04em;
  margin-top: 14px;
  margin-bottom: 0;
  font-weight: 300;
}

@media (max-width: 1024px) {
  body.site-page .optin {
    padding: 80px 40px;
  }
  body.site-page .optin .optin-left {
    padding-right: 40px;
  }
  body.site-page .optin .optin-right {
    padding-left: 40px;
  }
}

@media (max-width: 768px) {
  body.site-page .optin {
    grid-template-columns: 1fr;
    padding: 60px 30px;
  }
  body.site-page .optin .optin-divider {
    width: 100%;
    height: 1px;
    margin: 40px 0;
  }
  body.site-page .optin .optin-left {
    padding-right: 0;
  }
  body.site-page .optin .optin-right {
    padding-left: 0;
    padding-top: 0;
  }
  body.site-page .optin .optin-fields {
    flex-direction: column;
    gap: 16px;
  }
  body.site-page .optin input.optin-input {
    margin-right: 0;
  }
}

/* ── Email Form (from v1) ── */
.email-form {
  display: flex;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--green);
}

.email-form input {
  flex: 1;
  min-width: 0;
  padding: 16px 20px;
  background: rgba(38, 39, 36, 0.5);
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream);
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.email-form input::placeholder {
  color: var(--gold);
}
.email-form input + input {
  border-left: 1px solid var(--green);
}

.email-form button {
  padding: 16px 28px;
  background: var(--gold);
  border: none;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.email-form button:hover {
  background: var(--cream);
}

.footer .email-form {
  max-width: 320px;
  margin: 0;
}
.footer .email-form input {
  padding: 8px 12px;
  font-size: 0.72rem;
}
.footer .email-form button {
  padding: 8px 16px;
  font-size: 0.6rem;
}

/* ══════════════════════════════════════ */
/* ── 5. FOOTER ── */
/* ══════════════════════════════════════ */

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--green);
  padding: 60px 0 30px;
  background: var(--black);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer p {
  color: var(--cream) !important;
}
.footer__brand p {
  font-size: 0.82rem;
  margin-top: 12px;
  max-width: 280px;
}

.footer__heading {
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 18px;
  color: var(--cream);
}

.footer__links a {
  display: block;
  font-size: 0.82rem;
  color: var(--cream);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  border-top: 1px solid var(--green);
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer__legal {
  display: flex;
  gap: 20px;
}
.footer__legal a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  transition: color 0.3s;
}
.footer__legal a:hover {
  color: var(--gold);
}

/* ── Values Strip ── */
.values__row {
  display: flex;
  gap: 0;
  margin: 50px 0;
  border-top: 1px solid rgba(247, 242, 234, 0.25);
  border-bottom: 1px solid rgba(247, 242, 234, 0.25);
}

.values__item {
  flex: 1;
  padding: 32px 28px;
  border-right: 1px solid rgba(247, 242, 234, 0.25);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--cream);
  text-align: center;
  transition: background 0.3s;
}

.values__item:last-child {
  border-right: none;
}
.values__item:hover {
  background: var(--black);
}

/* ══════════════════════════════════════ */
/* ── 6. ABOUT PAGE SECTIONS ── */
/* ══════════════════════════════════════ */

/* ── About Hero (from v2) ── */
.about-hero {
  padding: 140px 0 80px;
  background: var(--cream);
}

.about-hero__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  text-align: center;
  margin-bottom: 24px;
}

.about-hero__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 50px;
  align-items: center;
}

.about-hero__left {
  text-align: left;
}

.about-hero__left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--black);
  line-height: 1.3;
}

.about-hero__photo {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero__right {
  text-align: left;
}

.about-hero__right p {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 16px;
}

/* ── Marquee (new — Poppins based) ── */
.marquee {
  background: var(--orange);
  overflow: hidden;
  padding: 0.9rem 0;
}

.marquee__inner {
  display: flex;
  animation: marquee 28s linear infinite;
}

.marquee__text {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.9);
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
}

.marquee__text::after {
  content: "✦";
  color: rgba(247, 242, 234, 0.4);
  font-size: 0.5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* ── Split Section ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split__image {
  position: relative;
  overflow: hidden;
}
.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.split__text {
  padding: clamp(60px, 8vw, 120px) clamp(40px, 6vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--black);
}
.split__text h2 {
  margin-bottom: 24px;
  color: var(--cream);
}
body.site-page .split__text p {
  margin-bottom: 16px;
  color: var(--cream);
}
.split__text .btn {
  align-self: flex-start;
}
.split__text--green {
  background: var(--green);
}
body.site-page .split__text--green p {
  color: var(--cream);
}

/* ── Grid Utilities ── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid-2col-div {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}
.grid-2col-aside {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
.grid-2col-ba {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
/* ── Before/After Grid ── */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 1.5rem 0;
}
.ba-header-before,
.ba-header-after {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0 2rem 1.5rem;
}
.ba-header-arrow {
  padding: 0 1rem 1.5rem;
}
.ba-before,
.ba-after,
.ba-arrow {
  font-size: 1rem;
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--white-06);
  display: flex;
  align-items: center;
}
.ba-before {
  color: var(--cream-60);
}
.ba-arrow {
  color: var(--gold);
  padding: 1rem;
  justify-content: center;
}
.ba-after {
  color: var(--cream);
  border-left: 1px solid var(--white-06);
}
.ba-last {
  border-bottom: none;
}

@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ba-header-arrow,
  .ba-arrow {
    display: none;
  }
  .ba-after {
    border-left: none;
  }
  .ba-before,
  .ba-after {
    padding: 0.75rem 1rem;
  }
  .ba-header-before,
  .ba-header-after {
    padding: 0 1rem 1rem;
  }
}

.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 1rem;
}
.gap-1\.5 {
  gap: 1.5rem;
}
.gap-2 {
  gap: 2rem;
}
.gap-3 {
  gap: 3rem;
}
.gap-4 {
  gap: 4rem;
}

/* ── Approach Steps ── */
.approach__rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  border-top: 1px solid var(--green);
}
.approach__step {
  padding: 40px 30px 40px 20px;
  border-right: 1px solid var(--green);
  position: relative;
}
.approach__step:last-child {
  border-right: none;
}
.approach__step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.approach__num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}
.approach__step h4 {
  margin-bottom: 12px;
  color: var(--cream);
}
.approach__step p {
  font-size: 1.05rem;
}

.marquee--white {
  background: var(--cream);
  padding: 1.2rem 0;
}
.marquee--white .marquee__text {
  color: var(--black);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: none;
}
.marquee--white .marquee__text::after {
  color: var(--gold);
  font-size: 1rem;
}

/* ── Founder Story (from v1) ── */
.founder__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.founder__portrait {
  position: sticky;
  top: 100px;
  border-radius: 300px 300px 0 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1.5px solid var(--gold);
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(198, 147, 78, 0.2),
    0 0 0 8px rgba(198, 147, 78, 0.06);
}

.founder__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 294px 294px 0 0;
}

.founder__text h2 {
  margin-bottom: 28px;
  color: var(--cream);
}

.founder__text p {
  margin-bottom: 1.3rem;
}

.founder__sig {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 24px;
}

/* ── What We Believe (NEW — card grid) ── */
.manifesto {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.manifesto__card {
  background: var(--cream);
  padding: 40px;
  transition: box-shadow 0.3s;
}

.manifesto__card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.manifesto__card-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 12px;
}

.manifesto__card p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--black);
}

.manifesto__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(38, 39, 36, 0.15);
}
.manifesto__num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--orange);
  line-height: 1.4;
}
.manifesto__item p {
  font-size: 1.05rem;
  line-height: 1.85;
}

.manifesto__close {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  margin-top: 40px;
  font-size: 1.8rem;
  color: var(--black);
}

/* ── Ready to Begin CTA (enhanced) ── */
.cta-ready {
  position: relative;
  overflow: hidden;
  background: var(--black);
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.cta-ready__bg {
  position: absolute;
  inset: 0;
}

.cta-ready__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.cta-ready__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(38, 39, 36, 0.3) 0%,
    rgba(38, 39, 36, 0.6) 100%
  );
}

.cta-ready .wrap {
  position: relative;
  z-index: 2;
}

.cta-ready h2 {
  color: var(--cream);
}
.cta-ready p {
  color: var(--gold);
}

/* ══════════════════════════════════════ */
/* ── 7. SERVICES PAGE SECTIONS ── */
/* ══════════════════════════════════════ */

/* ── Services Hero (from v2 — cream bg, centered) ── */
.services-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--cream);
}

.services-hero__script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 4px;
}

.services-hero h1 {
  color: var(--black);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.services-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
}

.services-hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--gold);
}

/* ── Service Intro + Image Collage (from v1) ── */
.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-intro__text .label {
  margin-bottom: 16px;
  display: block;
}
.service-intro__text h2 {
  margin-bottom: 20px;
  color: var(--cream);
}
.service-intro__text p {
  margin-bottom: 16px;
}

.image-collage {
  position: relative;
  aspect-ratio: 4/5;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-collage__arch {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  z-index: 2;
  overflow: hidden;
  border-radius: 300px 300px 0 0;
  border: 1.5px solid var(--gold);
  padding: 6px;
  box-shadow:
    0 0 0 1px rgba(198, 147, 78, 0.2),
    0 0 0 8px rgba(198, 147, 78, 0.06);
}

.image-collage__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 294px 294px 0 0;
}

.service-intro--reversed .image-collage {
  order: -1;
}

/* ── Services CTA (from v2) ── */
.services-cta {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
  background: var(--cream);
}

.services-cta__script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green);
  margin-bottom: 24px;
}

/* ══════════════════════════════════════ */
/* ── 8. CONTACT PAGE (from v2) ── */
/* ══════════════════════════════════════ */

.contact-hero {
  padding: 140px 0 40px;
  text-align: center;
  background: var(--cream);
}

.contact-hero__script {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-hero h1 {
  color: var(--black);
  margin-bottom: 16px;
}

.contact-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--gold);
}

.contact-form {
  padding: clamp(40px, 6vw, 80px) 0;
  background: var(--cream);
}

.contact-form__wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form__wrapper iframe {
  border-radius: 4px;
}

/* ══════════════════════════════════════ */
/* ── 9. SECTION BACKGROUNDS & UTILITIES ── */
/* ══════════════════════════════════════ */

/* ── Section Background Utilities ── */
.section--charcoal {
  background: var(--black);
}
.section--green {
  background: var(--green);
}
.section--blush {
  background: var(--blush);
  color: var(--black);
}
.section--cream {
  background: var(--cream);
  color: var(--black);
}

.section--blush h2,
.section--blush h3,
.section--blush h4,
.section--cream h2,
.section--cream h3,
.section--cream h4 {
  color: var(--green);
}

body.site-page .section--blush p,
body.site-page .section--cream p {
  color: var(--black);
}

.section--blush .label,
.section--cream .label {
  color: var(--orange);
}

.section--blush .btn,
.section--cream .btn {
  border-color: var(--green);
  color: var(--green);
}
.section--blush .btn::before,
.section--cream .btn::before {
  background: var(--green);
}
.section--blush .btn:hover,
.section--cream .btn:hover {
  color: var(--cream);
}

.section--blush .btn--solid,
.section--cream .btn--solid {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.section--blush .btn--solid::before,
.section--cream .btn--solid::before {
  background: var(--green);
}
.section--blush .btn--solid:hover,
.section--cream .btn--solid:hover {
  color: var(--cream);
  border-color: var(--green);
}

.section--green h2,
.section--green h3,
.section--green h4 {
  color: var(--cream);
}
body.site-page .section--green p {
  color: var(--cream);
}
body.site-page .section--green .label {
  color: var(--gold);
}

.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4 {
  color: var(--cream);
}
body.site-page .section--charcoal p {
  color: var(--cream);
}
.section--charcoal .label {
  color: var(--gold);
}

.section--charcoal .btn--light {
  border-color: var(--cream);
  color: var(--cream);
}
.section--charcoal .btn--light::before {
  background: var(--cream);
}
.section--charcoal .btn--light:hover {
  color: var(--black);
}

.section--green .btn--light {
  border-color: var(--cream);
  color: var(--cream);
}
.section--green .btn--light::before {
  background: var(--cream);
}
.section--green .btn--light:hover {
  color: var(--green);
}

/* ── Gold Dividers ── */
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin: 0 auto;
  border: none;
}

.gold-divider--wide {
  width: 120px;
}
.gold-divider--left {
  margin: 0;
}

/* ── Scroll-reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-smooth),
    transform 0.8s var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════ */
/* ── 10. RESPONSIVE BREAKPOINTS ── */
/* ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .founder__layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .founder__portrait {
    position: static;
    max-width: 500px;
  }

  .service-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero__layout {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  .about-hero__left,
  .about-hero__right {
    text-align: center;
  }
  .about-hero__photo {
    margin: 0 auto;
    width: 250px;
    height: 250px;
  }

  .manifesto__grid {
    grid-template-columns: 1fr;
  }
  .approach__rail {
    grid-template-columns: 1fr 1fr;
  }
  .approach__step {
    border-bottom: 1px solid var(--green);
  }
  .approach__step:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  /* Nav mobile */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(38, 39, 36, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    border-top: 1px solid var(--green);
  }

  .nav__links.active {
    display: flex;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__cta {
    display: none;
  }

  /* Hero */
  .hero--site {
    min-height: 90vh;
  }
  .hero__content {
    padding-top: 162px;
  }
  .hero__buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Split */
  .split {
    grid-template-columns: 1fr;
  }
  .split__image {
    min-height: 300px;
  }
.why-elysha-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: unset;
}
.why-elysha-split .split__image {
  position: relative;
  overflow: hidden;
}

  /* Approach */
  .approach__rail {
    grid-template-columns: 1fr;
  }
  .approach__step {
    border-right: none;
  }

  /* Recognition */
  .recognition__grid {
    grid-template-columns: 1fr;
  }
  .recognition__item:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }
  .recognition__item:nth-child(even) {
    padding-left: 0;
  }

  /* Offerings */
  .offerings__grid {
    grid-template-columns: 1fr;
  }

  /* Expertise */
  .expertise__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Values */
  .values__row {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .values__item {
    border-right: none;
    border-bottom: 1px solid var(--green);
  }
  .values__item:last-child {
    border-bottom: none;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
  }

  /* About Hero */
  .about-hero__layout {
    grid-template-columns: 1fr;
  }
  .about-hero__photo {
    margin: 0 auto;
  }

  /* Testimonial carousel */
  .testimonial-carousel {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .testimonial-carousel__slide {
    position: relative;
    inset: auto;
    display: none;
    padding: 0 16px;
  }
  .testimonial-carousel__slide.active {
    display: flex;
  }
  .testimonial-carousel__arrow {
    position: static;
    transform: none;
    flex-shrink: 0;
  }
  .testimonial-carousel__arrow--prev,
  .testimonial-carousel__arrow--next {
    display: none;
  }
  .testimonial-carousel__dots {
    margin-top: 20px;
  }
  .testimonial::before {
    font-size: 6rem;
    top: 20px;
  }

  /* Headshot portrait - override inline 300px */
  .img-divider img[alt="Elysha portrait"] {
    width: 200px !important;
    height: 200px !important;
  }

  /* Email forms */
  .email-form {
    flex-direction: column;
  }
  .email-form input + input {
    border-left: none;
    border-top: 1px solid var(--green);
  }
  .email-form button {
    padding: 14px 28px;
  }

  /* Footer email form */
  .footer .email-form {
    max-width: 100%;
    flex-direction: column;
  }
  .footer .email-form input {
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  .footer .email-form button {
    padding: 12px 16px;
    font-size: 0.7rem;
  }

  /* Image collage */
  .image-collage {
    min-height: auto;
    aspect-ratio: 3/4;
    margin-top: 20px;
  }
  .image-collage__arch {
    width: 90%;
    height: 100%;
  }
  .service-intro--reversed .image-collage {
    order: 1;
  }

  /* ── Grid utility mobile stacking ── */
  .grid-2col,
  .grid-2col-ba {
    grid-template-columns: 1fr;
  }
  .grid-2col-div {
    grid-template-columns: 1fr;
  }
  .grid-2col-div > *:nth-child(3n + 2) {
    /* hide the 1px divider column */
    display: none;
  }
  .grid-2col-aside {
    grid-template-columns: 1fr;
  }
  .grid-3col {
    grid-template-columns: 1fr;
  }
  .grid-4col {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Spaghetti page mobile fixes ── */
  .page-spaghetti section[style*="padding-left:4rem"],
  .page-spaghetti section[style*="padding-left: 4rem"],
  .page-spaghetti div[style*="padding-left:4rem"] {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  /* Recognition grid items - remove max-height clipping */
  .page-spaghetti .grid-2col > div[style*="max-height"] {
    max-height: none !important;
  }
  /* Remove left border on former right-column items when stacked */
  .page-spaghetti .grid-2col > div[style*="border-left"] {
    border-left: none !important;
    padding-left: 0 !important;
  }
  .page-spaghetti .grid-2col > div[style*="padding:1.5rem 1.5rem 1.5rem 0"] {
    padding-right: 0 !important;
  }

  /* Green CTA bar */
  .page-spaghetti .green-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }

  /* Closing CTA - prevent nowrap overflow */
  .page-spaghetti section h2[style*="white-space:nowrap"],
  .page-spaghetti section h2[style*="white-space: nowrap"] {
    white-space: normal !important;
  }

  /* Quotes grid */
  .page-spaghetti .quotes-grid.grid-2col {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════ */
/* ── SCROLL REVEAL (shared utility) ── */
/* ══════════════════════════════════════ */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.sr.in {
  opacity: 1;
  transform: none;
}
.sr-l {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.sr-l.in {
  opacity: 1;
  transform: none;
}
.sr-r {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease;
}
.sr-r.in {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.28s;
}
.d4 {
  transition-delay: 0.38s;
}
.d5 {
  transition-delay: 0.48s;
}
.d6 {
  transition-delay: 0.58s;
}
.d7 {
  transition-delay: 0.68s;
}

/* ══════════════════════════════════════ */
/* ── SHARED SESSION PAGE STYLES ── */
/* ══════════════════════════════════════ */

/* ── Hero ── */
.page-session .hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.page-session .hero-bot {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.055;
}
.page-session .hero-bot svg {
  width: 100%;
  height: 100%;
}
.page-session .hero-left {
  background: var(--green);
  padding: 12.48rem 4rem 8.24rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.page-session .hero-left::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--gold) 40%,
    var(--gold) 60%,
    transparent
  );
  opacity: 0.3;
}
.page-session .hero-pretitle {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-65);
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.page-session .hero-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 2.5rem;
}
.page-session .hero-h1 .line {
  display: block;
  overflow: hidden;
}
.page-session .hero-h1 .line span {
  display: block;
  opacity: 0;
  transform: translateY(100%);
  animation: slideUp 0.9s ease forwards;
}
.page-session .hero-h1 .line:nth-child(1) span {
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  animation-delay: 0.45s;
}
.page-session .hero-h1 .line:nth-child(2) span {
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  animation-delay: 0.6s;
}
.page-session .hero-h1 .line:nth-child(3) span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  color: var(--blush);
  animation-delay: 0.75s;
}
.page-session .hero-sub {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--cream-65);
  max-width: 380px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}
.page-session .hero-ctas {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s ease forwards;
}

/* ── Hero Right ── */
.page-session .hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.page-session .hero-right-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.page-session .hero-right-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-session .hero-right-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 2rem 2.5rem;
}
.page-session .hero-right-badge {
  background: rgba(31, 79, 68, 0.85);
  padding: 1.5rem 2rem;
  max-width: 280px;
  border-left: 2px solid var(--gold);
}
.page-session .hero-badge-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.page-session .hero-badge-quote {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
  line-height: 1.4;
}
.page-session .hero-right-num {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 300;
  line-height: 1;
  color: rgba(247, 242, 234, 0.08);
}

/* ── Session Buttons ── */
.page-session .btn-outline-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--cream);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: color 0.4s var(--ease-smooth);
}
.page-session .btn-outline-cream::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  z-index: -1;
  transition: transform 0.4s var(--ease-smooth);
}
.page-session .btn-outline-cream:hover {
  color: var(--green);
}
.page-session .btn-outline-cream:hover::before {
  transform: scaleX(1);
}
.page-session .btn-ghost-small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-50);
  padding: 0.6rem 0;
  border: none;
  border-bottom: 1px solid var(--cream-50);
  background: transparent;
  cursor: pointer;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.page-session .btn-ghost-small:hover {
  color: var(--cream);
  border-color: var(--cream);
}

/* ── Marquee Band ── */
.page-session .marquee-band {
  background: var(--orange);
  overflow: hidden;
  padding: 0.85rem 0;
  white-space: nowrap;
}
.page-session .marquee-track {
  display: inline-flex;
  gap: 0;
  animation: marquee 30s linear infinite;
}
.page-session .marquee-track span {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 0 2.5rem;
  flex-shrink: 0;
}
.page-session .marquee-track span::after {
  content: "✦";
  margin-left: 2.5rem;
  color: var(--cream);
}

/* ── Stat Cards ── */
.page-session .stat-card {
  background: var(--white, #fff);
  padding: 2rem 2.25rem;
  border-left: 3px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.page-session .stat-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    transparent 50%,
    rgba(191, 100, 44, 0.06) 50%
  );
}
.page-session .stat-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
  display: block;
}

/* ── How It Works ── */
.page-session .how {
  background: var(--cream);
  padding: 5rem 0;
}
.page-session .how-header {
  padding: 0 4rem 0.5rem;
}
.page-session .how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-session .how-header h2 em {
  font-style: italic;
  color: var(--orange);
}
.page-session .how-header p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--black-85);
  max-width: 520px;
}
.page-session .how-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: block;
}
.page-session .how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 0;
}
.page-session .how-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--green-12);
  position: relative;
}
.page-session .how-step:last-child {
  border-right: none;
}
.page-session .how-step-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.page-session .how-step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 400;
  color: var(--black);
  opacity: 0.3;
  line-height: 1;
}
.page-session .how-step-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: absolute;
  top: 2.5rem;
  right: -0.5rem;
  width: 1rem;
}
.page-session .how-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
}
.page-session .how-step-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--green);
  margin-bottom: 0.2rem;
}
.page-session .how-step-sub {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
}
body.page-session .how-step-body {
  color: var(--black);
}
.page-session .how-step-list {
  list-style: none;
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.page-session .how-step-list li {
  font-size: 0.9rem;
  line-height: 1.65;
  padding-left: 1.1rem;
  position: relative;
  color: var(--black);
}
.page-session .how-step-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.45rem;
  top: 0.45em;
}
.page-session .how-bottom {
  background: var(--cream);
  padding: 2.5rem 4rem;
  border-top: 1px solid var(--green-12);
  text-align: center;
}
.page-session .how-bottom p {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--blush);
}

/* ── Closing CTA ── */
.page-session .closing {
  background: var(--green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-session .closing-bot {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
}
.page-session .closing-inner {
  position: relative;
  z-index: 1;
  padding: 0 4rem;
}
.page-session .closing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Footer Nav ── */
.page-session .foot-nav {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}
.page-session .foot-nav a {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-50);
  text-decoration: none;
  transition: color 0.2s;
}
.page-session .foot-nav a:hover {
  color: var(--gold);
}

/* ══════════════════════════════════════ */
/* ── SPAGHETTI SESSION PAGE ── */
/* ══════════════════════════════════════ */

/* ══════════════════════════════════════
   § 2  OPENING TENSION
══════════════════════════════════════ */
.page-spaghetti .tension {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.page-spaghetti .tension-l {
  padding: 5rem 4rem 5rem 4rem;
  border-right: 1px solid var(--green-08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-spaghetti .tension-l h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.22;
  margin-bottom: 2.5rem;
}
.page-spaghetti .tension-l h2 em {
  font-style: italic;
}
.page-spaghetti .tension-.tension-body p + p {
  margin-top: 1.2rem;
}
.page-spaghetti .tension-body strong {
  font-weight: 500;
  color: var(--green);
}
.page-spaghetti .tension-cta-row {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.page-spaghetti .btn-fill {
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.75rem;
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  transition: all 0.4s var(--ease-smooth);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.page-spaghetti .btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  z-index: -1;
}
.page-spaghetti .btn-fill:hover {
  color: var(--black);
  border-color: var(--cream);
}
.page-spaghetti .btn-fill:hover::before {
  transform: scaleX(1);
}
.page-spaghetti .btn-outline-forest {
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.75rem;
  border: 1px solid var(--green);
  color: var(--green);
  transition: all 0.4s var(--ease-smooth);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.page-spaghetti .btn-outline-forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  z-index: -1;
}
.page-spaghetti .btn-outline-forest:hover {
  color: var(--cream);
}
.page-spaghetti .btn-outline-forest:hover::before {
  transform: scaleX(1);
}
.page-spaghetti .tension-r {
  padding: 5rem 4rem;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.page-spaghetti .stat-card-.stat-card-body strong {
  font-style: normal;
  font-weight: 500;
  color: var(--green);
}

/* ══════════════════════════════════════
   § 3  BIG STATEMENT
══════════════════════════════════════ */
.page-spaghetti .big-statement {
  background: var(--green);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-spaghetti .big-statement-bot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
}
.page-spaghetti .big-statement-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}
.page-spaghetti .big-statement-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.page-spaghetti .big-statement h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.1;
}
.page-spaghetti .big-statement h2 em {
  font-style: italic;
  color: var(--blush);
}
/* Highlighted phrase pill */
.page-spaghetti .highlight-pill {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 0.15em 0.6em;
  border-radius: 2px;
  font-style: normal;
  color: #fff;
}

/* ══════════════════════════════════════
   § 4  RECOGNITION
══════════════════════════════════════ */
.page-spaghetti .recognition {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
/* Decorative large background letter */
.page-spaghetti .recognition-bg-glyph {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 40vw;
  font-weight: 300;
  color: var(--green);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-spaghetti .recognition-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 4rem;
}
.page-spaghetti .recognition-header {
  margin-bottom: 4rem;
}
.page-spaghetti .recognition-header .eyebrow-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.25rem;
  display: block;
}
.page-spaghetti .recognition-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
}
.page-spaghetti .recognition-header h2 em {
  font-style: italic;
}

/* Masonry-ish recognition cards */
.page-spaghetti .rec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--green-10);
  margin-bottom: 1px;
}
.page-spaghetti .rec-cell {
  background: rgba(255, 255, 255, 0.65);
  padding: 2rem 2.25rem;
  font-size: 1rem;
  line-height: 1.75;
  border-bottom: 2px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
  position: relative;
}
.page-spaghetti .rec-cell::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 2.25rem;
  width: 16px;
  height: 1px;
  background: var(--orange);
}
.page-spaghetti .rec-cell:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--orange);
}
.page-spaghetti .rec-cell-text {
  margin-top: 0.6rem;
}

/* Identity stacked section */
.page-spaghetti .identity-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--green-10);
  margin-top: 1px;
}
.page-spaghetti .id-left {
  background: var(--green);
  padding: 3.5rem 3rem;
}
.page-spaghetti .id-left > p:first-child {
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: 1.75rem;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
}
.page-spaghetti .id-tags {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-spaghetti .id-tag {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--blush);
  gap: 1rem;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.page-spaghetti .id-tag.in {
  opacity: 1;
  transform: none;
}
.page-spaghetti .id-tag-num {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  width: 1.5rem;
}
.page-spaghetti .id-left-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: rgba(247, 242, 234, 0.45);
  line-height: 1.7;
  font-style: italic;
}
.page-spaghetti .id-right {
  background: #fff;
  padding: 3.5rem 3rem;
}
.page-spaghetti .id-right > p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  color: var(--black);
}
.page-spaghetti .two-truths {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--green-10);
  margin: 1.75rem 0;
}
.page-spaghetti .truth-item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.4;
  border-bottom: 1px solid rgba(31, 79, 68, 0.06);
}
.page-spaghetti .truth-item:last-child {
  border-bottom: none;
}
.page-spaghetti .truth-and {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(38, 39, 36, 0.35);
  text-transform: uppercase;
  background: rgba(31, 79, 68, 0.02);
}
.page-spaghetti .id-right-close {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(38, 39, 36, 0.88);
  border-top: 1px solid var(--green-08);
  padding-top: 1.5rem;
  margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   § 5  DIVIDER
══════════════════════════════════════ */
.page-spaghetti .ornament-divider {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  gap: 2rem;
}
.page-spaghetti .ornament-divider::before,
.page-spaghetti .ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(31, 79, 68, 0.15) 40%,
    rgba(31, 79, 68, 0.15) 60%,
    transparent
  );
}
.page-spaghetti .ornament-divider-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
}

/* ══════════════════════════════════════
   § 6  WHAT IT IS
══════════════════════════════════════ */
.page-spaghetti .what {
  background: var(--black);
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* Full-bleed top headline band */
.page-spaghetti .what-headline-band {
  background: var(--black);
  padding: 6rem 4rem 4rem;
  position: relative;
}
.page-spaghetti .what-hl-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.page-spaghetti .what-hl {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  max-width: 900px;
}
.page-spaghetti .what-hl em {
  font-style: italic;
  color: var(--blush);
}
/* Decorative circle */
.page-spaghetti .what-circle {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(198, 147, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-spaghetti .what-circle-inner {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1.6;
  padding: 1rem;
}

/* Two-col body */
.page-spaghetti .what-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--white-06);
}
.page-spaghetti .what-col {
  padding: 4rem;
  border-right: 1px solid var(--white-06);
}
.page-spaghetti .what-col:last-child {
  border-right: none;
}
.page-spaghetti .what-col .col-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  display: block;
}
.page-spaghetti .what-col p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(247, 242, 234, 0.75);
  margin-bottom: 1.1rem;
}
.page-spaghetti .what-col strong {
  color: var(--blush);
  font-weight: 400;
}
/* NOT THIS list */
.page-spaghetti .not-this {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-spaghetti .nt-item {
  padding: 1.1rem 1.35rem;
  background: var(--white-04);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s;
}
.page-spaghetti .nt-item:hover {
  background: rgba(255, 255, 255, 0.07);
}
.page-spaghetti .nt-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  display: block;
  font-weight: 500;
}
.page-spaghetti .nt-desc {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.55);
  line-height: 1.7;
}
.page-spaghetti .what-closing {
  padding: 4rem 4rem 5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.page-spaghetti .what-closing-inner {
  max-width: 820px;
}
.page-spaghetti .what-closing-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.25rem;
  display: block;
}
.page-spaghetti .what-closing-text {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(247, 242, 234, 0.8);
  line-height: 1.6;
}

/* ══════════════════════════════════════
   § 9  WHAT'S INSIDE — 2-col grid
══════════════════════════════════════ */
.page-spaghetti .inside {
  background: var(--cream);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-spaghetti .inside-header {
  padding: 0 4rem 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}
.page-spaghetti .inside-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
}
.page-spaghetti .inside-header h2 em {
  font-style: italic;
}
.page-spaghetti .inside-header-r {
  border-left: 2px solid var(--blush);
  padding-left: 1.75rem;
}
.page-spaghetti .inside-header-r p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--black-85);
}
/* 2-column card grid */
.page-spaghetti .inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--green-08);
  border-top: 1px solid var(--green-08);
}
.page-spaghetti .inc-card {
  background: var(--cream);
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-bottom: 3px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.page-spaghetti .inc-card:hover {
  background: #fff;
  border-color: var(--orange);
}
.page-spaghetti .inc-card-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.page-spaghetti .inc-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-spaghetti .inc-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
/* ══════════════════════════════════════
   § 12  INVESTMENT
══════════════════════════════════════ */
.invest {
  background: var(--black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-spaghetti .invest-bot {
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  pointer-events: none;
  opacity: 0.05;
}
.page-spaghetti .invest-inner {
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}
.page-spaghetti .invest-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-spaghetti .invest-lead {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: 1.5rem;
}
.page-spaghetti .invest-lead em {
  font-style: italic;
  color: var(--blush);
}
.page-spaghetti .invest-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(247, 242, 234, 0.6);
  max-width: 580px;
  margin-bottom: 5rem;
}
.page-spaghetti .invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
}
/* Card */
.page-spaghetti .invest-card {
  background: var(--cream);
  padding: 3.5rem;
}
.page-spaghetti .inv-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  display: block;
}
.page-spaghetti .inv-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--green);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.page-spaghetti .inv-price-note {
  font-size: 0.78rem;
  color: rgba(38, 39, 36, 0.72);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.page-spaghetti .inv-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-spaghetti .inv-list li {
  font-size: 1.05rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
}
.page-spaghetti .inv-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.55rem;
  top: 0.42em;
}
.page-spaghetti .inv-divider {
  border: none;
  border-top: 1px solid var(--green-12);
  margin: 2rem 0;
}
/* Right features */
.page-spaghetti .invest-features {
  background: rgba(255, 255, 255, 0.03);
  padding: 3.5rem;
}
.page-spaghetti .inv-feat {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.page-spaghetti .inv-feat:last-of-type {
  border-bottom: none;
}
.page-spaghetti .inv-feat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.page-spaghetti .inv-feat-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.page-spaghetti .inv-feat-.invest-cta-bar {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ══════════════════════════════════════
   § 13  IS THIS FOR YOU
══════════════════════════════════════ */
.page-spaghetti .foryou {
  background: var(--cream);
  padding: 5rem 0;
}
.page-spaghetti .foryou-header {
  padding: 0 4rem 4rem;
}
.page-spaghetti .foryou-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-spaghetti .foryou-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.page-spaghetti .foryou-header h2 em {
  font-style: italic;
}
.page-spaghetti .foryou-header p {
  font-size: 1.05rem;
  color: var(--black-82);
  max-width: 440px;
  line-height: 1.75;
}
.page-spaghetti .foryou-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--green-08);
}
.page-spaghetti .foryou-col {
  background: var(--cream);
  padding: 4rem;
}
.page-spaghetti .foryou-col-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--orange);
}
.page-spaghetti .foryou-col-head h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--green);
}
.page-spaghetti .foryou-col.no .foryou-col-head {
  border-color: rgba(38, 39, 36, 0.15);
}
.page-spaghetti .foryou-col.no .foryou-col-head h3 {
  color: rgba(38, 39, 36, 0.72);
}
.page-spaghetti .fy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.page-spaghetti .fy-list li {
  font-size: 1rem;
  padding: 1rem 1.25rem;
  line-height: 1.65;
  border-left: 2px solid var(--green);
  background: rgba(31, 79, 68, 0.03);
}
.page-spaghetti .foryou-col.no .fy-list li {
  border-color: rgba(38, 39, 36, 0.15);
  background: rgba(38, 39, 36, 0.02);
  color: var(--black-82);
}

/* ── People Bring Quotes Grid ── */
.page-spaghetti .quotes-grid .quote-card {
  background: var(--white-40);
  padding: 1.5rem 1.75rem;
  border-radius: 2px;
}
.page-spaghetti .quotes-grid .quote-card p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--black);
  line-height: 1.5;
}

/* ── Green CTA Bar ── */
.page-spaghetti .green-cta-bar {
  background: var(--green);
  padding: 3.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-spaghetti .green-cta-bar p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--cream);
}

/* ══════════════════════════════════════
   § 15  CLOSING CTA
══════════════════════════════════════ */
.page-spaghetti .closing-l .cl-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-spaghetti .closing-l h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.page-spaghetti .closing-l h2 em {
  font-style: italic;
}
.page-spaghetti .closing-l p {
  font-size: 1rem;
  color: var(--cream-68);
  line-height: 1.88;
  margin-bottom: 1rem;
}
.page-spaghetti .closing-r {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-spaghetti .cta-card {
  background: var(--white-06);
  padding: 2.5rem;
  border-top: 1px solid rgba(198, 147, 78, 0.3);
}
.page-spaghetti .cta-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.page-spaghetti .cta-card > p {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.page-spaghetti .cta-note {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.28);
  display: block;
  margin-top: 1rem;
}
.page-spaghetti .email-row {
  display: flex;
  gap: 0.75rem;
}
.page-spaghetti .email-row input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(247, 242, 234, 0.18);
  background: var(--white-06);
  color: var(--cream);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  outline: none;
}
.page-spaghetti .email-row input::placeholder {
  color: rgba(247, 242, 234, 0.3);
}

/* ══════════════════════════════════════
   § FOOTER
══════════════════════════════════════ */
.page-spaghetti footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-spaghetti .foot-logo {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.page-spaghetti .foot-logo em {
  font-style: italic;
  font-weight: 300;
}
.page-spaghetti .foot-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.3);
  margin-top: 0.3rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-spaghetti .hero {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .hero-right {
    min-height: 40vh;
  }
  .page-spaghetti .hero-left {
    padding: 8.74rem 2rem 5.49rem;
  }
  .page-spaghetti .tension {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .tension-l,
  .page-spaghetti .tension-r {
    padding: 4rem 2rem;
  }
  .page-spaghetti .rec-grid {
    grid-template-columns: 1fr;
  }

  .page-spaghetti .identity-split {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .what-body-grid {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .what-headline-band {
    padding: 4rem 2rem 3rem;
  }
  .page-spaghetti .what-circle {
    display: none;
  }
  .page-spaghetti .what-col {
    padding: 3rem 2rem;
  }
  .page-spaghetti .what-closing {
    padding: 3rem 2rem;
  }
  .page-spaghetti .how-steps {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .how-step {
    padding: 2.5rem 2rem;
  }
  .page-spaghetti .how-header {
    padding: 0 2rem 3rem;
  }
  .page-spaghetti .how-bottom {
    padding: 2rem 2rem;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .page-spaghetti .inside-header {
    grid-template-columns: 1fr;
    padding: 0 2rem 3rem;
  }
  .page-spaghetti .inc-grid {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .invest-inner {
    padding: 0 2rem;
  }
  .page-spaghetti .invest-grid {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .foryou-header {
    padding: 0 2rem 3rem;
  }
  .page-spaghetti .foryou-cols {
    grid-template-columns: 1fr;
  }
  .page-spaghetti .foryou-col {
    padding: 3rem 2rem;
  }
  .page-spaghetti .closing-inner {
    padding: 0 2rem;
  }
  .page-spaghetti .closing-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .page-spaghetti .recognition-inner {
    padding: 4rem 2rem;
  }
  .page-spaghetti .big-statement {
    padding: 5rem 2rem;
  }
  .page-spaghetti footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2rem;
  }
}

/* ══════════════════════════════════════ */
/* ── GENESIS JOURNEY PAGE ── */
/* ══════════════════════════════════════ */

/* Genesis hero override (font-weight differs from shared .page-session base) */
.page-genesis .hero-h1 {
  font-weight: 300;
}
.page-genesis .how-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
}
.page-genesis .how-header p {
  font-size: 1.05rem;
}
.page-genesis .how-bottom p {
  font-size: 1.05rem;
}

/* ══════════════════════════════════════
   § 2  OPENING TENSION
══════════════════════════════════════ */
.page-genesis .tension {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.page-genesis .tension-l {
  padding: 5rem 4rem 5rem 4rem;
  border-right: 1px solid var(--green-08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-genesis .tension-l h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.22;
  margin-bottom: 2.5rem;
}
.page-genesis .tension-l h2 em {
  font-style: italic;
}
.page-genesis .tension-.tension-body p + p {
  margin-top: 1.2rem;
}
.page-genesis .tension-body strong {
  font-weight: 500;
  color: var(--green);
}
.page-genesis .tension-cta-row {
  margin-top: 3rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.page-genesis .btn-fill {
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.75rem;
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
  transition: all 0.4s var(--ease-smooth);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.page-genesis .btn-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  z-index: -1;
}
.page-genesis .btn-fill:hover {
  color: var(--black);
  border-color: var(--cream);
}
.page-genesis .btn-fill:hover::before {
  transform: scaleX(1);
}
.page-genesis .btn-outline-forest {
  font-family: "Poppins", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.1rem 2.75rem;
  border: 1px solid var(--green);
  color: var(--green);
  transition: all 0.4s var(--ease-smooth);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.page-genesis .btn-outline-forest::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
  z-index: -1;
}
.page-genesis .btn-outline-forest:hover {
  color: var(--cream);
}
.page-genesis .btn-outline-forest:hover::before {
  transform: scaleX(1);
}
.page-genesis .tension-r {
  padding: 5rem 4rem;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.page-genesis .stat-card-.stat-card-body strong {
  font-style: normal;
  font-weight: 500;
  color: var(--green);
}
/* Availability badge */
.page-genesis .avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green);
  color: var(--cream);
  padding: 1rem 1.75rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.page-genesis .avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ══════════════════════════════════════
   § 3  BIG STATEMENT
══════════════════════════════════════ */
.page-genesis .big-statement {
  background: var(--orange);
  padding: 5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-genesis .big-statement-bot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
}
.page-genesis .big-statement-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}
.page-genesis .big-statement-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.page-genesis .big-statement h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
}
.page-genesis .big-statement h2 em {
  font-style: italic;
  color: var(--blush);
}
/* Highlighted phrase pill */
.page-genesis .highlight-pill {
  display: inline-block;
  background: var(--green);
  color: #fff;
  padding: 0.15em 0.6em;
  border-radius: 2px;
  font-style: italic;
  color: #fff;
}

/* ══════════════════════════════════════
   § 4  RECOGNITION
══════════════════════════════════════ */
.page-genesis .recognition {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
/* Decorative large background letter */
.page-genesis .recognition-bg-glyph {
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 40vw;
  font-weight: 300;
  color: var(--green);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.page-genesis .recognition-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 4rem;
}
.page-genesis .recognition-header {
  margin-bottom: 4rem;
}
.page-genesis .recognition-header .eyebrow-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .recognition-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
}
.page-genesis .recognition-header h2 em {
  font-style: italic;
  color: var(--blush);
}

/* Recognition list */
.page-genesis .rec-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}
.page-genesis .rec-cell {
  padding: 1.5rem 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--cream);
  border-bottom: 1px solid rgba(247, 242, 234, 0.12);
  display: flex;
  align-items: baseline;
  gap: 1.25rem;
}
.page-genesis .rec-cell::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
}
.page-genesis .rec-cell:hover {
  color: inherit;
}
.page-genesis .rec-cell-text {
  display: inline;
}

/* Identity stacked section */
.page-genesis .identity-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 4rem;
  margin: 2rem 2rem 0;
  padding: 3.5rem 3rem;
  background: var(--white-06);
  border: 1px solid rgba(247, 242, 234, 0.1);
  border-radius: 4px;
}
.page-genesis .id-left {
  padding: 0;
}
.page-genesis .id-left > p:first-child {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1.75rem;
}
.page-genesis .id-tags {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-genesis .id-tag {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(247, 242, 234, 0.12);
  font-size: 1.05rem;
  color: var(--cream);
  gap: 1rem;
  opacity: 0;
  transform: translateX(-16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.page-genesis .id-tag:first-child {
  border-top: 1px solid rgba(247, 242, 234, 0.12);
}
.page-genesis .id-tag.in {
  opacity: 1;
  transform: none;
}
.page-genesis .id-tag-num {
  display: none;
}
.page-genesis .id-left-footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
  line-height: 1.5;
}
.page-genesis .id-right {
  padding: 0;
}
.page-genesis .id-right > p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--blush);
}
.page-genesis .two-truths {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 1.75rem 0;
}
.page-genesis .truth-item {
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--orange);
  background: var(--white-04);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.5;
  font-style: normal;
}
.page-genesis .truth-item:last-child {
  border-bottom: none;
}
.page-genesis .truth-and {
  padding: 0.75rem 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(247, 242, 234, 0.4);
  text-transform: uppercase;
}
.page-genesis .id-right-close {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--blush);
  margin-top: 1rem;
  border-top: 1px solid rgba(247, 242, 234, 0.12);
  padding-top: 1.5rem;
}

/* ══════════════════════════════════════
   § 5  DIVIDER
══════════════════════════════════════ */
.page-genesis .ornament-divider {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 4rem;
  gap: 2rem;
}
.page-genesis .ornament-divider::before,
.page-genesis .ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(31, 79, 68, 0.15) 40%,
    rgba(31, 79, 68, 0.15) 60%,
    transparent
  );
}
.page-genesis .ornament-divider-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  opacity: 0.6;
}

.page-genesis .ornament-divider--dark {
  background: transparent;
}
.page-genesis .ornament-divider--dark::before,
.page-genesis .ornament-divider--dark::after {
  background: linear-gradient(
    to right,
    transparent,
    rgba(247, 242, 234, 0.15) 40%,
    rgba(247, 242, 234, 0.15) 60%,
    transparent
  );
}
.page-genesis .ornament-divider--dark .ornament-divider-inner {
  color: var(--cream);
}

/* ══════════════════════════════════════
   § 6  WHAT IT IS
══════════════════════════════════════ */
.page-genesis .what {
  background: var(--black);
  padding: 0;
  position: relative;
  overflow: hidden;
}
/* Full-bleed top headline band */
.page-genesis .what-headline-band {
  background: var(--black);
  padding: 5rem 4rem 4rem;
  position: relative;
}
.page-genesis .what-hl-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}
.page-genesis .what-hl {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  max-width: 900px;
}
.page-genesis .what-hl em {
  font-style: italic;
  color: var(--blush);
}
/* Decorative circle */
.page-genesis .what-circle {
  position: absolute;
  right: 4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(198, 147, 78, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-genesis .what-circle-inner {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.6;
  line-height: 1.6;
  padding: 1rem;
}

/* Two-col body */
.page-genesis .what-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  border-top: 1px solid var(--white-06);
}
.page-genesis .what-col {
  padding: 4rem;
  border-right: 1px solid var(--white-06);
}
.page-genesis .what-col:last-child {
  border-right: none;
}
.page-genesis .what-col .col-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1.5rem;
  display: block;
}
.page-genesis .what-col p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(247, 242, 234, 0.75);
  margin-bottom: 1.1rem;
}
.page-genesis .what-col strong {
  color: var(--cream);
  font-weight: 400;
}
/* Effect chain */
.page-genesis .chain {
  display: flex;
  flex-direction: column;
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  border-left: 3px solid var(--orange);
  position: relative;
}
.page-genesis .chain::before {
  display: none;
}
.page-genesis .chain-row {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.6);
  padding: 0.65rem 0;
  line-height: 1.5;
  border-bottom: 1px solid var(--white-04);
  transition:
    color 0.2s,
    padding-left 0.2s;
  cursor: default;
}
.page-genesis .chain-row:first-child {
  color: rgba(247, 242, 234, 0.6);
}
.page-genesis .chain-row:hover {
  color: rgba(247, 242, 234, 0.9);
  padding-left: 0.5rem;
}
/* NOT THIS list */
.page-genesis .not-this {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-genesis .nt-item {
  padding: 1.5rem 1.5rem;
  background: var(--white-04);
  border-top: 1px solid var(--white-06);
  transition: background 0.2s;
}
.page-genesis .nt-item:hover {
  background: rgba(255, 255, 255, 0.07);
}
.page-genesis .nt-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
  font-weight: 500;
}
.page-genesis .nt-desc {
  font-size: 0.85rem;
  color: var(--cream-70);
  line-height: 1.7;
}
.page-genesis .what-closing {
  padding: 0;
  background: none;
  border-top: none;
}
.page-genesis .what-closing-inner {
  padding: 2.5rem 1.5rem;
  background: var(--black);
}
.page-genesis .what-closing-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
  font-weight: 500;
}
.page-genesis .what-closing-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem !important;
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   § 8  FRAMEWORK TIMELINE
══════════════════════════════════════ */
.page-genesis .framework {
  background: var(--green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-genesis .framework-bot {
  position: absolute;
  right: -5%;
  top: -5%;
  width: 50%;
  height: 110%;
  pointer-events: none;
  opacity: 0.05;
}
.page-genesis .framework-inner {
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}
.page-genesis .framework-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .framework-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.page-genesis .framework-intro {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.6);
  max-width: 560px;
  margin-bottom: 5rem;
  line-height: 1.85;
}
/* Timeline grid — 4 equal columns */
.page-genesis .tl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.07);
}
.page-genesis .tl-item {
  background: rgba(31, 79, 68, 0.5);
  padding: 3rem 2.5rem;
  position: relative;
  border-bottom: 3px solid transparent;
  transition:
    background 0.3s,
    border-color 0.3s;
}
.page-genesis .tl-item:hover {
  background: rgba(31, 79, 68, 0.85);
  border-color: var(--gold);
}
.page-genesis .tl-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.page-genesis .tl-stage-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 0.4rem;
}
.page-genesis .tl-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.page-genesis .tl-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.page-genesis .tl-desc {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.82;
}

/* ══════════════════════════════════════
   § 9  WHAT'S INSIDE — 2-col grid
══════════════════════════════════════ */
.page-genesis .inside {
  background: var(--cream);
  padding: 5rem 0 0 0;
  position: relative;
  overflow: hidden;
}
.page-genesis .inside-header {
  padding: 0 4rem 5rem;
}
.page-genesis .inside-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--green);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.page-genesis .inside-header h2 em {
  font-style: italic;
  color: var(--orange);
}
.page-genesis .inside-header-r {
  max-width: 500px;
}
.page-genesis .inside-header-r p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--black);
}
/* 2-column card grid */
.page-genesis .inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--green-08);
  border-top: 1px solid var(--green-08);
}
.page-genesis .inc-card {
  background: var(--cream);
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border-bottom: 3px solid transparent;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.page-genesis .inc-card:hover {
  background: #fff;
  border-color: var(--orange);
}
.page-genesis .inc-card-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.page-genesis .inc-card-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-genesis .inc-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
body.site-page .inc-card-body {
  color: var(--black);
}
/* ══════════════════════════════════════
   § FLORAL IMAGE BREAKS
══════════════════════════════════════ */
/* Full-width floral panel between How and Framework */
.floral-break {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.floral-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floral-break-overlay {
  position: absolute;
  inset: 0;
  background: var(--gold-82);
}
.floral-break-text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 4rem;
  text-align: center;
}
.page-genesis .floral-break-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.4;
  max-width: 700px;
  opacity: 0.9;
}
.page-genesis .floral-break-text cite {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  font-style: normal;
}

/* Tall floral column beside framework intro */
.page-genesis .framework-with-floral {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
}
.page-genesis .framework-floral-col {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1f4f44 0%, #262724 100%);
  min-height: 100%;
}
.page-genesis .framework-floral-col svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.page-genesis .framework-floral-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

/* Objections: split with floral panel */
.page-genesis .obj-section {
  background: var(--black);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.page-genesis .obj-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
}
.page-genesis .obj-content {
  padding: 0rem 4rem 5rem 4rem;
  position: relative;
  z-index: 1;
}
.page-genesis .obj-floral-col {
  position: relative;
  overflow: hidden;
}
.page-genesis .obj-floral-col img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Tan botanical panel before the inside section */
.page-genesis .botanical-panel {
  background: var(--blush);
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: 340px;
  overflow: hidden;
}
.page-genesis .botanical-panel-img {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #1f4f44 0%, #1f4f44 100%);
}
.page-genesis .botanical-panel-img svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}
.page-genesis .botanical-panel-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-genesis .botanical-panel-text {
  padding: 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-genesis .botanical-panel-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-style: italic;
  font-weight: 300;
  color: var(--green);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.page-genesis .botanical-panel-text cite {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  font-style: normal;
}

/* ══════════════════════════════════════
   § 10  WHY ELYSHA
══════════════════════════════════════ */
.page-genesis .elysha {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  margin-top: -1px;
}
.page-genesis .elysha-img {
  position: relative;
  overflow: hidden;
  min-height: 580px;
}
.page-genesis .elysha-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.page-genesis .elysha-img-caption {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-50);
  line-height: 1.5;
}
.page-genesis .elysha-text {
  padding: 6rem 4.5rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.page-genesis .elysha-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .elysha-text h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.22;
  margin-bottom: 2.5rem;
}
.page-genesis .elysha-hr {
  border: none;
  border-top: 1px solid rgba(247, 242, 234, 0.1);
  margin: 2.25rem 0;
}
.page-genesis .elysha-pullquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.page-genesis .elysha-pullquote em {
  font-style: italic;
  color: var(--gold);
}
.page-genesis .roles-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.page-genesis .role-chip {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(247, 242, 234, 0.15);
  color: var(--cream);
  background: rgba(247, 242, 234, 0.04);
}

/* ══════════════════════════════════════
   § 11  TESTIMONIAL HOLD
══════════════════════════════════════ */
.page-genesis .testi-hold {
  background: var(--black);
  padding: 4.5rem 4rem;
  text-align: center;
}
.page-genesis .testi-hold .eyebrow-g {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.page-genesis .testi-hold p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  font-style: italic;
  color: rgba(247, 242, 234, 0.25);
}

/* ══════════════════════════════════════
   § 12  INVESTMENT
══════════════════════════════════════ */
.page-genesis .invest {
  background: var(--green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-genesis .invest-inner {
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}
.page-genesis .invest-lead {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.page-genesis .invest-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--cream-75);
  max-width: 580px;
  margin-bottom: 4rem;
}
/* Card */
.page-genesis .invest-card {
  background: rgba(255, 255, 255, 0.06);
  padding: 3.5rem;
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--gold);
}
.page-genesis .inv-card-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.page-genesis .inv-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 0.25rem;
  line-height: 1;
}
.page-genesis .inv-price-note {
  font-size: 0.78rem;
  color: var(--cream);
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.page-genesis .inv-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.page-genesis .inv-list li {
  font-size: 1.05rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.5;
  color: var(--cream);
}
.page-genesis .inv-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.42em;
}
.page-genesis .inv-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
}
body.page-genesis .inv-starter p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cream-75);
}
.page-genesis .inv-starter strong {
  color: var(--cream);
  font-weight: 600;
}
.page-genesis .inv-starter p + p {
  margin-top: 0.75rem;
}
/* Right features */
.page-genesis .invest-features {
  background: rgba(255, 255, 255, 0.03);
  padding: 3.5rem;
}
.page-genesis .inv-feat {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.page-genesis .inv-feat:last-of-type {
  border-bottom: none;
}
.page-genesis .inv-feat-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);

  margin-bottom: 0.5rem;
  display: block;
}
.page-genesis .inv-feat-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.page-genesis .inv-feat-.invest-cta-bar {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

/* ══════════════════════════════════════
   § 13  IS THIS FOR YOU
══════════════════════════════════════ */
.page-genesis .foryou {
  background: var(--black);
  padding: 5rem 0;
}
.page-genesis .foryou-header {
  padding: 0 4rem 4rem;
}
.page-genesis .foryou-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .foryou-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.12;
  margin-bottom: 0.75rem;
}
.page-genesis .foryou-header h2 em {
  font-style: italic;
  color: var(--blush);
}
.page-genesis .foryou-header p {
  font-size: 1.05rem;
  color: var(--cream-50);
  max-width: 440px;
  line-height: 1.75;
}
.page-genesis .foryou-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 0 4rem;
}
.page-genesis .foryou-col {
  padding: 0;
}
.page-genesis .foryou-col-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 2px solid var(--orange);
}
.page-genesis .foryou-col-head h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--cream);
}
.page-genesis .foryou-col.no .foryou-col-head {
  border-color: rgba(247, 242, 234, 0.15);
}
.page-genesis .foryou-col.no .foryou-col-head h3 {
  color: var(--cream-50);
}
.page-genesis .fy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.page-genesis .fy-list li {
  font-size: 1.05rem;
  padding: 1rem 1.25rem;
  line-height: 1.65;
  border-left: 2px solid var(--orange);
  background: var(--white-04);
  color: rgba(247, 242, 234, 0.75);
}
.page-genesis .foryou-col.no .fy-list li {
  border-color: rgba(247, 242, 234, 0.15);
  background: var(--white-04);
  color: rgba(247, 242, 234, 0.6);
}

/* ══════════════════════════════════════
   § 14  OBJECTIONS
══════════════════════════════════════ */
.page-genesis .obj-section {
  background: var(--black);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-genesis .obj-bot {
  position: absolute;
  right: -3%;
  bottom: -5%;
  width: 30%;
  height: 80%;
  pointer-events: none;
  opacity: 0.06;
}
.page-genesis .obj-inner {
  padding: 0 4rem;
  position: relative;
  z-index: 1;
}
.page-genesis .obj-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.4);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .obj-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 4rem;
}
.page-genesis .obj-content h2 em {
  font-style: italic;
  color: var(--blush);
}
.page-genesis .obj-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
}
.page-genesis .obj-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem 0;
}
.page-genesis .obj-item:last-child {
  border-bottom: none;
}
.page-genesis .obj-q {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 0.9rem;
  line-height: 1.4;
}
.page-genesis .obj-a {
  font-size: 1.05rem;
  line-height: 1.88;
  color: var(--cream-65);
}
.page-genesis .love-line {
  display: block;
  margin-top: 1rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--blush);
  padding: 1rem 1.5rem;
  border-left: 2px solid var(--gold);
  background: var(--white-04);
  line-height: 1.5;
}

/* ══════════════════════════════════════
   § 15  SIX MONTHS — the vision
══════════════════════════════════════ */
.page-genesis .sixmo {
  background: var(--green);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.page-genesis .sixmo-header {
  padding: 0 4rem 5rem;
  position: relative;
}
.page-genesis .sixmo-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .sixmo-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  max-width: 100%;
  margin-bottom: 2rem;
  white-space: nowrap;
}
.page-genesis .sixmo-title em {
  font-style: italic;
  color: var(--blush);
}
.page-genesis .sixmo-intro {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--cream-70);
  max-width: 900px;
}
.page-genesis .sixmo-intro p + p {
  margin-top: 1.2rem;
}
/* Two zone grid */
.page-genesis .sixmo-zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(247, 242, 234, 0.1);
}
.page-genesis .sixmo-outcomes {
  padding: 4rem;
  border-right: 1px solid rgba(247, 242, 234, 0.1);
}
.page-genesis .sixmo-outcomes h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 2rem;
}
.page-genesis .outcome-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-genesis .outcome-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid transparent;
  transition:
    border-color 0.3s,
    transform 0.25s;
  opacity: 0;
  transform: translateX(-16px);
}
.page-genesis .outcome-card.in {
  opacity: 1;
  transform: none;
}
.page-genesis .outcome-card:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}
.page-genesis .outcome-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 0.55rem;
}
.page-genesis .outcome-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(247, 242, 234, 0.75);
}
.page-genesis .sixmo-audacity {
  padding: 4rem;
}
.page-genesis .sixmo-audacity h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 2rem;
}
.page-genesis .audacity-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.page-genesis .aud-row {
  font-size: 1.05rem;
  color: var(--cream-70);
  padding: 0.85rem 1rem 0.85rem 1.75rem;
  position: relative;
  line-height: 1.65;
  border-bottom: 1px solid rgba(247, 242, 234, 0.08);
}
.page-genesis .aud-row::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 1.2rem;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.page-genesis .sixmo-caveat {
  padding: 3rem 4rem;
  background: var(--white-04);
  border: 1px solid rgba(247, 242, 234, 0.1);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.85;
  margin: 0 4rem;
  margin-top: 0;
}

/* ══════════════════════════════════════
   § 16  BEFORE YOU GO
══════════════════════════════════════ */
.page-genesis .byg {
  min-height: 70vh;
}
.page-genesis .byg-l {
  padding: 5rem 4rem;
}
.page-genesis .byg-l h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 2rem;
}
.page-genesis .byg-l h2 em {
  font-style: italic;
  color: var(--blush);
}
.page-genesis .byg-l p {
  font-size: 1.05rem;
  color: var(--cream-65);
  line-height: 1.88;
  margin-bottom: 1rem;
}
.page-genesis .tagline-c {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  display: block;
  margin-top: 1.25rem;
}

/* ══════════════════════════════════════
   § 17  CLOSING CTA
══════════════════════════════════════ */
.page-genesis .closing-l .cl-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}
.page-genesis .closing-l h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.page-genesis .closing-l h2 em {
  font-style: italic;
}
.page-genesis .closing-l p {
  font-size: 1.05rem;
  color: var(--cream-68);
  line-height: 1.88;
  margin-bottom: 1rem;
}
.page-genesis .closing-r {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-genesis .cta-card {
  background: var(--white-06);
  padding: 2.5rem;
  border-top: 1px solid rgba(198, 147, 78, 0.3);
}
.page-genesis .cta-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.75rem;
}
.page-genesis .cta-card > p {
  font-size: 1.05rem;
  color: rgba(247, 242, 234, 0.6);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.page-genesis .cta-note {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.28);
  display: block;
  margin-top: 1rem;
}
.page-genesis .email-row {
  display: flex;
  gap: 0.75rem;
}
.page-genesis .email-row input {
  flex: 1;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(247, 242, 234, 0.18);
  background: var(--white-06);
  color: var(--cream);
  font-family: "Poppins", sans-serif;
  font-size: 0.82rem;
  outline: none;
}
.page-genesis .email-row input::placeholder {
  color: rgba(247, 242, 234, 0.3);
}

/* ══════════════════════════════════════
   § PHOTO STRIP + FOOTER
══════════════════════════════════════ */
.page-genesis .photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 240px;
}
.page-genesis .ps-item {
  overflow: hidden;
  position: relative;
  background: var(--black);
}
.page-genesis .ps-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
  opacity: 0.75;
  display: block;
}
.page-genesis .ps-item:hover img {
  transform: scale(1.06);
  opacity: 1;
}
.page-genesis .ps-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.18);
}
.page-genesis footer {
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.25rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-genesis .foot-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.page-genesis .foot-logo em {
  font-style: italic;
  font-weight: 300;
}
.page-genesis .foot-tag {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 242, 234, 0.3);
  margin-top: 0.3rem;
}

/* ══════════════════════════════════════ */
/* ── GENESIS JOURNEY — MOBILE ── */
/* ══════════════════════════════════════ */
@media (max-width: 900px) {
  /* ── Hero padding ── */
  .page-genesis .hero__content {
    padding: 0 1rem;
  }

  /* ── Tension split ── */
  .page-genesis .tension {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-genesis .tension-l {
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--green-08);
  }
  .page-genesis .tension-r {
    padding: 3rem 2rem;
  }
  .page-genesis .tension-cta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* ── Big statement ── */
  .page-genesis .big-statement {
    padding: 4rem 2rem;
  }

  /* ── Recognition ── */
  .page-genesis .recognition-inner {
    padding: 3.5rem 2rem;
  }
  .page-genesis .identity-split {
    grid-template-columns: 1fr;
    gap: 3rem 0;
    margin: 2rem 0 0;
    padding: 2.5rem 2rem;
  }

  /* ── What It Is — two-col body ── */
  .page-genesis .what-headline-band {
    padding: 3.5rem 2rem 3rem;
  }
  .page-genesis .what-circle {
    display: none;
  }
  .page-genesis .what-body-grid {
    grid-template-columns: 1fr;
  }
  .page-genesis .what-col {
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--white-06);
  }
  .page-genesis .what-col:last-child {
    border-bottom: none;
  }
  .page-genesis .what-closing {
    padding: 0;
  }
  .page-genesis .what-closing-inner {
    padding: 2rem 2rem;
  }

  /* ── How It Works — 3-col steps ── */
  .page-genesis .how-header {
    padding: 0 2rem 3rem;
  }
  .page-genesis .how-steps {
    grid-template-columns: 1fr;
  }
  .page-genesis .how-step {
    padding: 2.5rem 2rem;
    border-right: none;
    border-bottom: 1px solid var(--green-12);
  }
  .page-genesis .how-step:last-child {
    border-bottom: none;
  }

  /* ── What's Inside — 2-col card grid ── */
  .page-genesis .inside-header {
    padding: 0 2rem 3rem;
  }
  .page-genesis .inc-grid {
    grid-template-columns: 1fr;
  }
  .page-genesis .inc-card {
    padding: 2.5rem 2rem;
  }
  .page-genesis .inc-card[style*="grid-column: span 2"] {
    grid-column: span 1 !important;
  }

  /* ── Restoration Framework — 4-col timeline ── */
  .page-genesis .framework-inner {
    padding: 0 2rem;
  }
  .page-genesis .tl-grid {
    grid-template-columns: 1fr;
  }
  .page-genesis .tl-item {
    padding: 2.5rem 2rem;
  }

  /* ── Investment ── */
  .page-genesis .invest-inner {
    padding: 0 2rem;
  }
  .page-genesis .invest-card {
    padding: 2.5rem 2rem;
    max-width: 100%;
  }

  /* ── Floral break padding ── */
  .page-genesis .floral-break-text {
    padding: 2rem 2rem;
  }

  /* ── Why Elysha — 2-col ── */
  .page-genesis .elysha {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .page-genesis .elysha-img {
    min-height: 360px;
  }
  .page-genesis .elysha-text {
    padding: 3.5rem 2rem;
  }

  /* ── Testimonial hold ── */
  .page-genesis .testi-hold {
    padding: 3rem 2rem;
  }

  /* ── Is this for you — 2-col ── */
  .page-genesis .foryou-header {
    padding: 0 2rem 3rem;
  }
  .page-genesis .foryou-cols {
    grid-template-columns: 1fr;
    padding: 0 2rem;
  }
  .page-genesis .foryou-col {
    padding: 0;
  }

  /* ── Objections — 2-col with floral ── */
  .page-genesis .obj-layout {
    grid-template-columns: 1fr;
  }
  .page-genesis .obj-content {
    padding: 3.5rem 2rem;
  }
  .page-genesis .obj-floral-col {
    height: 300px;
  }

  /* ── Six Months — 2-col zones ── */
  .page-genesis .sixmo-header {
    padding: 0 2rem 3.5rem;
  }
  .page-genesis .sixmo-title {
    white-space: normal;
  }
  .page-genesis .sixmo-zones {
    grid-template-columns: 1fr;
  }
  .page-genesis .sixmo-outcomes {
    padding: 3rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(247, 242, 234, 0.1);
  }
  .page-genesis .sixmo-audacity {
    padding: 3rem 2rem;
  }
  .page-genesis .sixmo-caveat {
    margin: 0 2rem;
    padding: 2.5rem 2rem;
  }

  /* ── Before You Go (split) ── */
  .page-genesis .byg-l {
    padding: 3rem 2rem;
  }

  /* ── Botanical panel ── */
  .page-genesis .botanical-panel {
    grid-template-columns: 1fr;
  }
  .page-genesis .botanical-panel-img {
    min-height: 200px;
  }
  .page-genesis .botanical-panel-text {
    padding: 2.5rem 2rem;
  }

  /* ── Framework with floral ── */
  .page-genesis .framework-with-floral {
    grid-template-columns: 1fr;
  }
  .page-genesis .framework-floral-col {
    min-height: 200px;
  }

  /* ── Photo strip ── */
  .page-genesis .photo-strip {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .page-genesis .ps-item {
    height: 180px;
  }

  /* ── Footer ── */
  .page-genesis footer {
    padding: 2rem 2rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  /* ── Ornament divider padding ── */
  .page-genesis .ornament-divider {
    padding: 1rem 2rem;
  }

  /* ── Rust banner inline padding ── */
  .page-genesis .floral-break[style*="padding-left: 4rem"] {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}

/* ── GENESIS JOURNEY — MOBILE OVERRIDES (SPECIFIC) ── */
@media (max-width: 900px) {
  body.page-genesis .inc-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  body.page-genesis .elysha {
    grid-template-columns: 1fr !important;
  }
  body.page-genesis .how-steps {
    grid-template-columns: 1fr !important;
  }
  /* If fit-grid exists, ensure single column */
  body.page-genesis .fit-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ══════════════════════════════════════ */
/* ── BLOG POST PAGE ── */
/* ══════════════════════════════════════ */

body.site-page .blog-content p {
  color: rgba(38, 39, 36, 0.75);
}
body.site-page .blog-content h2,
body.site-page .blog-content h3 {
  color: var(--green);
}
body.site-page .blog-content a {
  color: var(--green);
}
body.site-page .blog-content label {
  color: var(--black);
}

.blog-post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  max-height: 700px;
}
.blog-post-hero__img {
  background: #e0bfa6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.blog-post-hero__img p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(38, 39, 36, 0.35);
}
.blog-post-hero__title {
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 4rem;
  text-align: center;
}
.blog-post-hero__title h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.3;
}

.blog-body {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px) 0;
}
.blog-body .blog-inner {
  max-width: 900px;
  margin: 0 auto;
}

.blog-audio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  margin-bottom: 2rem;
}
.blog-audio .play-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--black);
}
.blog-audio .time {
  font-size: 0.8rem;
  color: var(--black-60);
  white-space: nowrap;
}
.blog-audio .progress {
  flex: 1;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  position: relative;
}
.blog-audio .controls {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(38, 39, 36, 0.5);
  font-size: 1.05rem;
}

.blog-divider {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 2.5rem 0;
}

.blog-body p {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.blog-back {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.blog-comments {
  margin-top: 2.5rem;
}
.blog-comments h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.blog-comment {
  border-top: 1px solid rgba(191, 100, 44, 0.15);
  padding: 1.25rem 0;
}
.blog-comment .comment-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.blog-comment .comment-meta strong {
  font-size: 0.85rem;
  color: var(--black);
}
.blog-comment .comment-meta span {
  font-size: 0.75rem;
  color: rgba(38, 39, 36, 0.45);
}
.blog-comment p {
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.comment-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.comment-form .form-note {
  font-size: 0.75rem;
  color: rgba(38, 39, 36, 0.5);
  margin-bottom: 1.5rem;
  text-decoration: underline;
}
.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.comment-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.comment-form label span {
  color: var(--orange);
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(38, 39, 36, 0.15);
  border-radius: 3px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--black);
}
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.comment-form button {
  margin-top: 0.75rem;
  padding: 12px 28px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

/* ══════════════════════════════════════ */
/* ── BLOG LISTING PAGE ── */
/* ══════════════════════════════════════ */

body.site-page .blog-cream p {
  color: rgba(38, 39, 36, 0.7);
}
body.site-page .blog-cream h2 {
  color: var(--gold);
}
body.site-page .blog-cream h3 {
  color: var(--green);
}
body.site-page .blog-cream a {
  color: var(--green);
}
body.site-page .blog-cream .blog-cat {
  color: var(--orange);
}
body.site-page .blog-cream .blog-placeholder {
  color: rgba(38, 39, 36, 0.35);
}

/* --- Replaced Inline Styles --- */

.hero--blog {
  background: var(--black);
}

.cta-next-step {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.services-cta {
  border-top: none;
  padding-top: 0;
}

.contact-hero {
  background: var(--black);
}

.contact-details {
  border-top: 1px solid var(--green);
  text-align: center;
}

.img-divider--flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 50vh;
}

.img-divider--flex-auto {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: auto;
  min-height: auto;
}

.genesis-hero {
  background: var(--black);
}

.big-statement-genesis {
  background: var(--orange);
}

.spaghetti-hero {
  background: var(--black);
}

.spaghetti-intro,
.spaghetti-recognition,
.spaghetti-value,
.spaghetti-fit,
.spaghetti-faq {
  background: var(--cream);
  padding-left: 4rem;
  padding-right: 4rem;
}

.spaghetti-recognition {
  padding-bottom: 0rem !important;
}

.spaghetti-banner {
  position: relative;
  overflow: hidden;
  padding-left: 4rem;
  padding-right: 4rem;
  text-align: center;
  background: var(--orange);
}

.spaghetti-before-after {
  background: var(--black);
  padding-left: 4rem;
  padding-right: 4rem;
}

.spaghetti-testimonial-banner {
  position: relative;
  overflow: hidden;
  padding-left: 4rem;
  padding-right: 4rem;
  background: var(--orange);
}

.spaghetti-audience {
  background: var(--blush);
  padding-left: 4rem;
  padding-right: 4rem;
}

.spaghetti-testimonial-second {
  background: var(--green);
  padding-left: 4rem;
  padding-right: 4rem;
}

.spaghetti-investment {
  background: var(--black);
  padding-left: 4rem;
  padding-right: 4rem;
}

.spaghetti-closing {
  background: var(--cream);
  padding: 0 4rem 5rem;
  text-align: center;
}

/* ══════════════════════════════════════ */
/* ── 5. BLOG POST ── */
/* ══════════════════════════════════════ */

/* ── Audio Player ── */
.blog-audio-player {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(31, 79, 68, 0.06);
  border: 1px solid var(--gold-15);
  border-radius: 4px;
  margin-bottom: 2rem;
}
.blog-audio-player audio {
  flex: 1;
  height: 36px;
  outline: none;
}
.blog-audio-player audio::-webkit-media-controls-panel {
  background: transparent;
}
.audio-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  white-space: nowrap;
}

/* ── Post Hero ── */
.blog-post-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
  max-height: 700px;
}
.blog-post-hero__img {
  background: #e0bfa6;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
}
.blog-post-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-post-hero__img p {
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(38, 39, 36, 0.35);
}
.blog-post-hero__title {
  background: var(--blush);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 3rem 4rem;
}
.blog-post-hero__title h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--green);
  line-height: 1.3;
}
.blog-post-hero__meta {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(38, 39, 36, 0.45);
  margin-top: 1rem;
}

/* ── Post Body ── */
.blog-body {
  background: var(--cream);
  padding: clamp(40px, 6vw, 80px) 0;
}
.blog-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ── Markdown Rendered Content ── */
.blog-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(38, 39, 36, 0.75);
  margin-bottom: 1.5rem;
}
.blog-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--green);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.blog-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--green);
  margin: 2rem 0 0.75rem;
}
.blog-content strong {
  color: var(--black);
  font-weight: 600;
}
.blog-content em {
  font-style: italic;
  color: var(--orange);
}
.blog-content a {
  color: var(--green);
  border-bottom: 1px solid var(--gold-15);
}
.blog-content a:hover {
  border-color: var(--gold);
}
.blog-content img {
  width: 100%;
  border-radius: 4px;
  margin: 2rem 0;
}
.blog-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: rgba(198, 147, 78, 0.05);
}
.blog-content blockquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0;
}
.blog-content ul,
.blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}
.blog-content ol {
  list-style: decimal;
}
.blog-content li {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(38, 39, 36, 0.75);
  margin-bottom: 0.5rem;
}
.blog-content hr {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 2.5rem 0;
}

.blog-divider {
  border: none;
  border-top: 1px solid var(--gold);
  margin: 2.5rem 0;
}
.blog-back {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
  color: var(--green);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ── Comments ── */
.blog-comments {
  margin-top: 2.5rem;
}
.blog-comments h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 1.5rem;
}
.blog-comment {
  border-top: 1px solid var(--gold-15);
  padding: 1.25rem 0;
}
.comment-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.comment-meta strong {
  font-size: 0.85rem;
  color: var(--black);
}
.comment-meta span {
  font-size: 0.75rem;
  color: rgba(38, 39, 36, 0.45);
}
.blog-comment p {
  font-size: 0.85rem !important;
  line-height: 1.7 !important;
  color: rgba(38, 39, 36, 0.75) !important;
  margin-bottom: 0 !important;
}

/* ── Comment Form ── */
.comment-form h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--green);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}
.comment-form .form-note {
  font-size: 0.75rem;
  color: rgba(38, 39, 36, 0.5);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.comment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.comment-form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.4rem;
}
.comment-form label span {
  color: var(--orange);
}
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid rgba(38, 39, 36, 0.15);
  border-radius: 3px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--black);
}
.comment-form textarea {
  min-height: 140px;
  resize: vertical;
}
.comment-form button {
  margin-top: 0.75rem;
  padding: 12px 28px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.comment-form button:hover {
  background: var(--black);
}

/* ── Loading State ── */
.post-loading {
  text-align: center;
  padding: 8rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--black-60);
  background: var(--cream);
}

@media (max-width: 768px) {
  .blog-post-hero {
    grid-template-columns: 1fr;
  }
  .blog-post-hero__img {
    min-height: 200px;
  }
  .blog-post-hero__title {
    padding: 2rem;
  }
  .comment-form .form-row {
    grid-template-columns: 1fr;
  }
}
