:root {
  --ink: #1d2331;            /* team palette — deep navy */
  --ink-soft: #3D2E1B;       /* warm dark sepia — reads cleanly on parchment */
  --gold: #D4A24B;        /* decorative chrome only — dividers, frame strokes, btn fill */
  --gold-text: #6E4D14;   /* gold that has to read as text/icon on cream or ivory */
  --gold-soft: #EADFC8;
  --cream: #E8D2A4;
  --ivory: #FFFCF3;
  --paper: #FFFFFF;
  --night: #0F172A;
  /* Team palette — used for card accents + sunrise hero wash */
  --sky:    #73bfea;
  --sun:    #ffdc96;
  --rose:   #f6c3c1;
  --sage:   #8fb3a1;
  --sky-deep:  #4a9fd1;
  --rose-deep: #e89996;
  --sage-deep: #6b9580;
  --display: 'Cinzel', Georgia, 'Times New Roman', serif;
  --display-soft: 'Fraunces', Georgia, 'Times New Roman', serif;  /* for verse + decorative italics */
  --body: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --serif: 'Cinzel', Georgia, 'Times New Roman', serif; /* legacy alias for display */
  --sans: 'Playfair Display', Georgia, 'Times New Roman', serif; /* legacy alias for body */
  --max-width: 720px;
  --pad: 24px;
  --radius: 16px;
  --shadow-card: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-feature: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-panel: 0 8px 24px rgba(0,0,0,0.10);
  /* Gold watercolour parchment wash. 5 variants exist so panels can rotate
     through them via nth-of-type rules below — keeps each box looking different. */
  --parchment: url('assets/parchment-1.svg?v=12');
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.6;
  font-weight: 500;
  color: var(--ink);
  /* Soft warm ivory canvas. Watercolor washes appear at top (hero) and bottom (final-cta). */
  background-color: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
/* Page-edge filigree intentionally disabled — felt like an overbearing border.
   Body bg already provides enough framing via the watercolor washes. */

/* Fraunces SOFT axis only applies to Fraunces — confine to Fraunces-only elements */
.hero-verse,
.price-num {
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); }

