/* =============================================================
   SASAI PRE-CHRISTMAS RAFFLE — VISUAL REFRESH
   Campaign-specific polish layered over the reusable raffle base.
   ============================================================= */

:root {
  --bg: #f3ebe0;
  --surface: #fbf6ee;
  --surface-elev: #fff9f0;
  --surface-tint: #efe4d4;
  --ink: #2c1c10;
  --ink-soft: #5a4636;
  --muted: #7a6654;
  --border: #e4d8c8;
  --border-strong: #cbb89e;
  --success: #4a5e10;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: Aptos, "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 38px;
  --shadow-soft: 0 1px 2px rgba(44, 28, 16, 0.04), 0 10px 28px rgba(44, 28, 16, 0.06);
  --shadow-pop: 0 8px 24px rgba(44, 28, 16, 0.08), 0 28px 70px rgba(44, 28, 16, 0.12);
  --shadow-pull: 0 34px 80px -28px rgba(28, 16, 8, 0.5);
  --max-w: 1240px;
  --max-w-narrow: 840px;
}

html {
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(201, 145, 36, 0.08), transparent 24rem),
    var(--bg);
}

::selection {
  color: var(--brand-primary-ink);
  background: var(--brand-primary);
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--brand-accent) 80%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--brand-primary-ink);
  background: var(--brand-primary);
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.event-strip {
  position: relative;
  z-index: 31;
  padding: 9px var(--gutter);
  color: rgba(255, 255, 255, 0.9);
  background: #2c1c10;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.event-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
}

.event-strip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-accent);
  box-shadow: 0 0 0 5px rgba(201, 145, 36, 0.13);
}

.event-strip a {
  margin-left: 8px;
  color: white;
  font-weight: 800;
  text-underline-offset: 4px;
}

.site-header {
  min-height: 74px;
  padding: 12px max(var(--gutter), calc((100vw - var(--max-w)) / 2));
  overflow: visible;
  background: color-mix(in oklab, #fffdf8 92%, transparent);
  border-bottom-color: rgba(44, 28, 16, 0.12);
  box-shadow: 0 6px 20px rgba(44, 28, 16, 0.035);
}

.festive-lights {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  z-index: 31;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 18px;
  padding: 0 max(var(--gutter), calc((100vw - var(--max-w)) / 2));
  overflow: hidden;
  pointer-events: none;
}

.festive-lights::before {
  position: absolute;
  top: 2px;
  right: 4%;
  left: 4%;
  height: 2px;
  background: #2c1c10;
  opacity: 0.55;
  content: "";
}

.festive-lights span {
  position: relative;
  z-index: 1;
  width: 9px;
  height: 9px;
  margin-top: 4px;
  border-radius: 50%;
  background: #c89124;
  box-shadow: 0 0 8px 2px rgba(201, 145, 36, 0.55);
}

.festive-lights span:nth-child(3n) {
  background: #e2b44a;
}

.festive-lights span:nth-child(3n + 1) {
  background: #4a5e10;
  box-shadow: 0 0 8px 2px rgba(74, 94, 16, 0.45);
}

.festive-lights span:nth-child(even) {
  transform: translateY(6px);
}

.org-strip {
  gap: 14px;
}

.org-strip__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(44, 28, 16, 0.14);
  box-shadow: 0 8px 24px rgba(44, 28, 16, 0.1);
}

.org-strip__name {
  max-width: 28ch;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.org-strip__sub {
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 800;
}

.site-nav {
  gap: clamp(14px, 2vw, 28px);
}

.site-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:not(.site-nav__cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand-accent);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s var(--ease);
}

.site-nav a:not(.site-nav__cta):hover::after {
  transform: scaleX(1);
}

.site-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 10px 25px -14px var(--brand-primary);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(54px, 7vw, 98px) var(--gutter) clamp(76px, 9vw, 124px);
  background:
    radial-gradient(52rem 36rem at 104% 6%, rgba(201, 145, 36, 0.18), transparent 68%),
    radial-gradient(42rem 30rem at -4% 18%, rgba(44, 28, 16, 0.1), transparent 72%),
    linear-gradient(155deg, var(--surface-elev) 0%, var(--bg) 55%, var(--surface-tint) 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 6%;
  right: -7%;
  width: 28rem;
  height: 28rem;
  border: 1px solid rgba(44, 28, 16, 0.1);
  border-radius: 50%;
  content: "";
}

.hero__container {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.72fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}

.eyebrow,
.section__eyebrow,
.prize-vault__eyebrow {
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--brand-accent);
  content: "";
}

.hero__title {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 1.25rem + 1.1vw, 2.45rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.hero__title-accent {
  padding-bottom: 0.08em;
  background: linear-gradient(105deg, #8a6414 8%, #e2b44a 42%, #c89124 58%, #4a5e10 92%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lede {
  max-width: 49ch;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 0.98rem + 0.36vw, 1.22rem);
  line-height: 1.65;
}

.hero__quickfacts {
  max-width: 650px;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(44, 28, 16, 0.16);
}

.hero__quickfacts li {
  min-width: 0;
  padding: 16px 14px 16px 0;
}

.hero__quickfacts li + li {
  padding-left: 16px;
  border-left: 1px solid rgba(44, 28, 16, 0.16);
}

.hero__quickfacts strong,
.hero__quickfacts li > span {
  display: block;
}

.hero__quickfacts strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero__quickfacts li > span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.hero__cta-row {
  margin-bottom: 28px;
}

.btn {
  min-height: 46px;
  border-radius: 13px;
  font-weight: 800;
}

.btn--lg {
  min-height: 54px;
  padding: 15px 24px;
  font-size: 15px;
}

.btn--primary,
.btn--accent,
.site-nav__cta {
  position: relative;
  overflow: hidden;
  background: var(--brand-accent);
  color: var(--brand-accent-ink);
  box-shadow: 0 16px 34px -18px rgba(201, 145, 36, 0.9);
}

.btn--primary > *,
.btn--accent > *,
.site-nav__cta > * {
  position: relative;
  z-index: 1;
}

.btn--primary::after,
.btn--accent::after,
.site-nav__cta::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 32%, rgba(255, 245, 210, 0.5) 50%, transparent 68%);
  transform: translateX(-130%);
  pointer-events: none;
  content: "";
}

.btn--primary:hover,
.site-nav__cta:hover {
  background: color-mix(in oklab, var(--brand-accent) 88%, white);
}

.btn--ghost {
  border-color: rgba(44, 28, 16, 0.22);
  background: rgba(255, 253, 248, 0.5);
}

.hero__trust {
  gap: 10px 18px;
  color: var(--muted);
  font-size: 11.5px;
  line-height: 1.4;
}

.hero__trust li {
  gap: 7px;
}

.hero__trust svg {
  width: 13px;
  height: 13px;
  padding: 2px;
  overflow: visible;
  border-radius: 50%;
  color: white;
  background: var(--success);
}

.hero__media {
  align-self: start;
  min-height: 0;
  width: fit-content;
  margin-inline: auto;
}

.hero__media::before {
  position: absolute;
  z-index: -1;
  inset: 26px -22px -22px 40px;
  border-radius: var(--radius-xl);
  background: rgba(44, 28, 16, 0.13);
  content: "";
  transform: rotate(2deg);
}

.hero__media-frame {
  height: auto;
  min-height: 0;
  aspect-ratio: 1414 / 2000;
  background: #2c1c10;
  border: 3px solid #c89124;
  border-radius: var(--radius-xl);
}

.hero__container {
  position: relative;
  z-index: 1;
}

