@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&display=swap");

:root {
    --maroon: #6b1021;
    --maroon-deep: #470914;
    --maroon-soft: #8f2840;
    --white: #fffdfb;
    --ivory: #f3ece6;
    --ink: #24171b;
    --muted: #ead8df;
    --muted-dark: #7e646d;
    --glass: rgba(255, 255, 255, 0.14);
    --glass-strong: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.22);
    --shadow: 0 22px 60px rgba(20, 6, 11, 0.32);
    --shadow-soft: 0 14px 34px rgba(20, 6, 11, 0.22);
    --glow: rgba(255, 223, 188, 0.18);
    --radius-lg: 26px;
    --radius-xl: 34px;
    --font-playful: "Bricolage Grotesque", "Manrope", sans-serif;
    --transition: 0.32s ease;
    --transition-fluid: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 138px;
}

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--white);
    background-color: var(--maroon-deep);
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

body::before {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
}

body::after {
    z-index: -1;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255, 214, 226, 0.08), transparent 30%),
        linear-gradient(135deg, rgba(30, 3, 11, 0.52), rgba(70, 9, 20, 0.2));
}

main {
    animation: pageSettle 700ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.home-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.74), rgba(107, 16, 33, 0.48)), url("images/home-intro-final-frame.jpg");
    background-position: 58% center;
}

body.home-page .site-header,
body.home-page main,
body.home-page .site-footer {
    will-change: opacity, transform, filter;
}

body.home-page .site-header {
    transition: opacity 1.05s ease, transform 1.35s cubic-bezier(0.22, 1, 0.36, 1), filter 1.1s ease;
    transition-delay: 0.08s;
}

body.home-page main {
    transition: opacity 1.35s ease, transform 1.7s cubic-bezier(0.22, 1, 0.36, 1), filter 1.45s ease;
    transition-delay: 0.22s;
}

body.home-page .site-footer {
    transition: opacity 1.1s ease, transform 1.45s cubic-bezier(0.22, 1, 0.36, 1), filter 1.2s ease;
    transition-delay: 0.38s;
}

body.home-page.intro-pending,
body.home-page.intro-playing {
    overflow: hidden;
}

body.home-page.intro-pending .site-header,
body.home-page.intro-pending main,
body.home-page.intro-pending .site-footer,
body.home-page.intro-playing .site-header,
body.home-page.intro-playing main,
body.home-page.intro-playing .site-footer {
    opacity: 0;
    transform: translateY(54px) scale(0.992);
    filter: blur(18px);
    pointer-events: none;
    transition-delay: 0s;
}

.home-intro {
    --intro-video-scale: 1.08;
    --intro-video-end-scale: 1.12;
    --intro-video-x: 50%;
    --intro-video-y: 50%;
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #120309;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity 1.2s ease, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 1.2s;
}

body.home-page.intro-pending .home-intro,
body.home-page.intro-playing .home-intro,
.home-intro.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition-delay: 0s;
}

.home-intro.is-exiting {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    transform: scale(1.03);
}

.home-intro-video,
.home-intro-layer {
    position: absolute;
    inset: 0;
}

.home-intro-video {
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: var(--intro-video-x) var(--intro-video-y);
    filter: saturate(1.06) contrast(1.04);
    transform: scale(var(--intro-video-scale));
    transform-origin: center;
    transition: transform 1.6s cubic-bezier(0.22, 1, 0.36, 1), filter 1.35s ease, opacity 1.2s ease;
    animation: introVideoDrift 7s ease-out both;
}

.home-intro-layer {
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 36%),
        linear-gradient(180deg, rgba(17, 3, 8, 0.06), rgba(17, 3, 8, 0.64) 72%, rgba(17, 3, 8, 0.92));
    transition: opacity 1.15s ease;
}

.home-intro.is-exiting .home-intro-video {
    animation: none;
    opacity: 0.86;
    filter: saturate(1.02) contrast(1.02) blur(1.8px);
    transform: scale(var(--intro-video-end-scale));
}

.home-intro.is-exiting .home-intro-layer {
    opacity: 0;
}

.home-intro-copy {
    position: absolute;
    left: min(5vw, 52px);
    bottom: min(7vh, 56px);
    z-index: 2;
    width: min(88vw, 520px);
    display: grid;
    gap: 10px;
    padding: 28px 30px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(20px);
    box-shadow: 0 28px 60px rgba(13, 3, 7, 0.38);
    transition: opacity 1.05s ease, transform 1.3s cubic-bezier(0.22, 1, 0.36, 1), filter 1.05s ease;
}

.home-intro-badge {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-intro-kicker {
    color: rgba(255, 242, 246, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 800;
    font-family: var(--font-playful);
}

.home-intro-copy strong {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.2rem, 7vw, 5.6rem);
    line-height: 0.9;
}

.home-intro-copy span {
    color: rgba(255, 244, 247, 0.84);
    font-size: 1rem;
    font-weight: 600;
}

.home-intro.is-exiting .home-intro-copy {
    opacity: 0;
    transform: translateY(34px);
    filter: blur(10px);
}

.home-intro-skip {
    position: absolute;
    top: min(5vw, 32px);
    right: min(5vw, 32px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 122px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(17, 3, 8, 0.3);
    color: var(--white);
    backdrop-filter: blur(18px);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.home-intro-skip:hover {
    transform: translateY(-2px);
    background: rgba(17, 3, 8, 0.46);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 14px 26px rgba(11, 3, 6, 0.26);
}

.home-intro.is-exiting .home-intro-skip {
    opacity: 0;
    transform: translateY(-10px);
}

body.home-page.intro-capture .home-intro-layer,
body.home-page.intro-capture .home-intro-copy,
body.home-page.intro-capture .home-intro-skip {
    display: none;
}

@media (min-aspect-ratio: 21 / 9) {
    .home-intro {
        --intro-video-scale: 1.02;
        --intro-video-end-scale: 1.05;
        --intro-video-y: 46%;
    }
}

@media (min-aspect-ratio: 16 / 9) and (max-aspect-ratio: 21 / 9) {
    .home-intro {
        --intro-video-scale: 1.05;
        --intro-video-end-scale: 1.09;
        --intro-video-y: 48%;
    }
}

@media (max-aspect-ratio: 16 / 9) {
    .home-intro {
        --intro-video-scale: 1.14;
        --intro-video-end-scale: 1.18;
    }
}

@media (max-aspect-ratio: 4 / 5) {
    .home-intro {
        --intro-video-scale: 1.2;
        --intro-video-end-scale: 1.25;
        --intro-video-x: 56%;
        --intro-video-y: 50%;
    }
}

@media (max-aspect-ratio: 9 / 16) {
    .home-intro {
        --intro-video-scale: 1.3;
        --intro-video-end-scale: 1.35;
        --intro-video-x: 56%;
        --intro-video-y: 51%;
    }
}

body.guide-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.78), rgba(107, 16, 33, 0.5)), url("images/ref.png");
}

