:root {
    --brand: #523723;
    --brand-2: #6b4932;
    --brand-3: #8a6548;
    --brand-soft: #efe5da;
    --brand-pale: #f8f1e9;
    --bg: #f7f2eb;
    --bg-2: #f2ebe2;
    --surface: #fffdfa;
    --surface-strong: #ffffff;
    --surface-warm: #fbf6ef;
    --text: #2d241d;
    --muted: #7d6d61;
    --muted-2: #9a8c81;
    --line: rgba(82, 55, 35, 0.12);
    --line-strong: rgba(82, 55, 35, 0.22);
    --started: #3f765a;
    --started-soft: #e8f2ec;
    --warning: #b7782e;
    --danger: #a94b4b;
    --shadow-sm: 0 10px 28px rgba(82, 55, 35, 0.08);
    --shadow-md: 0 18px 44px rgba(82, 55, 35, 0.11);
    --shadow-lg: 0 30px 80px rgba(82, 55, 35, 0.14);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shell: 1480px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 8% 6%, rgba(168, 123, 84, 0.12), transparent 30rem),
        radial-gradient(circle at 94% 30%, rgba(82, 55, 35, 0.055), transparent 34rem),
        linear-gradient(180deg, #fbf8f4 0%, var(--bg) 38%, #f4eee6 100%);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(82, 55, 35, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(82, 55, 35, 0.022) 1px, transparent 1px);
    background-size: 34px 34px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 78%);
}

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

::selection {
    color: #fff;
    background: var(--brand-2);
}

.shell {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 64px), var(--shell));
    margin-inline: auto;
}

.ambient {
    position: fixed;
    z-index: 0;
    width: 42vw;
    aspect-ratio: 1;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: .16;
}

.ambient-one {
    top: 12vh;
    left: -18vw;
    background: #d8b99c;
}

.ambient-two {
    top: 58vh;
    right: -18vw;
    background: #e6d3bd;
}

.noise {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    height: 3px;
    background: rgba(82, 55, 35, 0.05);
}

.scroll-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, #8b6548, #523723);
    box-shadow: 0 0 14px rgba(82, 55, 35, .22);
}

.hero {
    display: flex;
    min-height: 690px;
    flex-direction: column;
    justify-content: space-between;
    padding-top: max(28px, env(safe-area-inset-top));
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 118px;
    padding: 10px 18px 10px 22px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: rgba(255, 253, 250, .86);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.brand-lockup {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 18px;
}

.brand-logo-crop {
    display: flex;
    width: 270px;
    height: 98px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
}

.brand-logo-crop img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.brand-divider {
    width: 1px;
    height: 44px;
    background: var(--line-strong);
    flex: 0 0 auto;
}

.brand-copy {
    min-width: 0;
}

.eyebrow,
.section-kicker {
    color: var(--brand-3);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .16em;
}

.brand-copy h1 {
    margin: 4px 0 0;
    color: var(--brand);
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.live-clock {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 218px;
    padding: 10px 12px 10px 20px;
    border-left: 1px solid var(--line);
}

.live-clock > div {
    display: grid;
    justify-items: end;
}

.live-clock strong {
    color: var(--brand);
    font-size: 20px;
    font-variant-numeric: tabular-nums;
    letter-spacing: .02em;
}

.live-clock small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
    white-space: nowrap;
}

.live-dot {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--started);
    box-shadow: 0 0 0 5px rgba(63, 118, 90, .08), 0 0 18px rgba(63, 118, 90, .24);
    animation: livePulse 2s ease-in-out infinite;
}

.hero-stage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
    gap: clamp(46px, 7vw, 110px);
    align-items: end;
    margin-top: 28px;
    padding: 74px clamp(28px, 4vw, 62px) 68px;
    overflow: hidden;
    border: 1px solid rgba(82, 55, 35, .1);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(249, 241, 232, .94)),
        var(--surface);
    box-shadow: var(--shadow-md);
}

.hero-stage::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -210px;
    top: -225px;
    border: 94px solid rgba(82, 55, 35, .035);
    border-radius: 50%;
}

.hero-stage::after {
    content: "STB";
    position: absolute;
    right: 36px;
    bottom: -45px;
    color: rgba(82, 55, 35, .025);
    font-size: clamp(160px, 18vw, 270px);
    font-weight: 950;
    line-height: .8;
    letter-spacing: -.08em;
    pointer-events: none;
}

.hero-copy,
.stats {
    position: relative;
    z-index: 2;
}

.hero-copy {
    max-width: 800px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--brand-3);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .035em;
}

.hero-kicker i {
    width: 30px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--brand), #c8aa8b);
}