.hero__media-frame::before,
.hero__media-frame::after {
  display: none;
}

.festive-section {
  position: relative;
}

.festive-section::after {
  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  z-index: 0;
  height: 14px;
  pointer-events: none;
  background:
    radial-gradient(circle, #c89124 0 3px, transparent 4px) 0 6px / 42px 14px repeat-x,
    linear-gradient(#2c1c10, #2c1c10) 0 7px / 100% 1px no-repeat;
  opacity: 0.55;
  content: "";
}

.hero.festive-section::after {
  display: none;
}

.festive-section > .section__container {
  position: relative;
  z-index: 1;
}

.poster-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.poster-deco__sparkles,
.poster-deco__pine {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
}

.poster-deco__sparkles {
  background-image:
    url("./assets/deco/sparkles-tl.png"),
    url("./assets/deco/sparkles-br.png");
  background-position:
    left -24px top -12px,
    right -20px bottom -12px;
  background-size: 250px, 260px;
}

.poster-deco__pine {
  background-image:
    url("./assets/deco/pine-cut-tr.png"),
    url("./assets/deco/pine-cut-bl.png");
  background-position:
    right -36px top -18px,
    left -48px bottom -28px;
  background-size: 230px, 280px;
  transform-origin: 50% 40%;
}

.poster-deco__glint {
  position: absolute;
  width: 14px;
  height: 14px;
  background: url("./assets/deco/sparkle.svg") center / contain no-repeat;
  opacity: 0.35;
}

.poster-deco__glint:nth-child(3) { top: 18%; left: 8%; }
.poster-deco__glint:nth-child(4) { top: 12%; right: 22%; width: 10px; height: 10px; }
.poster-deco__glint:nth-child(5) { top: 48%; left: 4%; width: 11px; height: 11px; }
.poster-deco__glint:nth-child(6) { top: 42%; right: 7%; }
.poster-deco__glint:nth-child(7) { bottom: 16%; left: 18%; width: 12px; height: 12px; }
.poster-deco__glint:nth-child(8) { bottom: 12%; right: 14%; width: 16px; height: 16px; }

.festive-section .eyebrow,
.festive-section .section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.festive-section .eyebrow::before,
.festive-section .eyebrow::after,
.festive-section .section__eyebrow::before,
.festive-section .section__eyebrow::after {
  width: 12px;
  height: 12px;
  background: url("./assets/deco/sparkle.svg") center / contain no-repeat;
  content: "";
}

.festive-section .section__title {
  background-image: url("./assets/deco/snowflake.svg");
  background-repeat: no-repeat;
  background-position: right 4px top 6px;
  background-size: 22px;
}

.hero__media-frame img {
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}

.hero__media:hover .hero__media-frame img {
  transform: scale(1.018);
}

.hero__ribbon {
  z-index: 2;
  top: 18px;
  left: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #3a2a00;
  box-shadow: 0 12px 28px rgba(34, 45, 25, 0.16);
}

.hero__media-caption {
  right: 20px;
  bottom: 20px;
  z-index: 2;
  gap: 26px;
  padding: 15px 20px;
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(44, 28, 16, 0.88);
  box-shadow: 0 18px 40px rgba(28, 16, 8, 0.28);
  backdrop-filter: blur(14px);
}

.hero__media-value-label {
  color: rgba(255, 255, 255, 0.7);
}

.hero__media-value {
  color: white;
}

.counter-strip {
  padding-top: 0;
  background: #2c1c10;
}

.counter-strip__inner {
  min-height: 112px;
  padding-block: 24px;
}

.counter-strip__item {
  flex: 1;
}

.counter-strip__big {
  color: #d4a12a;
  font-size: clamp(1.7rem, 1.3rem + 1.3vw, 2.35rem);
  font-weight: 500;
}

.counter-strip__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 800;
}

.section {
  padding-block: clamp(56px, 9vw, 132px);
}

.section__title {
  max-width: 18ch;
  font-size: clamp(2.45rem, 1.65rem + 2.4vw, 4rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section__lede {
  line-height: 1.65;
}

.section--cause {
  background:
    linear-gradient(rgba(255, 253, 248, 0.3), rgba(255, 253, 248, 0.3)),
    var(--surface-tint);
}

.cause-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
}

.cause-layout__heading {
  position: sticky;
  top: 118px;
}

.cause-layout .section__title {
  max-width: 14ch;
}

.cause-layout .section__lede {
  max-width: 66ch;
  margin: 0;
  font-size: 1.03rem;
}

.cause-layout .prose > p:first-child {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 1.12rem + 0.55vw, 1.6rem);
  line-height: 1.45;
}

.cause-layout .prose ul {
  margin: 1.4rem 0;
  list-style: none;
}

.cause-layout .prose li {
  position: relative;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid rgba(44, 28, 16, 0.12);
}

.cause-layout .prose li::before {
  position: absolute;
  top: 1.05rem;
  left: 2px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--brand-primary);
  border-radius: 50%;
  content: "";
}

.impact-grid {
  margin-top: clamp(40px, 5vw, 68px);
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: impact;
}

.impact-grid li {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border-color: rgba(44, 28, 16, 0.13);
  border-radius: 20px;
  box-shadow: none;
  counter-increment: impact;
}

.impact-grid li::after {
  position: absolute;
  right: 20px;
  bottom: -18px;
  color: rgba(44, 28, 16, 0.055);
  content: "0" counter(impact);
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
}

.impact-grid__icon {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  border: 1px solid rgba(201, 145, 36, 0.32);
  border-radius: 50%;
  background: rgba(201, 145, 36, 0.14);
  font-size: 21px;
}

.impact-grid__title {
  font-size: 1.35rem;
  font-weight: 600;
}

.impact-grid__desc {
  position: relative;
  z-index: 1;
  max-width: 30ch;
  line-height: 1.6;
}

.section--prize {
  background:
    radial-gradient(40rem 30rem at 94% 8%, rgba(201, 145, 36, 0.08), transparent 72%),
    var(--surface);
}

.section--prize > .section__container > .section__lede {
  max-width: 68ch;
  margin-bottom: 48px;
}

.prize-detail {
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 5vw, 72px);
  margin-bottom: 54px;
}

.prize-detail__copy {
  padding-top: 4px;
}

.prize-detail__copy h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.prize-detail__copy h3:not(:first-child) {
  margin-top: 1.75rem;
}

.prize-detail__inclusions {
  padding: 28px 30px;
  border-color: rgba(44, 28, 16, 0.14);
  background: linear-gradient(145deg, var(--surface-elev), var(--surface-tint));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.78);
}

.prize-detail__inclusions li {
  padding-bottom: 11px;
  border-bottom: 1px solid rgba(44, 28, 16, 0.1);
  color: var(--ink-soft);
}

.prize-detail__inclusions li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.gallery {
  grid-template-columns: 1.6fr 0.8fr 0.8fr;
  grid-template-rows: 260px 260px;
  gap: 14px;
  overflow: visible;
  border-radius: 0;
}

