/* ============================================================
   Your Voice Within: Site Styles
   Dark, minimal, restrained luxury. Navy backgrounds, ivory
   text, gold for structure/labels/CTAs, royal-glow blue used
   only for the ambient light behind the crystal, nowhere else.
   ============================================================ */

:root {
  --navy:        #070E18;
  --navy-mid:    #0E1B2E;
  --ivory:       #FAF6EE;
  --gold:        #C9A96E;
  --gold-soft:   #E4D3A8;
  --royal-glow:  #5B8DF0;
  --muted:       #8A97A8;

  /* Legacy tokens still used on interior pages not yet rebuilt to the new spec */
  --ivory-card:  #FFFFFF;
  --charcoal:    #2B2B29;
  --charcoal-soft: #5C5A54;

  --line-dark:   rgba(250, 246, 238, 0.14);
  --line-light:  rgba(43, 43, 41, 0.12);
  --line-gold:   rgba(201, 169, 110, 0.25);

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; border-radius: 0 !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.narrow { max-width: 720px; }
.center { text-align: center; }

img { max-width: 100%; display: block; }

.visually-hidden {
  position: absolute;
  width: 0; height: 0;
  overflow: hidden;
}

a { color: inherit; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(10px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 300;
  margin: 0 0 1rem;
}
.eyebrow.on-navy { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--navy);
  margin: 0 0 1.2rem;
  line-height: 1.25;
}
.section-title.on-navy { color: var(--ivory); }

.body-text {
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 62ch;
  margin: 0 auto 1rem;
}
.body-text.on-navy { color: rgba(250, 246, 238, 0.72); }

.quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--navy);
  line-height: 1.5;
  margin: 0 0 1.6rem;
}

.voice-word { color: var(--gold-soft); font-style: italic; }

.divider {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.4em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.82rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 17px 40px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
}
.btn:hover { background: var(--gold); color: var(--navy); }

.btn-light {
  border-color: rgba(250, 246, 238, 0.45);
  color: var(--ivory);
}
.btn-light:hover { background: var(--ivory); color: var(--navy); border-color: var(--ivory); }

.btn-small {
  padding: 11px 24px;
  font-size: 0.72rem;
}

/* Deprecated aliases kept so interior pages built before this token update still render sensibly. */
.btn-primary, .btn-gold, .btn-outline, .btn-outline-light { background: transparent; border: 1px solid var(--gold); color: var(--gold); box-shadow: none; }
.btn-primary:hover, .btn-gold:hover, .btn-outline:hover, .btn-outline-light:hover { background: var(--gold); color: var(--navy); transform: none; }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 14, 24, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s ease, background 0.4s ease;
}
.site-nav.scrolled { border-bottom: 1px solid var(--line-gold); background: var(--navy); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ivory);
}
.brand-mark { color: var(--gold); display: flex; }
.brand-word {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a:not(.btn) {
  color: rgba(250, 246, 238, 0.7);
  text-decoration: none;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 300;
}
.nav-links a:not(.btn):hover,
.nav-links a.active:not(.btn) { color: var(--gold); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ivory);
  cursor: pointer;
  padding: 6px;
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid var(--line-gold);
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a:not(.btn) {
    width: 100%;
    padding: 16px 28px;
    border-bottom: 1px solid var(--line-dark);
  }
  .nav-links .btn { margin: 18px 28px 22px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--navy);
  padding: 84px 0 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 70% at 50% 0%, rgba(91, 141, 240, 0.14), rgba(7, 14, 24, 0) 70%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero .page-kicker {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: var(--ivory);
  margin: 0 0 1.1rem;
  line-height: 1.15;
}
.page-hero p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(250, 246, 238, 0.7);
  max-width: 52ch;
  margin: 0 auto;
}

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding-top: 64px;
  padding-bottom: 100px;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 55% at 50% 24%, rgba(91, 141, 240, 0.24), rgba(7, 14, 24, 0) 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Official crystal-in-forest logo, used sparingly (hero + one closing moment only). */