.hero-copy h2 {
    margin: 0;
    max-width: 780px;
    color: #2b211a;
    font-size: clamp(46px, 5.5vw, 84px);
    line-height: .98;
    letter-spacing: -.055em;
}

.hero-copy h2 em {
    color: var(--brand);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
}

.hero-copy p {
    max-width: 690px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.85;
}

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

.stat-card {
    min-height: 154px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 8px 24px rgba(82, 55, 35, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(82, 55, 35, .22);
    box-shadow: var(--shadow-sm);
}

.stat-card > span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-top: 20px;
    color: var(--brand);
    font-size: 42px;
    line-height: 1;
    letter-spacing: -.06em;
}

.stat-card small {
    display: block;
    margin-top: 7px;
    color: var(--muted-2);
    font-size: 12px;
}

.stat-card.accent {
    background: linear-gradient(145deg, #fffaf4, #f6eadc);
}

.stat-card.started {
    border-color: rgba(63, 118, 90, .16);
    background: linear-gradient(145deg, #fbfefc, var(--started-soft));
}

.stat-card.started strong {
    color: var(--started);
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    min-height: 68px;
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.hero-scroll-hint i {
    position: relative;
    width: 22px;
    height: 32px;
    border: 1px solid rgba(82, 55, 35, .2);
    border-radius: 18px;
}

.hero-scroll-hint i::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 4px;
    background: var(--brand-3);
    transform: translateX(-50%);
    animation: scrollNudge 1.9s ease-in-out infinite;
}

.page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 38px;
    align-items: start;
    padding-top: 54px;
    padding-bottom: 110px;
}

.timeline-section {
    min-width: 0;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.section-heading h2,
.dock-heading h2 {
    margin: 6px 0 0;
    color: var(--text);
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.section-count,
.dock-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand);
    background: rgba(255, 253, 250, .76);
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.timeline {
    --timeline-progress: 0%;
    position: relative;
    display: grid;
    gap: 26px;
    padding-left: 50px;
}

.timeline-rail {
    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 12px;
    width: 2px;
    overflow: hidden;
    border-radius: 99px;
    background: rgba(82, 55, 35, .11);
}

.timeline-rail span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--timeline-progress);
    border-radius: inherit;
    background: linear-gradient(180deg, #9f7654, var(--brand));
    box-shadow: 0 0 12px rgba(82, 55, 35, .2);
}

.timeline-item {
    position: relative;
}

.timeline-node {
    position: absolute;
    top: 39px;
    left: -50px;
    z-index: 3;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 6px solid var(--bg);
    border-radius: 50%;
    background: #d9c3af;
    box-shadow: 0 0 0 1px rgba(82, 55, 35, .16);
}

.timeline-node span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand);
}

.timeline-item.is-started .timeline-node {
    background: #cfe2d7;
    box-shadow: 0 0 0 1px rgba(63, 118, 90, .22), 0 0 0 8px rgba(63, 118, 90, .045);
}

.timeline-item.is-started .timeline-node span {
    background: var(--started);
    animation: livePulse 1.8s ease-in-out infinite;
}

.event-card {
    position: relative;
    overflow: hidden;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 250, .92);
    box-shadow: var(--shadow-sm);
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.event-card::after {
    content: "";
    position: absolute;
    right: -90px;
    top: -95px;
    width: 200px;
    height: 200px;
    border: 35px solid rgba(82, 55, 35, .025);
    border-radius: 50%;
    pointer-events: none;
}

.event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(82, 55, 35, .2);
    box-shadow: var(--shadow-md);
}

.timeline-item.is-started .event-card {
    border-color: rgba(63, 118, 90, .23);
    background: linear-gradient(145deg, #fffefa, #f8fcf9);
}

.event-card-top {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.date-block {
    display: grid;
    min-height: 78px;
    place-items: center;
    align-content: center;
    gap: 3px;
    border: 1px solid rgba(82, 55, 35, .12);
    border-radius: 20px;
    color: var(--brand);
    background: var(--brand-pale);
}

.date-block strong {
    font-size: 29px;
    line-height: 1;
    letter-spacing: -.05em;
}

.date-block span {
    color: var(--brand-3);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .1em;
}

.date-block.today {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
    box-shadow: 0 10px 26px rgba(82, 55, 35, .16);
}

.date-block.today span {
    color: rgba(255, 255, 255, .76);
}

.event-heading {
    min-width: 0;
}

.event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 11px;
}

.badge,
.mini-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 29px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--brand-2);
    background: #fff;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .035em;
}

.badge-time {
    color: #fff;
    border-color: var(--brand);
    background: var(--brand);
    font-variant-numeric: tabular-nums;
}