.gallery__item {
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.gallery__item img {
  transition: transform 0.65s var(--ease);
}

.gallery__item:hover img {
  transform: scale(1.035);
}

.prize-vault {
  margin-top: 76px;
  padding-top: 54px;
  border-top-color: rgba(44, 28, 16, 0.14);
}

.prize-vault__header {
  display: grid;
  grid-template-columns: auto 1fr minmax(220px, 0.7fr);
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.prize-vault__eyebrow {
  margin-bottom: 5px;
}

.prize-vault__title {
  font-size: clamp(1.9rem, 1.5rem + 1vw, 2.7rem);
  font-weight: 500;
}

.prize-vault__lede {
  justify-self: end;
  line-height: 1.55;
}

.prize-grid {
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
  gap: 32px;
}

.prize-card {
  position: relative;
  overflow: visible;
  border-color: #c89124;
  border-radius: 20px;
  box-shadow:
    inset 0 0 0 3px var(--surface-elev),
    inset 0 0 0 4px #c89124,
    0 12px 34px rgba(44, 28, 16, 0.07);
}

.prize-card::before,
.prize-card::after {
  position: absolute;
  z-index: 3;
  width: 52px;
  height: 52px;
  pointer-events: none;
  background: url("./assets/deco/flourish-corner.svg") no-repeat center / contain;
  content: "";
}

.prize-card::before {
  top: -1px;
  left: -1px;
}

.prize-card::after {
  right: -1px;
  bottom: -1px;
  transform: rotate(180deg);
}

.prize-card--featured {
  grid-column: auto;
  border-color: #c89124;
}

.prize-card--featured .prize-card__media,
.prize-card__media {
  aspect-ratio: auto;
  padding: 0;
  overflow: visible;
  background: #2c1c10;
}

.prize-card__media::after {
  display: none;
}

.prize-card__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.prize-card__qty {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #1a1208;
  background: #c89124;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.prize-card__icon {
  z-index: 1;
}

.prize-card__value {
  z-index: 2;
  top: 12px;
  right: 12px;
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  background: rgba(44, 28, 16, 0.82);
  backdrop-filter: blur(10px);
}

.prize-card__body {
  padding: 20px 20px 24px;
}

.prize-card__badge {
  display: block;
  padding: 14px 18px 0;
  color: #c89124;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.prize-card__title {
  font-size: 1.35rem;
  line-height: 1.15;
}

.prize-card__desc {
  line-height: 1.55;
}

.section--tickets {
  --rust: #9a4b1f;
  --amber: #c98a2e;
  background: #f3ebdf;
  font-size: 15px;
}

.section--tickets .section__eyebrow {
  color: var(--rust);
}

.ticket-intro {
  margin-bottom: 30px;
  display: block;
  max-width: 52ch;
}

.section--tickets .section__lede {
  margin-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Scarcity / timing strip */
.ticket-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px 40px;
  margin-bottom: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(44, 28, 16, 0.14);
  border-radius: 16px;
  background: #fffdf8;
}

.ticket-status__sold {
  flex: 1 1 300px;
  min-width: 250px;
}

.ticket-status__bar {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(44, 28, 16, 0.12);
}

.ticket-status__fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--amber), var(--rust));
  transition: width 0.6s var(--ease);
}

.ticket-status__text {
  margin: 9px 0 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.ticket-status__timing {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
  text-align: right;
}

.ticket-status__timing p {
  margin: 0;
}

.ticket-status__timing strong {
  color: var(--ink);
}

.ticket-status__countdown {
  color: var(--rust);
  font-weight: 800;
}

/* Ensure [hidden] wins over component display values (grid/flex) */
.ticket-builder[hidden],
.order-summary__row[hidden],
.ticket-status__countdown[hidden],
.ticket-closed[hidden] {
  display: none;
}

/* Decision block: picker + summary */
.ticket-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
}

.pack-picker {
  margin: 0;
  padding: 0;
  border: 0;
}

.pack-picker__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.pack-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 20px 16px 16px;
  border: 2px solid rgba(44, 28, 16, 0.14);
  border-radius: 16px;
  background: #fffdf8;
  cursor: pointer;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease), transform 0.15s var(--ease);
}

.pack-card:hover {
  border-color: rgba(154, 75, 31, 0.5);
  transform: translateY(-2px);
}

.pack-card input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.pack-card.is-selected {
  border-color: var(--rust);
  box-shadow: 0 14px 34px rgba(154, 75, 31, 0.2);
}

.pack-card:has(input:focus-visible) {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.pack-card__flag {
  position: absolute;
  top: -11px;
  left: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--amber);
  color: #1a1208;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pack-card__flag--value {
  background: #2c1c10;
  color: #f3ebdf;
}

.pack-card__qty {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
}

.pack-card__price {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.pack-card__per {
  color: var(--ink-soft);
  font-size: 15px;
}

.pack-card__save {
  color: var(--rust);
  font-size: 15px;
  font-weight: 700;
}

/* Stepper */
.pack-stepper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 20px;
}

.pack-stepper__label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}

.pack-stepper__controls {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pack-stepper__btn {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(44, 28, 16, 0.22);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--ink);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  transition: border-color 0.15s var(--ease), background-color 0.15s var(--ease);
}

.pack-stepper__btn:hover {
  border-color: var(--rust);
  background: #fff;
}

.pack-stepper__count {
  min-width: 44px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.pack-stepper__maths {
  flex: 1 1 240px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 600;
}

/* What this buys */
.ticket-outcome {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px dashed rgba(154, 75, 31, 0.45);
  border-radius: 16px;
  background: rgba(201, 138, 46, 0.1);
}

.ticket-outcome__line {
  flex: 1 1 260px;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

.ticket-outcome__thumbs {
  display: flex;
  gap: 8px;
}

.ticket-outcome__thumbs img {
  width: 54px;
  height: 54px;
  border: 2px solid #fffdf8;
  border-radius: 12px;
  background: #2c1c10;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

/* Order summary (dark) */
.order-summary {
  position: sticky;
  top: 84px;
  padding: 26px 24px;
  border-radius: 20px;
  background: #2c1c10;
  color: rgba(255, 250, 240, 0.85);
  box-shadow: var(--shadow-pop);
}

.order-summary__heading {
  margin: 0 0 16px;
  color: white;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
}

.order-summary__lines {
  margin: 0;
}

.order-summary__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 15px;
}

.order-summary__row dt {
  margin: 0;
}

.order-summary__row dd {
  margin: 0;
  font-weight: 700;
  white-space: nowrap;
}

.order-summary__row--saving dd {
  color: #e5b96b;
}

.order-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 15px;
}

.order-summary__total strong {
  color: white;
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.order-summary__cta {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
  border: 0;
  border-radius: 13px;
  background: var(--amber);
  color: #1a1208;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
}

.order-summary__cta:hover {
  background: color-mix(in oklab, var(--amber) 86%, white);
}

.order-summary__cta:disabled,
.buy-banner__cta:disabled {
  opacity: 0.65;
  cursor: wait;
}

.checkout-form {
  display: grid;
  gap: 12px;
  margin: 18px 0 14px;
}

.checkout-form__field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 250, 240, 0.78);
}

.checkout-form__field em {
  font-style: normal;
  opacity: 0.65;
}

.checkout-form__field input,
.checkout-form__field select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255, 248, 238, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 238, 0.06);
  color: #fff8ee;
  padding: 11px 12px;
  font: inherit;
  font-size: 15px;
}

.checkout-form__field input::placeholder {
  color: rgba(255, 248, 238, 0.4);
}

.checkout-form__field input:focus,
.checkout-form__field select:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1px;
  border-color: transparent;
}

.checkout-form__terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(255, 250, 240, 0.78);
}

.checkout-form__terms input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.checkout-form__terms a {
  color: #f0c56a;
  text-underline-offset: 2px;
}

.checkout-form__error {
  margin: 0;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(180, 40, 40, 0.28);
  color: #ffe8e0;
  font-size: 13px;
  line-height: 1.4;
}

