/* Ensemble Kids: marquee night design system */
:root {
  --paper: #1C1119;
  --paper-deep: #271523;
  --ink: #FBEFE8;
  --ink-soft: #D9BFCE;
  --berry: #C13A52;
  --berry-deep: #A22843;
  --tangerine: #E98A3E;
  --orchid: #C76BAA;
  --peach: #F2BC9E;
  --gold: #F2A24B;
  --magenta: #AD2185;
  --white: #2F1C2C;
  --shadow: 0 14px 36px rgba(0, 0, 0, .45);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", "Trebuchet MS", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1.06rem;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--berry); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white); padding: .6rem 1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28, 17, 25, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(251, 239, 232, .1);
}
.header-inner {
  max-width: 1140px; margin: 0 auto; padding: .7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.logo-link { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.logo-link img { height: 46px; width: auto; }
.logo-link .logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); line-height: 1; }
.main-nav { display: flex; align-items: center; gap: 1.4rem; }
.main-nav .btn { padding: .5rem 1.1rem; font-size: .88rem; white-space: nowrap; }
.main-nav a {
  color: var(--ink); text-decoration: none; font-weight: 700; font-size: .98rem;
  padding: .3rem 0; border-bottom: 3px solid transparent;
}
.main-nav a:hover, .main-nav a:focus-visible { border-bottom-color: var(--tangerine); }
.main-nav a[aria-current="page"] { border-bottom-color: var(--berry); }
.nav-toggle {
  display: none; background: none; border: 2px solid var(--ink); border-radius: 10px;
  font: inherit; font-weight: 800; color: var(--ink); padding: .35rem .7rem; cursor: pointer;
}
.btn {
  display: inline-block; text-decoration: none; font-weight: 800; font-family: var(--font-body);
  border-radius: 999px; padding: .78rem 1.6rem; line-height: 1.2; text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
  border: none; cursor: pointer;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary {
  background: linear-gradient(115deg, var(--berry), var(--tangerine));
  color: #FFFDF9;
}
.btn-ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn-big { font-size: 1.15rem; padding: 1rem 2.2rem; }

/* ---------- hero ---------- */
.hero.hero-backdrop::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--backdrop); background-size: cover; background-position: center 30%;
  opacity: .18; filter: saturate(1.1);
}
.hero.hero-backdrop::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,17,25,.2), rgba(28,17,25,.85) 90%);
}
.hero.hero-backdrop .hero-inner { position: relative; z-index: 1; }
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(242, 162, 75, .22), transparent 60%),
    radial-gradient(50rem 26rem at -10% 30%, rgba(173, 33, 133, .3), transparent 60%),
    var(--paper);
}
.hero-inner {
  max-width: 1140px; margin: 0 auto; padding: 4.2rem 1.2rem 4.6rem;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}
.kicker {
  display: inline-block; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  font-size: .8rem; color: var(--gold);
  background: rgba(242, 162, 75, .12); border-radius: 999px; padding: .35rem 1rem;
  margin-bottom: 1.1rem;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 640; line-height: 1.08; }
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 3.9rem); letter-spacing: -.01em; }
.hero h1 .shine { color: var(--orchid); font-style: italic; }
.hero p.lede { font-size: 1.22rem; color: var(--ink-soft); margin: 1.2rem 0 1.8rem; max-width: 34rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-photo { position: relative; }
.hero-photo img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  transform: rotate(1.5deg); width: 100%; height: auto;
}
.hero-photo::before {
  content: ""; position: absolute; inset: -14px 14px 14px -14px; z-index: -1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--peach), var(--orchid));
  transform: rotate(-1.6deg);
}
.hero-badge {
  position: absolute; bottom: -20px; left: -14px;
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  padding: .55rem .8rem; display: flex; align-items: center; gap: .55rem;
  transform: rotate(-2deg);
}
.hero-badge img { height: 46px; width: auto; border-radius: 6px; }
.hero-badge span { font-size: .82rem; font-weight: 800; line-height: 1.25; }

