:root {
    --plum-rose: #9E1F63;
    --royal-purple: #64006F;
    --deep-plum: #3a0f2f;
    --warm-white: #fbf8f6;
    --sand: #e7d6c8;
    --clay: #c9a48c;
    --gold: #d8b77c;
    --mist: #f3e8e3;
    --ink: #2e1f2d;
    --shadow-soft: 0 20px 45px rgba(41, 18, 31, 0.12);
    --shadow-lift: 0 18px 40px rgba(58, 15, 47, 0.16);
    --header-height: 84px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 15% 10%, rgba(158, 31, 99, 0.08), transparent 55%),
        radial-gradient(circle at 85% 15%, rgba(100, 0, 111, 0.08), transparent 52%),
        repeating-linear-gradient(135deg, rgba(231, 214, 200, 0.18) 0, rgba(231, 214, 200, 0.18) 1px, transparent 1px, transparent 8px),
        var(--warm-white);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

main {
    position: relative;
    overflow: hidden;
}

main::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 6% 25%, rgba(158, 31, 99, 0.08), transparent 55%),
        radial-gradient(circle at 90% 12%, rgba(100, 0, 111, 0.09), transparent 50%),
        linear-gradient(135deg, rgba(231, 214, 200, 0.25), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 0;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section {
    padding: 90px 0;
}

.countdown-bar {
    position: relative;
    background: linear-gradient(120deg, var(--plum-rose), var(--royal-purple));
    color: white;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, #d8b77c, transparent) 1;
}

.countdown-bar::before,
.countdown-bar::after {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(216, 183, 124, 0.6), rgba(100, 0, 111, 0.8));
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    opacity: 0.35;
}

.countdown-bar::before {
    left: -40px;
    top: 30%;
}

.countdown-bar::after {
    right: -40px;
    top: 10%;
}

.countdown-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.countdown-bar__label h2 {
    color: white;
    margin-bottom: 6px;
}

.countdown-bar__label p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.countdown {
    display: grid;
    grid-auto-flow: column;
    gap: 8px;
}

.countdown__item {
    text-align: center;
    padding: 7px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 52px;
}

.countdown__value {
    display: block;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.countdown__label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.45rem;
    opacity: 0.85;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header::after {
    content: "";
    display: block;
    width: 120px;
    height: 2px;
    margin: 18px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.eyebrow {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--plum-rose);
    font-weight: 600;
}

.section-title {
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.hero-banner {
    position: relative;
    min-height: 82vh;
    display: grid;
    align-items: center;
    color: white;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(100, 0, 111, 0.7), rgba(158, 31, 99, 0.6));
    padding-top: var(--header-height);
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 7px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 9px);
    opacity: 0.6;
    z-index: 0;
}

.hero-banner__content {
    text-align: center;
    position: relative;
    z-index: 4;
    padding: 140px 0 100px;
}

.hero-banner .container {
    width: 100%;
    max-width: none;
    padding-left: 6%;
    padding-right: 6%;
}

.hero-banner h1 {
    text-shadow: 0 12px 24px rgba(20, 10, 19, 0.35);
}

.hero-kicker {
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 0.7rem;
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 4.8rem);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.hero-banner h1,
.hero-banner p {
    color: white;
}