.badge-started,
.mini-badge.started {
    color: var(--started);
    border-color: rgba(63, 118, 90, .18);
    background: var(--started-soft);
}

.badge-started i,
.mini-badge.started i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(63, 118, 90, .08);
    animation: livePulse 1.7s ease-in-out infinite;
}

.event-heading h3 {
    margin: 0;
    color: var(--text);
    font-size: clamp(22px, 2.35vw, 32px);
    line-height: 1.15;
    letter-spacing: -.035em;
}

.event-detail {
    position: relative;
    z-index: 2;
    margin-top: 23px;
    padding: 18px 20px;
    border-left: 3px solid #c8aa8b;
    border-radius: 0 14px 14px 0;
    color: #6f6054;
    background: #faf4ed;
    font-size: 14px;
    line-height: 1.72;
}

.event-detail p:first-child,
.event-detail ul:first-child,
.event-detail ol:first-child {
    margin-top: 0;
}

.event-detail p:last-child,
.event-detail ul:last-child,
.event-detail ol:last-child {
    margin-bottom: 0;
}

.event-meta-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
    gap: 12px;
    margin-top: 22px;
}

.meta-item {
    display: flex;
    min-width: 0;
    gap: 13px;
    padding: 16px;
    border: 1px solid rgba(82, 55, 35, .08);
    border-radius: 17px;
    background: rgba(249, 244, 237, .72);
}

.meta-icon {
    display: grid;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 11px;
    color: var(--brand);
    background: #efe4d9;
}

.meta-icon svg {
    width: 18px;
    height: 18px;
}

.meta-item > div {
    min-width: 0;
}

.meta-label {
    display: block;
    margin-bottom: 6px;
    color: var(--muted-2);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .115em;
    text-transform: uppercase;
}

.meta-item strong,
.participant-list {
    color: #4a3b30;
    font-size: 13px;
    line-height: 1.55;
}

.participant-list {
    display: grid;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.participant-list li {
    position: relative;
    padding-left: 13px;
}

.participant-list li::before {
    content: "";
    position: absolute;
    top: .72em;
    left: 0;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-3);
}

.event-footer {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 19px;
    padding-top: 16px;
    border-top: 1px dashed rgba(82, 55, 35, .14);
    color: var(--muted-2);
    font-size: 11px;
    font-weight: 700;
}

.countdown {
    color: var(--brand);
    font-weight: 850;
    text-align: right;
}

.today-dock {
    position: sticky;
    top: 28px;
}

.dock-inner {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 250, .92);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(16px);
}

.dock-inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #a67b57, var(--brand));
}

.dock-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.dock-heading h2 {
    font-size: 24px;
}

.dock-count {
    min-width: 36px;
    padding-inline: 10px;
    background: var(--brand-pale);
}

.dock-info {
    margin: 17px 0 18px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.past-list {
    display: grid;
    gap: 10px;
    max-height: min(55vh, 590px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cdb49d transparent;
}

.past-list::-webkit-scrollbar {
    width: 6px;
}

.past-list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cdb49d;
}

.past-item {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(82, 55, 35, .09);
    border-radius: 16px;
    background: #fcf8f3;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.past-item:hover {
    transform: translateX(-2px);
    border-color: rgba(82, 55, 35, .18);
    background: #fffdf9;
}

.past-item.recent {
    border-color: rgba(63, 118, 90, .2);
    background: var(--started-soft);
}

.past-time {
    color: var(--brand);
    font-size: 15px;
    font-weight: 900;
    font-variant-numeric: tabular-nums;
}

.past-status {
    min-height: 28px;
}

.mini-badge {
    min-height: 23px;
    padding-inline: 8px;
    color: var(--muted);
    font-size: 9px;
}

.past-copy h3 {
    margin: 4px 0 0;
    color: var(--text);
    font-size: 13px;
    line-height: 1.42;
}

.past-copy p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

.past-empty {
    display: grid;
    min-height: 170px;
    place-items: center;
    align-content: center;
    gap: 10px;
    padding: 22px;
    border: 1px dashed rgba(82, 55, 35, .16);
    border-radius: 16px;
    color: var(--muted);
    background: #fcf8f3;
    text-align: center;
}

.past-empty span {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    color: var(--started);
    background: var(--started-soft);
    font-weight: 900;
}

.past-empty p {
    margin: 0;
    font-size: 12px;
    line-height: 1.55;
}

.dock-footer {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--line);
    color: var(--muted-2);
    font-size: 10px;
    line-height: 1.45;
}