.buy-banner__cta {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.order-summary__stripe {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.5;
}

.order-summary__trust {
  margin: 10px 0 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: 15px;
  line-height: 1.5;
}

.order-summary__trust a {
  color: #e5b96b;
}

/* Post-close state */
.ticket-closed {
  padding: 40px 28px;
  border-radius: 20px;
  background: #2c1c10;
  color: rgba(255, 250, 240, 0.85);
  text-align: center;
}

.ticket-closed__title {
  margin: 0 0 10px;
  color: white;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.ticket-closed__body {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

.section--dates {
  background: var(--surface-tint);
}

.dates-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.dates-layout__intro {
  position: sticky;
  top: 118px;
}

.dates-layout__intro .section__lede {
  max-width: 34ch;
}

.timeline {
  gap: 0;
  margin-top: 0;
}

.timeline::before {
  top: 32px;
  bottom: 32px;
  left: 20px;
  background: rgba(44, 28, 16, 0.24);
}

.timeline__item {
  min-height: 116px;
  margin-bottom: 14px;
  padding: 23px 24px 22px 66px;
  border-color: rgba(44, 28, 16, 0.11);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(44, 28, 16, 0.055);
}

.timeline__item::before {
  left: 13px;
  width: 16px;
  height: 16px;
}

.timeline__item--next {
  border-color: rgba(201, 145, 36, 0.65);
  box-shadow: 0 0 0 3px rgba(201, 145, 36, 0.1), var(--shadow-soft);
}

.timeline__date {
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 900;
}

.timeline__title {
  font-size: 1.25rem;
}

.timeline__desc {
  max-width: 62ch;
  line-height: 1.55;
}

.section--closing-cta {
  padding-block: clamp(72px, 8vw, 112px);
  color: white;
  background:
    radial-gradient(36rem 28rem at 94% 20%, rgba(201, 145, 36, 0.2), transparent 70%),
    #2c1c10;
}

.closing-cta {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(48px, 8vw, 124px);
  align-items: center;
}

.section--closing-cta .section__eyebrow {
  color: #d4a12a;
}

.closing-cta__title {
  margin: 0;
  color: white;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 2.2rem + 4vw, 6rem);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.055em;
}

.closing-cta__body {
  max-width: 650px;
}

.closing-cta__body > p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.15rem, 1rem + 0.5vw, 1.4rem);
  line-height: 1.6;
}

.closing-cta__body > p strong {
  color: white;
}

.closing-cta .btn--accent {
  box-shadow: 0 16px 38px -16px rgba(201, 145, 36, 0.8);
}

.closing-cta__proof {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.closing-cta__proof li {
  position: relative;
  padding-left: 16px;
}

.closing-cta__proof li::before {
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-accent);
  content: "";
}

.section--about {
  background:
    radial-gradient(30rem 24rem at 8% 10%, rgba(44, 28, 16, 0.06), transparent 72%),
    var(--surface);
}

.section--about .section__container--narrow,
.section--compliance .section__container--narrow {
  max-width: 900px;
}

.section--about .prose,
.section--compliance .prose {
  max-width: 74ch;
  font-size: 1.03rem;
  line-height: 1.7;
}

.org-card {
  margin-top: 34px;
  padding: 24px;
  border-color: rgba(44, 28, 16, 0.14);
  background: var(--surface-tint);
}

.org-card__logo {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(44, 28, 16, 0.12);
  border-radius: 50%;
}

.org-card__name {
  font-family: var(--font-body);
  font-weight: 800;
}

.section--compliance {
  border-top: 0;
  background: #f0ece3;
}

.section--compliance .section__container {
  position: relative;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(44, 28, 16, 0.13);
  border-radius: 26px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow-soft);
}

.section--compliance .section__container::after {
  position: absolute;
  top: 30px;
  right: 34px;
  width: 50px;
  height: 58px;
  border: 2px solid rgba(44, 28, 16, 0.14);
  border-radius: 25px 25px 30px 30px;
  content: "";
}

.payment-footer {
  padding-top: 42px;
  border-top: 0;
  background: #2c1c10;
}

.payment-footer__container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px 56px;
}

.payment-footer__row {
  align-items: flex-start;
}

.payment-footer__small {
  margin-top: 0 !important;
  line-height: 1.6;
}

.payment-footer__small a {
  color: #e5b96b;
}

.payment-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 238, 0.16);
  grid-column: 1 / -1;
}

.payment-footer__legal a {
  color: #e5b96b;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.payment-footer__legal a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.buy-banner {
  border-top: 1px solid rgba(44, 28, 16, 0.12);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 -14px 44px rgba(44, 28, 16, 0.16);
  backdrop-filter: blur(16px);
}

.buy-banner__inner {
  align-items: center;
  gap: 20px;
  padding-block: 12px;
}

.buy-banner__info {
  flex: 1 1 auto;
  min-width: 0;
}

.buy-banner__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.buy-banner__meta {
  font-size: 13px;
  font-weight: 600;
  color: #9a4b1f;
}

.buy-banner__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
}

.buy-banner__cta-group {
  display: flex;
  width: auto;
  padding: 4px;
  border: 1px solid rgba(44, 28, 16, 0.14);
  border-radius: 14px;
  background: #f3ebdf;
  gap: 4px;
}

.buy-banner__bundle {
  min-width: 76px;
  padding: 8px 12px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: #2c1c10;
  cursor: pointer;
}

.buy-banner__bundle small {
  display: none;
}

.buy-banner__bundle:hover {
  background: rgba(255, 253, 248, 0.9);
  color: #2c1c10;
}

.buy-banner__bundle.is-selected {
  background: #fffdf8;
  color: #2c1c10;
  border-color: transparent;
  box-shadow: 0 1px 0 rgba(44, 28, 16, 0.06), 0 6px 16px rgba(44, 28, 16, 0.1);
}

.buy-banner__bundle.is-selected:hover {
  background: #fffdf8;
}

.buy-banner__cta {
  width: auto;
  min-width: 200px;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 13px;
  background: #c98a2e;
  color: #1a1208;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  text-align: center;
  box-shadow: 0 10px 22px -12px rgba(154, 75, 31, 0.9);
}