/* marquee dot divider */
.marquee-rule {
  display: flex; justify-content: center; gap: 14px; padding: 0; margin: 0 auto;
  list-style: none;
}
.marquee-rule li {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold); opacity: .85;
  animation: twinkle 2.4s infinite;
}
.marquee-rule li:nth-child(2n) { animation-delay: .6s; background: var(--tangerine); }
.marquee-rule li:nth-child(3n) { animation-delay: 1.2s; background: var(--orchid); }
@keyframes twinkle { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) {
  .marquee-rule li { animation: none; }
  .btn:hover { transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- shared sections ---------- */
.section { max-width: 1140px; margin: 0 auto; padding: 4rem 1.2rem; }
.section-head { max-width: 44rem; margin-bottom: 2.4rem; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: .7rem; }
.section-head p { color: var(--ink-soft); font-size: 1.12rem; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* trust bar */
.trust-bar { background: linear-gradient(100deg, var(--magenta), var(--berry) 45%, var(--tangerine)); color: #FFFDF9; }
.trust-inner {
  max-width: 1140px; margin: 0 auto; padding: 1.1rem 1.2rem;
  display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2.6rem;
  font-weight: 700; font-size: .98rem;
}
.trust-inner span::before { content: "★ "; color: #FFE9AF; }

/* story */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.story-grid .photo-stack { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.photo-stack img { border-radius: var(--radius); box-shadow: var(--shadow); height: 100%; object-fit: cover; }
.photo-stack img:first-child { grid-column: span 2; }
.stat-line {
  display: flex; gap: 2.2rem; margin-top: 1.6rem; flex-wrap: wrap;
}
.stat-line strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--gold); line-height: 1.1; }
.stat-line span { font-size: .9rem; color: var(--ink-soft); font-weight: 700; }

/* ---------- program ticket cards ---------- */
.ticket-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 1.6rem; }
.ticket-grid.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1080px) { .ticket-grid.four { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .ticket-grid.four { grid-template-columns: 1fr; } }
.ticket {
  position: relative; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  border-top: 8px solid var(--card, var(--berry));
}
.ticket .tape {
  display: flex; justify-content: space-between; align-items: center;
  padding: .9rem 1.3rem .2rem;
}
.ticket .ages {
  font-weight: 800; letter-spacing: .12em; font-size: .78rem; text-transform: uppercase;
  color: var(--card, var(--berry));
  background: color-mix(in srgb, var(--card, var(--berry)) 35%, #1C1119); color: #FBEFE8;
  padding: .28rem .75rem; border-radius: 999px;
}
.ticket .price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--ink); }
.ticket .price small { font-size: .72rem; font-family: var(--font-body); font-weight: 700; color: var(--ink-soft); display: block; text-align: right; }
.ticket h3 { font-size: 1.45rem; padding: .5rem 1.3rem .2rem; }
.ticket-grid.four .ticket h3 { font-size: 1.22rem; }
.ticket-grid.four .ticket p.desc { font-size: .92rem; }
.ticket .meta { padding: 0 1.3rem; color: var(--ink-soft); font-weight: 700; font-size: .92rem; }
.ticket p.desc { padding: .7rem 1.3rem 0; color: var(--ink-soft); flex: 1; }
.ticket .times { padding: .9rem 1.3rem 0; font-size: .95rem; }
.ticket .times strong { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.ticket .times ul { list-style: none; margin-top: .3rem; }
.ticket .times li { padding: .15rem 0; border-bottom: 1px dashed rgba(251,239,232,.18); display: flex; justify-content: space-between; gap: 1rem; }
.ticket .times li span:first-child { font-weight: 800; }
.ticket .stub {
  margin-top: 1.1rem; padding: 1rem 1.3rem; position: relative;
  border-top: 2px dashed rgba(251,239,232,.22);
}
.ticket .stub::before, .ticket .stub::after {
  content: ""; position: absolute; top: -11px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--paper);
}
.ticket .stub::before { left: -10px; }
.ticket .stub::after { right: -10px; }
.ticket .stub .btn { width: 100%; }

/* schedule table */
.schedule-wrap { overflow-x: auto; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
table.schedule { width: 100%; border-collapse: collapse; min-width: 640px; }
.schedule caption { text-align: left; font-weight: 800; padding: 1.1rem 1.3rem .4rem; font-size: 1.05rem; }
.schedule th, .schedule td { padding: .8rem 1.3rem; text-align: left; border-top: 1px solid rgba(251,239,232,.1); }
.schedule th[scope="col"] { background: linear-gradient(100deg, var(--magenta), var(--berry)); color: #FFFDF9; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.schedule th[scope="row"] { font-weight: 800; white-space: nowrap; }
.schedule td .cls { font-weight: 700; }
.schedule td .tm { color: var(--ink-soft); font-size: .92rem; display: block; }

/* FAQ */
.faq { max-width: 46rem; }
.faq details {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: .9rem; padding: 0;
}
.faq summary {
  cursor: pointer; font-weight: 800; padding: 1rem 1.3rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); }
.faq details[open] summary::after { content: "\2212"; }
.faq details p { padding: 0 1.3rem 1.1rem; color: var(--ink-soft); }

/* people */
.people-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.8rem; }
@media (max-width: 700px) { .people-grid { grid-template-columns: 1fr; } }
.person {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.person img { width: 100%; height: auto; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: center 20%; }
.person .bio { padding: 1.3rem 1.4rem 1.5rem; }
.person h3 { font-size: 1.4rem; }
.person .role { color: var(--berry); font-weight: 800; font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: .6rem; }
.person p { color: var(--ink-soft); font-size: .98rem; margin-bottom: .6rem; }
.person.wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(260px, 340px) 1fr; }
.person.wide img { height: 100%; aspect-ratio: auto; }
@media (max-width: 700px) { .person.wide { grid-template-columns: 1fr; } .person.wide img { aspect-ratio: 4/4.2; } }

/* instagram */
.ig-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 1.8rem; }
.ig-strip img { border-radius: 14px; width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; box-shadow: var(--shadow); }
@media (max-width: 700px) { .ig-strip { grid-template-columns: repeat(2, 1fr); } }

/* CTA band */
.cta-band {
  background:
    radial-gradient(40rem 20rem at 18% 120%, rgba(242, 162, 75, .35), transparent 60%),
    radial-gradient(46rem 24rem at 85% -20%, rgba(173, 33, 133, .4), transparent 60%),
    #120A10;
  color: var(--ink); text-align: center;
}
.cta-band .section { padding: 4.4rem 1.2rem; }
.cta-band h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: .8rem; }
.cta-band p { color: rgba(251, 239, 232, .82); max-width: 36rem; margin: 0 auto 1.8rem; font-size: 1.15rem; }