.dock-footer .live-dot {
    width: 6px;
    height: 6px;
    box-shadow: 0 0 0 4px rgba(63, 118, 90, .06);
}

.empty-state,
.error-card {
    padding: 58px 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 250, .9);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.empty-icon {
    display: grid;
    width: 60px;
    height: 60px;
    margin: 0 auto 18px;
    place-items: center;
    border-radius: 18px;
    color: var(--brand);
    background: var(--brand-pale);
}

.empty-icon svg {
    width: 28px;
    height: 28px;
}

.empty-state h3,
.error-card strong {
    margin: 0;
    color: var(--text);
    font-size: 22px;
}

.empty-state p,
.error-card p {
    max-width: 560px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.error-card {
    border-color: rgba(169, 75, 75, .18);
    background: #fff8f7;
}

.error-card strong {
    color: var(--danger);
}

.signature-sentinel {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 118px;
    margin-bottom: 28px;
    padding: 24px 28px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 253, 250, .86);
    box-shadow: var(--shadow-sm);
}

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

.footer-mark {
    display: grid;
    width: 48px;
    height: 48px;
    padding: 7px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: var(--brand-pale);
}

.footer-mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer strong {
    color: var(--brand);
    font-size: 14px;
}

.site-footer .footer-brand div span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 11px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 11px;
}

.design-signature {
    position: fixed;
    right: max(22px, env(safe-area-inset-right));
    bottom: max(20px, env(safe-area-inset-bottom));
    z-index: 65;
    width: min(380px, calc(100vw - 44px));
    padding: 15px 18px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 17px;
    color: #f7efe7;
    background:
        linear-gradient(135deg, rgba(82, 55, 35, .98), rgba(54, 38, 28, .98));
    box-shadow: 0 18px 48px rgba(54, 38, 28, .24);
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: box-shadow .25s ease, transform .25s ease;
}

.design-signature::before {
    content: "";
    position: absolute;
    top: 0;
    left: 18px;
    width: 54px;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: #c99b70;
}

.design-signature:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(54, 38, 28, .28);
}

.design-label {
    display: block;
    margin-bottom: 5px;
    color: #d7ad83;
    font-size: 9px;
    font-weight: 950;
    letter-spacing: .16em;
}

.design-signature strong {
    display: block;
    font-size: 11px;
    line-height: 1.5;
}

.design-signature strong b {
    color: #fff;
    font-weight: 950;
}

.design-signature small {
    display: block;
    margin-top: 4px;
    color: rgba(247, 239, 231, .72);
    font-size: 9px;
}

.to-top {
    position: fixed;
    right: 24px;
    bottom: 116px;
    z-index: 64;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(82, 55, 35, .14);
    border-radius: 14px;
    color: var(--brand);
    background: rgba(255, 253, 250, .94);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .24s ease, transform .24s ease, background .2s ease, color .2s ease;
}

.to-top:hover {
    color: #fff;
    background: var(--brand);
}

.to-top.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.to-top svg {
    width: 20px;
    height: 20px;
}

.js .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .72s cubic-bezier(.2, .72, .2, 1), transform .72s cubic-bezier(.2, .72, .2, 1);
    transition-delay: min(calc(var(--item-index, 0) * 38ms), 260ms);
}

.js .reveal.reveal-fast {
    transform: translateY(16px);
    transition-duration: .55s;
}

.js .reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.82); opacity: .58; }
}

@keyframes scrollNudge {
    0%, 100% { transform: translate(-50%, 0); opacity: .35; }
    50% { transform: translate(-50%, 9px); opacity: 1; }
}

@media (max-width: 1180px) {
    .hero-stage {
        grid-template-columns: 1fr;
        gap: 38px;
        align-items: start;
    }

    .hero-copy {
        max-width: 880px;
    }

    .stats {
        max-width: 760px;
    }

    .page-grid {
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 26px;
    }

    .brand-logo-crop {
        width: 236px;
        height: 86px;
    }
}

@media (max-width: 960px) {
    .shell {
        width: min(calc(100% - 36px), var(--shell));
    }

    .hero {
        min-height: auto;
    }

    .hero-top {
        margin-top: 10px;
    }

    .brand-divider,
    .brand-copy {
        display: none;
    }

    .hero-stage {
        padding: 54px 30px 46px;
    }

    .page-grid {
        grid-template-columns: 1fr;
        padding-top: 36px;
    }

    .today-dock {
        position: relative;
        top: auto;
    }

    .past-list {
        max-height: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: visible;
    }
}