.hero-info {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-info__item {
    display: grid;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
}

.hero-info__item strong {
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: none;
}

.hero-shape {
    position: absolute;
    width: 220px;
    height: 220px;
    opacity: 0.85;
    z-index: 3;
    background: linear-gradient(135deg, rgba(216, 183, 124, 0.8), rgba(100, 0, 111, 0.9));
    clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
    box-shadow: 0 30px 50px rgba(20, 10, 19, 0.35);
}

.hero-shape-left {
    left: -70px;
    bottom: 16%;
    transform: rotate(10deg);
}

.hero-shape-right {
    right: -80px;
    top: 18%;
    transform: rotate(-8deg);
}

.band {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.band-theme {
    background: linear-gradient(135deg, rgba(247, 242, 238, 0.95), rgba(231, 214, 200, 0.8));
}

.band-inner {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.band-title h2 {
    margin-bottom: 8px;
}

.band-quote {
    background: white;
    padding: 26px 30px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--gold);
}

.stat-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.snapshot-section {
    position: relative;
    background: linear-gradient(135deg, rgba(247, 242, 238, 0.85), rgba(231, 214, 200, 0.5));
    overflow: hidden;
}

.snapshot-section::before {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 28px;
    border: 1px solid rgba(158, 31, 99, 0.12);
    pointer-events: none;
}

.snapshot-section::after {
    content: "";
    position: absolute;
    right: -120px;
    top: -90px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(216, 183, 124, 0.2), transparent 70%);
    opacity: 0.8;
    pointer-events: none;
}

.snapshot-section .container {
    position: relative;
    z-index: 1;
}

.stat-card {
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.98), rgba(247, 242, 238, 0.9));
    padding: 24px 24px 26px;
    border-radius: 18px;
    border: 1px solid rgba(158, 31, 99, 0.12);
    box-shadow: 0 18px 30px rgba(20, 10, 19, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    margin-bottom: 6px;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 18px 18px 0 0;
    background: linear-gradient(120deg, var(--plum-rose), var(--royal-purple));
}

.stat-card h3 {
    margin-bottom: 10px;
    color: var(--deep-plum);
}

.stat-card p {
    margin: 0;
    color: rgba(46, 31, 45, 0.78);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 36px rgba(20, 10, 19, 0.12);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.panel {
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.panel--light {
    background: white;
    border: 1px solid rgba(216, 183, 124, 0.2);
}

.panel--accent {
    background: linear-gradient(135deg, rgba(247, 242, 238, 0.9), rgba(231, 214, 200, 0.85));
    border: 1px solid rgba(158, 31, 99, 0.14);
}

.ticket-strip {
    background: linear-gradient(120deg, rgba(100, 0, 111, 0.95), rgba(158, 31, 99, 0.95));
    color: white;
    padding: 50px 0;
}

.hero-banner .button-outline,
.ticket-strip .button-outline {
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    background: transparent;
}

.hero-banner .button-outline:hover,
.ticket-strip .button-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.ticket-strip__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.ticket-strip__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

h1, h2, h3, h4 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    margin: 0 0 16px;
    color: var(--ink);
}

h1 {
    font-size: clamp(2.6rem, 4.5vw, 3.9rem);
    letter-spacing: 0.01em;
}

h2 {
    font-size: clamp(2rem, 3.4vw, 2.8rem);
}

h3 {
    font-size: 1.4rem;
}

p {
    margin: 0 0 18px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.button-primary {
    background: linear-gradient(120deg, var(--plum-rose), var(--royal-purple));
    color: white;
    box-shadow: var(--shadow-soft);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lift);
}

.button-outline {
    border-color: var(--plum-rose);
    color: var(--plum-rose);
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 238, 0.8));
}

.button-outline:hover {
    background: rgba(158, 31, 99, 0.08);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background:
        linear-gradient(180deg, rgba(46, 31, 45, 0.25), rgba(46, 31, 45, 0.55)),
        radial-gradient(circle at 30% 20%, rgba(158, 31, 99, 0.18), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(100, 0, 111, 0.22), transparent 60%);
    background-color: rgba(46, 31, 45, 0.2);
    backdrop-filter: blur(12px);
    z-index: 5;
    border-bottom: 1px solid rgba(158, 31, 99, 0.08);
    box-shadow: 0 12px 30px rgba(46, 31, 45, 0.08);
}

.site-header,
.site-header a {
    color: white;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 18px 0;
}

.brand img {
    height: 56px;
    transition: height 0.3s ease;
}

.site-header.logo-expanded .brand img {
    height: 112px;
}

.site-nav {
    margin-left: auto;
    display: flex;
    gap: 18px;
    font-weight: 500;
}