body.gallery-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.76), rgba(107, 16, 33, 0.5)), url("images/fgce.png");
}

body.merch-page::before,
body.checkout-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.78), rgba(107, 16, 33, 0.48)), url("images/varsity jacket.jpg");
}

body.support-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.78), rgba(107, 16, 33, 0.5)), url("images/reunion-cap.png");
}

body.news-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.78), rgba(107, 16, 33, 0.5)), url("images/ref.png");
}

body.admin-page::before {
    background-image: linear-gradient(135deg, rgba(35, 3, 12, 0.82), rgba(107, 16, 33, 0.54)), url("images/assembly hall.png");
}

body.admin-page .page-hero-content p,
body.admin-page .section-head p,
body.admin-page .story-card p,
body.admin-page .content-note,
body.admin-page .footer-note {
    color: rgba(255, 244, 247, 0.88);
}

body.admin-page .story-card h3,
body.admin-page .section-head h2,
body.admin-page .page-hero-content h1,
body.admin-page .form-intro h2 {
    color: var(--white);
}

main {
    display: block;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
    will-change: transform;
}

.event-strip {
    max-height: 80px;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: background var(--transition), border-color var(--transition);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(34, 4, 11, 0.78);
    backdrop-filter: blur(16px);
}

.event-strip-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.event-strip-label {
    color: rgba(255, 244, 247, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.72rem;
    font-weight: 800;
    white-space: nowrap;
}

.event-strip-countdown,
.mini-countdown {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.event-strip-countdown::-webkit-scrollbar,
.mini-countdown::-webkit-scrollbar {
    display: none;
}

.event-strip-countdown span,
.mini-countdown div {
    min-width: 72px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
    flex: 0 0 auto;
}

.event-strip-countdown strong,
.mini-countdown span {
    display: block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 800;
}

.event-strip-countdown small,
.mini-countdown small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 244, 247, 0.74);
    text-transform: uppercase;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
}

.site-header.scrolled {
    background: rgba(40, 4, 13, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 40px rgba(21, 5, 11, 0.26);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.nav-open {
    background: rgba(40, 4, 13, 0.9);
    backdrop-filter: blur(22px);
}

.site-header.scrolled .event-strip {
    background: rgba(34, 4, 11, 0.86);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 68px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo img {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 12px 26px rgba(10, 3, 5, 0.22);
}

.logo-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-copy span {
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.02em;
}

.logo-copy small {
    color: rgba(255, 244, 247, 0.78);
    font-size: 0.87rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 3;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 940;
    border: 0;
    background: rgba(12, 2, 6, 0.48);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(8px);
    transition: opacity var(--transition-fluid);
}

.nav-scrim.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 999px;
    color: rgba(255, 245, 247, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slideshow,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    animation: heroFade 18s infinite;
}

.hero-slide:first-child {
    background-position: 58% center;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 12s;
}

@keyframes heroFade {
    0%,
    100% {
        opacity: 0;
    }
    10%,
    28% {
        opacity: 1;
    }
    38% {
        opacity: 0;
    }
}

.hero-overlay {
    min-height: 100vh;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    padding: 96px 0 72px;
    background: linear-gradient(115deg, rgba(28, 3, 10, 0.84), rgba(28, 3, 10, 0.44), rgba(255, 255, 255, 0.06));
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    gap: 28px;
    align-items: end;
}

.hero-panel,
.hero-aside,
.glass-card,
.page-hero-shell,
.callout-shell,
.table-wrap,
.summary-card {
    position: relative;
    isolation: isolate;
    border: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.hero-panel::after,
.hero-aside::after,
.glass-card::after,
.page-hero-shell::after,
.callout-shell::after,
.summary-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.28), transparent 34%),
        radial-gradient(circle at 90% 18%, var(--glow), transparent 32%);
    opacity: 0.74;
    transition: opacity var(--transition-fluid), transform var(--transition-fluid);
}

.hero-panel:hover::after,
.hero-aside:hover::after,
.glass-card:hover::after,
.page-hero-shell:hover::after,
.callout-shell:hover::after,
.summary-card:hover::after {
    opacity: 1;
    transform: scale(1.012);
}

.hero-panel,
.hero-aside {
    border-radius: 32px;
}

.hero-panel {
    padding: 38px;
}

.hero-panel h1,
.section-head h2,
.page-hero-content h1,
.image-card h2,
.callout-shell h2,
.payment-card h2,
.form-intro h2 {
    font-family: "Cormorant Garamond", serif;
    line-height: 0.95;
}

.hero-panel h1 {
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    margin-bottom: 20px;
}

.hero-copy,
.page-hero-content p,
.section-head p,
.image-card p,
.spotlight-card p,
.story-card p,
.timeline-copy p,
.ticket-card p,
.content-note,
.blog-post-full p,
.news-card p,
.support-card p,
.donation-card p {
    color: rgba(255, 244, 247, 0.84);
}

.hero-copy {
    max-width: 62ch;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.hero-actions,
.centered-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-aside {
    display: grid;
    gap: 16px;
    padding: 24px;
}

.hero-promo {
    position: relative;
    min-height: 390px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(22px);
    box-shadow: var(--shadow);
}

.hero-promo-slide {
    --promo-duration: 24s;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 9px;
    padding: 24px;
    opacity: 0;
    transform: scale(1.04);
    background:
        linear-gradient(180deg, rgba(22, 3, 9, 0.06), rgba(22, 3, 9, 0.82)),
        var(--promo-image) center/cover;
    animation: heroPromoFade var(--promo-duration) infinite;
}

.hero-promo-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-promo-slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-promo-slide:nth-child(4) {
    animation-delay: 18s;
}

.hero-promo-slide span {
    color: rgba(255, 242, 246, 0.76);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-family: var(--font-playful);
    font-weight: 800;
    font-size: 0.72rem;
}

.hero-promo-slide h2 {
    font-family: var(--font-playful);
    color: var(--white);
    font-size: clamp(1.45rem, 2.4vw, 2.25rem);
    line-height: 0.95;
    max-width: 8em;
}

.hero-promo-slide p {
    color: rgba(255, 244, 247, 0.84);
    font-size: 0.94rem;
    max-width: 22em;
}

.hero-promo-slide a {
    width: max-content;
    margin-top: 4px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--maroon-deep);
    font-family: var(--font-playful);
    font-size: 0.82rem;
    font-weight: 800;
}

@keyframes heroPromoFade {
    0%,
    100% {
        opacity: 0;
        transform: scale(1.04);
    }
    6%,
    24% {
        opacity: 1;
        transform: scale(1);
    }
    30% {
        opacity: 0;
        transform: scale(1.02);
    }
}

.meta-card {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-card strong {
    display: block;
    margin: 6px 0 8px;
    font-size: 1.08rem;
    color: var(--white);
}

.meta-card p:last-child {
    color: rgba(255, 245, 247, 0.8);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: var(--font-playful);
    color: rgba(255, 242, 246, 0.72);
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, 0.46);
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fffdfb, #f0e1d7);
    color: var(--maroon-deep);
    font-family: var(--font-playful);
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
    box-shadow: 0 16px 30px rgba(15, 5, 8, 0.14);
}

.btn::after {
    content: "";
    position: absolute;
    inset: -60% -45%;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.42), transparent 65%);
    transform: translateX(-70%) rotate(8deg);
    transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(15, 5, 8, 0.18);
}