.crystal-wrap {
  max-width: 400px;
  width: 88%;
  margin: 0 auto 2.4rem;
  animation: crystalGlow 6s ease-in-out infinite;
}
.crystal-art { width: 100%; height: auto; }
@keyframes crystalGlow {
  0%, 100% { filter: brightness(1) drop-shadow(0 0 24px rgba(91, 141, 240, 0.15)); }
  50% { filter: brightness(1.05) drop-shadow(0 0 40px rgba(91, 141, 240, 0.3)); }
}

.eyebrow-center { text-align: center; }

.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 5.4vw, 3.7rem);
  color: var(--ivory);
  line-height: 1.2;
  margin: 0 auto 1.4rem;
  max-width: 16ch;
}
.hero-title .voice-word { color: var(--gold-soft); font-style: italic; }

.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(250, 246, 238, 0.7);
  max-width: 44ch;
  margin: 0 auto 2.6rem;
}

.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.hero-more {
  color: rgba(250, 246, 238, 0.55);
  font-size: 0.85rem;
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 2px;
}
.hero-more:hover { color: var(--gold); }

/* ---------- Video frame (vertical 9:16 — recorded as a phone/Short, not widescreen) ---------- */
.video-frame {
  max-width: 400px;
  width: 88%;
  margin: 0 auto 2.8rem;
  position: relative;
}
.video-frame-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(60% 70% at 50% 50%, rgba(201, 169, 110, 0.16), rgba(7, 14, 24, 0) 72%);
  animation: videoGlowPulse 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes videoGlowPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
.video-box {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 */
  height: 0;
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--line-gold);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.video-box iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 2;
  pointer-events: none;
}
.video-corner.tl { top: 10px; left: 10px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.video-corner.tr { top: 10px; right: 10px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.video-corner.bl { bottom: 10px; left: 10px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.video-corner.br { bottom: 10px; right: 10px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-tight { padding: 80px 0; }
.section-alt { background: var(--ivory-card); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.section-navy { background: var(--navy); color: var(--ivory); }
.section-navy-mid { background: var(--navy-mid); color: var(--ivory); }

/* ---------- Mission strip ---------- */
.mission-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--navy);
  max-width: 46ch;
  margin: 0 auto;
  line-height: 1.6;
}

/* ---------- Manifesto ---------- */
.manifesto { max-width: 640px; margin: 0 auto; text-align: center; }
.manifesto-lead {
  font-family: var(--serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--ivory);
  margin: 0 0 2rem;
  line-height: 1.4;
}
.manifesto-list { display: flex; flex-direction: column; gap: 14px; }
.manifesto-list p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  color: var(--gold-soft);
  margin: 0;
  line-height: 1.7;
}
.manifesto-divider {
  width: 1px;
  height: 46px;
  background: var(--gold);
  opacity: 0.5;
  margin: 2.6rem auto 0;
}

/* ---------- About (homepage, with photo) ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }
.about-photo-frame {
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-gold);
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-frame p {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-bio p { font-weight: 300; }

/* Book cover frame reuses .about-photo-frame, just taller (book ratio, not portrait photo ratio) */
.book-cover-frame { aspect-ratio: 2 / 3; }

/* ---------- Recognition (letter-style) ---------- */
.recognition { max-width: 620px; margin: 0 auto; text-align: center; }
.recognition p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  color: rgba(250, 246, 238, 0.82);
  line-height: 1.8;
  margin: 0 0 1.4rem;
}
.recognition p.emph {
  color: var(--gold-soft);
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  margin-top: 1.8rem;
}

/* ---------- Life lists (Is This You / What Changes) ---------- */
.life-list {
  max-width: 760px;
  margin: 2.8rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}
.life-list-item {
  display: flex;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-gold);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(250, 246, 238, 0.88);
}
.life-list-item::before {
  content: '\2014';
  color: var(--gold);
  flex-shrink: 0;
}
.life-lead {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  color: var(--gold-soft);
  text-align: center;
  margin: 0;
}

/* ---------- Why This Works ---------- */
.why-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  text-align: left;
}
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }
.why-col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold-soft);
  margin: 0 0 14px;
}
.why-col p {
  font-weight: 300;
  color: rgba(250, 246, 238, 0.72);
  margin: 0 0 14px;
  line-height: 1.85;
}