.site-nav a {
    position: relative;
    padding-bottom: 6px;
}

.nav-register {
    display: none;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: rgba(255, 255, 255, 0.7);
    transition: width 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
    width: 100%;
}

.nav-cta {
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
}

.hero {
    position: relative;
    min-height: 84vh;
    display: grid;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 7px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 9px);
    opacity: 0.6;
    mix-blend-mode: soft-light;
    z-index: 0;
}

.hero-media {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 0, 111, 0.65), rgba(158, 31, 99, 0.45));
    z-index: 1;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 20%, rgba(216, 183, 124, 0.2), transparent 55%);
    opacity: 0.65;
}

.hero-overlay {
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, rgba(46, 31, 45, 0.45), rgba(46, 31, 45, 0.78)),
        radial-gradient(circle at 30% 20%, rgba(158, 31, 99, 0.35), transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(100, 0, 111, 0.4), transparent 60%);
    z-index: 2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(0.95);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 0;
}

.hero .container {
    width: 100%;
    max-width: none;
    padding-left: 4%;
    padding-right: 4%;
}

.hero-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 36px 40px 42px;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(46, 31, 45, 0.55), rgba(82, 36, 68, 0.45));
    border: 1px solid rgba(255, 255, 255, 0.26);
    backdrop-filter: blur(6px);
    box-shadow: 0 22px 60px rgba(20, 10, 19, 0.4);
    position: relative;
}

.hero-card::after {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-card > * {
    opacity: 0;
    transform: translateY(12px);
    animation: fade-up 0.8s ease forwards;
}

.hero-card > *:nth-child(1) {
    animation-delay: 0.05s;
}

.hero-card > *:nth-child(2) {
    animation-delay: 0.15s;
}

.hero-card > *:nth-child(3) {
    animation-delay: 0.25s;
}

.hero-card > *:nth-child(4) {
    animation-delay: 0.35s;
}

.hero-card > *:nth-child(5) {
    animation-delay: 0.45s;
}

.hero-logo {
    height: 92px;
    margin: 0 auto 18px;
}

.hero-subtitle {
    font-size: 1.15rem;
    max-width: 520px;
    margin: 0 auto 26px;
}

.hero-theme {
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin: -10px auto 26px;
}

.hero-banner .hero-theme {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(216, 183, 124, 0.18);
    border: 1px solid rgba(216, 183, 124, 0.5);
    box-shadow: 0 10px 24px rgba(20, 10, 19, 0.35);
    font-size: 1.02rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.95);
}

.hero-banner .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero h1 {
    text-shadow: 0 10px 20px rgba(20, 10, 19, 0.35);
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-seal {
    margin: 24px auto 0;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 20px;
    border-radius: 999px;
    border: 1px dashed rgba(216, 183, 124, 0.7);
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.theme-section {
    background: linear-gradient(135deg, rgba(247, 242, 238, 0.9), rgba(243, 232, 227, 0.8));
}

.scripture {
    color: var(--royal-purple);
}

.scripture-quote {
    position: relative;
    background: white;
    padding: 28px 36px;
    border-left: 4px solid var(--clay);
    box-shadow: var(--shadow-soft);
    max-width: 720px;
    margin: 0 auto;
}

.scripture-quote::before {
    content: "\"";
    position: absolute;
    top: -18px;
    left: 20px;
    font-size: 4rem;
    color: rgba(216, 183, 124, 0.6);
    font-family: "Cormorant Garamond", serif;
}

.section-ornament {
    width: 140px;
    height: 26px;
    margin: 0 auto 30px;
    position: relative;
}

.section-ornament::before,
.section-ornament::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-ornament::before {
    left: 0;
}

.section-ornament::after {
    right: 0;
    transform: scaleX(-1);
}

.section-ornament span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translate(-50%, -50%);
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(216, 183, 124, 0.15);
}

.about-section .split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    align-items: start;
}