.btn:hover::after {
    transform: translateX(70%) rotate(8deg);
}

.btn:disabled {
    opacity: 0.56;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: none;
}

.btn-secondary.active,
.admin-filter.active {
    background: linear-gradient(135deg, #fffdfb, #f0e1d7);
    color: var(--maroon-deep);
    border-color: rgba(255, 255, 255, 0.46);
}

.btn-full {
    width: 100%;
}

.section {
    padding: 88px 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 34px;
}

.section-head.center {
    align-items: center;
    text-align: center;
}

.section-head.between {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.section-head h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
}

.countdown-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
}

.countdown-grid::-webkit-scrollbar {
    display: none;
}

.countdown-unit {
    padding: 22px 16px;
    min-width: 112px;
    flex: 1 0 112px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(18, 4, 10, 0.18);
}

.countdown-unit span {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1;
}

.countdown-unit small {
    display: inline-block;
    margin-top: 6px;
    color: rgba(255, 246, 248, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.7rem;
}

.two-column,
.registration-layout,
.support-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
    align-items: start;
}

.image-card {
    min-height: 430px;
    padding: 36px;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, rgba(23, 3, 9, 0.12), rgba(23, 3, 9, 0.82)),
        url("images/fgce.png") center/cover;
}

.image-card h2 {
    font-size: clamp(2.3rem, 4vw, 3.8rem);
    margin: 10px 0 12px;
}

.spotlight-list,
.support-stack {
    display: grid;
    gap: 18px;
}

.spotlight-card,
.story-card,
.support-card,
.sponsor-card,
.ticket-card,
.blog-post-full,
.news-card,
.donation-card,
.payment-card,
.form-shell,
.lock-card {
    border-radius: var(--radius-lg);
    padding: 28px;
}

.spotlight-card h3,
.story-card h3,
.support-card h3,
.sponsor-card h3,
.ticket-card h3,
.news-card h3,
.blog-post-full h2,
.timeline-copy h3 {
    color: var(--white);
    font-family: var(--font-playful);
    font-size: 1.4rem;
    margin: 10px 0 10px;
}

.text-link,
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff4f7;
    font-weight: 800;
    margin-top: 18px;
}

.text-link::after,
.read-more::after {
    content: "->";
    transition: transform var(--transition);
}

.text-link:hover::after,
.read-more:hover::after {
    transform: translateX(4px);
}

.sponsor-grid,
.story-grid,
.ticket-grid,
.merch-grid,
.home-blog-grid,
.gallery-preview,
.gallery-grid {
    display: grid;
    gap: 20px;
}

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

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

.feature-list,
.ticket-features {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.feature-list li,
.ticket-features li {
    position: relative;
    padding-left: 18px;
    color: rgba(255, 244, 247, 0.84);
}

.feature-list li::before,
.ticket-features li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #fff;
    position: absolute;
    top: 0.7em;
    left: 0;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    font-family: var(--font-playful);
    color: var(--white);
}

.callout-shell {
    border-radius: 32px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.callout-shell h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin: 10px 0 12px;
}

.checkout-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 28px;
    margin-top: 24px;
    align-items: start;
}

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

.news-card,
.blog-post-full {
    overflow: hidden;
}