/* footer */
.site-footer { background: #140C12; color: rgba(251, 239, 232, .85); font-size: .95rem; }
.footer-inner {
  max-width: 1140px; margin: 0 auto; padding: 2.6rem 1.2rem 2rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem;
}
.site-footer h4 { font-family: var(--font-display); color: var(--ink); font-size: 1.1rem; margin-bottom: .7rem; }
.site-footer a { color: var(--peach); text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer ul { list-style: none; }
.site-footer li { padding: .18rem 0; }
.footer-legal {
  border-top: 1px solid rgba(253, 246, 236, .15);
  text-align: center; padding: 1.1rem; font-size: .85rem; color: rgba(253, 246, 236, .6);
}

/* policy pages */
.policy { max-width: 46rem; }
.policy h1 { font-size: clamp(2rem, 4vw, 2.7rem); margin-bottom: .4rem; }
.policy .updated { color: var(--ink-soft); margin-bottom: 2rem; font-weight: 700; font-size: .92rem; }
.policy h2 { font-size: 1.35rem; margin: 1.8rem 0 .5rem; }
.policy p, .policy li { color: var(--ink-soft); margin-bottom: .7rem; }
.policy ul { padding-left: 1.2rem; }

/* anchor targets clear the sticky header */
[id] { scroll-margin-top: 96px; }

::selection { background: var(--tangerine); color: var(--white); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--tangerine); outline-offset: 2px; border-radius: 4px;
}

/* consistent warm grade on photography */
.hero-photo img, .photo-stack img, .ig-strip img, .person img, .ticket .card-photo {
  filter: saturate(1.07) contrast(1.03);
}

/* full-bleed alternating band with scalloped seams */
.band-alt { background: var(--paper-deep); }
.scallop-top, .scallop-bottom { height: 22px; }
.scallop-top {
  background-color: var(--paper-deep);
  background-image: radial-gradient(circle at 22px 0, var(--paper) 20px, transparent 21px);
  background-size: 44px 22px;
}
.scallop-bottom {
  background-color: var(--paper);
  background-image: radial-gradient(circle at 22px 0, var(--paper-deep) 20px, transparent 21px);
  background-size: 44px 22px;
}

/* crisp award chip (replaces the low-res badge image) */
.award-chip {
  position: absolute; bottom: -22px; left: -16px;
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow);
  padding: .7rem 1rem .7rem .75rem; display: flex; align-items: center; gap: .7rem;
  transform: rotate(-2deg); max-width: 270px;
}
.award-chip .award-star {
  width: 44px; height: 44px; flex: 0 0 44px; border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--gold), #C98F2B);
  color: var(--white); font-size: 1.35rem; display: grid; place-items: center;
  box-shadow: inset 0 -4px 8px rgba(58,31,51,.25);
}
.award-chip strong { display: block; font-size: .92rem; line-height: 1.25; }
.award-chip small { color: var(--ink-soft); font-weight: 700; font-size: .74rem; }