.map-section .section-header {
    margin-bottom: 26px;
}

.map-section {
    padding-bottom: 0;
}

.map-embed {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: white;
    border: 1px solid rgba(216, 183, 124, 0.2);
    aspect-ratio: 8 / 3;
}

.map-embed--full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    border-radius: 0;
    border-left: none;
    border-right: none;
}

.map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-copy {
    background: white;
    padding: 28px 30px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(216, 183, 124, 0.2);
}

.scripture-block {
    background: rgba(247, 242, 238, 0.9);
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(158, 31, 99, 0.12);
    box-shadow: 0 12px 26px rgba(20, 10, 19, 0.08);
    margin: 14px 0 18px;
}

.scripture-title {
    font-weight: 600;
    color: var(--deep-plum);
    margin-bottom: 10px;
}

.scripture-verse {
    margin: 0 0 12px;
    color: rgba(46, 31, 45, 0.82);
}

.scripture-verse:last-child {
    margin-bottom: 0;
}

.expect-grid {
    display: grid;
    gap: 16px;
}

.expect-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(247, 242, 238, 0.9));
    border-radius: 18px;
    padding: 18px 20px;
    border: 1px solid rgba(158, 31, 99, 0.12);
    box-shadow: 0 16px 30px rgba(58, 15, 47, 0.08);
}

.expect-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.history-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(216, 183, 124, 0.18), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(158, 31, 99, 0.12), transparent 24%),
        linear-gradient(180deg, rgba(247, 242, 238, 0.84), rgba(255, 255, 255, 0.98));
}

.history-section::before,
.history-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.history-section::before {
    width: 260px;
    height: 260px;
    right: -90px;
    top: 50px;
    background: radial-gradient(circle, rgba(216, 183, 124, 0.18), transparent 68%);
}

.history-section::after {
    width: 220px;
    height: 220px;
    left: -70px;
    bottom: 20px;
    background: radial-gradient(circle, rgba(100, 0, 111, 0.1), transparent 68%);
}

.history-section .section-header {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.history-intro {
    margin: 14px auto 0;
    max-width: 660px;
    color: rgba(46, 31, 45, 0.78);
    font-size: 1.02rem;
}

.history-timeline {
    position: relative;
    max-width: 1060px;
    margin: 0 auto;
    padding: 30px 0 18px;
}

.history-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(216, 183, 124, 0), rgba(158, 31, 99, 0.45) 12%, rgba(158, 31, 99, 0.45) 88%, rgba(216, 183, 124, 0));
}

.history-timeline::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 14px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(216, 183, 124, 0.15), transparent 72%);
    pointer-events: none;
}

.history-item {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    margin-bottom: 42px;
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-item__marker {
    grid-column: 2;
    grid-row: 1;
    position: relative;
    display: grid;
    place-items: center;
    align-self: center;
    min-height: 134px;
    padding-top: 0;
}

.history-title {
    position: absolute;
    top: 50%;
    margin: 0;
    width: min(380px, calc(50vw - 190px));
    max-width: none;
    font-size: 1.15rem;
    line-height: 1.15;
    color: var(--royal-purple);
    z-index: 3;
    transform: translateY(-50%);
}

.history-item--headline:nth-child(odd) .history-title {
    right: 168px;
    left: auto;
    text-align: right;
}

.history-item--headline:nth-child(even) .history-title {
    left: 168px;
    right: auto;
    text-align: left;
}

.history-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--plum-rose));
    border: 4px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 0 0 8px rgba(158, 31, 99, 0.1);
    position: relative;
    z-index: 2;
}

.history-dot::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 124, 0.34);
}

.history-pill {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--royal-purple), var(--plum-rose));
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: 0 14px 26px rgba(100, 0, 111, 0.22);
    z-index: 1;
}

.history-item:nth-child(odd) .history-pill {
    right: 54px;
}

.history-item:nth-child(even) .history-pill {
    left: 54px;
}