.news-card img,
.blog-post-full img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 18px;
}

.post-date,
.post-meta {
    color: rgba(255, 236, 242, 0.68);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.post-engagement {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 18px 0 4px;
    color: rgba(255, 244, 247, 0.78);
    font-size: 0.88rem;
}

.post-like-btn {
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    cursor: pointer;
    font-family: var(--font-playful);
    font-weight: 800;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.post-like-btn:hover,
.post-like-btn:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.18);
}

.post-like-btn:disabled {
    cursor: wait;
    opacity: 0.72;
}

.post-comments {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.comment-list {
    display: grid;
    gap: 12px;
}

.comment-card {
    border-radius: 18px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
}

.comment-card strong {
    color: var(--white);
    font-family: var(--font-playful);
}

.comment-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
}

.comment-form .btn {
    justify-self: start;
}

.loading-copy {
    color: rgba(255, 241, 245, 0.82);
}

.page-hero {
    padding: 118px 0 24px;
}

.page-hero-shell {
    min-height: 390px;
    border-radius: 38px;
    position: relative;
    overflow: hidden;
    padding: 42px;
    display: flex;
    align-items: end;
    background-position: center;
    background-size: cover;
}

.page-hero-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 2, 8, 0.1), rgba(20, 2, 8, 0.86));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
}

.page-hero-content h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin: 12px 0 18px;
}

.guide-hero .page-hero-shell {
    background-image: url("images/ref.png");
}

.gallery-hero .page-hero-shell {
    background-image: url("images/assembly hall.png");
}

.merch-hero .page-hero-shell {
    background-image: url("images/varsity jacket.jpg");
}

.support-hero .page-hero-shell {
    background-image: url("images/fgce.png");
}

.news-hero .page-hero-shell {
    background-image: url("images/ref.png");
}

.checkout-hero .page-hero-shell {
    background-image: url("images/reunion-flask.png");
}

.merch-page .page-hero {
    padding: 98px 0 12px;
}

.merch-page .page-hero-shell {
    min-height: 250px;
    padding: 28px;
    border-radius: 30px;
    background-position: center 32%;
}

.merch-page .page-hero-content {
    max-width: 590px;
}

.merch-page .page-hero-content h1 {
    font-size: clamp(2.1rem, 4vw, 3.65rem);
    margin: 8px 0 10px;
}

.merch-page .section {
    padding-top: 34px;
}

.merch-page .section-head {
    margin-bottom: 18px;
}

.merch-page .section-head h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.55rem);
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-card {
    display: grid;
    grid-template-columns: 132px 1fr;
    gap: 16px;
    align-items: start;
    padding: 22px;
}

.timeline-date {
    padding: 14px;
    border-radius: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.timeline-date span,
.timeline-date small {
    display: block;
}

.timeline-date strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    line-height: 1;
    margin: 6px 0;
}

.timeline-meta {
    color: rgba(255, 236, 242, 0.68);
    margin-bottom: 0;
}

.ticket-card {
    position: relative;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.ticket-card:hover,
.ticket-card.selected {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 26px 50px rgba(18, 4, 10, 0.3);
}

.ticket-card.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(255, 255, 255, 0.1));
}

.ticket-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    line-height: 1;
    margin: 16px 0 18px;
    color: var(--white);
}

.payment-card h2,
.form-intro h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    margin: 10px 0 14px;
}

.bank-card {
    margin: 22px 0;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.payment-methods-card {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.payment-method-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 70px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 700;
}

.payment-method-pill i {
    font-size: 1.05rem;
    color: rgba(255, 245, 247, 0.92);
}

.steps-list {
    display: grid;
    gap: 14px;
    padding-left: 20px;
    margin-bottom: 24px;
}

.steps-list li {
    color: rgba(255, 244, 247, 0.88);
}

.form-intro {
    margin-bottom: 24px;
}

.form-shell form,
.support-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group.compact {
    margin-bottom: 18px;
}

.form-group label {
    color: var(--white);
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.94);
    color: #171717;
    border-radius: 16px;
    padding: 14px 16px;
    outline: none;
    transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.form-group select option {
    color: #171717;
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.42);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.registration-total-card {
    grid-column: 1 / -1;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    padding: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
        radial-gradient(circle at 14% 0%, rgba(255, 223, 188, 0.16), transparent 42%);
    box-shadow: var(--shadow-soft);
}

.registration-total-card span {
    display: block;
    color: rgba(255, 244, 247, 0.72);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.registration-total-card strong {
    display: block;
    margin: 4px 0;
    color: var(--white);
    font-family: var(--font-playful);
    font-size: clamp(1.9rem, 8vw, 3rem);
    line-height: 1;
}

.registration-total-card p {
    margin: 0;
    color: rgba(255, 244, 247, 0.78);
}

.lock-card {
    text-align: center;
}

.lock-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 18px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    font-size: 1.9rem;
}

.lock-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 10px 0 14px;
}

.mini-countdown {
    gap: 12px;
    margin-top: 0;
}

.mini-countdown div {
    border-radius: 16px;
}

.early-bird-strip {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px 18px;
}

.early-bird-label {
    font-size: 1rem;
    font-weight: 800;
}

.gallery-preview,
.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 28px;
}

.preview-card,
.gallery-item {
    min-height: 260px;
    overflow: hidden;
    position: relative;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

.preview-card img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-card img {
    filter: blur(8px) saturate(0.9);
    transform: scale(1.08);
}

.preview-card::after {
    content: "Unlocks September 1";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 999px;
    padding: 12px 16px;
    text-align: center;
    background: rgba(54, 6, 17, 0.84);
    color: var(--white);
    font-weight: 800;
    font-size: 0.86rem;
}

.gallery-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border-radius: 18px;
    padding: 14px 16px;
    background: rgba(43, 4, 13, 0.78);
    color: var(--white);
}