/* photo header on teaser tickets */
.ticket .card-photo { width: 100%; height: auto; aspect-ratio: 16 / 9.5; object-fit: cover; }

/* schedule rows: aligned name/time pairs */
.day-classes { list-style: none; }
.day-classes li {
  display: flex; justify-content: space-between; gap: 1.4rem; align-items: baseline;
  padding: .3rem 0; border-bottom: 1px dashed rgba(251,239,232,.16);
}
.day-classes li:last-child { border-bottom: none; }
.day-classes .cls { font-weight: 800; }
.day-classes time { color: var(--ink-soft); font-size: .95rem; white-space: nowrap; }

/* instructor "teaches" chips */
.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .8rem; }
.chips a {
  text-decoration: none; font-weight: 800; font-size: .8rem;
  background: rgba(199, 107, 170, .16); color: var(--orchid);
  border-radius: 999px; padding: .3rem .8rem;
}
.chips a:hover, .chips a:focus-visible { background: var(--berry); color: var(--white); }

/* contact / helper split cards */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
.split-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem 1.8rem 1.6rem;
}
.split-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.split-card p { color: var(--ink-soft); margin-bottom: 1.1rem; }
@media (max-width: 700px) { .split-cards { grid-template-columns: 1fr; } }

/* ---------- program level bands (colour-blocked ladder) ---------- */
.level-band { background: var(--band-bg, var(--berry)); color: var(--band-ink, var(--white)); }
.level-band .section { padding: 3.6rem 1.2rem; }
.level-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.level-band.flip .level-inner > .level-photo { order: -1; }
.level-band .kicker {
  background: rgba(255, 255, 255, .22); color: var(--band-ink, var(--white));
  margin-bottom: .9rem;
}
.level-band.on-light .kicker { background: rgba(58, 31, 51, .1); }
.level-band.on-light .section-head p,
.level-band.on-light .level-desc { color: rgba(58, 31, 51, .78); }
.level-band h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.level-band p.level-desc { font-size: 1.12rem; max-width: 34rem; opacity: .94; }
.meta-pills { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.1rem 0 1.2rem; }
.meta-pills span {
  font-weight: 800; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase;
  border: 2px solid currentColor; border-radius: 999px; padding: .3rem .85rem; opacity: .95;
}
.meta-pills .pill-price { background: var(--band-ink, var(--white)); color: var(--band-bg, var(--berry)); border-color: transparent; }
.level-times { margin: 1.2rem 0 1.6rem; max-width: 28rem; }
.level-times strong { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; opacity: .85; }
.level-times ul { list-style: none; margin-top: .4rem; }
.level-times li {
  display: grid;
  grid-template-columns: 6.5rem 10.5rem auto;
  align-items: baseline; column-gap: .8rem;
  padding: .4rem 0;
  border-bottom: 1px dashed currentColor; font-size: 1.02rem;
}
.level-times li:last-child { border-bottom: none; }
.level-times li .day { font-weight: 800; }
.level-times li .time { font-variant-numeric: tabular-nums; }
.level-times li .starts { font-size: .84rem; opacity: .8; font-weight: 700; white-space: nowrap; }
@media (max-width: 620px) {
  .level-times li { grid-template-columns: 6rem 1fr; row-gap: .1rem; }
  .level-times li .starts { grid-column: 2; }
}
.term-note { margin-top: .8rem; font-size: .92rem; font-weight: 700; opacity: .85; }
.btn-on-band { background: var(--band-ink, var(--white)); color: var(--band-bg, var(--berry)); }
.level-photo { position: relative; }
.level-photo img {
  border-radius: var(--radius); width: 100%; height: auto; aspect-ratio: 4 / 3.4; object-fit: cover;
  border: 8px solid rgba(255, 255, 255, .9); box-shadow: 0 16px 40px rgba(0, 0, 0, .22);
  transform: rotate(1.4deg);
}
.level-band.flip .level-photo img { transform: rotate(-1.4deg); }
/* add-on trio inside a band */
.addon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2rem; }
.addon-card {
  background: var(--white); color: var(--ink); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.4rem; box-shadow: 0 12px 30px rgba(58, 31, 51, .18);
  border-top: 8px solid var(--card, var(--berry));
  display: flex; flex-direction: column;
}
.addon-card h3 { font-size: 1.4rem; margin-bottom: .3rem; }
.addon-card .addon-meta { color: var(--ink-soft); font-weight: 800; font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .6rem; }
.addon-card p { color: var(--ink-soft); font-size: .98rem; flex: 1; }
.addon-card .addon-row { display: flex; justify-content: space-between; align-items: center; margin-top: 1.1rem; gap: 1rem; }
.addon-card .addon-row .price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; }
@media (max-width: 940px) {
  .level-inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .level-band.flip .level-inner > .level-photo { order: 0; }
  .addon-grid { grid-template-columns: 1fr; }
}