.history-item__content {
    grid-row: 1;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 247, 244, 0.94));
    border-radius: 22px;
    padding: 30px 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 31, 99, 0.14);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.history-item__content::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--plum-rose));
}

.history-item__content::after {
    content: "";
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 50%;
    border: 1px solid rgba(216, 183, 124, 0.2);
    opacity: 0.55;
    pointer-events: none;
}

.history-item:hover .history-item__content {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(158, 31, 99, 0.22);
}

.history-item:nth-child(odd) .history-item__content {
    grid-column: 3;
}

.history-item:nth-child(odd) .history-item__content::after {
    right: -36px;
    bottom: -44px;
}

.history-item:nth-child(even) .history-item__content {
    grid-column: 1;
}

.history-item:nth-child(even) .history-item__content::after {
    left: -36px;
    bottom: -44px;
}

.history-item--current .history-item__content {
    background: linear-gradient(160deg, rgba(100, 0, 111, 0.97), rgba(158, 31, 99, 0.92));
    color: white;
}

.history-item--current .history-item__content::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), var(--gold));
}

.history-item--current .history-pill {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(216, 183, 124, 0.94));
    color: var(--royal-purple);
}

.history-item--current .history-dot {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), var(--gold));
}

.history-item--current .history-title {
    color: var(--plum-rose);
}

.history-item__content h3 {
    margin: 0 0 18px;
    line-height: 1.15;
}

.history-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.history-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
}

.history-item--current h3,
.history-item--current .history-copy,
.history-item--current .history-label,
.history-item--current .history-points {
    color: white;
}

.history-detail {
    margin-bottom: 14px;
    padding: 15px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(247, 242, 238, 0.88), rgba(255, 255, 255, 0.92));
    border: 1px solid rgba(158, 31, 99, 0.1);
    box-shadow: 0 10px 24px rgba(58, 15, 47, 0.05);
}

.history-detail:last-of-type {
    margin-bottom: 0;
}

.history-item--current .history-detail {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: none;
}

.history-copy {
    margin: 0;
    color: rgba(46, 31, 45, 0.82);
}

.history-item > .history-item__content > .history-copy {
    margin-top: 14px;
    font-weight: 600;
    color: var(--plum-rose);
}

.history-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--deep-plum);
}

.history-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--plum-rose));
    flex: 0 0 auto;
}

.history-points {
    list-style: none;
    margin: 0;
    padding: 0;
    color: rgba(46, 31, 45, 0.82);
}

.history-points li {
    position: relative;
    padding-left: 18px;
}

.history-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--plum-rose));
    transform: translateY(-50%);
}

.history-points li + li {
    margin-top: 8px;
}

@media (max-width: 900px) {
    .history-section .section-header {
        margin-bottom: 30px;
    }

    .history-timeline::before {
        left: 14px;
        transform: none;
    }

    .history-timeline::after {
        left: 14px;
        transform: none;
    }

    .history-item {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 14px;
        align-items: start;
        margin-bottom: 22px;
    }

    .history-item__marker {
        grid-column: 1;
        min-height: 0;
        padding-top: 12px;
        place-items: start center;
    }

    .history-pill {
        top: 0;
        left: 0;
        right: auto;
        transform: translate(24px, 0);
        min-width: 78px;
        padding: 9px 14px;
    }

    .history-item:nth-child(odd) .history-pill,
    .history-item:nth-child(even) .history-pill {
        left: 0;
        right: auto;
    }

    .history-item--headline .history-title,
    .history-item--headline:nth-child(odd) .history-title,
    .history-item--headline:nth-child(even) .history-title {
        top: 2px;
        left: 112px;
        right: auto;
        width: calc(100vw - 170px);
        max-width: min(420px, calc(100vw - 170px));
        text-align: left;
        font-size: 1.05rem;
    }

    .history-item:nth-child(odd) .history-item__content,
    .history-item:nth-child(even) .history-item__content {
        grid-column: 2;
        margin-top: 26px;
    }

    .history-item--headline:nth-child(odd) .history-item__content,
    .history-item--headline:nth-child(even) .history-item__content {
        margin-top: 72px;
    }

    .history-item:nth-child(odd) .history-item__content::after,
    .history-item:nth-child(even) .history-item__content::after {
        right: -28px;
        left: auto;
        width: 104px;
        height: 104px;
        bottom: -34px;
    }

    .history-item__content {
        padding: 24px 20px;
    }

    .history-item h3 {
        font-size: 1.25rem;
    }

    .history-detail {
        padding: 13px 14px;
    }
}

