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

:root {
  --ink:        #1e1a18;
  --cream:      #faf8f5;
  --warm-white: #ffffff;
  --off-white:  #f5f1ec;
  --pink:       #c97a8a;
  --pink-light: #e8a8b4;
  --pink-pale:  #fdf0f2;
  --pink-border:#f0d0d6;
  --gold:       #b8963e;
  --gold-light: #d4af6a;
  --gold-pale:  #fdf8ee;
  --muted:      #7a6e68;
  --mid:        #4a3f3a;
  --border:     #e8e0d8;
  --dark-bg:    #1e1a18;
  --dark-border:#3a3330;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1;
}

.nav-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links .nav-cta {
  color: var(--pink);
  border-bottom: 1px solid var(--pink-border);
  padding-bottom: 2px;
}

.nav-links .nav-cta:hover { color: var(--gold); border-color: var(--gold-light); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(30,26,24,0.08);
  min-width: 180px;
  list-style: none;
  padding: 8px 0;
}

.has-dropdown:hover .dropdown { display: block; }

.dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.dropdown li a:hover { color: var(--ink); background: var(--off-white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--ink);
  transition: all 0.3s;
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 68px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
}

.hero-text::after {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.92;
  color: var(--ink);
  margin-bottom: 12px;
}

.hero-descriptor {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--gold);
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.hero-tagline {
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 48px;
}

.hero-tagline em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--pink);
  font-size: 1.1em;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.hero-image:hover img { transform: scale(1.03); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.btn-primary:hover { background: var(--pink); transform: translateY(-2px); }

.btn-primary.light-btn {
  background: var(--cream);
  color: var(--ink);
}

.btn-primary.light-btn:hover { background: var(--gold); color: var(--cream); }

.btn-secondary {
  display: inline-block;
  padding: 13px 32px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.btn-secondary:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.btn-text {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-light);
  padding-bottom: 2px;
  transition: color 0.2s;
  margin-top: 16px;
}

.btn-text:hover { color: var(--pink); border-color: var(--pink-light); }

.btn-cta {
  display: inline-block;
  padding: 18px 56px;
  background: var(--ink);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta:hover { background: var(--pink); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   MARQUEE
───────────────────────────────────────── */
.marquee-wrap {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-block;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 32px;
  font-weight: 400;
}

.marquee-track span::before {
  content: '✦';
  margin-right: 32px;
  color: var(--gold);
  opacity: 0.6;
}

/* ─────────────────────────────────────────
   SHARED SECTION ELEMENTS
───────────────────────────────────────── */
.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-label.light { color: var(--gold-light); }

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 48px;
}

.section-heading em {
  font-style: italic;
  color: var(--pink);
}

.section-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ─────────────────────────────────────────
   FOR YOU
───────────────────────────────────────── */
.for-you {
  padding: 120px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.card {
  background: var(--warm-white);
  padding: 48px 40px;
  transition: background 0.3s;
}

.card:hover { background: var(--off-white); }

.card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--border);
  display: block;
  margin-bottom: 24px;
  line-height: 1;
}

.card-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--mid);
}

.card-text strong {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

/* ─────────────────────────────────────────
   PULL QUOTE
───────────────────────────────────────── */
.pullquote {
  padding: 100px 80px;
  background: var(--ink);
  text-align: center;
}

.pullquote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 24px;
  font-style: italic;
}

.pullquote cite {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.pullquote-small { padding: 72px 80px; }

/* ─────────────────────────────────────────
   ABOUT TEASER (home page)
───────────────────────────────────────── */
.about-teaser {
  padding: 120px 80px;
  background: var(--off-white);
}

.about-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.about-teaser-image {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.about-teaser-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 6s ease;
}

.about-teaser-image:hover img { transform: scale(1.03); }

.about-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 32px;
}

.about-heading em { font-style: italic; color: var(--pink); }

.about-body {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 20px;
}

.about-body em { font-style: italic; color: var(--pink); }

/* ─────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────── */
.how {
  padding: 120px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 8px;
}

.how-intro {
  font-size: 16px;
  line-height: 1.85;
  color: var(--mid);
}

.how-intro strong { color: var(--ink); font-weight: 500; }
.how-intro em { font-style: italic; color: var(--pink); }

.tiers-preview { display: flex; flex-direction: column; gap: 2px; }

.tier {
  padding: 28px 32px;
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.tier:hover { border-color: var(--gold-light); }

.tier.featured {
  background: var(--ink);
  border-color: var(--ink);
}

.tier-label {
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 500;
}

.tier.featured .tier-label { color: var(--gold-light); }

.tier-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}

.tier.featured .tier-name { color: var(--cream); }

