/* ═══════════════════════════════════════════════════
   Within Center — shared design system
   Used by hub + package pages under /ceremonial-ketamine/
   ═══════════════════════════════════════════════════ */

:root {
  --gold: #c9943e;
  --gold-dark: #a67a2e;
  --gold-glow: rgba(201,148,62,0.15);
  --brown: #6b4c3b;
  --grey: #6b6569;
  --dark: #1c1618;
  --cream: #faf8f5;
  --white: #ffffff;
  --border: rgba(0,0,0,0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --radius: 14px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ─────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.6rem 3rem;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background 0.4s, padding 0.3s, border-color 0.3s;
}
.site-nav.scrolled { padding: 1.1rem 3rem; }
/* flex+center so the inline-flex .menu-toggle stays vertically centered in
 * the row regardless of font / zoom — matches the within homepage rule. */
.nav-left {
  justify-self: start;
  display: flex;
  align-items: center;
}
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: none; border: none; cursor: pointer;
  font-family: inherit;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0;
  transition: color 0.3s;
}
.menu-toggle:hover { color: var(--gold); }
.menu-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.menu-toggle-bars span {
  display: block;
  height: 1.5px;
  width: 100%;
  background: currentColor;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-brand {
  justify-self: center;
  text-align: center;
  display: block;
}
.nav-brand-mark {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--grey);
}

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-right a {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s;
}
.nav-right a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .site-nav { padding: 1.1rem 1.25rem; }
  /* Without this mobile-scoped override, the unscoped `.site-nav.scrolled
   * { padding: 1.1rem 3rem }` above wins on mobile (higher specificity than
   * a single-class media-query rule), and the horizontal padding jumps from
   * 1.25rem to 3rem the moment scrollY crosses 80, sliding the hamburger
   * ~28px to the right. Matches the within homepage rule. */
  .site-nav.scrolled { padding: 0.9rem 1.25rem; }
  .nav-brand-mark { font-size: 1.05rem; letter-spacing: 0.14em; }
  .nav-brand-sub { font-size: 0.48rem; }
  .menu-label, .nav-right a.secondary-cta { display: none; }
  .nav-right { gap: 1rem; }
  .nav-right a { font-size: 0.56rem; letter-spacing: 0.18em; }
}

/* ── MENU PANEL ─────────────────────────────────── */
.menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(28,22,24,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}
.menu-backdrop.open { opacity: 1; visibility: visible; }
.menu-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(380px, 34vw);
  background: #f5f1ea;
  z-index: 160;
  transform: translateX(-100%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 9rem 0 3rem;
  overflow-y: auto;
  border-right: 1px solid rgba(0,0,0,0.05);
}
.menu-panel.open { transform: translateX(0); }
.menu-panel ul { list-style: none; padding: 0; margin: 0; }
.menu-panel li { border-bottom: 1px solid rgba(28,22,24,0.08); }
.menu-panel li:first-child { border-top: 1px solid rgba(28,22,24,0.08); }
.menu-panel a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
}
.menu-panel a::after {
  content: '›';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--grey);
  transition: transform 0.3s, color 0.3s;
}
.menu-panel a:hover {
  color: var(--gold);
  padding-left: 4rem;
  background: rgba(201,148,62,0.05);
}
.menu-panel a:hover::after { color: var(--gold); transform: translateX(6px); }
.menu-panel li.has-sub.active > a { color: var(--gold); background: rgba(201,148,62,0.06); }
.menu-panel li.has-sub.active > a::after { color: var(--gold); transform: translateX(6px); }