@media (max-width: 600px) {
    .history-intro {
        font-size: 0.96rem;
    }

    .history-timeline::before,
    .history-timeline::after {
        left: 12px;
    }

    .history-item__marker {
        padding-top: 12px;
    }

    .history-dot {
        width: 16px;
        height: 16px;
        border-width: 3px;
    }

    .history-pill {
        min-width: 72px;
        padding: 8px 12px;
        font-size: 0.74rem;
        transform: translate(22px, 0);
    }

    .history-item--headline .history-title,
    .history-item--headline:nth-child(odd) .history-title,
    .history-item--headline:nth-child(even) .history-title {
        left: 104px;
        font-size: 0.98rem;
        width: calc(100vw - 132px);
        max-width: calc(100vw - 132px);
    }

    .history-item:nth-child(odd) .history-item__content,
    .history-item:nth-child(even) .history-item__content {
        margin-top: 22px;
    }

    .history-item--headline:nth-child(odd) .history-item__content,
    .history-item--headline:nth-child(even) .history-item__content {
        margin-top: 70px;
    }
}

.highlight-card {
    background: linear-gradient(180deg, #ffffff 0%, #fdf9f7 100%);
    padding: 30px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 31, 99, 0.12);
}

.icon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon-list li {
    padding-left: 24px;
    margin-bottom: 14px;
    position: relative;
}

.icon-list li::before {
    content: "*";
    position: absolute;
    left: 0;
    color: var(--plum-rose);
}

.callout {
    background:
        radial-gradient(circle at 15% 20%, rgba(216, 183, 124, 0.18), transparent 55%),
        linear-gradient(120deg, rgba(158, 31, 99, 0.18), rgba(100, 0, 111, 0.16));
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 183, 124, 0.25), transparent 70%);
    opacity: 0.7;
}

.callout-seal {
    position: absolute;
    right: 8%;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(100, 0, 111, 0.95), rgba(158, 31, 99, 0.95));
    color: white;
    padding: 16px 22px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lift);
}

.callout-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
}

.page-hero {
    padding: 90px 0 56px;
    background:
        linear-gradient(135deg, rgba(100, 0, 111, 0.8), rgba(158, 31, 99, 0.75));
    text-align: center;
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.95);
}

.page-hero h1,
.page-hero p {
    color: white;
}

.page-hero .eyebrow {
    color: var(--gold);
    padding-top: 20px;
    display: inline-block;
}

.page-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.page-hero .hero-theme {
    font-size: 1rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 auto 14px;
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -40px;
    width: 200px;
    height: 90px;
    background: radial-gradient(circle at 50% 0, rgba(216, 183, 124, 0.45), transparent 70%);
    transform: translateX(-50%);
}

.page-hero--alt::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), transparent 60%);
    opacity: 0.8;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.schedule-list {
    display: grid;
    gap: 22px;
}

.schedule-item {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(160px, 220px) 1fr;
    background: white;
    padding: 24px 26px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid var(--plum-rose);
}

.schedule-date {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--plum-rose);
    display: grid;
    gap: 8px;
}

.schedule-date strong {
    font-size: 1.05rem;
    color: var(--ink);
    text-transform: none;
    letter-spacing: 0.02em;
}

.schedule-details {
    display: grid;
    gap: 4px;
}

.schedule-points {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    display: grid;
    gap: 8px;
}