/* ---------- Cards grid (legacy, interior pages) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr; }
}
.card {
  background: var(--ivory-card);
  border: 1px solid var(--line-light);
  border-top: 3px solid var(--gold);
  padding: 40px 32px;
  text-align: left;
}
.card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.card p {
  font-weight: 300;
  font-size: 0.98rem;
  color: var(--charcoal-soft);
  margin: 0 0 20px;
}
.card .card-cta {
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.card .card-cta:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* Gold text link for use on light/ivory backgrounds (the ivory-toned .hero-more is for navy backgrounds only) */
.link-gold {
  font-size: 0.9rem;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}
.link-gold:hover { color: var(--gold-soft); border-color: var(--gold-soft); }

/* Small caption-style price/reservation note, placed right at a booking action.
   Uses --royal-glow deliberately here per Danielle's explicit request; everywhere
   else that color stays reserved for the crystal glow only. */
.price-note {
  font-size: 0.82rem;
  color: var(--royal-glow);
  margin: 0 0 22px;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- FAQ (plain static list, not an accordion) ---------- */
.faq-list { margin-top: 2.6rem; display: flex; flex-direction: column; }
.faq-item { padding: 32px 0; border-top: 1px solid var(--line-light); text-align: left; }
.faq-item:last-child { border-bottom: 1px solid var(--line-light); }
.faq-item h3 { font-family: var(--serif); font-weight: 400; font-size: 1.3rem; color: var(--navy); margin: 0 0 10px; }
.faq-item p { font-weight: 300; color: var(--charcoal-soft); margin: 0; }

/* ---------- Phase / program blocks ---------- */
.phase-list { margin-top: 3.4rem; display: flex; flex-direction: column; gap: 0; }
.phase {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 36px;
  padding: 44px 0;
  border-top: 1px solid var(--line-light);
  text-align: left;
}
.phase:last-child { border-bottom: 1px solid var(--line-light); }
@media (max-width: 700px) {
  .phase { grid-template-columns: 1fr; gap: 14px; }
}
.phase-weeks {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.phase h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--navy);
  margin: 0 0 10px;
}
.phase p { font-weight: 300; color: var(--charcoal-soft); margin: 0 0 10px; max-width: 62ch; }
.phase .phase-question {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.08rem;
  margin-top: 14px;
}

/* ---------- Condensed phase row (homepage) ---------- */
.phase-condensed-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
@media (max-width: 860px) { .phase-condensed-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .phase-condensed-grid { grid-template-columns: 1fr; } }
.phase-condensed {
  background: var(--navy);
  padding: 38px 28px;
  text-align: left;
}
.phase-condensed .phase-weeks { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.08em; }
.phase-condensed h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ivory);
  margin: 10px 0 12px;
}
.phase-condensed p { font-weight: 300; font-size: 0.92rem; color: rgba(250, 246, 238, 0.65); margin: 0; }

/* ---------- Included list ---------- */
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 40px;
  margin-top: 2.6rem;
  text-align: left;
}
@media (max-width: 700px) { .included-grid { grid-template-columns: 1fr; } }
.included-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.included-mark {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.3;
}
.included-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 0 0 4px;
}
.included-item p { margin: 0; font-weight: 300; color: var(--charcoal-soft); font-size: 0.96rem; }

/* ---------- Work-with-me tiers ---------- */
.tier-stack { display: flex; flex-direction: column; gap: 26px; margin-top: 3.2rem; }
.tier {
  background: var(--ivory-card);
  border: 1px solid var(--line-light);
  padding: 48px 44px;
  text-align: left;
}
.tier.tier-featured { border-top: 3px solid var(--gold); }
.tier.tier-standard { border-top: 3px solid var(--gold); }
.tier-tag {
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--gold);
}
.tier h3 { font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--navy); margin: 0 0 12px; }
.tier .tier-subtitle { font-family: var(--serif); font-style: italic; color: var(--charcoal-soft); margin: 0 0 18px; font-size: 1.05rem; }
.tier .tier-copy { font-weight: 300; color: var(--charcoal-soft); max-width: 62ch; margin: 0 0 24px; }
.tier .tier-actions { display: flex; flex-wrap: wrap; gap: 14px; }