.buy-banner__cta:hover {
  background: color-mix(in oklab, #c98a2e 86%, white);
}

.share-rail__items {
  border-color: rgba(44, 28, 16, 0.14);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(14px);
}

.share-rail__toggle {
  color: #2c1c10;
  background: #fffdf8;
  border-color: rgba(44, 28, 16, 0.18);
  box-shadow: 0 10px 28px rgba(44, 28, 16, 0.16);
}

.share-rail__toggle:hover,
.share-rail[data-open="true"] .share-rail__toggle {
  background: #c98a2e;
  border-color: #c98a2e;
  color: #1a1208;
}

@media (max-width: 1080px) {
  .hero__container {
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.78fr);
    gap: 36px;
  }

  .hero__title {
    font-size: clamp(1.75rem, 1.2rem + 1.2vw, 2.2rem);
  }

  .hero__quickfacts li > span {
    display: none;
  }

  .pack-picker__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ticket-builder {
    grid-template-columns: 1fr;
  }

  .order-summary {
    position: static;
  }

  .prize-grid {
    display: flex;
    flex-direction: column;
  }

  .prize-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 64px;
  }

  .hero {
    padding: 20px var(--gutter) 28px;
  }

  .hero__container,
  .cause-layout,
  .ticket-intro,
  .dates-layout,
  .closing-cta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__title {
    max-width: none;
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 6vw, 2.1rem);
    line-height: 1.18;
  }

  .hero__lede {
    margin-bottom: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero__quickfacts {
    margin-bottom: 14px;
  }

  .hero__quickfacts li > span {
    display: none;
  }

  .hero__cta-row {
    margin-bottom: 12px;
  }

  .btn--lg {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero__media {
    order: -1;
    min-height: 0;
    align-self: auto;
  }

  .hero__media-frame {
    height: auto;
    min-height: 0;
    max-width: min(220px, 58vw);
    max-height: 34vh;
    margin-inline: auto;
    aspect-ratio: 1414 / 2000;
  }

  .hero__media-frame img {
    object-fit: contain;
  }

  .hero__media-caption {
    position: absolute;
    margin: 0;
  }

  .cause-layout__heading,
  .dates-layout__intro {
    position: static;
  }

  .cause-layout {
    gap: 30px;
  }

  .cause-layout .section__title {
    max-width: 17ch;
  }

  .ticket-intro,
  .dates-layout,
  .closing-cta {
    gap: 34px;
  }

  .prize-vault__header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .prize-vault__lede {
    justify-self: start;
  }

  .prize-grid {
    display: flex;
    flex-direction: column;
  }

  .payment-footer__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .event-strip__inner {
    justify-content: flex-start;
  }

  .event-strip__inner > span:not(.event-strip__dot) {
    display: none;
  }

  .event-strip a {
    margin-left: auto;
  }

  .site-header {
    min-height: 66px;
  }

  .org-strip__name {
    max-width: 20ch;
    font-size: 0.83rem;
  }

  .org-strip__sub {
    display: none;
  }

  .hero__title {
    font-size: clamp(1.65rem, 6.2vw, 2rem);
  }

  .hero__quickfacts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero__quickfacts li {
    padding-block: 13px;
  }

  .hero__quickfacts li > span {
    display: none;
  }

  .hero__media-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: space-between;
  }

  .counter-strip__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .counter-strip__divider {
    display: none;
  }

  .counter-strip__big {
    font-size: 1.35rem;
  }

  .counter-strip__label {
    font-size: 8.5px;
  }

  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-grid li {
    min-height: 0;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 170px 170px;
  }

  .gallery__item:first-child {
    grid-column: 1 / 3;
  }

  .ticket-status {
    gap: 14px;
  }

  .ticket-status__timing {
    text-align: left;
  }

  /* Pack cards become stacked full-width rows with a 64px+ hit area */
  .pack-picker__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pack-card {
    display: grid;
    grid-template-areas:
      "qty price"
      "per save";
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 2px 16px;
    min-height: 64px;
    padding: 14px 18px;
  }

  .pack-card__qty {
    grid-area: qty;
  }

  .pack-card__price {
    grid-area: price;
    font-size: 1.4rem;
    text-align: right;
  }

  .pack-card__per {
    grid-area: per;
  }

  .pack-card__save {
    grid-area: save;
    text-align: right;
  }

  .pack-card__flag {
    top: -10px;
    left: 12px;
  }

  .ticket-outcome__thumbs img {
    width: 46px;
    height: 46px;
  }

  /* Persistent bottom bar on mobile: packs, then Buy underneath */
  .buy-banner {
    transform: translateY(0);
  }

  .buy-banner__inner {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .buy-banner__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .buy-banner__cta-group {
    width: 100%;
  }

  .buy-banner__bundle {
    flex: 1;
    min-width: 0;
  }

  .buy-banner__cta {
    width: 100%;
    min-width: 0;
  }

  .prize-grid {
    display: flex;
    flex-direction: column;
  }

  .prize-card--featured {
    grid-column: auto;
  }

  .closing-cta__proof {
    display: grid;
  }

  .section--compliance .section__container::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding-inline: 16px;
  }

  .org-strip__logo {
    width: 40px;
    height: 40px;
  }

  .org-strip__name {
    max-width: 16ch;
  }

  .site-nav__cta {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding-inline: 18px;
  }

  .hero__title {
    font-size: clamp(1.6rem, 6vw, 1.95rem);
  }

  .hero__quickfacts strong {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 800;
  }

  .hero__trust {
    font-size: 12px;
  }

  .hero__cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__cta-row .btn {
    width: 100%;
  }

  .hero__media::before {
    display: none;
  }

  .hero__media-frame {
    max-width: min(200px, 56vw);
    max-height: 32vh;
    border-width: 3px;
    border-radius: 18px;
  }

  .prize-card__media img {
    max-height: 62vh;
    width: auto;
    max-width: 100%;
    margin-inline: auto;
  }

  .hero__media-caption {
    gap: 12px;
    padding: 12px 14px;
  }

  .hero__media-value {
    font-size: 1.42rem;
  }

  .hero__media-value--sm {
    font-size: 0.92rem;
  }

  .gallery {
    grid-template-rows: 190px 145px 145px;
    gap: 8px;
  }

  .gallery__item {
    border-radius: 13px;
  }

  .prize-grid {
    display: flex;
    flex-direction: column;
  }

  .prize-card--featured {
    grid-column: auto;
  }

  .prize-card--featured .prize-card__media {
    aspect-ratio: auto;
  }

  .timeline__item {
    padding-right: 18px;
  }

  .closing-cta__title {
    font-size: 3.7rem;
  }

  .org-card {
    flex-direction: column;
    align-items: flex-start;
  }

}

@media (prefers-reduced-motion: no-preference) {
  body[data-theme-loaded="true"] .hero__copy {
    animation: sasai-rise 0.7s var(--ease) both;
  }

  body[data-theme-loaded="true"] .hero__media {
    animation: sasai-rise 0.8s 0.08s var(--ease) both;
  }

  .hero__title-accent {
    animation: festive-shimmer 7s ease-in-out infinite;
  }

  .poster-deco__sparkles {
    animation: festive-twinkle 3.6s ease-in-out infinite;
  }

  .poster-deco__pine {
    animation: festive-sway 9s ease-in-out infinite;
  }

  .poster-deco__glint {
    animation: festive-glint 2.8s ease-in-out infinite;
  }

  .poster-deco__glint:nth-child(4) { animation-delay: -0.6s; animation-duration: 3.4s; }
  .poster-deco__glint:nth-child(5) { animation-delay: -1.4s; animation-duration: 2.5s; }
  .poster-deco__glint:nth-child(6) { animation-delay: -0.2s; animation-duration: 3.1s; }
  .poster-deco__glint:nth-child(7) { animation-delay: -1.9s; animation-duration: 2.9s; }
  .poster-deco__glint:nth-child(8) { animation-delay: -0.9s; animation-duration: 3.6s; }

  .festive-section .eyebrow::before,
  .festive-section .section__eyebrow::before {
    animation: festive-glint 2.6s ease-in-out infinite;
  }

  .festive-section .eyebrow::after,
  .festive-section .section__eyebrow::after {
    animation: festive-glint 2.6s ease-in-out infinite 1.2s;
  }

  .btn--primary::after,
  .btn--accent::after,
  .site-nav__cta::after {
    animation: festive-sheen 4.2s ease-in-out infinite;
  }

  .hero__media-frame {
    animation: festive-frame 5.5s ease-in-out infinite;
  }

  .prize-card::before {
    animation: festive-glow 3.8s ease-in-out infinite;
  }

  .prize-card::after {
    animation: festive-glow 3.8s ease-in-out infinite 1.6s;
  }

  .festive-lights span {
    animation: festive-lamp 2.4s ease-in-out infinite;
  }

  .festive-lights span:nth-child(3n) {
    animation-delay: -0.8s;
  }

  .festive-lights span:nth-child(3n + 1) {
    animation-delay: -1.6s;
  }

  .festive-section::after {
    animation: festive-lamp-row 2.8s ease-in-out infinite;
  }

  @keyframes sasai-rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes festive-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }

  @keyframes festive-twinkle {
    0%, 100% { opacity: 0.72; filter: brightness(0.92); }
    50% { opacity: 1; filter: brightness(1.18); }
  }

  @keyframes festive-sway {
    0%, 100% { transform: rotate(-0.6deg) translateY(0); }
    50% { transform: rotate(0.7deg) translateY(-4px); }
  }

  @keyframes festive-glint {
    0%, 100% { opacity: 0.18; transform: scale(0.7) rotate(0deg); }
    45% { opacity: 0.95; transform: scale(1.12) rotate(18deg); }
    60% { opacity: 0.4; transform: scale(0.85) rotate(8deg); }
  }

  @keyframes festive-sheen {
    0%, 62% { transform: translateX(-130%); }
    82% { transform: translateX(130%); }
    100% { transform: translateX(130%); }
  }

  @keyframes festive-frame {
    0%, 100% { box-shadow: 0 0 0 0 rgba(201, 145, 36, 0), var(--shadow-pull); }
    50% { box-shadow: 0 0 26px 2px rgba(201, 145, 36, 0.38), var(--shadow-pull); }
  }

  @keyframes festive-glow {
    0%, 100% { filter: brightness(0.9); opacity: 0.7; }
    50% { filter: brightness(1.35); opacity: 1; }
  }

  @keyframes festive-lamp {
    0%, 100% { opacity: 0.45; filter: brightness(0.85); }
    50% { opacity: 1; filter: brightness(1.35); }
  }

  @keyframes festive-lamp-row {
    0%, 100% { opacity: 0.4; filter: brightness(0.9); }
    50% { opacity: 0.7; filter: brightness(1.2); }
  }
}