.schedule-points li {
    padding-left: 18px;
    position: relative;
}

.schedule-points li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: var(--plum-rose);
}

.schedule-card {
    position: relative;
    background: white;
    padding: 28px 28px 28px 44px;
    border-radius: 22px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(158, 31, 99, 0.12);
}

.schedule-card::before {
    content: "";
    position: absolute;
    left: 20px;
    top: 28px;
    width: 10px;
    height: 10px;
    background: linear-gradient(120deg, var(--plum-rose), var(--royal-purple));
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(158, 31, 99, 0.12);
}

.schedule-card::after {
    content: "";
    position: absolute;
    left: 24px;
    top: 44px;
    bottom: 28px;
    width: 1px;
    background: linear-gradient(180deg, rgba(216, 183, 124, 0.8), rgba(216, 183, 124, 0));
}

.schedule-time {
    color: var(--plum-rose);
    font-weight: 600;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: start;
}

.info-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    background: white;
    padding: 22px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--plum-rose);
}

.info-card--accent {
    background: linear-gradient(135deg, rgba(247, 242, 238, 0.95), rgba(231, 214, 200, 0.85));
    border-top-color: var(--gold);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.gallery-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-item {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lift);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(30, 18, 30, 0.8);
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    padding: 20px;
}

.lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-image {
    max-width: min(860px, 92vw);
    max-height: 70vh;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    cursor: pointer;
}

.lightbox-close::before,
.lightbox-close::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 9px;
    width: 20px;
    height: 2px;
    background: white;
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

.accordion {
    max-width: 780px;
    margin: 0 auto;
}

@media (max-width: 800px) {
    .schedule-item {
        grid-template-columns: 1fr;
    }
}

.accordion-item {
    width: 100%;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    font-size: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 14px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.accordion-item.active {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lift);
}

.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 0 0 16px 16px;
    padding: 0 20px;
    margin-top: -10px;
    margin-bottom: 14px;
}

.accordion-panel p {
    margin: 16px 0 18px;
}

.accordion-item.active + .accordion-panel {
    max-height: 200px;
}

.site-footer {
    background: linear-gradient(120deg, var(--plum-rose), var(--royal-purple));
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
    padding: 70px 0 34px;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer h4 {
    color: rgba(255, 255, 255, 0.95);
}

.footer-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: start;
    text-align: center;
}

.footer-links {
    display: grid;
    gap: 12px;
    justify-items: center;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 6px 16px rgba(20, 10, 19, 0.18);
}

.footer-bottom {
    border-top: 1px solid rgba(158, 31, 99, 0.1);
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--gold);
}

@media (max-width: 900px) {
    .site-nav {
        position: fixed;
        inset: 0 0 auto 0;
        top: 70px;
        background: linear-gradient(120deg, var(--plum-rose), var(--royal-purple));
        flex-direction: column;
        padding: 20px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }

    .nav-register {
        display: inline-flex;
    }

    .site-nav.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
        flex-direction: column;
        gap: 6px;
    }

    .nav-toggle span {
        margin: 0;
    }

    .brand {
        padding-top: 8px;
    }

    .nav-cta {
        display: none;
    }

    .header-inner {
        gap: 12px;
        padding-top: 26px;
    }
}

@media (min-width: 901px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .hero-content {
        padding: 90px 0;
    }

    .hero-card {
        padding: 28px 24px 32px;
    }

    .snapshot-section {
        padding: 64px 0;
    }

    .snapshot-section .section-header {
        margin-bottom: 24px;
    }

    .stat-grid {
        gap: 14px;
    }

    .stat-card {
        padding: 20px 20px 22px;
    }


    .callout-seal {
        position: static;
        margin: 20px auto 0;
        display: inline-flex;
    }

    .section {
        padding: 70px 0;
    }

    .countdown-bar__inner {
        justify-content: center;
        text-align: center;
    }

    .countdown-bar__label {
        text-align: center;
    }
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