.tier-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tier.featured .tier-desc { color: rgba(250,248,245,0.65); }

.tier-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.tier.featured .tier-price { color: var(--gold-light); }

.tier-price a {
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.tiers-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 16px;
  padding: 0 4px;
}

/* ─────────────────────────────────────────
   CTA
───────────────────────────────────────── */
.cta {
  padding: 120px 80px;
  background: var(--pink-pale);
  text-align: center;
  border-top: 1px solid var(--pink-border);
}

.cta-heading {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 24px;
}

.cta-heading em { font-style: italic; color: var(--pink); }

.cta-sub {
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 520px;
  margin: 0 auto 48px;
}

.cta-note {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 20px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer {
  padding: 48px 80px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

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

.footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 13px;
  color: var(--gold);
}

.footer-tagline {
  font-size: 12px;
  color: rgba(250,248,245,0.5);
  letter-spacing: 0.1em;
  line-height: 1.8;
  text-align: center;
}

.footer-right {
  font-size: 12px;
  color: rgba(250,248,245,0.5);
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 2;
}

.footer-right a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-right a:hover { color: var(--pink-light); }

/* ─────────────────────────────────────────
   PAGE HEADER (inner pages)
───────────────────────────────────────── */
.page-header {
  min-height: 70vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.page-header-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
}

.page-header-simple {
  grid-template-columns: 1fr;
  min-height: auto;
}

.page-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 80px 80px;
  max-width: 720px;
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(48px, 5.5vw, 80px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 16px;
}

.page-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 1.8vw, 22px);
  color: var(--gold);
  margin-bottom: 0;
}

.page-intro {
  font-size: 17px;
  line-height: 1.8;
  color: var(--mid);
  max-width: 560px;
  margin-bottom: 40px;
  margin-top: 24px;
}

.page-header-image {
  overflow: hidden;
}

.page-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─────────────────────────────────────────
   CREDENTIALS BAR
───────────────────────────────────────── */
.creds-bar {
  background: var(--ink);
  padding: 16px 80px;
  overflow: hidden;
}

.creds-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  align-items: center;
  justify-content: center;
}

.creds-inner span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,248,245,0.55);
  font-weight: 400;
  white-space: nowrap;
}

.creds-inner em { font-style: italic; text-transform: none; letter-spacing: 0.05em; }

.cred-dot { color: var(--gold) !important; opacity: 0.6; font-size: 8px !important; }

/* ─────────────────────────────────────────
   STORY (about page)
───────────────────────────────────────── */
.story {
  padding: 100px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.story-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.story-opener {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 40px;
}

.story-body {
  font-size: 16px;
  line-height: 1.95;
  color: var(--mid);
  margin-bottom: 24px;
}

.story-continued {
  padding: 0 80px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.story-continued-inner {
  max-width: 720px;
  margin: 0 auto;
}

.story-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 56px 0;
}

.story-kicker {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--ink);
  margin-bottom: 32px;
}

.story-closing {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 40px 48px;
  margin-top: 40px;
  font-size: 16px;
  line-height: 1.95;
  color: var(--mid);
}

.story-sign {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold);
}

.about-photo-break {
  padding: 0 80px 80px;
  max-width: 800px;
  margin: 0 auto;
}

.about-photo-break img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  object-position: center 30%;
}

/* ─────────────────────────────────────────
   OFFERING SECTIONS (work page)
───────────────────────────────────────── */
.offering-section {
  padding: 100px 80px;
}

.offering-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.dark-section {
  background: var(--dark-bg);
}

.alt-section {
  background: var(--off-white);
}

.offering-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  color: var(--ink);
  margin-bottom: 16px;
}

.offering-title.light { color: var(--cream); }

.offering-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--pink);
  margin-bottom: 40px;
}

.offering-tagline.light { color: var(--pink-light); }

.offering-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 40px;
}

.offering-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--mid);
  max-width: 680px;
  margin-bottom: 20px;
}

.offering-body.light { color: rgba(250,248,245,0.7); }

.offering-includes {
  margin: 40px 0;
  padding: 32px 40px;
  border: 1px solid var(--dark-border);
}

.includes-title {
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.includes-title.light { color: var(--gold-light); }

.offering-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offering-includes li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(250,248,245,0.7);
  padding-left: 20px;
  position: relative;
}

.offering-includes li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 9px;
  top: 5px;
}

.offering-includes li em { font-style: italic; }

/* ABR Framework */
.offering-framework {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 40px 0;
}

.framework-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  transition: background 0.2s;
}

.framework-item:hover { background: rgba(255,255,255,0.07); }

.framework-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.framework-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(250,248,245,0.6);
}