.merch-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    align-items: stretch;
    gap: 12px;
}

.merch-item {
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.075));
    transition: transform var(--transition-fluid), box-shadow var(--transition-fluid), border-color var(--transition-fluid), background var(--transition-fluid);
}

.merch-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 18px 34px rgba(16, 4, 9, 0.24);
}

.merch-item-featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.23), rgba(255, 255, 255, 0.1));
}

.merch-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.72s cubic-bezier(0.22, 1, 0.36, 1), filter var(--transition-fluid), opacity 0.32s ease;
}

.merch-item:hover .product-main-image,
.merch-item:hover > img {
    transform: scale(1.035);
    filter: saturate(1.05);
}

.product-gallery {
    display: grid;
    gap: 6px;
    padding: 8px 8px 0;
    position: relative;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
    display: grid;
    place-items: center;
    gap: 6px;
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 244, 247, 0.86);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.product-image-placeholder i {
    font-size: 1.45rem;
}

.product-image-placeholder span {
    padding: 0 8px;
    font-family: var(--font-playful);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1;
}

.product-main-image.is-swapping {
    animation: productSwap 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.thumb-btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.thumb-btn img {
    aspect-ratio: 1 / 1;
}

.thumb-btn.active,
.thumb-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.38);
    box-shadow: 0 14px 24px rgba(16, 4, 9, 0.2);
}

.product-carousel {
    gap: 0;
}

.carousel-nav {
    position: absolute;
    top: calc(50% - 18px);
    z-index: 2;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(34, 5, 13, 0.58);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.carousel-nav:hover {
    transform: scale(1.04);
    background: rgba(34, 5, 13, 0.76);
    border-color: rgba(255, 255, 255, 0.32);
    box-shadow: 0 16px 24px rgba(16, 4, 9, 0.22);
}

.carousel-nav.prev {
    left: 16px;
}

.carousel-nav.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 7px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(34, 5, 13, 0.42);
    backdrop-filter: blur(10px);
}

.carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), opacity var(--transition);
}

.carousel-dot.active {
    background: var(--white);
    transform: scale(1.15);
}

.merch-details {
    padding: 10px 11px 12px;
    display: grid;
    gap: 6px;
    height: 100%;
    align-content: start;
}

.merch-details h3 {
    font-size: 0.92rem;
    color: var(--white);
    font-family: var(--font-playful);
    line-height: 1.05;
}

.merch-price {
    font-size: 0.96rem;
    font-weight: 800;
    font-family: var(--font-playful);
    color: var(--white);
    margin: 0;
}

.merch-item .form-group.compact {
    margin-bottom: 0;
    gap: 5px;
}

.merch-item .form-group.compact label {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
}

.merch-item select {
    min-height: 34px;
    padding: 7px 28px 7px 9px;
    border-radius: 12px;
    font-size: 0.74rem;
}

.merch-details .btn {
    width: 100%;
    margin-top: auto;
    padding: 9px 10px;
    font-size: 0.76rem;
    min-height: 36px;
}

.checkout-product-placeholder {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: inline-grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-weight: 900;
    font-family: var(--font-playful);
}

.cart-badge-container {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 990;
}

.cart-floating-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fffdfb, #f0e1d7);
    color: var(--maroon-deep);
    box-shadow: 0 18px 34px rgba(15, 5, 8, 0.24);
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: var(--maroon);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.table-wrap {
    border-radius: 28px;
    overflow-x: auto;
}

.checkout-table {
    width: 100%;
    border-collapse: collapse;
}

.checkout-table th,
.checkout-table td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.checkout-table th {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    background: rgba(255, 255, 255, 0.08);
}

.checkout-table input[type="number"] {
    width: 72px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 8px 10px;
    border-radius: 12px;
}

.admin-sync-card {
    margin: 24px 0 34px;
}

.admin-record-tools {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 16px;
    align-items: center;
}

.admin-report-actions .btn,
.admin-record-tools .btn {
    min-height: 42px;
}

.admin-records-shell {
    padding: 16px 16px 18px;
}

.admin-table-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-table-meta .content-note {
    font-size: 0.8rem;
    line-height: 1.4;
}

.admin-records-table {
    table-layout: fixed;
}

.admin-records-table th,
.admin-records-table td {
    padding: 11px 10px;
    font-size: 0.76rem;
    line-height: 1.35;
    vertical-align: middle;
}

.admin-records-table th:nth-child(1),
.admin-records-table td:nth-child(1) {
    width: 82px;
}

.admin-records-table th:nth-child(2),
.admin-records-table td:nth-child(2) {
    width: 200px;
}

.admin-records-table th:nth-child(3),
.admin-records-table td:nth-child(3) {
    width: 104px;
    white-space: nowrap;
}

.admin-records-table th:nth-child(5),
.admin-records-table td:nth-child(5) {
    width: 192px;
}

.admin-records-table th:nth-child(6),
.admin-records-table td:nth-child(6),
.admin-records-table th:nth-child(7),
.admin-records-table td:nth-child(7) {
    width: 116px;
}

.admin-records-table td {
    word-break: break-word;
}