@media (max-width: 720px) {
    .shell {
        width: min(calc(100% - 24px), var(--shell));
    }

    .ambient {
        opacity: .1;
    }

    .hero {
        padding-top: max(12px, env(safe-area-inset-top));
    }

    .hero-top {
        gap: 10px;
        min-height: 76px;
        padding: 10px 12px;
        border-radius: 19px;
    }

    .brand-lockup {
        min-width: 0;
        flex: 1 1 auto;
    }

    .brand-logo-crop {
        width: 164px;
        height: 60px;
    }

    .live-clock {
        min-width: 0;
        gap: 7px;
        padding: 6px 0 6px 10px;
    }

    .live-clock .live-dot {
        display: none;
    }

    .live-clock strong {
        font-size: 15px;
    }

    .live-clock small {
        max-width: 94px;
        overflow: hidden;
        font-size: 9px;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero-stage {
        margin-top: 14px;
        padding: 40px 20px 28px;
        border-radius: 24px;
    }

    .hero-stage::after {
        right: 12px;
        bottom: -28px;
        font-size: 130px;
    }

    .hero-copy h2 {
        font-size: clamp(40px, 13vw, 58px);
    }

    .hero-copy p {
        margin-top: 19px;
        font-size: 14px;
        line-height: 1.7;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .stat-card {
        display: grid;
        min-height: 0;
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        align-items: center;
        padding: 17px 18px;
    }

    .stat-card > span {
        grid-column: 1;
        grid-row: 1;
    }

    .stat-card strong {
        grid-column: 2;
        grid-row: 1 / 3;
        margin: 0;
        font-size: 34px;
    }

    .stat-card small {
        grid-column: 1;
        grid-row: 2;
        margin-top: 5px;
    }

    .hero-scroll-hint {
        min-height: 52px;
    }

    .page-grid {
        gap: 26px;
        padding-bottom: 58px;
    }

    .section-heading {
        align-items: center;
        margin-bottom: 22px;
    }

    .section-heading h2 {
        font-size: 30px;
    }

    .timeline {
        gap: 16px;
        padding-left: 26px;
    }

    .timeline-rail {
        left: 5px;
    }

    .timeline-node {
        top: 31px;
        left: -29px;
        width: 20px;
        height: 20px;
        border-width: 5px;
    }

    .timeline-node span {
        width: 6px;
        height: 6px;
    }

    .event-card {
        padding: 19px;
        border-radius: 20px;
    }

    .event-card-top {
        grid-template-columns: 60px minmax(0, 1fr);
        gap: 13px;
    }

    .date-block {
        min-height: 66px;
        border-radius: 16px;
    }

    .date-block strong {
        font-size: 25px;
    }

    .event-heading h3 {
        font-size: 21px;
    }

    .event-meta-grid {
        grid-template-columns: 1fr;
    }

    .event-detail {
        padding: 15px 16px;
        font-size: 13px;
    }

    .event-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .countdown {
        text-align: left;
    }

    .dock-inner {
        padding: 20px;
        border-radius: 20px;
    }

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

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        min-height: 0;
        gap: 14px;
        margin-bottom: 14px;
        padding: 21px;
        border-radius: 20px;
    }

    .design-signature {
        position: relative;
        right: auto;
        bottom: auto;
        z-index: 2;
        width: min(calc(100% - 24px), var(--shell));
        margin: 0 auto max(16px, env(safe-area-inset-bottom));
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .design-signature:hover {
        transform: none;
    }

    .to-top {
        right: 14px;
        bottom: 14px;
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 430px) {
    .brand-logo-crop {
        width: 144px;
        height: 53px;
    }

    .hero-top {
        padding-inline: 10px;
    }

    .live-clock small {
        display: none;
    }

    .hero-stage {
        padding-inline: 17px;
    }

    .hero-kicker {
        font-size: 11px;
    }

    .hero-copy h2 {
        font-size: clamp(38px, 12vw, 50px);
    }

    .section-count {
        min-height: 32px;
        padding-inline: 10px;
        font-size: 10px;
    }

    .timeline {
        padding-left: 21px;
    }

    .timeline-rail {
        left: 3px;
    }

    .timeline-node {
        left: -24px;
    }

    .event-card {
        padding: 16px;
    }

    .event-card-top {
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 11px;
    }

    .date-block {
        min-height: 59px;
    }

    .date-block strong {
        font-size: 22px;
    }

    .badge {
        min-height: 25px;
        padding-inline: 8px;
        font-size: 9px;
    }

    .event-heading h3 {
        font-size: 19px;
    }

    .meta-item {
        padding: 13px;
    }

    .meta-icon {
        width: 32px;
        height: 32px;
    }
}

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

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

    .js .reveal {
        opacity: 1;
        transform: none;
    }
}