/* Price block */
.offering-price-block {
  margin: 48px 0 32px;
  padding: 32px 40px;
  border: 1px solid var(--gold);
  display: inline-block;
  min-width: 320px;
}

.price-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 8px;
}

.price-alt {
  font-size: 14px;
  color: rgba(250,248,245,0.55);
}

.price-save {
  color: var(--gold-light);
  font-style: italic;
}

/* ─────────────────────────────────────────
   RETAINERS GRID
───────────────────────────────────────── */
.retainers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 32px;
}

.retainer-card {
  background: var(--warm-white);
  padding: 40px 36px;
  position: relative;
  transition: background 0.2s;
}

.retainer-card:hover { background: var(--off-white); }

.retainer-card.featured {
  background: var(--ink);
}

.retainer-card.featured:hover { background: var(--mid); }

.retainer-badge {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
  font-weight: 500;
}

.retainer-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1;
}

.retainer-card.featured .retainer-tag { color: var(--cream); }

.retainer-price {
  font-size: 20px;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 24px;
}

.retainer-card.featured .retainer-price { color: var(--gold-light); }

.retainer-divider {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.retainer-card.featured .retainer-divider { background: var(--dark-border); }

.retainer-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.retainer-includes li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--mid);
  padding-left: 16px;
  position: relative;
}

.retainer-includes li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 12px;
}

.retainer-card.featured .retainer-includes li { color: rgba(250,248,245,0.65); }

.retainer-for {
  font-size: 13px;
  font-style: italic;
  color: var(--muted);
  line-height: 1.6;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.retainer-card.featured .retainer-for {
  color: rgba(250,248,245,0.4);
  border-top-color: var(--dark-border);
}

.retainers-note {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────
   READINGS
───────────────────────────────────────── */
.readings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.reading-card {
  background: var(--warm-white);
  padding: 48px 44px;
  transition: background 0.2s;
}

.reading-card:hover { background: var(--cream); }

.reading-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
}

.reading-price {
  font-size: 18px;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 24px;
}

.reading-divider {
  width: 32px;
  height: 1px;
  background: var(--gold-light);
  margin-bottom: 24px;
}

.reading-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--mid);
  margin-bottom: 4px;
}

.reading-note {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  margin-top: 20px;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   MOON CIRCLES
───────────────────────────────────────── */
.moon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.moon-card {
  background: var(--warm-white);
  padding: 44px 40px;
  transition: background 0.2s;
}

.moon-card:hover { background: var(--off-white); }

.moon-card.featured {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
}

.moon-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.moon-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.moon-price {
  font-size: 16px;
  font-weight: 500;
  color: var(--pink);
  margin-bottom: 20px;
}

.moon-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 16px;
}

.moon-note {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
  line-height: 1.6;
}

/* ─────────────────────────────────────────
   SUBSTACK
───────────────────────────────────────── */
.substack-section {
  padding: 80px;
  background: var(--ink);
  text-align: center;
}

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

.substack-icon {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--gold);
  display: block;
}

.substack-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 20px;
}

.substack-body {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(250,248,245,0.6);
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s ease both;
}

.animate-fade {
  opacity: 0;
  animation: fadeIn 1.2s ease both;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
.delay-6 { animation-delay: 0.9s; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 60vh; }
  .hero-text { padding: 60px 32px; }
  .hero-text::after { display: none; }
  .for-you, .how, .about-teaser { padding: 80px 32px; }
  .cards-grid, .how-grid, .about-teaser-inner { grid-template-columns: 1fr; }
  .how-grid { gap: 48px; }
  .about-teaser-inner { gap: 48px; }
  .pullquote, .cta { padding: 80px 32px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px 32px; }
  .footer-right { text-align: center; }
  .page-header { grid-template-columns: 1fr; min-height: auto; }
  .page-header-inner { padding: 80px 32px; }
  .page-header-image { height: 50vh; }
  .page-header-text { padding: 80px 32px; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-image { position: static; aspect-ratio: 4/3; }
  .story, .story-continued { padding: 60px 32px; }
  .creds-bar { padding: 16px 32px; }
  .offering-section { padding: 80px 32px; }
  .retainers-grid, .readings-grid, .moon-grid { grid-template-columns: 1fr; }
  .framework-item { grid-template-columns: 80px 1fr; gap: 20px; }
  .about-photo-break { padding: 0 32px 60px; }
  .substack-section { padding: 60px 32px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0; bottom: 0;
    background: var(--warm-white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 199;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { border: 1px solid var(--pink-border); padding: 12px 32px; }
  .nav-toggle { display: flex; }
  .dropdown { position: static; transform: none; box-shadow: none; border: none; }
  .has-dropdown:hover .dropdown { display: none; }
  .has-dropdown.open .dropdown { display: block; }
}