/* ── SUBMENU (slides out right of primary panel) ──── */
.menu-sub {
  position: fixed;
  top: 0; bottom: 0;
  left: -500px;
  width: min(340px, 30vw);
  background: #ede6d9;
  z-index: 155;
  padding: 9rem 0 3rem;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: left 0.55s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.4s ease;
  border-right: 1px solid rgba(0,0,0,0.08);
  box-shadow: 2px 0 24px rgba(28,22,24,0.08);
}
.menu-sub.open {
  left: min(380px, 34vw);
  opacity: 1;
  pointer-events: auto;
}
.menu-sub ul { list-style: none; padding: 0; margin: 0; }
.menu-sub li { border-bottom: 1px solid rgba(28,22,24,0.08); }
.menu-sub li:first-child { border-top: 1px solid rgba(28,22,24,0.08); }
.menu-sub a {
  display: block;
  padding: 1.35rem 3rem;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.3s, padding-left 0.3s, background 0.3s;
}
.menu-sub a.sub-lead {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 400;
  color: var(--dark);
}
.menu-sub a::after {
  content: '›';
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--grey);
  transition: transform 0.3s, color 0.3s;
}
.menu-sub a:hover {
  color: var(--gold);
  padding-left: 3.5rem;
  background: rgba(201,148,62,0.05);
}
.menu-sub a:hover::after { color: var(--gold); transform: translateY(-50%) translateX(5px); }
.menu-sub .sub-header {
  display: block;
  padding: 1rem 3rem;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.menu-sub a .sub-tagline {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
  color: var(--grey);
  margin-top: 0.15rem;
}
.menu-panel-foot {
  padding: 3rem 3.5rem 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--grey);
  line-height: 1.6;
}
.site-nav.menu-is-open {
  background: rgba(245,241,234,0.98);
  z-index: 170;
}
.site-nav.menu-is-open .menu-toggle-bars span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.site-nav.menu-is-open .menu-toggle-bars span:nth-child(2) { opacity: 0; }
.site-nav.menu-is-open .menu-toggle-bars span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.site-nav.menu-is-open .menu-label::before { content: 'Close'; }
/* Label flows naturally inside the .menu-toggle inline-flex row.
 * min-width reserves space for the wider "Close" string so the button
 * doesn't reflow when toggled. Matches the within homepage pattern;
 * replaces the old `visibility: hidden; position: absolute` rendering
 * that landed "Menu" at top:0 of an empty 0-width relative parent. */
.menu-label::before { content: 'Menu'; }
.menu-label {
  display: inline-block;
  min-width: 3.6em;
  white-space: nowrap;
  text-align: left;
}
/* Mobile: drop the label entirely so just the hamburger remains.
 * Late-in-file media query so it wins over the inline-block declaration
 * above at narrow viewports (same-specificity, source order decides). */
@media (max-width: 900px) {
  .menu-label { display: none; }
}

/* ── "WE WORK WITH" condition strip (above medical disclaimer) ── */
.conditions-strip {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.conditions-strip .conditions-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.conditions-strip a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .conditions-strip {
    padding: 0.9rem 1rem;
    gap: 0.6rem 1rem;
  }
  .conditions-strip .conditions-label {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 0.1rem;
  }
  .conditions-strip a {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
}

/* Back button: hidden on desktop, shown on mobile */
.menu-sub-back {
  display: none;
}

@media (max-width: 768px) {
  .menu-panel { width: 100%; padding-top: 7rem; }
  .menu-panel a { padding: 1.3rem 1.5rem; font-size: 0.72rem; }
  .menu-panel a:hover { padding-left: 2rem; }
  .menu-panel-foot { padding: 2.5rem 1.5rem 1rem; }
  /* Hidden state: slide off-screen left; open state: cover full panel */
  .menu-sub { left: -100%; width: 100%; padding-top: 7rem; z-index: 165; }
  .menu-sub.open { left: 0; }
  .menu-sub a { padding: 1.2rem 1.5rem; font-size: 0.68rem; }
  .menu-sub a:hover { padding-left: 2rem; }
  /* Back button visible on mobile */
  .menu-sub-back {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 1.15rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--grey);
    cursor: pointer;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(28,22,24,0.08);
    transition: color 0.25s;
  }
  .menu-sub-back:hover { color: var(--gold); }
  .menu-sub-back::before {
    content: '‹';
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
  }
  /* Hide long nav link that's already in the menu panel */
  .nav-right a:not(.secondary-cta) { display: none; }
}
body.menu-open { overflow: hidden; }

/* ── PAGE HERO (smaller than homepage hero) ─────── */
.page-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--dark);
  padding: 9rem 2rem 5rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,22,24,0.5) 0%, rgba(28,22,24,0.65) 50%, rgba(28,22,24,0.9) 100%);
  z-index: 1;
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 780px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeup 1.4s 0.3s ease-out forwards;
}
@keyframes fadeup { to { opacity: 1; transform: translateY(0); } }
.page-hero-eyebrow {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}
.page-hero p.lead {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* ── LAYOUT ─────────────────────────────────────── */
.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 2rem; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }

/* ── SECTION HEADERS ───────────────────────────── */
.s-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.s-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  color: var(--dark);
  margin-bottom: 0.75rem;
  line-height: 1.25;
  font-weight: 700;
}
.s-desc {
  font-size: 0.95rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.85;
}
.s-desc.centered { margin-left: auto; margin-right: auto; text-align: center; }

/* ── PROSE (long-form article copy) ─────────────── */
.prose {
  max-width: 720px;
  margin: 0 auto;
}
.prose p {
  font-size: 0.98rem;
  line-height: 1.95;
  color: var(--grey);
  margin-bottom: 1.4rem;
}
.prose p:first-child::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 400;
  color: var(--gold);
  float: left;
  line-height: 0.95;
  margin: 0.3rem 0.6rem 0 0;
}
.prose h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  color: var(--dark);
  margin: 2.5rem 0 1rem;
  font-weight: 700;
}
.prose h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  color: var(--dark);
  margin: 1.75rem 0 0.75rem;
  font-weight: 700;
}

/* ── PACKAGE CARDS (hub grid) ───────────────────── */
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}
.package-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,148,62,0.3);
}
.package-card.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,148,62,0.12);
}
.package-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.package-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.package-sessions {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 0.88rem;
  color: var(--gold);
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.package-who {
  font-size: 0.86rem;
  color: var(--grey);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.package-price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.package-price-label {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 1.5rem;
  display: block;
}
.package-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  transition: gap 0.25s, color 0.25s;
}
.package-link::after {
  content: '›';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  line-height: 0.8;
  transition: transform 0.25s;
}
.package-link:hover { color: var(--gold-dark); }
.package-link:hover::after { transform: translateX(4px); }
.package-retreat-note {
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 0.8rem;
  font-size: 0.72rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .package-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .package-grid { grid-template-columns: 1fr; }
}

/* ── PACKAGE PAGE HEADER ────────────────────────── */
.pkg-header {
  background: var(--white);
  padding: 7rem 2rem 4.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.pkg-header .s-eyebrow { color: var(--gold); }
.pkg-header h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--dark);
  margin: 0.5rem 0 0.75rem;
  line-height: 1.1;
}
.pkg-header .tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 2rem;
}
.pkg-price-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
  justify-content: center;
}
.pkg-price-row .price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.pkg-price-row .label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ── PACKAGE SECTIONS ──────────────────────────── */
.pkg-section {
  padding: 5rem 2rem;
}
.pkg-section.bg-cream { background: var(--cream); }
.pkg-section.bg-white { background: var(--white); }
.pkg-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.1rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  font-weight: 700;
  text-align: center;
}
.pkg-section .section-eyebrow {
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* Included list */
.included-list {
  max-width: 620px;
  margin: 2.5rem auto 0;
  list-style: none;
  padding: 0;
}
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}
.included-list li:last-child { border-bottom: none; }
.included-list li::before {
  content: '◦';
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: -0.1rem;
}
.included-list li strong {
  color: var(--dark);
  font-weight: 600;
  margin-right: 0.25rem;
}

/* Protocol / steps — horizontal cards with icons */
.protocol-list {
  max-width: 900px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
  counter-reset: step;
}
.protocol-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0.5rem;
}
.protocol-step .step-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 148, 62, 0.08);
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}
.protocol-step .step-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.protocol-step::before {
  display: none;
}
.protocol-step h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--dark);
}
.protocol-step p {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .protocol-list { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}
@media (max-width: 480px) {
  .protocol-list { grid-template-columns: repeat(2, 1fr); gap: 1rem 0.75rem; }
  .protocol-step h3 { font-size: 1.05rem; }
}

/* Numbered single-row variant (package pages) */
.protocol-list--numbered {
  max-width: 1100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
}
.protocol-list--numbered .protocol-step {
  flex: 1 1 0;
  min-width: 140px;
  max-width: 200px;
}
.protocol-list--numbered .protocol-step .step-icon { display: none; }
.protocol-list--numbered .protocol-step::before {
  display: block;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.protocol-list--numbered .protocol-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .protocol-list--numbered { gap: 1.5rem 1rem; }
  .protocol-list--numbered .protocol-step { min-width: 120px; }
}
@media (max-width: 480px) {
  .protocol-list--numbered .protocol-step { min-width: 100px; flex: 0 1 calc(50% - 1rem); max-width: none; }
}

/* Testimonial / quote */
.pkg-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  color: var(--brown);
  line-height: 1.7;
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pkg-quote-attr {
  display: block;
  margin-top: 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  font-style: normal;
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 280px;
}
.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .photo-strip { height: 200px; }
}

