:root {
  --navy-950: #041231;
  --navy-900: #071d49;
  --navy-800: #0b2f70;
  --blue: #164ea6;
  --red: #d51f2b;
  --red-dark: #a90f1b;
  --gold: #d5ad52;
  --gold-light: #f1d58d;
  --ink: #10182a;
  --muted: #667085;
  --paper: #fbfaf7;
  --white: #fff;
  --line: rgba(7, 29, 73, 0.12);
  --shadow: 0 24px 70px rgba(4, 18, 49, 0.12);
  --pattern: url("../images/header-pattern.jpg");
  --display: "Manrope", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--body); -webkit-font-smoothing: antialiased; }
button, a { font: inherit; }
a { color: inherit; }
img { max-width: 100%; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: var(--pattern) center top / auto 220px repeat-y;
  opacity: 0.25;
  pointer-events: none;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(251,250,247,.75), rgba(251,250,247,.96) 28%, rgba(251,250,247,.9));
  pointer-events: none;
}

.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 100; }
.scroll-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--red), var(--gold)); }
.site-header { position: relative; z-index: 1; background: #fff; box-shadow: 0 1px 0 rgba(1,25,53,.1); }
.identity-band { background: #fff var(--pattern) center / cover no-repeat; }
.identity-shell, .nav-shell, .hero-shell, .section-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.identity-shell { height: 126px; display: flex; align-items: center; }
.organization-brand { display: inline-flex; align-items: center; gap: 24px; color: #011935; text-decoration: none; }
.organization-brand img { width: 100px; height: 100px; object-fit: contain; mix-blend-mode: multiply; }
.organization-copy { display: flex; flex-direction: column; gap: 7px; color: inherit; text-decoration: none; }
.organization-brand strong { font: 700 clamp(1.65rem, 2.7vw, 2.45rem)/1.1 var(--display); letter-spacing: -.045em; }
.organization-brand small { color: #24364e; font-size: clamp(.83rem, 1.25vw, 1.05rem); }
.organization-logo, .organization-logo .custom-logo-link { display: flex; align-items: center; }
.organization-logo:empty { display: none; }
.nav-band { position: sticky; top: 0; z-index: 90; background: #011935; color: #fff; box-shadow: 0 2px 10px rgba(1,25,53,.12); }
.nav-shell { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.event-brand { display: flex; align-items: baseline; gap: 6px; color: #fff; font: 700 .82rem var(--display); letter-spacing: .055em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.event-brand span { color: var(--gold-light); font-size: 1.05rem; }
.event-brand sup { font-size: .5em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.desktop-nav a { color: rgba(255,255,255,.76); font-weight: 600; font-size: .84rem; text-decoration: none; position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--red); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.desktop-nav a:hover { color: #fff; }
.nav-register { min-height: 58px; align-self: stretch; display: flex; align-items: center; gap: 10px; padding: 0 22px; color: #fff; background: var(--red); font-size: .8rem; font-weight: 700; text-decoration: none; transition: background .2s ease; }
.nav-register:hover { background: var(--red-dark); }
.nav-register i { font-size: .75em; }

.button { border: 0; border-radius: 10px; background: var(--red); color: white; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 15px 22px; font-weight: 700; text-decoration: none; box-shadow: 0 12px 28px rgba(213,31,43,.23); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); background: var(--red-dark); box-shadow: 0 16px 35px rgba(213,31,43,.3); }
.button i { font-size: .82em; transition: transform .25s ease; }
.button:hover i { transform: translateX(3px); }
.button-small { padding: 11px 17px; font-size: .84rem; }

.hero { min-height: calc(100svh - 184px); position: relative; display: flex; align-items: center; overflow: hidden; padding: 20px 0 28px; }
.hero-stage { position: relative; display: grid; grid-template-columns: minmax(0, 1.75fr) minmax(330px, .7fr); background: white; border-radius: 18px 18px 0 0; overflow: hidden; box-shadow: 0 24px 64px rgba(4,18,49,.15); border: 1px solid rgba(1,25,53,.1); }
.hero-image-wrap { position: relative; min-height: 0; height: 100%; overflow: hidden; background: var(--navy-900); }
.hero-image { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.hero-stage:hover .hero-image { transform: scale(1.025); }
.hero-panel { position: relative; display: flex; flex-direction: column; justify-content: center; min-width: 0; padding: 24px 31px; color: white; background: #011935; overflow: hidden; }
.hero-panel::before { content: ""; position: absolute; inset: 0; background: var(--pattern) center / auto 100%; opacity: .08; mix-blend-mode: screen; }
.hero-panel > * { position: relative; z-index: 1; }
.overline, .order-kicker { margin: 0 0 12px; color: var(--gold-light); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.anniversary-number { display: flex; align-items: flex-start; color: white; font: 800 clamp(3.8rem, 5.4vw, 5.3rem)/.8 var(--display); letter-spacing: -.08em; text-shadow: 0 8px 22px rgba(0,0,0,.2); }
.anniversary-number span { background: linear-gradient(180deg, #fff 15%, var(--gold-light) 110%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.anniversary-number sup { margin: 2px 0 0 10px; color: var(--gold-light); font-size: 1rem; letter-spacing: 0; }
.hero-panel h1 { margin: 13px 0 9px; font: 800 clamp(1.7rem, 2.25vw, 2.25rem)/1.04 var(--display); letter-spacing: -.045em; }
.hero-panel h1 span { color: var(--gold-light); }
.hero-intro { margin: 0; color: rgba(255,255,255,.72); font-size: .86rem; line-height: 1.55; }
.hero-facts { margin: 15px 0; border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.hero-fact { display: flex; align-items: center; gap: 13px; padding: 13px 0; }
.hero-fact + .hero-fact { border-top: 1px solid rgba(255,255,255,.1); }
.hero-fact i { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: var(--gold-light); background: rgba(255,255,255,.09); }
.hero-fact span { font-size: .83rem; font-weight: 600; line-height: 1.4; }
.hero-fact small { display: block; color: rgba(255,255,255,.55); font-size: .65rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.button-light { width: 100%; padding-block: 13px; background: white; color: var(--navy-900); box-shadow: none; }
.button-light:hover { color: white; }
.host-strip { display: flex; align-items: center; gap: 32px; min-height: 54px; padding: 12px 28px; margin: 0; border: 1px solid var(--line); border-top: 0; border-radius: 0 0 18px 18px; background: #fff; box-shadow: 0 16px 38px rgba(4,18,49,.07); }
.host-label { color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; white-space: nowrap; }
.host-list { display: flex; align-items: center; justify-content: space-around; flex: 1; gap: 16px; color: var(--navy-800); font: 700 .78rem var(--display); }
.host-list i { width: 4px; height: 4px; background: var(--red); border-radius: 50%; }

.section { padding: 110px 0; position: relative; }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; color: var(--red); font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.section-kicker::before { content: ""; width: 30px; height: 1px; background: currentColor; }
.section h2 { color: var(--navy-900); font: 700 clamp(2.35rem, 4.5vw, 4.4rem)/1.06 var(--display); letter-spacing: -.055em; }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 50px 80px; }
.section-heading h2 { margin: 20px 0 0; }
.section-heading h2 em { color: var(--red); font-style: normal; }
.about-copy { padding-top: 31px; }
.about-copy .lead { margin-top: 0; color: var(--navy-900); font: 700 1.3rem/1.5 var(--display); }
.about-copy p:last-child { color: var(--muted); line-height: 1.8; }
.experience-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.experience-card { min-height: 275px; padding: 30px; position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: 0 8px 26px rgba(4,18,49,.055); transition: .3s ease; }
.experience-card::after { content: ""; position: absolute; inset: auto -20% -55% 25%; height: 180px; background: var(--pattern) center/cover; opacity: .4; transform: rotate(-5deg); transition: .35s ease; }
.experience-card:hover { transform: translateY(-4px); border-color: rgba(11,47,112,.3); box-shadow: 0 14px 34px rgba(4,18,49,.09); }
.experience-card:hover::after { transform: rotate(-2deg) scale(1.1); opacity: .65; }
.experience-card.featured { color: white; border-color: #011935; background: #011935; transform: none; }
.experience-card.featured h3 { color: white; }
.experience-card.featured p { color: rgba(255,255,255,.65); }
.experience-card.featured::after { opacity: .08; filter: invert(1); }
.card-number { position: absolute; top: 25px; right: 27px; color: rgba(7,29,73,.16); font: 700 .72rem var(--display); letter-spacing: .12em; }
.featured .card-number { color: rgba(255,255,255,.3); }
.experience-card > i { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 45px; border-radius: 14px; color: var(--red); background: rgba(213,31,43,.09); }
.featured > i { color: var(--gold-light); background: rgba(255,255,255,.1); }
.experience-card h3 { position: relative; z-index: 1; margin: 0 0 8px; color: var(--navy-900); font: 700 1.25rem var(--display); }
.experience-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.65; }

.tickets-section { color: white; background: linear-gradient(150deg, #0b3479 0%, var(--navy-900) 43%, var(--navy-950) 100%); overflow: hidden; }
.tickets-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px); background-size: 45px 45px; mask-image: linear-gradient(to bottom, black, transparent); }
.tickets-section::after { content: ""; position: absolute; width: 520px; height: 520px; right: -260px; top: 100px; border: 1px solid rgba(213,173,82,.16); border-radius: 50%; box-shadow: 0 0 0 90px rgba(213,173,82,.025), 0 0 0 180px rgba(213,173,82,.018); }
.tickets-section .section-shell { position: relative; z-index: 1; }
.center-heading { text-align: center; margin-bottom: 52px; }
.section-kicker.light { color: var(--gold-light); }
.center-heading h2 { color: white; margin: 17px 0 12px; }
.center-heading p { margin: 0; color: rgba(255,255,255,.6); }
.ticket-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, .7fr); gap: 25px; align-items: start; }
.ticket-list { display: grid; gap: 14px; }
.ticket-card { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; min-height: 170px; padding: 25px 25px 25px 28px; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 17px; background: rgba(255,255,255,.075); backdrop-filter: blur(12px); transition: border .3s ease, background .3s ease, transform .3s ease; }
.ticket-card:hover, .ticket-card.has-quantity { transform: translateX(6px); border-color: rgba(213,173,82,.55); background: rgba(255,255,255,.11); }
.ticket-accent { position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--gold); opacity: 0; transform: scaleY(.3); transition: .3s ease; }
.ticket-card:hover .ticket-accent, .ticket-card.has-quantity .ticket-accent { opacity: 1; transform: scaleY(1); }
.ticket-icon { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.14); border-radius: 15px; color: var(--gold-light); background: rgba(255,255,255,.06); }
.ticket-title { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ticket-title h3 { margin: 0; font: 700 1.15rem var(--display); }
.ticket-title span { padding: 4px 9px; border-radius: 99px; color: #6b4100; background: var(--gold-light); font-size: .61rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.ticket-copy p { max-width: 540px; margin: 8px 0 13px; color: rgba(255,255,255,.58); font-size: .84rem; line-height: 1.55; }
.ticket-card .price { color: white; font: 700 1.22rem var(--display); }
.ticket-card .price small { color: rgba(255,255,255,.45); font: 500 .72rem var(--body); }
.quantity { display: flex; align-items: center; padding: 4px; border: 1px solid rgba(255,255,255,.14); border-radius: 11px; background: rgba(4,18,49,.35); }
.quantity button { width: 38px; height: 38px; border: 0; border-radius: 8px; color: white; background: rgba(255,255,255,.08); font-size: 1.15rem; cursor: pointer; transition: .2s ease; }
.quantity button:hover { color: var(--navy-950); background: var(--gold-light); transform: scale(1.06); }
.quantity button:active { transform: scale(.92); }
.quantity span { width: 38px; text-align: center; font: 700 1rem var(--display); }
.quantity span.pop { animation: qtyPop .25s ease; }
@keyframes qtyPop { 50% { transform: scale(1.35); color: var(--gold-light); } }
.order-card { position: sticky; top: 105px; padding: 30px; border: 1px solid rgba(213,173,82,.32); border-radius: 18px; background: rgba(255,255,255,.98); color: var(--ink); box-shadow: 0 25px 65px rgba(0,0,0,.28); }
.order-kicker { color: var(--red); }
.order-card h3 { margin: 0 0 25px; color: var(--navy-900); font: 700 1.55rem var(--display); }
.order-lines { min-height: 80px; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.empty-order { color: var(--muted); font-size: .83rem; line-height: 1.55; }
.order-line { display: flex; justify-content: space-between; gap: 16px; margin: 8px 0; font-size: .82rem; }
.order-line span { color: var(--muted); }
.order-line strong { color: var(--navy-900); }
.order-total { display: flex; justify-content: space-between; align-items: flex-end; margin: 23px 0; }
.order-total span { color: var(--muted); font-size: .8rem; }
.order-total strong { color: var(--red); font: 800 1.9rem var(--display); letter-spacing: -.04em; }
.order-total strong.bump { animation: totalBump .3s ease; }
@keyframes totalBump { 50% { transform: scale(1.08); } }
.checkout-button { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 15px 17px; border: 0; border-radius: 10px; color: white; background: var(--red); font-weight: 700; cursor: pointer; box-shadow: 0 12px 25px rgba(213,31,43,.22); transition: .25s ease; }
.checkout-button:hover:not(:disabled) { background: var(--red-dark); transform: translateY(-2px); }
.checkout-button:disabled { color: #98a2b3; background: #e4e7ec; box-shadow: none; cursor: not-allowed; }
.checkout-button[aria-busy="true"] i { animation: checkoutArrow 1s ease-in-out infinite; }
@keyframes checkoutArrow { 50% { transform: translateX(5px); } }
.checkout-message { min-height: 1.2em; margin: 10px 0 0; color: var(--red); text-align: center; font-size: .72rem; line-height: 1.4; }
.secure-note { margin: 14px 0 0; text-align: center; color: var(--muted); font-size: .7rem; }
.secure-note i { color: #169b62; margin-right: 5px; }
.refund-note { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: #8992a3; text-align: center; font-size: .68rem; line-height: 1.5; }

.venue-section { background: rgba(255,255,255,.58); }
.venue-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.venue-heading h2 { margin: 18px 0 0; }
.venue-heading > p { max-width: 380px; margin: 0 0 8px; color: var(--muted); line-height: 1.7; }
.venue-card { display: grid; grid-template-columns: .75fr 1.25fr; min-height: 470px; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; box-shadow: var(--shadow); }
.venue-content { position: relative; padding: 50px; overflow: hidden; color: white; background: linear-gradient(150deg, var(--navy-800), var(--navy-950)); }
.venue-content::before { content: ""; position: absolute; inset: auto -40px -30px 25%; height: 240px; background: var(--pattern) center/cover; opacity: .11; filter: invert(1); transform: rotate(-5deg); }
.venue-content > * { position: relative; z-index: 1; }
.location-pin, .hotel-icon { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 50px; border-radius: 50%; color: var(--navy-900); background: var(--gold-light); box-shadow: 0 12px 30px rgba(213,173,82,.2); }
.venue-content .overline { margin-bottom: 12px; }
.venue-content h3 { margin: 0 0 17px; font: 700 clamp(1.7rem, 2.5vw, 2.4rem)/1.18 var(--display); letter-spacing: -.04em; }
.venue-content address { color: rgba(255,255,255,.65); font-size: .92rem; font-style: normal; line-height: 1.7; }
.text-link { display: inline-flex; gap: 9px; align-items: center; margin-top: 28px; color: white; font-weight: 700; font-size: .85rem; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }
.text-link:hover { color: var(--gold-light); }
.venue-map { min-height: 420px; filter: saturate(.75) contrast(1.05); }
.venue-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.hotel-card { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; margin-top: 22px; padding: 30px 34px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.88); box-shadow: 0 14px 40px rgba(4,18,49,.07); }
.hotel-icon { width: 52px; height: 52px; margin: 0; color: white; background: var(--red); }
.hotel-copy h3 { margin: 7px 0 4px; color: var(--navy-900); font: 700 1.25rem var(--display); }
.hotel-copy p { margin: 0 0 7px; color: var(--muted); font-size: .85rem; }
.rate-note { color: #157657; font-size: .75rem; font-weight: 600; }
.rate-note i { margin-right: 5px; }
.button-outline { color: var(--navy-900); background: transparent; border: 1px solid rgba(7,29,73,.2); box-shadow: none; }
.button-outline:hover { color: white; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1); transition-delay: var(--delay, 0ms); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.standard-content,
.error-page { padding-block: 90px; }
.standard-content h1,
.error-page h1 { color: var(--navy-900); font: 700 clamp(2rem, 5vw, 4rem)/1.08 var(--display); letter-spacing: -.05em; }
.standard-content a { color: var(--navy-800); }
.entry-content { color: var(--muted); line-height: 1.8; }
.error-page { min-height: 60vh; text-align: center; }
.error-code { margin: 0; color: var(--red); font: 800 clamp(4rem, 12vw, 9rem)/1 var(--display); }
.error-page .button { margin-top: 20px; }
.body-copy { color: var(--muted); line-height: 1.8; }
.body-copy > :first-child { margin-top: 0; }
.body-copy > :last-child { margin-bottom: 0; }
.primary-menu { display: flex; gap: 34px; margin: 0; padding: 0; list-style: none; }
.admin-bar .nav-band { top: 32px; }

/* WooCommerce checkout and order confirmation. */
.woocommerce-checkout .nav-band { position: relative; top: auto; }
.woocommerce-checkout .standard-content { width: min(1180px, calc(100% - 48px)); padding-top: 65px; padding-bottom: 100px; }
.woocommerce-checkout .standard-content > article > h1 { margin: 0 0 38px; }
.woocommerce-checkout .entry-content { color: var(--ink); }
.woocommerce-checkout .wc-block-checkout { font-family: var(--body); }
.woocommerce-checkout .wc-block-checkout__main { padding-right: clamp(20px, 4vw, 58px); }
.woocommerce-checkout .wc-block-checkout__sidebar { padding: 25px; border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: 0 18px 45px rgba(4,18,49,.08); }
.woocommerce-checkout .wc-block-components-title,
.woocommerce-checkout .wc-block-components-checkout-step__title { color: var(--navy-900); font-family: var(--display); }
.woocommerce-checkout .wc-block-components-text-input input,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
.woocommerce-checkout .wc-block-components-address-form__address_2-toggle { border-color: rgba(7,29,73,.22); border-radius: 9px; }
.woocommerce-checkout .wc-block-components-text-input input:focus,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input:focus { border-color: var(--navy-800); box-shadow: 0 0 0 1px var(--navy-800); }
.woocommerce-checkout .wc-block-components-order-summary-item__image { display: none; }
.woocommerce-checkout .wc-block-components-order-summary-item__description { padding-left: 0; }
.woocommerce-checkout .wc-block-components-formatted-money-amount,
.woocommerce-checkout .wc-block-components-product-price,
.woocommerce-checkout .wc-block-components-order-summary-item__total-price { color: var(--navy-900) !important; }
.woocommerce-checkout .wc-block-components-checkout-place-order-button { min-height: 56px; border: 0; border-radius: 10px; color: #fff; background: var(--red); font-weight: 700; box-shadow: 0 12px 26px rgba(213,31,43,.22); }
.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover { color: #fff; background: var(--red-dark); }
.woocommerce-checkout .woocommerce-order { padding: clamp(25px, 4vw, 52px); border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
.woocommerce-checkout .woocommerce-order-overview { display: flex; flex-wrap: wrap; gap: 18px 0; margin: 28px 0 45px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.woocommerce-checkout .woocommerce-order-overview li { padding: 0 24px; color: var(--muted); }
.woocommerce-checkout .woocommerce-order-overview li:first-child { padding-left: 0; }
.woocommerce-checkout .woocommerce-order-overview strong { color: var(--navy-900); }
.woocommerce-checkout .woocommerce-order-details h2,
.woocommerce-checkout .woocommerce-customer-details h2 { color: var(--navy-900); font: 700 1.5rem var(--display); }
.woocommerce-checkout .woocommerce-table,
.woocommerce-checkout .woocommerce-customer-details address { overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.woocommerce-checkout .woocommerce-table th,
.woocommerce-checkout .woocommerce-table td { padding: 14px 16px; border-color: var(--line); }
.woocommerce-checkout .woocommerce-customer-details address { padding: 20px; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero-stage { grid-template-columns: 1fr; }
  .hero-image-wrap { min-height: 0; aspect-ratio: 2 / 1; }
  .hero-panel { display: grid; grid-template-columns: auto 1fr; column-gap: 25px; }
  .hero-panel .overline, .hero-panel h1, .hero-intro, .hero-facts, .button-light { grid-column: 2; }
  .anniversary-number { grid-column: 1; grid-row: 1 / 6; align-self: center; }
  .hero-facts { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-fact + .hero-fact { border-top: 0; }
  .button-light { width: fit-content; }
  .about-grid { gap: 40px; }
  .ticket-layout { grid-template-columns: 1fr; }
  .order-card { position: static; }
  .venue-card { grid-template-columns: .9fr 1.1fr; }
  .hotel-card { grid-template-columns: auto 1fr; }
  .hotel-card .button { grid-column: 2; width: fit-content; }
}

@media (max-width: 720px) {
  .identity-shell, .nav-shell, .hero-shell, .section-shell { width: calc(100% - 30px); }
  .identity-shell { height: 96px; }
  .organization-brand { gap: 13px; }
  .organization-brand img { width: 68px; height: 68px; }
  .organization-brand strong { font-size: clamp(1rem, 5vw, 1.35rem); }
  .organization-brand small { font-size: .7rem; line-height: 1.35; }
  .event-brand { font-size: .68rem; }
  .nav-register { padding: 0 15px; }
  .hero { min-height: 0; display: block; padding: 24px 0 22px; }
  .hero-stage { border-radius: 16px; }
  .hero-image-wrap { aspect-ratio: 1.96 / 1; }
  .hero-image { object-fit: contain; }
  .hero-panel { display: block; padding: 35px 25px; }
  .anniversary-number { font-size: 4.5rem; }
  .hero-facts { display: block; }
  .hero-fact + .hero-fact { border-top: 1px solid rgba(255,255,255,.1); }
  .button-light { width: 100%; }
  .host-strip { margin: 0; padding: 18px; align-items: flex-start; }
  .host-label { display: none; }
  .host-list { align-items: flex-start; flex-direction: column; gap: 8px; }
  .host-list i { display: none; }
  .section { padding: 60px 0; }
  .about-section { padding-top: 42px; }
  .about-grid { grid-template-columns: 1fr; gap: 22px; }
  .about-copy { padding-top: 0; }
  .experience-grid { grid-template-columns: 1fr; margin-top: 20px; }
  .experience-card.featured { transform: none; }
  .ticket-card { grid-template-columns: auto 1fr; gap: 15px; padding: 22px 18px; }
  .ticket-icon { width: 44px; height: 44px; }
  .quantity { grid-column: 2; width: fit-content; }
  .ticket-card:hover, .ticket-card.has-quantity { transform: translateY(-3px); }
  .venue-heading { display: block; }
  .venue-heading > p { margin-top: 22px; }
  .venue-card { grid-template-columns: 1fr; }
  .venue-content { padding: 38px 28px; }
  .location-pin { margin-bottom: 35px; }
  .venue-map { min-height: 320px; }
  .hotel-card { grid-template-columns: 1fr; padding: 28px; }
  .hotel-card .button { grid-column: auto; width: 100%; }
  .woocommerce-checkout .standard-content { width: calc(100% - 30px); padding-top: 42px; }
  .woocommerce-checkout .wc-block-checkout__main { padding-right: 0; }
  .woocommerce-checkout .wc-block-checkout__sidebar { padding: 18px; }
  .woocommerce-checkout .woocommerce-order { padding: 22px 17px; }
  .woocommerce-checkout .woocommerce-order-overview { display: grid; grid-template-columns: 1fr 1fr; }
  .woocommerce-checkout .woocommerce-order-overview li,
  .woocommerce-checkout .woocommerce-order-overview li:first-child { padding: 0 12px; border: 0; }
}

@media (max-width: 782px) {
  .admin-bar .nav-band { top: 46px; }
}

@media (max-width: 440px) {
  .organization-brand small { display: none; }
  .event-brand { max-width: 145px; white-space: normal; line-height: 1.25; }
  .nav-register { font-size: 0; }
  .nav-register::before { content: "Tickets"; font-size: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