/* Mobile audit refinements: contain decoration and preserve comfortable targets. */
.hero {
  overflow: hidden;
}

@media (max-width: 720px) {
  .event-strip {
    min-height: 44px;
    padding-block: 0;
  }

  .event-strip__inner {
    min-height: 44px;
  }

  .event-strip a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding-inline: 4px;
  }

  .buy-banner__cta {
    min-height: 44px;
  }

  .buy-banner__inner {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}

/* Mobile share: FAB on the right edge, stacked above Ask. */
@media (max-width: 900px) {
  .buy-banner__inner {
    flex-wrap: wrap;
    align-items: stretch;
  }

  .buy-banner__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .buy-banner__cta-group {
    width: 100%;
  }

  .buy-banner__cta {
    width: 100%;
    min-width: 0;
  }

  .share-rail {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(84px + env(safe-area-inset-bottom, 0px));
    top: auto;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    transition: bottom 0.2s var(--ease);
  }

  .share-rail__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
  }

  .share-rail__items {
    flex-direction: column;
    right: 0;
    bottom: calc(100% + 10px);
    left: auto;
    padding: 8px;
    border-radius: var(--radius-lg);
    gap: 4px;
  }

  .share-rail__items button,
  .share-rail__items a {
    width: 44px;
    height: 44px;
  }

  .share-rail__toast {
    right: 60px;
    left: auto;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }

  body:has(.buy-banner.is-visible) .share-rail {
    bottom: calc(236px + env(safe-area-inset-bottom, 0px));
  }

  body:has(.support-chat[data-open="true"]) .share-rail {
    opacity: 0;
    pointer-events: none;
  }
}