.admin-person-cell {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.admin-person-cell strong {
    color: var(--white);
    font-size: 0.84rem;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-person-cell span,
.admin-subtle {
    color: rgba(255, 236, 242, 0.72);
    font-size: 0.7rem;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-detail-cell {
    color: rgba(255, 236, 242, 0.84);
    font-size: 0.72rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.admin-tx-cell {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.admin-tx-cell code {
    display: block;
    padding: 5px 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 248, 250, 0.92);
    font-size: 0.69rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-tx-cell span {
    color: rgba(255, 236, 242, 0.72);
    font-size: 0.66rem;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-flow-pill,
.admin-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

.admin-flow-pill {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-status-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.admin-status-badge.status-successful,
.admin-status-badge.status-completed {
    background: rgba(68, 168, 110, 0.2);
    color: #dff9e8;
}

.admin-status-badge.status-pending {
    background: rgba(255, 205, 96, 0.2);
    color: #fff0bf;
}

.admin-status-badge.status-failed,
.admin-status-badge.status-cancelled {
    background: rgba(217, 91, 118, 0.2);
    color: #ffd9e1;
}

.admin-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-page-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 240px;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-page-nav {
    min-width: 92px;
    min-height: 38px;
}

.admin-page-button {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.admin-page-button:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
}

.admin-page-button.is-active {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.24);
    font-weight: 800;
}

.admin-page-button:disabled,
.admin-page-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
}

.admin-page-gap {
    color: rgba(255, 236, 242, 0.6);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.admin-content-head {
    margin-top: 56px;
}

.admin-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 22px;
    align-items: start;
}

.admin-panel {
    border-radius: var(--radius-lg);
    padding: 24px;
}

.admin-list {
    display: grid;
    gap: 14px;
}

.admin-list-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    align-items: start;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
}

.admin-list-card h3 {
    color: var(--white);
    font-family: var(--font-playful);
    margin: 0 0 8px;
}

.admin-mini-meta {
    margin-top: 10px;
    color: rgba(255, 236, 242, 0.68);
    font-size: 0.82rem;
}

.admin-card-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.admin-card-actions .btn {
    padding: 10px 13px;
    font-size: 0.82rem;
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 244, 247, 0.86);
    font-weight: 700;
}

.admin-check input {
    width: 18px;
    height: 18px;
    accent-color: var(--maroon);
}

.summary-card {
    margin-top: 24px;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.summary-card-inline {
    margin-top: 0;
}

.remove-item {
    border: none;
    background: none;
    color: #ffd7e0;
    font-size: 1rem;
    cursor: pointer;
}

.success-card {
    text-align: center;
}

.success-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 22px;
    display: grid;
    place-items: center;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff4f7;
    font-size: 2.6rem;
}

.success-card h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.7rem);
    margin: 10px 0 12px;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin: 30px 0 24px;
    text-align: left;
}

.success-meta,
.success-summary {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.success-meta span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 236, 242, 0.7);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.success-meta strong {
    color: var(--white);
    font-size: 1.02rem;
    line-height: 1.45;
}

.success-summary {
    text-align: left;
}

.success-summary p + p {
    margin-top: 10px;
}

.success-card .hero-actions {
    justify-content: center;
    margin-top: 24px;
}

.blog-list {
    display: grid;
    gap: 24px;
}

.blog-post-full .post-content p + p {
    margin-top: 14px;
}

.blog-post-full .post-content ul {
    margin: 14px 0 0 18px;
    list-style: disc;
    color: rgba(255, 244, 247, 0.84);
}

.site-footer {
    padding: 26px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    padding: 28px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
}

.footer-grid h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 6px;
}

.footer-grid strong,
.footer-grid a {
    color: var(--white);
}