/* Header */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.site-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-org {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.brand-youth-connect {
  height: 36px;
  width: auto;
  object-fit: contain;
}
.brand-divider {
  display: none;
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,0.15);
}
.brand-word {
  display: none;
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
@media (min-width: 720px) {
  .brand-divider { display: block; }
  .brand-word { display: inline; }
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}
.primary-nav {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  flex-direction: column;
  padding: 12px 20px 20px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.primary-nav.open { display: flex; }
.primary-nav a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.primary-nav .nav-cta {
  margin-top: 12px;
  padding: 14px 20px;
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 999px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 13px;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 var(--pad) 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}
/* Hero emblem — uses the v4 SVG (now trimmed to 0 padding, so we control spacing in CSS).
   Equal top/bottom margin so the emblem sits with balanced breathing room around it. */
.hero-emblem {
  display: block;
  width: 80%;
  max-width: 520px;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 32px auto;
  filter: drop-shadow(0 4px 14px rgba(180, 130, 50, 0.25));
  animation: emblem-rise 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) both;
  animation-delay: 0.4s;
  opacity: 0;
}
@media (min-width: 720px) {
  .hero-emblem { width: 60%; max-width: 640px; margin: 40px auto; }
}
@keyframes emblem-rise {
  from { opacity: 0; transform: translateY(16px) scale(0.92); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-emblem { animation: none; opacity: 1; }
}
.hero-panel {
  position: relative;
  margin: 0 auto;
  background: var(--cream) var(--parchment) no-repeat center / cover;
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-panel);
  text-align: center;
  animation: panel-fade-in 1.4s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.hero-panel > * {
  opacity: 0;
  animation: rise-in 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) both;
}
.hero-panel > .kicker             { animation-delay: 0.7s; }
.hero-panel > .hero-verse         { animation-delay: 0.9s; }
.hero-panel > .gold-rule          { animation-delay: 1.1s; }
.hero-panel > .hero-dates         { animation-delay: 1.25s; }
.hero-panel > .hero-location      { animation-delay: 1.4s; }
.hero-panel > .btn-primary        { animation-delay: 1.6s; }
/* Frame ornaments (corners) animate in last and slowly */
.hero-panel > .frame-corner-tl,
.hero-panel > .frame-corner-tr,
.hero-panel > .frame-corner-bl,
.hero-panel > .frame-corner-br {
  opacity: 0;
  animation: ornament-fade 1.2s ease both;
  animation-delay: 1.8s;
}
.hero-art {
  animation: hero-bg-fade 1.8s ease both;
}
@keyframes panel-fade-in {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes rise-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ornament-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes hero-bg-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-panel,
  .hero-panel > *,
  .hero-art {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
.hero-verse {
  margin: 8px auto 14px;
  max-width: 600px;
  display: block;
  text-align: center;
  font-family: var(--display-soft);
  color: var(--ink);
  line-height: 1.2;
}
.hero-verse-shout {
  display: block;
  font-size: clamp(48px, 9vw, 88px);
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
}
.hero-verse-body {
  display: block;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  font-style: italic;
  line-height: 1.4;
  font-variation-settings: 'SOFT' 100, 'opsz' 96;
  color: var(--ink-soft);
}
.sparkle {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin: 0 6px;
  opacity: 0.85;
}
.hero-dates {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin: 0;
  color: var(--ink);
}
.hero-location {
  margin: 10px 0 20px;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink-soft);
}

/* Sections — full width, with content constrained inside */
.section {
  padding: 40px var(--pad);
  position: relative;
}
.section > * {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
/* At desktop+, lift the 760 cap so layouts that want the full container can use it.
   Reading-content sections explicitly cap themselves narrower via .cartouche width below. */
@media (min-width: 1200px) {
  .section > * { max-width: 1140px; }
  /* But cartouche-style reading panels stay narrow for line-length reasons */
  .section > .cartouche { max-width: 820px; }
}
@media (min-width: 1400px) {
  .section > * { max-width: 1320px; }
}
/* Alternating cream/ivory section bands so the page reads as A/B/A/B as you scroll. */
.section:nth-of-type(odd)  { background-color: var(--ivory); }
.section:nth-of-type(even) { background-color: #F4E4C4; } /* warm cream band */
/* Cartouche: ivory parchment panel that frames a section's content like the
   concept art's ornate gold-bordered cards. */
.cartouche {
  position: relative;
  background:
    var(--parchment) no-repeat center / cover,
    var(--ivory);
  padding: 40px 32px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  box-shadow: 0 4px 18px rgba(80, 60, 30, 0.08);
}
.cartouche::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 137, 58, 0.45);
  border-radius: 2px;
  pointer-events: none;
}
/* Consistent breathing room between any cartouche and what follows */
.cartouche + * { margin-top: 32px; }
.cartouche--cream {
  background:
    var(--parchment) no-repeat center / cover,
    var(--cream);
}
.section--cream {
  background:
    var(--parchment) no-repeat center / cover,
    var(--cream);
  max-width: none;
  padding-left: var(--pad);
  padding-right: var(--pad);
  position: relative;
}
/* On cream parchment, body text needs full ink — soft greys go muddy */
.section--cream .lead,
.section--cream .bullet-list,
.section--cream .card p,
.section--cream .day-card,
.section--cream .price-card,
.section--cream .price-unit,
.section--cream .fine-print,
.section--cream .address-detail,
.section--cream .faq-item p,
.section--cream p:not(.kicker):not(.label):not(.day-label):not(.cta-sub) {
  color: var(--ink);
}
/* Subtle gold rule between section transitions */
.section--cream + .section,
.section + .section--cream {
  border-top: 1px solid rgba(184, 137, 58, 0.25);
}
.section--cream > * {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}
.kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #6E4D14;
  text-transform: uppercase;
  margin: 0 auto 22px;
  text-align: center;
  width: 100%;
  max-width: 100%;
}
.kicker::before,
.kicker::after {
  content: '';
  flex: 0 0 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #B8893A 30%, #B8893A 70%, transparent);
}
.kicker--gold { color: var(--gold-text); }
.section .section-heading,
.section .section-heading-sm,
.section .section-heading-lg,
.section--cream .section-heading,
.section--cream .section-heading-sm,
.section--cream .section-heading-lg {
  text-align: center !important;
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section-heading {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 1.5px;
  margin: 0 0 20px;
  color: var(--ink);
  text-transform: uppercase;
  text-wrap: pretty;
  text-wrap: balance;
}
.section-heading-sm {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
  color: var(--ink);
  text-transform: uppercase;
  text-wrap: pretty;
  text-wrap: balance;
}
.section-heading-lg {
  font-family: var(--display);
  font-size: 38px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 2px;
  margin: 0 0 18px;
  color: var(--ink);
  text-transform: uppercase;
  text-wrap: pretty;
  text-wrap: balance;
}
.lead {
  font-size: 20px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 auto 20px;
  max-width: 620px;
  text-align: center;
  font-style: italic;
}
.label {
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8B6418;
  margin: 32px auto 16px;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
}
.gold-rule {
  display: block;
  width: 240px;
  height: 20px;
  background: url('assets/divider.svg') center/contain no-repeat;
  margin: 12px auto 20px;
}
.gold-rule--scroll {
  width: min(600px, 90%);
  height: 40px;
  background-image: url('assets/scrollwork.svg');
  margin: 24px auto 32px;
}

/* Buttons — ceremonial gold plaque, restrained */
.btn-primary {
  position: relative;
  display: inline-block;
  padding: 22px 13px;
  background: #D4A24B;
  color: var(--ink);
  border: 1.5px solid #8B6418;
  outline: 1px solid #8B6418;
  outline-offset: 3px;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-size: 26px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary:hover {
  background: #DEB05E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 100, 24, 0.3);
}
.btn-primary--full { display: block; text-align: center; width: 100%; max-width: 720px; margin-inline: auto; }
/* Pricing fine-print sits below the button — match the same 720 cap */
#pricing .fine-print { max-width: 720px; margin-inline: auto; }

/* Cards */
.card-stack { display: flex; flex-direction: column; gap: 16px; }
.card {
  background: var(--cream) var(--parchment) no-repeat center / cover;
  border: 3px double var(--gold);
  border-radius: 4px;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.card-icon { display: inline-block; font-size: 26px; line-height: 1; color: var(--gold-text); margin-bottom: 8px; }
.card h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0 0 12px;
  color: var(--ink);
  text-transform: uppercase;
}
.card p { margin: 0; color: var(--ink-soft); font-size: 17px; line-height: 1.55; }

/* Photo card variant */
.card--photo { padding: 0 0 22px; overflow: hidden; }
.card-photo {
  position: relative;
  aspect-ratio: 4 / 3;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #F4E1C0, #E8C892);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-photo-fallback {
  display: none;
  font-size: 56px;
  color: var(--gold-text);
  opacity: 0.55;
}
.card-photo--placeholder { background: linear-gradient(135deg, #F4E1C0, #E8C892); }
.card-photo--placeholder .card-photo-fallback { display: block; }

/* Auto-rotating carousel — layer images, cross-fade with stagger. Pause on hover. */
.card-photo--carousel img {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  /* Slight stagger between cards so they don't fade in lockstep */
  animation-delay: var(--carousel-offset, 0s);
}
.card-photo--carousel:hover img { animation-play-state: paused; }

/* 2-image carousel: 6s visible + 1.2s fade each side ≈ 14.4s cycle */
.card-photo--carousel-2 img { animation-name: carousel-fade-2; animation-duration: 14.4s; }
.card-photo--carousel-2 img:nth-child(2) {
  animation-delay: calc(var(--carousel-offset, 0s) + 7.2s);
}
@keyframes carousel-fade-2 {
  0%, 41.6%   { opacity: 1; }
  50%, 91.6%  { opacity: 0; }
  100%        { opacity: 1; }
}

/* 3-image carousel: 6s visible + 1.2s fade each side ≈ 21.6s cycle */
.card-photo--carousel-3 img { animation-name: carousel-fade-3; animation-duration: 21.6s; }
.card-photo--carousel-3 img:nth-child(2) {
  animation-delay: calc(var(--carousel-offset, 0s) + 7.2s);
}
.card-photo--carousel-3 img:nth-child(3) {
  animation-delay: calc(var(--carousel-offset, 0s) + 14.4s);
}
@keyframes carousel-fade-3 {
  0%, 27.8%   { opacity: 1; }
  33.3%, 94.4% { opacity: 0; }
  100%        { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .card-photo--carousel img {
    animation: none;
    opacity: 0;
  }
  .card-photo--carousel img:first-child { opacity: 1; }
}
.card--photo h3,
.card--photo p { padding: 0 22px; }

/* Card accent variants — coloured top stripe, watercolor PNG background, h3 in team color */
.card--sage,
.card--sky,
.card--rose {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.card--sage { border-top: 6px solid var(--sage); background-image: url('assets/sage.png'); }
.card--sky  { border-top: 6px solid var(--sky);  background-image: url('assets/sky.png'); }
.card--rose { border-top: 6px solid var(--rose); background-image: url('assets/rose.png'); }
.card--sage h3 { color: var(--sage-deep); }
.card--sky  h3 { color: var(--sky-deep); }
.card--rose h3 { color: var(--rose-deep); }

/* Bullet lists */
.bullet-list {
  padding-left: 0;
  list-style: none;
  margin: 8px auto 0;
  max-width: 540px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
}
.bullet-list li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  text-align: left;
}
.bullet-list li::before {
  content: '✦';
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--gold-text);
  font-size: 12px;
}
.price-card .bullet-list { font-size: 15px; max-width: 100%; }
.price-card .bullet-list li { padding-left: 22px; }

/* Vision list — header line above body, no inline bold paragraph */
.vision-list {
  padding-left: 0;
  list-style: none;
  margin: 16px auto 0;
  max-width: 620px;
  color: var(--ink);
  text-align: left;
}
.vision-list li {
  margin-bottom: 28px;
  padding-left: 32px;
  position: relative;
}
.vision-list li::before {
  content: '✦';
  position: absolute;
  left: 4px;
  top: 4px;
  color: var(--gold-text);
  font-size: 18px;
}
.vision-head {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.3;
}
.vision-list li p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* Day cards (timetable) */
.day-stack { display: flex; flex-direction: column; gap: 16px; }
.day-card {
  background: var(--cream) var(--parchment) no-repeat center / cover;
  padding: 28px 24px;
  position: relative;
}
.day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold-text);
  margin: 0 0 12px;
}
.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.row:last-child { border-bottom: 0; }
.row .time { font-weight: 600; color: var(--ink); flex-shrink: 0; }
.row.highlight .time { color: var(--gold-text); font-weight: 700; }
.row.highlight strong { color: var(--ink); }

/* Location */
.location-img {
  border-radius: 14px;
  margin: 16px 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.address-name { font-size: 16px; font-weight: 600; margin: 16px 0 6px; }
.address-detail { color: var(--ink-soft); font-size: 14px; margin: 0 0 16px; }

/* Pricing */
.price-grid { display: flex; flex-direction: column; gap: 16px; }
.price-card {
  position: relative;
  background: var(--cream) var(--parchment) no-repeat center / cover;
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
}
/* Featured card keeps its emphasis via shadow only — padding stays equal so both cards are the same size */
.price-card--featured {
  box-shadow: var(--shadow-feature);
}
/* Corner ribbon — diagonal banner across the top-right of the featured card.
   Uses overflow-hidden parent (frame) + transform-rotated banner anchored beyond the corner. */
.price-card--featured { overflow: hidden; }
.value-ribbon {
  position: absolute;
  top: 22px;
  right: -52px;
  width: 180px;
  transform: rotate(45deg);
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-family: var(--display);
  letter-spacing: 1.5px;
  padding: 8px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  z-index: 2;
}
.value-ribbon-line1 { font-size: 11px; font-weight: 600; opacity: 0.9; }
.value-ribbon-line2 { font-size: 14px; font-weight: 700; }
.price { display: flex; align-items: baseline; gap: 10px; margin: 8px 0 16px; }
.price-num {
  font-family: var(--display-soft);
  font-size: 52px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.price-unit { font-size: 13px; color: var(--ink-soft); }
/* Promo band — Early Bird + Newcomer side-by-side, prominent */
.promo-band {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  max-width: 720px;
  margin: 36px auto 24px;
}
.promo {
  flex: 1 1 240px;
  background: var(--cream) var(--parchment) no-repeat center / cover;
  border: 3px double var(--gold);
  border-radius: 4px;
  padding: 22px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.promo-icon {
  display: inline-block;
  font-size: 22px;
  color: var(--gold-text);
  margin-right: 8px;
  vertical-align: middle;
  letter-spacing: 0;
}
.promo-label {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.promo-price {
  font-family: var(--display-soft);
  font-style: italic;
  font-size: 36px;
  font-weight: 700;
  margin: 0;
  color: var(--gold-text);
  font-variation-settings: 'SOFT' 100, 'opsz' 144;
  line-height: 1;
  text-align: center;
}
.fine-print {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 12px;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background:
    var(--parchment) no-repeat center / cover,
    var(--cream);
  border: 2px double #B8893A;
  border-radius: 4px;
  padding: 0 22px;
  position: relative;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold-text);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

/* Final CTA — clean hills illustration at the bottom (no watercolor wash here;
   that lives only at the top of the page). */
.final-cta {
  position: relative;
  padding: 80px var(--pad);
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/hills-no-clouds.png') center bottom / 100% auto no-repeat;
  z-index: -1;
}
.final-cta-panel {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  padding: 40px 28px 32px;
  background: var(--cream) var(--parchment) no-repeat center / cover;
  box-shadow: var(--shadow-panel);
  text-align: center;
}
.final-cta-panel h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 2px;
  color: var(--ink);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.final-cta-panel .cta-sub {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 28px;
}
.final-cta .btn-primary { box-shadow: 0 6px 18px rgba(212,162,75,0.4); }

/* Footer */
.site-footer {
  background: var(--night);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  margin: 0;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
}
.footer-email { font-size: 13px; color: rgba(255,255,255,0.85); margin: 0; }
.footer-meta {
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  text-transform: uppercase;
}

/* Illuminated manuscript frame: single thicker gold rule + inner thin rule +
   corner medallions. */
.frame {
  position: relative;
  border: 2px solid var(--gold);
  border-radius: 2px;
}
.frame::before {
  /* Inner thin gold rule, the manuscript "book" line */
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(184, 137, 58, 0.55);
  border-radius: 2px;
  pointer-events: none;
}
/* Corner medallions overlay the outer + inner rule junction */
.frame > .frame-corner-tl,
.frame > .frame-corner-tr,
.frame > .frame-corner-bl,
.frame > .frame-corner-br {
  position: absolute;
  width: 64px;
  height: 64px;
  background: url('assets/corner-ornate.svg') center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
}
.frame > .frame-corner-tl { top: -2px;    left: -2px; }
.frame > .frame-corner-tr { top: -2px;    right: -2px; transform: scaleX(-1); }
.frame > .frame-corner-bl { bottom: -2px; left: -2px;  transform: scaleY(-1); }
.frame > .frame-corner-br { bottom: -2px; right: -2px; transform: scale(-1, -1); }
/* The old .frame-side-l / .frame-side-r elements are no-ops in the new system */
.frame > .frame-side-l,
.frame > .frame-side-r { display: none; }

.frame--compact {
  outline-offset: 3px;
}
.frame--compact::before {
  inset: 8px;
}
.frame--compact > .frame-corner-tl,
.frame--compact > .frame-corner-tr,
.frame--compact > .frame-corner-bl,
.frame--compact > .frame-corner-br {
  width: 44px;
  height: 44px;
}

/* Small phones (iPhone 12 Pro and similar, ≤400px) */
@media (max-width: 400px) {
  .section-heading { font-size: 24px; letter-spacing: 1px; }
}

/* Larger phones (iPhone 14 Pro Max and similar, 401–500px) */
@media (min-width: 401px) and (max-width: 500px) {
  .section-heading { font-size: 28px; letter-spacing: 1.2px; }
}

/* Tablet & desktop */
@media (min-width: 720px) {
  body { font-size: 20px; }
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    position: static;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    border: 0;
    box-shadow: none;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .primary-nav a {
    padding: 6px 0;
    font-size: 13px;
    border: 0;
  }
  .primary-nav .nav-cta {
    margin: 0;
    padding: 12px 22px;
    font-size: 12px;
  }
  .hero { min-height: 720px; }
  .hero-panel { max-width: 580px; padding: 56px 48px 48px; }
  .section-heading { font-size: 34px; }
  .section-heading-sm { font-size: 28px; }
  .section-heading-lg { font-size: 52px; }
  .frame > .frame-corner-tl,
  .frame > .frame-corner-tr,
  .frame > .frame-corner-bl,
  .frame > .frame-corner-br { width: 84px; height: 84px; }
  .frame::before { inset: 16px; }
  .frame--compact > .frame-corner-tl,
  .frame--compact > .frame-corner-tr,
  .frame--compact > .frame-corner-bl,
  .frame--compact > .frame-corner-br { width: 56px; height: 56px; }
  .day-card { padding: 36px 32px; }
  .price-card { padding: 36px 32px; }
  /* Featured keeps emphasis via shadow only — padding stays equal */
  .final-cta-panel { padding: 56px 40px 48px; }
  .card-stack { flex-direction: row; }
  .card { flex: 1; }
  .price-grid { flex-direction: row; align-items: stretch; }
  .price-card { flex: 1; }
  .final-cta-panel h2 { font-size: 48px; }
}

.site-footer .gold-rule {
  width: 160px;
  margin: 0 auto;
  opacity: 0.7;
}

/* Policy pages */
.policy-body { max-width: 720px; margin: 0 auto; }
.policy-body h3 {
  font-family: var(--display);
  font-size: 22px;
  margin: 28px 0 10px;
  color: var(--ink);
}
.policy-body h3:first-child { margin-top: 0; }
.policy-body p { margin: 0 0 14px; line-height: 1.65; }
.policy-body ul { padding-left: 22px; margin: 0 0 16px; }
.policy-body li { margin: 0 0 8px; line-height: 1.6; }
.policy-body strong { color: var(--ink); }
.policy-meta {
  text-align: center;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 24px;
}
.footer-policy-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.footer-policy-links a { color: var(--gold); text-decoration: none; font-weight: 600; }
.footer-policy-links a:hover { color: var(--gold-text); }

/* ============================================================
   12-column responsive grid (Bootstrap-faithful caps at 1140 / 1320)
   Breakpoints: 720 (existing tablet) · 1200 (desktop) · 1400 (wide)
   ============================================================ */

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 20px;
}

.row-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.col-1  { grid-column: span 12; }
.col-2  { grid-column: span 12; }
.col-3  { grid-column: span 12; }
.col-4  { grid-column: span 12; }
.col-5  { grid-column: span 12; }
.col-6  { grid-column: span 12; }
.col-7  { grid-column: span 12; }
.col-8  { grid-column: span 12; }
.col-9  { grid-column: span 12; }
.col-10 { grid-column: span 12; }
.col-11 { grid-column: span 12; }
.col-12 { grid-column: span 12; }

@media (min-width: 720px) {
  .container { padding-inline: 32px; }
}

@media (min-width: 1200px) {
  .container { max-width: 1140px; padding-inline: 24px; }

  .col-lg-1  { grid-column: span 1; }
  .col-lg-2  { grid-column: span 2; }
  .col-lg-3  { grid-column: span 3; }
  .col-lg-4  { grid-column: span 4; }
  .col-lg-5  { grid-column: span 5; }
  .col-lg-6  { grid-column: span 6; }
  .col-lg-7  { grid-column: span 7; }
  .col-lg-8  { grid-column: span 8; }
  .col-lg-9  { grid-column: span 9; }
  .col-lg-10 { grid-column: span 10; }
  .col-lg-11 { grid-column: span 11; }
  .col-lg-12 { grid-column: span 12; }

  /* Schedule: 4 day-cards in one row.
     Override the mobile flex-column with grid for predictable equal columns.
     align-items: stretch makes all 4 cards the same height as the tallest. */
  .day-stack {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
  }
  /* day-card becomes a flex column so the footer can anchor at the bottom
     when the card stretches taller than its content. */
  .day-card { display: flex; flex-direction: column; }
  .day-card-footer { margin-top: auto; }

  /* What to expect: 3 cards in one row */
  .card-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  /* Photos look squat on wide cards — tall format reads better */
  .card-photo { aspect-ratio: 4 / 5; }

  /* Pricing: cap at 720 wide to match the promo-band below; gap matches too */
  .price-grid {
    display: flex;
    gap: 18px;
    max-width: 720px;
    margin-inline: auto;
  }
  .price-card { flex: 1 1 0; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* Sunday card balance line — visible at all sizes, decorative */
.day-card-footer {
  text-align: center;
  font-family: var(--display-soft);
  font-style: italic;
  color: var(--gold-text);
  font-size: 16px;
  margin: 18px 0 0;
}

/* Alt page: 3/6/3 emphasis variant for the cards row */
@media (min-width: 1200px) {
  body.alt-emphasis .card-stack {
    grid-template-columns: 3fr 6fr 3fr;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   Parchment variant rotation.
   The gold watercolour wash is a single SVG, so without varying it every
   panel/card looked identical. We have 5 variants (parchment-1..5.svg) and
   assign them so (a) major single panels each get a different variant, and
   (b) adjacent cards inside any stack rotate through all 5.
   ───────────────────────────────────────────────────────────────────────── */
.hero-panel               { --parchment: url('assets/parchment-1.svg?v=12'); }
#welcome .cartouche       { --parchment: url('assets/parchment-5.svg?v=12'); }
#vision .cartouche--cream { --parchment: url('assets/parchment-2.svg?v=12'); }
#expect .cartouche        { --parchment: url('assets/parchment-3.svg?v=12'); }
/* At mobile widths #expect becomes a tall narrow panel, so cover-cropping the
   square v3 zooms each splotch into a hard blob. Swap to a 480x900 portrait
   variant whose splotches are distributed top-to-bottom — much less zooming. */
@media (max-width: 719px) {
  #expect .cartouche      { --parchment: url('assets/parchment-3-mobile.svg?v=18'); }
}
.final-cta-panel          { --parchment: url('assets/parchment-4.svg?v=12'); }

/* Stacks: cycle every 5 children so neighbours never share a variant. */
.card-stack > .card:nth-child(5n+1),
.day-stack > .day-card:nth-child(5n+1),
.price-grid > .price-card:nth-child(5n+1),
.promo-band > .promo:nth-child(5n+1),
.faq-list > .faq-item:nth-child(5n+1)        { --parchment: url('assets/parchment-1.svg?v=12'); }

.card-stack > .card:nth-child(5n+2),
.day-stack > .day-card:nth-child(5n+2),
.price-grid > .price-card:nth-child(5n+2),
.promo-band > .promo:nth-child(5n+2),
.faq-list > .faq-item:nth-child(5n+2)        { --parchment: url('assets/parchment-2.svg?v=12'); }

.card-stack > .card:nth-child(5n+3),
.day-stack > .day-card:nth-child(5n+3),
.price-grid > .price-card:nth-child(5n+3),
.promo-band > .promo:nth-child(5n+3),
.faq-list > .faq-item:nth-child(5n+3)        { --parchment: url('assets/parchment-3.svg?v=12'); }

.card-stack > .card:nth-child(5n+4),
.day-stack > .day-card:nth-child(5n+4),
.price-grid > .price-card:nth-child(5n+4),
.promo-band > .promo:nth-child(5n+4),
.faq-list > .faq-item:nth-child(5n+4)        { --parchment: url('assets/parchment-4.svg?v=12'); }

.card-stack > .card:nth-child(5n),
.day-stack > .day-card:nth-child(5n),
.price-grid > .price-card:nth-child(5n),
.promo-band > .promo:nth-child(5n),
.faq-list > .faq-item:nth-child(5n)          { --parchment: url('assets/parchment-5.svg?v=12'); }