/* Desktop first screen: header + hero fit above The prizes. */
@media (min-width: 901px) {
  html {
    scroll-padding-top: 64px;
  }

  .site-header {
    min-height: 60px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .hero {
    display: flex;
    align-items: center;
    box-sizing: border-box;
    min-height: calc(100dvh - 60px);
    max-height: calc(100dvh - 60px);
    padding: 24px var(--gutter) 28px;
  }

  .hero__container {
    align-items: center;
    width: 100%;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 36px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .hero__title {
    max-width: none;
    margin-bottom: 14px;
    font-size: clamp(2.05rem, 1.4rem + 1.4vw, 2.7rem);
    line-height: 1.12;
  }

  .hero__lede {
    margin-bottom: 18px;
    font-size: 1.125rem;
    line-height: 1.55;
  }

  .hero__quickfacts {
    margin-bottom: 18px;
  }

  .hero__quickfacts li {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .hero__cta-row {
    margin-bottom: 14px;
  }

  .btn--lg {
    min-height: 52px;
    padding: 14px 22px;
    font-size: 16px;
  }

  .hero__quickfacts strong {
    font-size: 1.18rem;
  }

  .hero__quickfacts li > span {
    font-size: 12px;
  }

  .hero__trust {
    gap: 8px 16px;
    font-size: 13px;
  }

  .hero__media {
    min-height: 0;
    align-self: center;
  }

  .hero__media-frame {
    width: min(380px, 32vw);
    height: auto;
    max-height: calc(100dvh - 120px);
    aspect-ratio: 1414 / 2000;
  }

  .hero__media-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .section--prize {
    padding-block: 56px;
  }

  .section--prize > .section__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section--prize .section__title {
    max-width: none;
  }

  .section--prize > .section__container > .section__lede {
    margin-bottom: 28px;
  }

  .prize-grid {
    width: 100%;
    max-width: 920px;
    margin-top: 0;
    gap: 48px;
    align-items: stretch;
  }

  .prize-card {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;
    width: 100%;
    max-width: 920px;
    min-height: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .prize-card::before,
  .prize-card::after {
    display: none;
  }

  .prize-card:hover {
    transform: none;
  }

  .prize-card__badge {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: stretch;
    margin: 0;
    padding: 0 22px 0 0;
    border-right: 2px solid #c89124;
    color: #c89124;
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 0.9rem + 0.4vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-align: right;
    text-transform: none;
    white-space: nowrap;
  }

  .prize-card__main {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(44, 28, 16, 0.12);
    border-radius: 20px;
    background: linear-gradient(180deg, var(--surface) 0%, var(--surface-elev) 100%);
    box-shadow: 0 12px 34px rgba(44, 28, 16, 0.07);
  }

  .prize-card--featured .prize-card__media,
  .prize-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #2c1c10;
  }

  .prize-card__media img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: calc(100dvh - 17rem);
    object-fit: contain;
    object-position: center;
  }

  .prize-card__body {
    align-items: flex-start;
    text-align: left;
  }
}
/* AI supporter chat */
.support-chat__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.support-chat {
  position: fixed;
  z-index: 46;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
  transition: bottom 0.2s var(--ease);
}

.support-chat > * {
  pointer-events: auto;
}

body:has(.buy-banner.is-visible) .support-chat {
  bottom: 92px;
}

body:has(.support-chat[data-open="true"]) .share-rail {
  opacity: 0;
  pointer-events: none;
}

.support-chat__panel[hidden] {
  display: none;
}

.support-chat__panel {
  width: min(390px, calc(100vw - 32px));
  height: min(590px, calc(100dvh - 160px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto auto;
  overflow: hidden;
  border: 1px solid rgba(44, 28, 16, 0.16);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(44, 28, 16, 0.22);
}

.support-chat__header {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 11px;
  padding: 16px 16px 15px;
  color: white;
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 145, 36, 0.3), transparent 42%),
    linear-gradient(135deg, #2c1c10, var(--brand-primary));
}

.support-chat__mark,
.support-chat__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.support-chat__mark {
  width: 40px;
  height: 40px;
  color: #3a2a00;
  background: var(--brand-accent);
  box-shadow: 0 8px 18px rgba(5, 39, 36, 0.22);
}

.support-chat__heading {
  min-width: 0;
}

.support-chat__eyebrow {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-chat__heading h2 {
  margin: 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-chat__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  line-height: 1;
}

.support-chat__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #72d6a6;
  box-shadow: 0 0 0 4px rgba(114, 214, 166, 0.12);
}

.support-chat__close {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.support-chat__close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.support-chat__messages {
  min-height: 0;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(rgba(44, 28, 16, 0.028) 1px, transparent 1px),
    var(--surface-elev);
  background-size: 100% 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}

.support-chat__message {
  max-width: 88%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.support-chat__message--user {
  align-self: flex-end;
  justify-content: flex-end;
}

.support-chat__message--assistant {
  align-self: flex-start;
}

.support-chat__avatar {
  width: 28px;
  height: 28px;
  color: white;
  background: var(--brand-primary);
}

.support-chat__bubble {
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 16px 16px 16px 5px;
  color: var(--ink-soft);
  background: var(--surface);
  box-shadow: 0 5px 16px rgba(44, 28, 16, 0.05);
  font-size: 13px;
  line-height: 1.48;
}

.support-chat__bubble p {
  margin: 0;
  white-space: pre-line;
}

.support-chat__message--user .support-chat__bubble {
  border-color: var(--brand-primary);
  border-radius: 16px 16px 5px 16px;
  color: white;
  background: var(--brand-primary);
}

.support-chat__sources {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.support-chat__message--typing .support-chat__bubble p {
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.support-chat__message--typing .support-chat__bubble span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-primary);
  animation: support-chat-dot 0.9s ease-in-out infinite;
}

.support-chat__message--typing .support-chat__bubble span:nth-child(2) {
  animation-delay: 0.12s;
}

.support-chat__message--typing .support-chat__bubble span:nth-child(3) {
  animation-delay: 0.24s;
}

.support-chat__quick-replies {
  padding: 12px 14px 4px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.support-chat__quick-replies::-webkit-scrollbar {
  display: none;
}

.support-chat__quick-replies.is-used {
  display: none;
}

.support-chat__quick {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(44, 28, 16, 0.18);
  border-radius: 999px;
  color: var(--brand-primary);
  background: var(--surface-tint);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.support-chat__quick:hover {
  border-color: var(--brand-primary);
  background: color-mix(in oklab, var(--surface-tint) 74%, var(--brand-primary));
}

.support-chat__form {
  margin: 10px 14px 0;
  padding: 5px 5px 5px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  background: white;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.support-chat__form:focus-within {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(44, 28, 16, 0.09);
}

.support-chat__form input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-size: 13px;
}

.support-chat__form input::placeholder {
  color: var(--muted);
}

.support-chat__send {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--brand-primary);
}

.support-chat__send:disabled {
  cursor: wait;
  opacity: 0.62;
}

.support-chat__notice {
  margin: 0;
  padding: 10px 16px 14px;
  color: var(--muted);
  font-size: 9.5px;
  line-height: 1.4;
}

.support-chat__notice a {
  margin-left: 3px;
  font-weight: 800;
  white-space: nowrap;
}

.support-chat__launcher {
  min-width: 116px;
  min-height: 56px;
  padding: 7px 17px 7px 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: white;
  background: var(--brand-primary);
  box-shadow: 0 18px 40px rgba(44, 28, 16, 0.26);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.support-chat__launcher:hover {
  background: color-mix(in oklab, var(--brand-primary) 88%, white);
  transform: translateY(-1px);
}

.support-chat__launcher-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #3a2a00;
  background: var(--brand-accent);
}

@keyframes support-chat-dot {
  0%,
  65%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  32% {
    opacity: 1;
    transform: translateY(-3px);
  }
}

@media (max-width: 720px) {
  .support-chat {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(16px + env(safe-area-inset-bottom));
    visibility: visible;
    opacity: 1;
  }

  body:has(.buy-banner.is-visible) .support-chat {
    bottom: calc(168px + env(safe-area-inset-bottom));
    visibility: visible;
    opacity: 1;
  }

  .support-chat__panel {
    width: calc(100vw - 24px);
    height: min(590px, calc(100dvh - 210px));
    border-radius: 21px;
  }

  .support-chat__header {
    padding: 13px;
  }

  .support-chat__messages {
    padding: 14px 12px;
  }

  .support-chat__launcher {
    width: 56px;
    min-width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 7px;
    justify-content: center;
  }

  .support-chat__launcher > span:last-child {
    display: none;
  }

  .support-chat[data-open="true"] .support-chat__launcher {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .support-chat,
  .support-chat__launcher,
  .support-chat__message--typing .support-chat__bubble span,
  .hero__title-accent,
  .poster-deco__sparkles,
  .poster-deco__pine,
  .poster-deco__glint,
  .festive-section .eyebrow::before,
  .festive-section .eyebrow::after,
  .festive-section .section__eyebrow::before,
  .festive-section .section__eyebrow::after,
  .btn--primary::after,
  .btn--accent::after,
  .site-nav__cta::after,
  .hero__media-frame,
  .prize-card::before,
  .prize-card::after,
  .festive-lights span,
  .festive-section::after {
    transition: none;
    animation: none;
  }
}

@media (max-width: 720px) {
  .poster-deco__sparkles {
    background-size: 160px, 170px;
  }

  .poster-deco__pine {
    background-size: 150px, 180px;
  }

  .poster-deco {
    opacity: 0.85;
  }

  .poster-deco__glint:nth-child(n+7),
  .festive-lights span:nth-child(n+12),
  .festive-section::after {
    display: none;
  }

  .festive-section .section__title {
    background-size: 16px;
  }

  .prize-card::before,
  .prize-card::after {
    width: 40px;
    height: 40px;
  }
}
/* =============================================================
   2026 VISUAL REFINEMENT
   A calmer, more premium festive layer: botanical corners,
   selective motion, tactile prize cards and a dimensional hero.
   ============================================================= */

.festive-section::after {
  right: max(var(--gutter), calc((100vw - var(--max-w)) / 2));
  left: max(var(--gutter), calc((100vw - var(--max-w)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 145, 36, 0.42) 18%, rgba(44, 28, 16, 0.16) 50%, rgba(201, 145, 36, 0.42) 82%, transparent);
  opacity: 0.55;
  animation: none !important;
}

.poster-deco {
  opacity: 1;
}

.poster-deco__sparkles,
.poster-deco__pine {
  inset: 0;
  background-repeat: no-repeat;
  transform: none;
  filter: saturate(0.88) contrast(0.98);
  animation: none !important;
}

.poster-deco__sparkles {
  background-image: url("./assets/deco/eucalyptus-gold-tr-v2.webp");
  background-position: right -86px top -96px;
  background-size: clamp(300px, 38vw, 560px);
  opacity: 0.32;
}

.poster-deco__pine {
  background-image: url("./assets/deco/eucalyptus-gold-bl-v2.webp");
  background-position: left -110px bottom -120px;
  background-size: clamp(310px, 40vw, 590px);
  opacity: 0.22;
}

.hero .poster-deco__sparkles {
  background-position: right -80px top -86px;
  background-size: clamp(360px, 42vw, 650px);
  opacity: 0.44;
}

.hero .poster-deco__pine {
  background-position: left -120px bottom -160px;
  background-size: clamp(330px, 36vw, 520px);
  opacity: 0.18;
}

.section--tickets .poster-deco__sparkles,
.section--tickets .poster-deco__pine,
.section--compliance .poster-deco,
.section--about .poster-deco__pine {
  display: none;
}

.section--dates .poster-deco__sparkles,
.section--about .poster-deco__sparkles {
  opacity: 0.14;
}

.poster-deco__glint {
  display: none;
  width: 9px;
  height: 9px;
  opacity: 0.5;
  animation: none !important;
}

.hero .poster-deco__glint:nth-child(3),
.hero .poster-deco__glint:nth-child(6),
.hero .poster-deco__glint:nth-child(8),
.section--prize .poster-deco__glint:nth-child(4) {
  display: block;
}

.festive-section .section__title {
  background-image: none;
}

.festive-section .eyebrow::before,
.festive-section .section__eyebrow::before {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-accent));
  animation: none !important;
}

.festive-section .eyebrow::after,
.festive-section .section__eyebrow::after {
  width: 6px;
  height: 6px;
  border: 1px solid var(--brand-accent);
  background: transparent;
  transform: rotate(45deg);
  animation: none !important;
}

.hero::before {
  top: 50%;
  right: clamp(30px, 6vw, 110px);
  width: min(42vw, 540px);
  height: min(42vw, 540px);
  border: 1px solid rgba(201, 145, 36, 0.2);
  background: radial-gradient(circle at 48% 45%, rgba(255, 249, 230, 0.88), rgba(201, 145, 36, 0.1) 54%, transparent 72%);
  box-shadow: inset 0 0 0 18px rgba(255, 255, 255, 0.12);
  transform: translateY(-50%);
}

.hero__media {
  --hero-tilt-x: 0deg;
  --hero-tilt-y: 0deg;
  --hero-shine-x: 48%;
  --hero-shine-y: 34%;
  position: relative;
  perspective: 1100px;
}

.hero__media::before {
  inset: 20px -20px -20px 34px;
  border: 1px solid rgba(44, 28, 16, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(201, 145, 36, 0.24), rgba(44, 28, 16, 0.12)),
    #e7dcc9;
  box-shadow: 0 28px 60px -34px rgba(44, 28, 16, 0.55);
  transform: rotate(2.4deg);
}

.hero__media-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 211, 123, 0.88);
  box-shadow:
    0 0 0 5px rgba(44, 28, 16, 0.9),
    0 0 0 6px rgba(201, 145, 36, 0.52),
    0 30px 72px -28px rgba(44, 28, 16, 0.62);
  transform: rotateX(var(--hero-tilt-x)) rotateY(var(--hero-tilt-y));
  transform-style: preserve-3d;
  transition: transform 0.32s var(--ease), box-shadow 0.45s var(--ease);
  animation: none !important;
}

.hero__media-frame::after {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--hero-shine-x) var(--hero-shine-y), rgba(255, 244, 205, 0.18), transparent 30%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.1), transparent 34% 66%, rgba(201, 145, 36, 0.08));
  content: "";
  opacity: 0.78;
  transition: background-position 0.25s ease;
}

.hero__media:hover .hero__media-frame {
  box-shadow:
    0 0 0 5px rgba(44, 28, 16, 0.92),
    0 0 0 6px rgba(201, 145, 36, 0.72),
    0 38px 86px -30px rgba(44, 28, 16, 0.72);
}

.hero__media:hover .hero__media-frame img {
  transform: scale(1.012);
}

.btn--primary::after,
.btn--accent::after,
.site-nav__cta::after {
  top: -22%;
  right: auto;
  bottom: -22%;
  left: -62%;
  width: 46%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 248, 225, 0.08) 28%,
    rgba(255, 248, 225, 0.3) 50%,
    rgba(255, 248, 225, 0.08) 72%,
    transparent 100%
  );
  opacity: 0;
  filter: blur(0.6px);
  transform: skewX(-16deg) translate3d(0, 0, 0);
  animation: none !important;
}