/* Included grid */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.included-icon {
  width: 32px;
  height: 32px;
  color: var(--gold);
  margin-bottom: 1rem;
}
.included-item h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.included-item p {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.65;
}
@media (max-width: 700px) {
  .included-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .included-grid { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1.75rem 0;
  list-style: none;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--dark);
  border-bottom: 2px solid var(--dark);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1.5rem;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.8;
  padding: 0 0 1.75rem;
  margin: 0;
}

/* ── FINAL CTA SECTION ────────────────────────────
 * Full-width "Begin Your Journey / Book a Call" treatment used at the
 * bottom of within-center subpages. Was defined inline on contact/;
 * lifted here so any subpage can reuse without duplicating styles. */
.final-cta { position: relative; text-align: center; padding: 7rem 2rem; overflow: hidden; background: var(--dark); }
.final-cta-bg { position: absolute; inset: 0; background-image: url('../images/ceremony-space.jpg'); background-size: cover; background-position: center; filter: brightness(0.3); }
.final-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.final-cta .eyebrow { font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; display: block; }
.final-cta h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; color: #fff; margin-bottom: 1.25rem; line-height: 1.15; }
.final-cta p { font-size: 0.98rem; color: rgba(255,255,255,0.78); line-height: 1.85; margin-bottom: 2.5rem; }
@media (max-width: 720px) {
  .final-cta { padding: 5rem 1.5rem; }
}
/* Slim variant — half the vertical weight of the default; used on the
 * deposit page where heavy form content already lives above. */
.final-cta.slim { padding: 4.5rem 2rem; }
@media (max-width: 720px) {
  .final-cta.slim { padding: 3.5rem 1.5rem; }
}

/* Primary pill button */
.awknhero-cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 1.1rem 2.5rem;
  border-radius: 999px;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(201,148,62,0.25);
}
.awknhero-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,148,62,0.35);
}
.awknhero-cta.secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: none;
}
.awknhero-cta.secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: none;
}

/* ── PACKAGE FOOTER PRICE + DUAL CTA ─────────────── */
.pkg-footer-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 0 auto 2.5rem;
}
.pkg-footer-price .strike {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
}
.pkg-footer-price .price {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4.2vw, 2.8rem);
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.pkg-footer-price .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.pkg-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media (max-width: 560px) {
  .pkg-cta-buttons { flex-direction: column; align-items: center; }
  .pkg-cta-buttons .awknhero-cta { width: 100%; max-width: 320px; text-align: center; }
}

/* ── DARK CTA + CONTACT FOOTER (shared) ─────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2225 100%);
  text-align: center;
  padding: 6rem 2rem;
}
.cta-section h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  color: #fff;
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.cta-section p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.contact-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4.5rem);
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 4rem auto 0;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-item {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  letter-spacing: 0.01em;
}
.contact-item a {
  color: rgba(255,255,255,0.78);
  transition: color 0.25s;
}
.contact-item a:hover { color: var(--gold); }
.contact-item .label {
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.medical-disclaimer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  padding: 1.75rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.medical-disclaimer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  line-height: 1.7;
  max-width: 880px;
  margin: 0 auto;
  color: rgba(255,255,255,0.4);
}
.medical-disclaimer .disclaimer-sep { color: rgba(255,255,255,0.22); margin: 0 0.55rem; }
.medical-disclaimer strong {
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  section, .pkg-section { padding: 4rem 1.25rem; }
  .page-hero { min-height: 75vh; padding: 7rem 1.5rem 4rem; }
  .contact-row { gap: 2rem; margin-top: 3rem; padding-top: 2.25rem; }
  .medical-disclaimer p { font-size: 0.64rem; line-height: 1.75; }
  .medical-disclaimer .disclaimer-sep { display: block; margin: 0.35rem 0; height: 0; visibility: hidden; }
  .protocol-step { grid-template-columns: 50px 1fr; gap: 1rem; padding: 1.5rem 0; }
  .pkg-header { padding: 6rem 1.5rem 3.5rem; }
}
@media (max-width: 560px) {
  .contact-row {
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
  }
  .contact-item { width: 100%; max-width: 280px; }
}