@media (max-width: 640px) { .tier { padding: 36px 26px; } }

/* ---------- Letter / prose sections (legacy, interior pages) ---------- */
.letter { max-width: 640px; margin: 0 auto; text-align: left; }
.letter p { font-weight: 300; font-size: 1.08rem; color: var(--charcoal-soft); margin: 0 0 1.3rem; line-height: 1.85; }
.letter p.emph { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 1.25rem; color: var(--navy); }

/* ---------- Ways to Start (homepage tiers) ---------- */
.ways-grid {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-gold);
  border: 1px solid var(--line-gold);
}
@media (max-width: 800px) { .ways-grid { grid-template-columns: 1fr; } }
.way {
  background: var(--navy);
  padding: 44px 34px;
  text-align: left;
  border-top: 2px solid transparent;
}
.way.way-featured {
  background: var(--navy-mid);
  border-top: 2px solid var(--gold);
  position: relative;
}
.way-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}
.way.way-featured .way-tag { color: var(--gold-soft); }
.way h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ivory);
  margin: 0 0 12px;
}
.way p.way-copy {
  font-weight: 300;
  font-size: 0.95rem;
  color: rgba(250, 246, 238, 0.65);
  margin: 0 0 22px;
  line-height: 1.7;
}
.way .hero-more { font-size: 0.82rem; }

/* ---------- Testimonial ---------- */
.testimonial { max-width: 720px; margin: 0 auto; text-align: center; }
.testimonial blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--ivory);
  line-height: 1.6;
  margin: 0 0 1.6rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.testimonial-placeholder {
  border: 1px dashed var(--line-gold);
  padding: 40px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Promise card ---------- */
.promise-card {
  background: var(--navy);
  color: var(--ivory);
  padding: 64px 40px;
  text-align: center;
  border: 1px solid var(--line-gold);
}
.promise-title { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 1.9rem; color: var(--gold-soft); margin: 0 0 22px; }
.promise-line { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 1.1rem; margin: 0 0 8px; color: rgba(250,246,238,0.9); }
.promise-signature { margin-top: 24px; font-size: 0.76rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--ivory-card);
  border: 1px solid var(--line-light);
  padding: 44px 40px;
  text-align: left;
  max-width: 560px;
  margin: 3rem auto 0;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row textarea {
  width: 100%;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  padding: 13px 16px;
  border: 1px solid var(--line-light);
  background: var(--ivory);
  color: var(--charcoal);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: 0.85rem; color: var(--charcoal-soft); margin-top: 14px; }
.form-success {
  display: none;
  background: rgba(201, 169, 110, 0.08);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  padding: 16px 18px;
  margin-top: 20px;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

/* ---------- Fine print ---------- */
.fine-print { margin-top: 1.4rem; font-size: 0.85rem; color: var(--charcoal-soft); opacity: 0.85; }
.fine-print.on-navy { color: rgba(250,246,238,0.55); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy);
  color: var(--ivory);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(55% 60% at 50% 40%, rgba(91, 141, 240, 0.18), rgba(7, 14, 24, 0) 75%);
  pointer-events: none;
}
.cta-band .wrap { position: relative; z-index: 1; }

/* ---------- Soft CTA (mid-page) ---------- */
.cta-soft {
  background: var(--navy);
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.cta-soft p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  color: rgba(250, 246, 238, 0.8);
  margin: 0 0 1.8rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(250, 246, 238, 0.7);
  padding: 60px 0 44px;
  border-top: 1px solid var(--line-gold);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.footer-logo { width: 44px; height: auto; margin: 0 0 18px; opacity: 0.9; }
.footer-brand { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: var(--ivory); margin: 0; }
.footer-tagline { font-size: 0.82rem; font-style: italic; font-family: var(--serif); color: var(--gold-soft); margin: 4px 0 22px; }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; margin-bottom: 22px; }
.footer-links a { color: rgba(250, 246, 238, 0.6); text-decoration: none; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: rgba(250, 246, 238, 0.4); margin: 0; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