/* solid colour-block teaser tickets (home) */
.ticket.solid { background: var(--card, var(--berry)); color: var(--tk-ink, var(--white)); border-top: none; }
.ticket.solid h3 { color: inherit; }
.ticket.solid .ages { background: rgba(255, 255, 255, .25); color: inherit; }
.ticket.solid.on-light .ages { background: rgba(58, 31, 51, .12); }
.ticket.solid p.desc { color: inherit; opacity: .92; }
.ticket.solid .stub { border-top-color: rgba(255, 255, 255, .4); }
.ticket.solid.on-light .stub { border-top-color: rgba(58, 31, 51, .3); }
.ticket.solid .stub::before, .ticket.solid .stub::after { background: var(--paper-deep); }
.ticket.solid .btn-ghost { color: inherit; box-shadow: inset 0 0 0 2px currentColor; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* responsive */
@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: 2.6rem; }
  .story-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.4rem; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #241420; flex-direction: column; align-items: stretch;
    padding: 1rem 1.2rem 1.4rem; gap: .4rem; border-bottom: 1px solid rgba(58,31,51,.1);
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav .btn { margin-top: .6rem; }
}


/* ---------- announcement banner ---------- */
.announce {
  background: linear-gradient(100deg, var(--gold), var(--berry) 55%, var(--magenta));
  color: #FFFDF9; text-align: center; padding: .55rem 1rem; font-weight: 800; font-size: .95rem;
}
.announce a { color: #FFFDF9; text-decoration: underline; text-underline-offset: 3px; }

/* ---------- reviews ---------- */
.rating-hero { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; justify-content: center; }
.rating-hero .score { font-family: var(--font-display); font-size: 3.4rem; font-weight: 700; color: var(--gold); line-height: 1; }
.rating-hero .stars { color: var(--gold); font-size: 1.6rem; letter-spacing: .2rem; }
.rating-hero .src { color: var(--ink-soft); font-weight: 700; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 2rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
}
.review-card .stars { color: var(--gold); letter-spacing: .15rem; margin-bottom: .5rem; }
.review-card p { color: var(--ink-soft); font-size: 1rem; }
.review-card cite { display: block; margin-top: .8rem; font-style: normal; font-weight: 800; color: var(--ink); }

/* ---------- what's on / event cards ---------- */
.event-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 800px) { .event-grid { grid-template-columns: 1fr; } }
.event-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem 1.8rem 1.6rem; border-top: 8px solid var(--card, var(--berry));
}
.event-card .when { color: var(--gold); font-weight: 800; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; margin-bottom: .4rem; }
.event-card h3 { font-size: 1.5rem; margin-bottom: .5rem; }
.event-card p { color: var(--ink-soft); margin-bottom: .9rem; }
.calendar-slot {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.2rem; text-align: center;
}
.calendar-slot img { border-radius: 12px; width: 100%; height: auto; }
.empty-slot {
  border: 2px dashed rgba(251, 239, 232, .3); border-radius: var(--radius);
  padding: 2.6rem 1.6rem; text-align: center; color: var(--ink-soft); font-weight: 700;
}

/* birthday page perks */
.perk-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; }
.perk {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.5rem 1.6rem;
}
.perk .emoji { font-size: 1.8rem; display: block; margin-bottom: .5rem; }
.perk h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.perk p { color: var(--ink-soft); font-size: .98rem; }