.btn--primary:hover::after,
.btn--primary:focus-visible::after,
.btn--accent:hover::after,
.btn--accent:focus-visible::after,
.site-nav__cta:hover::after,
.site-nav__cta:focus-visible::after {
  animation: sasai-sheen-soft 1.15s cubic-bezier(0.22, 0.61, 0.36, 1) both !important;
}

.prize-card__main {
  position: relative;
  isolation: isolate;
  transition: transform 0.36s var(--ease), box-shadow 0.36s var(--ease), border-color 0.36s ease;
}

.prize-card__main::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid transparent;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.52), transparent 28%, transparent 72%, rgba(201, 145, 36, 0.2)) border-box;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  content: "";
}

.prize-card__media {
  position: relative;
}

.prize-card__media::after {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(44, 28, 16, 0.02) 56%, rgba(44, 28, 16, 0.22));
  content: "";
}

.prize-card:hover .prize-card__main {
  border-color: rgba(201, 145, 36, 0.38);
  box-shadow: 0 26px 58px -30px rgba(44, 28, 16, 0.5);
  transform: translateY(-5px);
}

.prize-card__media img {
  transition: transform 0.7s var(--ease), filter 0.7s ease;
}

.prize-card:hover .prize-card__media img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.012);
}

body[data-motion="ready"] [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.68s var(--ease) var(--reveal-delay, 0ms),
    transform 0.68s var(--ease) var(--reveal-delay, 0ms);
}

body[data-motion="ready"] [data-reveal].is-in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero .poster-deco__sparkles {
    animation: sasai-botanical-drift 16s ease-in-out infinite alternate !important;
  }

  .hero .poster-deco__glint:nth-child(3),
  .hero .poster-deco__glint:nth-child(6),
  .hero .poster-deco__glint:nth-child(8) {
    animation: festive-glint 4.8s ease-in-out infinite !important;
  }

  .hero .poster-deco__glint:nth-child(6) { animation-delay: -1.8s !important; }
  .hero .poster-deco__glint:nth-child(8) { animation-delay: -3.2s !important; }

  .hero__title-accent {
    animation-duration: 12s;
  }

  .festive-lights span {
    animation-duration: 4.8s;
  }
}

@keyframes sasai-botanical-drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-6px, 5px, 0) scale(1.012); }
}

@keyframes sasai-sheen-soft {
  0% {
    opacity: 0;
    transform: skewX(-16deg) translate3d(0, 0, 0);
  }
  22% { opacity: 0.72; }
  72% { opacity: 0.5; }
  100% {
    opacity: 0;
    transform: skewX(-16deg) translate3d(460%, 0, 0);
  }
}

@media (max-width: 900px) {
  .hero::before {
    top: 170px;
    right: 50%;
    width: 320px;
    height: 320px;
    transform: translate(50%, -50%);
  }

  .poster-deco__sparkles {
    background-position: right -100px top -92px;
    background-size: 330px;
  }

  .poster-deco__pine {
    background-position: left -110px bottom -108px;
    background-size: 330px;
  }

  .hero .poster-deco__sparkles {
    background-position: right -94px top -80px;
    background-size: 360px;
    opacity: 0.36;
  }

  .hero .poster-deco__pine {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero .poster-deco__sparkles {
    background-position: right -112px top -74px;
    background-size: 330px;
    opacity: 0.31;
  }

  .hero__media-frame {
    box-shadow:
      0 0 0 3px rgba(44, 28, 16, 0.9),
      0 0 0 4px rgba(201, 145, 36, 0.5),
      0 22px 48px -26px rgba(44, 28, 16, 0.6);
  }

  .section--dates .poster-deco,
  .section--about .poster-deco,
  .section--prize .poster-deco__pine {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-motion] [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn--primary::after,
  .btn--accent::after,
  .site-nav__cta::after {
    opacity: 0 !important;
    animation: none !important;
  }


  .hero__media-frame,
  .prize-card__main,
  .prize-card__media img {
    transition: none;
    animation: none !important;
  }
}