.footer-note a {
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-note {
    text-align: center;
    margin-top: 18px;
    color: rgba(255, 241, 245, 0.74);
    font-size: 0.92rem;
}

.hidden {
    display: none !important;
}

.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(26px) scale(0.985);
    transition:
        opacity 0.78s ease var(--reveal-delay, 0s),
        transform 0.78s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0s),
        filter 0.78s ease var(--reveal-delay, 0s);
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-layout,
    .two-column,
    .registration-layout,
    .support-layout,
    .checkout-details,
    .admin-content-grid,
    .sponsor-grid,
    .story-grid,
    .ticket-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-promo {
        min-height: 230px;
    }

    .hero-promo-slide {
        padding: 20px;
    }

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

    .merch-grid {
        grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    }

    .checkout-details {
        display: grid;
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .home-intro-copy {
        left: 20px;
        right: 20px;
        bottom: 24px;
        width: auto;
        padding: 24px;
        border-radius: 28px;
    }

    .home-intro-copy strong {
        font-size: clamp(2.35rem, 9vw, 3.55rem);
    }

    .hamburger {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        width: min(92vw, 340px);
        max-height: calc(100vh - 120px);
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 28px;
        background: rgba(39, 4, 13, 0.94);
        backdrop-filter: blur(24px);
        box-shadow: 0 24px 44px rgba(15, 4, 8, 0.32);
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-14px) scale(0.98);
        transform-origin: top right;
        transition: opacity var(--transition-fluid), transform var(--transition-fluid), visibility 0s linear 0.5s;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
        transition-delay: 0s;
    }

    .nav-links a {
        justify-content: flex-start;
        padding: 14px 16px;
        border: 1px solid transparent;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-links a:hover,
    .nav-links a.active {
        transform: none;
        border-color: rgba(255, 255, 255, 0.12);
    }

    .hero-overlay {
        padding: 88px 0 60px;
    }

    .hero-aside {
        grid-template-columns: 1fr;
    }

    .sponsor-grid,
    .story-grid,
    .ticket-grid,
    .accommodation-grid,
    .countdown-grid,
    .home-blog-grid,
    .mini-countdown,
    .form-shell form,
    .support-form,
    .payment-methods-card,
    .success-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .timeline-card {
        grid-template-columns: 1fr;
    }

    .callout-shell,
    .summary-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-card-inline .btn {
        width: 100%;
    }

    .checkout-table th,
    .checkout-table td {
        padding: 14px 12px;
    }

    .admin-record-tools {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .home-intro-copy {
        left: 16px;
        right: 16px;
        bottom: 14px;
        gap: 6px;
        padding: 16px;
        border-radius: 22px;
    }

    .home-intro-badge {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        padding: 7px;
    }

    .home-intro-kicker {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .home-intro-copy strong {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .home-intro-copy span {
        font-size: 0.82rem;
    }

    .home-intro-skip {
        top: 14px;
        right: 14px;
        min-width: 108px;
        padding: 9px 13px;
        font-size: 0.8rem;
    }

    .container {
        width: min(100%, calc(100% - 26px));
    }

    .site-header {
        padding: 10px 0;
    }

    .nav-container {
        min-height: 56px;
        gap: 12px;
    }

    .logo {
        gap: 10px;
    }

    .logo img {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        padding: 6px;
    }

    .logo-copy span {
        font-size: 0.88rem;
        line-height: 1.05;
        max-width: 134px;
    }

    .logo-copy small {
        display: none;
    }

    .hero-panel,
    .hero-aside,
    .page-hero-shell,
    .spotlight-card,
    .story-card,
    .support-card,
    .sponsor-card,
    .ticket-card,
    .blog-post-full,
    .news-card,
    .donation-card,
    .payment-card,
    .form-shell,
    .lock-card,
    .callout-shell,
    .summary-card {
        padding: 20px;
    }

    .hero-panel {
        padding: 18px;
    }

    .hero-panel h1 {
        font-size: clamp(2.14rem, 11.5vw, 2.9rem);
        margin-bottom: 12px;
    }

    .hero-panel h1,
    .page-hero-content h1,
    .section-head h2,
    .callout-shell h2 {
        line-height: 1;
    }

    .hero-layout {
        gap: 12px;
    }

    .hero-overlay {
        min-height: auto;
        padding: 28px 0 30px;
    }

    .hero-copy,
    .page-hero-content p,
    .section-head p {
        font-size: 0.9rem;
    }

    .hero-copy {
        margin-bottom: 18px;
    }

    .hero-actions {
        gap: 9px;
    }

    .hero-actions .btn {
        min-height: 42px;
        padding: 11px 14px;
        font-size: 0.86rem;
    }

    body.home-page .hero-actions .btn {
        width: auto;
        flex: 1 1 calc(50% - 6px);
    }

    .hero-promo {
        min-height: 158px;
        border-radius: 24px;
    }

    .hero-promo-slide {
        gap: 5px;
        padding: 16px;
    }

    .hero-promo-slide span {
        font-size: 0.58rem;
        letter-spacing: 0.12em;
    }

    .hero-promo-slide h2 {
        font-size: 1.28rem;
        max-width: 10em;
    }

    .hero-promo-slide p {
        font-size: 0.78rem;
        max-width: 20em;
    }

    .hero-promo-slide a {
        padding: 7px 10px;
        font-size: 0.72rem;
    }

    .meta-card,
    .countdown-unit,
    .timeline-date,
    .mini-countdown div {
        padding: 16px;
    }

    .hero-actions,
    .centered-actions {
        width: 100%;
    }

    .hero-actions .btn,
    .centered-actions .btn {
        width: 100%;
    }

    .sponsor-grid,
    .story-grid,
    .ticket-grid,
    .accommodation-grid,
    .countdown-grid,
    .home-blog-grid,
    .mini-countdown,
    .gallery-preview,
    .gallery-grid,
    .payment-methods-card,
    .success-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-shell form,
    .support-form,
    .comment-form {
        grid-template-columns: 1fr;
    }

    .admin-list-card {
        grid-template-columns: 1fr;
    }

    .admin-card-actions {
        justify-content: flex-start;
    }

    .admin-card-actions .btn {
        flex: 1 1 auto;
    }

    .merch-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .merch-item-featured {
        grid-column: auto;
    }

    .section {
        padding: 44px 0;
    }

    .page-hero {
        padding-top: 72px;
    }

    .page-hero-shell {
        min-height: 210px;
        padding: 18px;
        border-radius: 26px;
    }

    .merch-page .page-hero {
        padding-top: 58px;
        padding-bottom: 8px;
    }

    .merch-page .page-hero-shell {
        min-height: 148px;
        padding: 14px;
        border-radius: 22px;
        background-position: center 22%;
    }

    .merch-page .page-hero-content h1 {
        font-size: clamp(1.4rem, 7vw, 2.05rem);
        margin: 5px 0 6px;
    }

    .merch-page .page-hero-content p:not(.eyebrow) {
        font-size: 0.82rem;
        line-height: 1.35;
    }

    .merch-page .section {
        padding-top: 24px;
    }

    .merch-page .section-head {
        margin-bottom: 14px;
    }

    .page-hero-content h1,
    .section-head h2,
    .form-intro h2 {
        font-size: clamp(2rem, 10vw, 2.85rem);
    }

    .section-head {
        margin-bottom: 24px;
    }

    .event-strip-inner {
        min-height: 36px;
        gap: 0;
        justify-content: center;
    }

    .event-strip-countdown {
        width: 100%;
        justify-content: space-between;
        gap: 6px;
        overflow: visible;
    }

    .event-strip-countdown span,
    .mini-countdown div {
        min-width: 56px;
        padding: 6px 4px;
    }

    .event-strip-label {
        display: none;
    }

    .event-strip-countdown strong {
        font-size: 0.86rem;
    }

    .event-strip-countdown small {
        font-size: 0.52rem;
        letter-spacing: 0.08em;
    }

    .summary-card {
        align-items: stretch;
    }

    .payment-method-pill {
        min-height: 0;
        padding: 14px 16px;
    }

    .success-meta,
    .success-summary {
        padding: 18px;
    }

    .table-wrap {
        overflow: visible;
    }

    .checkout-table,
    .checkout-table thead,
    .checkout-table tbody,
    .checkout-table tr,
    .checkout-table td {
        display: block;
        width: 100%;
    }

    .checkout-table thead {
        display: none;
    }

    .checkout-table tbody {
        display: grid;
        gap: 14px;
        padding: 12px;
    }

    .checkout-table tr {
        display: grid;
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 12px 14px;
        padding: 16px;
        border-radius: 22px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
    }

    .checkout-table td {
        padding: 0;
        border-bottom: none;
    }

    .checkout-table td:first-child {
        grid-row: 1 / span 5;
        display: flex;
        align-items: flex-start;
    }

    .checkout-table td:nth-child(2) {
        font-size: 1rem;
        font-weight: 700;
        color: var(--white);
    }

    .checkout-table td:nth-child(n+3) {
        grid-column: 1 / -1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
    }

    .checkout-table td:nth-child(n+3)::before {
        content: attr(data-label);
        color: rgba(255, 236, 242, 0.72);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
    }

    .admin-records-table tbody {
        gap: 10px;
    }

    .admin-records-table tr {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 10px;
    }

    .admin-records-table td:first-child {
        grid-row: auto;
    }

    .admin-records-table td:nth-child(2) {
        font-size: inherit;
        font-weight: inherit;
    }

    .admin-records-table td:nth-child(n+2) {
        grid-column: 1 / -1;
    }

    .admin-records-table td:nth-child(n+2)::before {
        content: attr(data-label);
        color: rgba(255, 236, 242, 0.72);
        font-size: 0.72rem;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        min-width: 82px;
    }

    .admin-records-table td[data-label="Type"]::before,
    .admin-records-table td[data-label="Status"]::before {
        display: none;
    }

    .admin-records-table td[data-label="Type"],
    .admin-records-table td[data-label="Status"] {
        display: block;
    }

    .admin-records-table td[data-label="Type"] {
        grid-column: 1;
    }

    .admin-records-table td[data-label="Status"] {
        grid-column: 2;
        justify-self: end;
    }

    .admin-records-table td[data-label="Guest"],
    .admin-records-table td[data-label="Amount"],
    .admin-records-table td[data-label="Details"],
    .admin-records-table td[data-label="Tx Id"],
    .admin-records-table td[data-label="Paid At"] {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 12px;
    }

    .admin-records-table .admin-person-cell,
    .admin-records-table .admin-detail-cell,
    .admin-records-table .admin-tx-cell {
        width: min(100%, 67%);
    }

    .admin-records-shell {
        padding: 12px;
    }

    .admin-table-meta {
        margin-bottom: 10px;
        align-items: flex-start;
    }

    .admin-table-meta .content-note {
        font-size: 0.72rem;
    }

    .admin-records-table td:nth-child(n+2)::before {
        min-width: 72px;
    }

    .admin-records-table td[data-label="Guest"],
    .admin-records-table td[data-label="Amount"],
    .admin-records-table td[data-label="Details"],
    .admin-records-table td[data-label="Tx Id"],
    .admin-records-table td[data-label="Paid At"] {
        font-size: 0.74rem;
    }

    .admin-flow-pill,
    .admin-status-badge {
        min-height: 28px;
        padding: 5px 9px;
        font-size: 0.67rem;
    }

    .admin-page-nav {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
    }

    .admin-page-list {
        order: 3;
        flex-basis: 100%;
        justify-content: flex-start;
    }

    .admin-report-actions,
    .admin-record-tools .hero-actions {
        width: 100%;
    }

    .admin-report-actions .btn,
    .admin-record-tools .hero-actions .btn {
        flex: 1 1 calc(50% - 6px);
    }

    .checkout-table input[type="number"] {
        width: 84px;
    }

    .remove-item {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .summary-card .btn {
        width: 100%;
    }

    .timeline {
        gap: 10px;
    }

    .timeline-card {
        grid-template-columns: 74px minmax(0, 1fr);
        gap: 10px;
        padding: 14px;
        border-radius: 22px;
    }

    .timeline-date {
        padding: 10px 7px;
        border-radius: 16px;
    }

    .timeline-date strong {
        font-size: 1.65rem;
        margin: 3px 0;
    }

    .timeline-date span,
    .timeline-date small {
        font-size: 0.68rem;
    }

    .timeline-copy h3 {
        font-size: 1rem;
        margin: 2px 0 5px;
    }

    .timeline-meta {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .merch-item {
        border-radius: 20px;
    }

    .product-gallery {
        padding: 8px 8px 0;
        gap: 6px;
    }

    .product-main-image,
    .merch-item img,
    .product-image-placeholder {
        aspect-ratio: 4 / 3;
        border-radius: 15px;
    }

    .product-thumbs {
        display: none;
    }

    .carousel-nav {
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
    }

    .carousel-nav.prev {
        left: 14px;
    }

    .carousel-nav.next {
        right: 14px;
    }

    .carousel-dots {
        bottom: 10px;
        padding: 5px 8px;
    }

    .carousel-dot {
        width: 7px;
        height: 7px;
    }

    .thumb-btn {
        border-radius: 14px;
    }

    .merch-details {
        padding: 10px;
        display: grid;
        gap: 6px;
    }

    .merch-details h3 {
        font-size: 0.88rem;
        line-height: 1.08;
    }

    .merch-price {
        font-size: 0.9rem;
        margin: 0;
    }

    .merch-item .form-group.compact {
        gap: 5px;
    }

    .merch-item .form-group.compact label {
        font-size: 0.58rem;
        letter-spacing: 0.08em;
    }

    .merch-item select {
        min-height: 34px;
        padding: 7px 28px 7px 9px;
        font-size: 0.74rem;
        border-radius: 12px;
    }

    .merch-details .btn,
    .merch-item:not(.merch-item-featured) .btn {
        padding: 9px 8px;
        font-size: 0.72rem;
        border-radius: 14px;
    }

    .cart-floating-btn {
        width: 56px;
        height: 56px;
    }

    .cart-badge-container {
        right: 18px;
        bottom: 18px;
    }
}

@keyframes pageSettle {
    from {
        opacity: 0;
        transform: translateY(10px);
        filter: blur(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes productSwap {
    0% {
        opacity: 0.76;
        transform: scale(0.985);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes introVideoDrift {
    0% {
        transform: scale(var(--intro-video-scale)) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(var(--intro-video-end-scale)) translate3d(0, -1.2%, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
