/* 每日大赛全站样式 */
:root {
    --bg: #050505;
    --bg-deep: #090907;
    --panel: #10100e;
    --panel-2: #171611;
    --hover: #201e17;
    --title: #fff8e7;
    --text: #e7e0cf;
    --muted: #aaa18d;
    --subtle: #7f7768;
    --gold: #d5af58;
    --gold-bright: #f3d27b;
    --gold-deep: #9b7127;
    --gold-dark: #604314;
    --warm: #fff4d8;
    --border: rgba(213, 175, 88, .18);
    --border-strong: rgba(243, 210, 123, .45);
    --shadow: 0 18px 48px rgba(0, 0, 0, .46);
    --gold-shadow: 0 18px 46px rgba(213, 175, 88, .18);
    --container: 1320px;
    --header-height: 158px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 18% 8%, rgba(213, 175, 88, .07), transparent 24rem),
        radial-gradient(circle at 86% 26%, rgba(243, 210, 123, .035), transparent 26rem),
        linear-gradient(180deg, #050505, #070706 42%, #050505);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    line-height: 1.75;
    text-rendering: optimizeLegibility;
}
body.panel-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button:focus-visible, a:focus-visible, summary:focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}
::selection { background: rgba(213, 175, 88, .32); color: var(--warm); }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 36px), var(--container)); margin-inline: auto; }
.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 500;
    transform: translateY(-150%);
    padding: 10px 16px;
    color: #17120a;
    background: var(--gold-bright);
    border-radius: 4px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(5, 5, 5, .96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .26);
    backdrop-filter: blur(18px);
}
.event-status { border-bottom: 1px solid var(--border); background: #030303; }
.status-inner {
    width: min(calc(100% - 36px), var(--container));
    min-height: 31px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    letter-spacing: .02em;
}
.status-brand { margin: 0; color: var(--muted); white-space: nowrap; }
.status-center, .status-actions { display: flex; align-items: center; gap: 19px; }
.status-center { justify-content: center; }
.status-actions { justify-content: flex-end; }
.status-center a, .status-actions a { color: var(--muted); transition: color .2s ease; }
.status-center a:hover, .status-actions a:hover { color: var(--gold-bright); }
.mobile-status-schedule { display: none; }

.brand-nav-wrap { border-bottom: 1px solid var(--border); }
.brand-nav {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
    align-items: center;
    position: relative;
}
.brand-side { display: flex; align-items: center; gap: 15px; min-width: 0; }
.brand-side-right { justify-content: flex-end; }
.brand-center {
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    min-width: 180px;
    padding: 6px 18px;
}
.brand-logo-image { max-height: 52px; width: auto; object-fit: contain; }
.brand-wordmark { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.05; }
.brand-wordmark strong {
    font-family: Georgia, "Times New Roman", "Songti SC", serif;
    font-size: 27px;
    font-weight: 500;
    letter-spacing: .18em;
    color: var(--title);
    white-space: nowrap;
}
.brand-wordmark small { margin-top: 6px; font-size: 9px; letter-spacing: .34em; color: var(--gold); white-space: nowrap; }
.nav-control, .nav-link-button, .gold-link-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 4px;
    white-space: nowrap;
}
.nav-control {
    padding: 0 15px;
    border: 1px solid var(--border);
    background: #11100d;
    cursor: pointer;
}
.nav-link-button { padding: 0 17px; border: 1px solid var(--border); color: var(--text); }
.gold-link-button {
    padding: 0 19px;
    color: #17120a;
    font-weight: 700;
    background: linear-gradient(135deg, #f4d98b 0%, #d5af58 48%, #8f651d 100%);
    box-shadow: var(--gold-shadow);
}
.nav-control:hover, .nav-link-button:hover { border-color: var(--border-strong); color: var(--gold-bright); }
.gold-link-button:hover { filter: brightness(1.08); }
.stage-mark { color: var(--subtle); font-size: 12px; letter-spacing: .14em; }
.menu-lines { width: 18px; display: inline-grid; gap: 4px; }
.menu-lines i { height: 1px; width: 100%; background: var(--gold-bright); }
.mobile-label { display: none; }

.stage-nav { border-bottom: 1px solid var(--border); background: rgba(9, 9, 7, .98); }
.stage-scroll {
    min-height: 49px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(14px, 2.2vw, 34px);
    white-space: nowrap;
}
.stage-link {
    position: relative;
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2px;
    color: var(--muted);
    font-size: 14px;
    border: 0;
    background: transparent;
    cursor: pointer;
}
.stage-link:hover, .stage-link.is-current { color: var(--gold-bright); }
.stage-link.is-current::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: var(--gold-bright);
    box-shadow: 0 0 16px rgba(243, 210, 123, .65);
    pointer-events: none;
}
.more-wrap { position: relative; display: flex; align-items: stretch; }
.more-trigger span { margin-left: 6px; font-size: 11px; }
.more-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    z-index: 120;
    width: 210px;
    padding: 10px;
    border: 1px solid var(--border-strong);
    background: rgba(11, 11, 9, .99);
    box-shadow: var(--shadow);
}
.more-link { display: flex; min-height: 42px; align-items: center; padding: 0 13px; color: var(--muted); border-bottom: 1px solid rgba(213, 175, 88, .09); }
.more-link:last-child { border-bottom: 0; }
.more-link:hover, .more-link.is-current { color: var(--gold-bright); background: var(--hover); }

main { min-height: 60vh; }
.section { position: relative; padding: clamp(70px, 8vw, 118px) 0; }
.section-tight { padding: clamp(48px, 6vw, 78px) 0; }
.section-dark { background: linear-gradient(180deg, rgba(16, 16, 14, .82), rgba(8, 8, 7, .86)); border-block: 1px solid var(--border); }
.section-deep { background: #060606; }
.section::before, .hero-stage::before, .inner-hero::before {
    pointer-events: none;
}
.section-heading { max-width: 820px; margin-bottom: 40px; }
.section-heading.is-center { margin-inline: auto; text-align: center; }
.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: .22em;
    text-transform: uppercase;
}
h1, h2, h3, h4 { margin-top: 0; color: var(--title); line-height: 1.24; }
h1, h2 { font-family: Georgia, "Times New Roman", "Songti SC", serif; font-weight: 500; }
h1 { font-size: clamp(40px, 6vw, 76px); letter-spacing: .04em; }
h2 { font-size: clamp(30px, 4vw, 48px); letter-spacing: .035em; }
h3 { font-size: 20px; }
p { margin-top: 0; }
.section-heading > p:last-child, .lead { color: var(--muted); font-size: clamp(16px, 1.8vw, 19px); }
.lead { max-width: 860px; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--gold-bright); font-weight: 600; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.button-row { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 28px; }
.primary-button, .secondary-button {
    min-height: 48px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 700;
}
.primary-button { color: #17120a; background: linear-gradient(135deg, #f4d98b 0%, #d5af58 48%, #8f651d 100%); box-shadow: var(--gold-shadow); }
.secondary-button { color: var(--text); background: #11100d; border: 1px solid var(--border-strong); }
.primary-button:hover { filter: brightness(1.08); }
.secondary-button:hover { color: var(--gold-bright); background: var(--hover); }

.hero-stage { position: relative; min-height: min(760px, calc(100vh - var(--header-height))); overflow: hidden; background: #070706; }
.hero-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(3,3,3,.86) 0%, rgba(3,3,3,.35) 44%, rgba(3,3,3,.12) 75%), linear-gradient(0deg, rgba(3,3,3,.96), transparent 55%);
}
.hero-stage .local-visual, .hero-stage .visual-placeholder { position: absolute; inset: 0; margin: 0; }
.hero-stage .local-visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #040404; }
.visual-placeholder {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background:
        linear-gradient(115deg, transparent 0 39%, rgba(213,175,88,.08) 39.3% 39.6%, transparent 40% 100%),
        radial-gradient(ellipse at 50% -10%, rgba(243,210,123,.21), transparent 41%),
        linear-gradient(135deg, #050505, #171611 56%, #050505);
    border: 1px solid var(--border);
}
.visual-placeholder::before, .visual-placeholder::after {
    content: "";
    position: absolute;
    pointer-events: none;
}
.visual-placeholder::before { left: 50%; top: 0; width: 2px; height: 100%; background: linear-gradient(var(--gold-bright), transparent); opacity: .35; transform: rotate(16deg); }
.visual-placeholder::after { left: 12%; right: 12%; bottom: 13%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.visual-placeholder span { position: absolute; inset: 0; background: radial-gradient(circle at 22% 22%, rgba(243,210,123,.18) 0 2px, transparent 3px), radial-gradient(circle at 76% 37%, rgba(243,210,123,.13) 0 1px, transparent 2px); background-size: 120px 100px, 150px 130px; opacity: .48; }
.hero-content { position: relative; z-index: 4; min-height: inherit; display: flex; align-items: flex-end; padding-block: clamp(90px, 12vw, 150px) 50px; }
.hero-copy { max-width: 830px; }
.hero-copy h1 { max-width: 780px; margin-bottom: 22px; }
.hero-copy .lead { color: #d8d0bd; }
.hero-kicker { color: var(--gold-bright); font-size: 14px; letter-spacing: .2em; }
.hero-stage-track {
    position: absolute;
    z-index: 5;
    left: max(18px, calc((100vw - var(--container)) / 2));
    top: 50%;
    transform: translateY(-58%);
    display: grid;
    gap: 8px;
}
.hero-stage-track span { width: 56px; padding: 9px 0; text-align: center; color: var(--subtle); font-size: 11px; border-left: 1px solid var(--border); }
.hero-stage-track span:first-child { color: var(--gold-bright); border-color: var(--gold-bright); }
.hero-console {
    position: relative;
    z-index: 6;
    margin-top: -1px;
    background: rgba(7, 7, 6, .94);
    border-block: 1px solid var(--border-strong);
}
.hero-console-grid { display: grid; grid-template-columns: 1.1fr 1.7fr auto; align-items: center; gap: 30px; min-height: 116px; }
.hero-console-grid p { margin: 0; color: var(--muted); }
.hero-console-brand strong { display: block; color: var(--title); font-family: Georgia, "Times New Roman", serif; font-size: 20px; font-weight: 500; }
.hero-console-brand span { color: var(--gold); font-size: 11px; letter-spacing: .2em; }

.info-triptych { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); background: var(--panel); box-shadow: var(--shadow); }
.info-triptych article { padding: clamp(26px, 3vw, 42px); border-right: 1px solid var(--border); }
.info-triptych article:last-child { border-right: 0; }
.info-triptych h3 { color: var(--gold-bright); }
.info-triptych p { color: var(--muted); }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.feature-card, .content-card {
    position: relative;
    min-height: 100%;
    padding: clamp(25px, 3vw, 36px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(23,22,17,.97), rgba(12,12,10,.97));
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 15px 38px rgba(0,0,0,.26);
}
.feature-card::before, .content-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 52px;
    height: 1px;
    background: var(--gold-bright);
    pointer-events: none;
}
.feature-card:hover, .content-card:hover { border-color: var(--border-strong); transform: translateY(-2px); transition: transform .2s ease, border-color .2s ease; }
.card-number { color: var(--gold); font-size: 11px; letter-spacing: .18em; }
.feature-card h3, .content-card h3 { margin-top: 16px; }
.feature-card p, .content-card p { color: var(--muted); }
.card-meta { padding-top: 16px; border-top: 1px solid var(--border); color: var(--text) !important; font-size: 14px; }

.editorial-split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(26px, 5vw, 70px); align-items: center; }
.editorial-split.reverse { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); }
.editorial-split .local-visual, .editorial-split .visual-placeholder { margin: 0; min-height: 500px; }
.editorial-split .local-visual img { width: 100%; height: 100%; max-height: 700px; object-fit: contain; background: #050505; }
.editorial-copy-list { display: grid; gap: 20px; }
.editorial-item { padding: 0 0 18px 22px; border-left: 1px solid var(--border-strong); border-bottom: 1px solid var(--border); }
.editorial-item h3 { margin-bottom: 8px; }
.editorial-item p { color: var(--muted); }

.profile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.profile-card { min-height: 310px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; background: linear-gradient(180deg, rgba(23,22,17,.2), rgba(10,10,8,.98)), radial-gradient(circle at 50% 18%, rgba(213,175,88,.12), transparent 42%); border: 1px solid var(--border); }
.profile-card .profile-id { color: var(--gold); font-size: 12px; letter-spacing: .18em; }
.profile-card h3 { margin: 12px 0 8px; }
.profile-card p { color: var(--muted); margin-bottom: 0; }

.timeline { display: grid; gap: 0; counter-reset: stage; }
.timeline-item { position: relative; display: grid; grid-template-columns: 180px 1fr auto; gap: 32px; padding: 30px 0; border-top: 1px solid var(--border); counter-increment: stage; }
.timeline-item:last-child { border-bottom: 1px solid var(--border); }
.timeline-item::before { content: counter(stage, decimal-leading-zero); color: var(--gold); font-size: 12px; letter-spacing: .2em; }
.timeline-item h3 { margin-bottom: 8px; }
.timeline-item p { color: var(--muted); margin-bottom: 0; }
.timeline-prep { max-width: 250px; color: var(--text) !important; font-size: 14px; }

.criteria-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.criteria-item { padding: clamp(26px, 3vw, 38px); background: var(--panel); }
.criteria-item h3 { color: var(--gold-bright); }
.criteria-item p { color: var(--muted); }

.program-list { border-top: 1px solid var(--border-strong); }
.program-row { display: grid; grid-template-columns: 80px minmax(180px, .7fr) 1.6fr 140px; align-items: center; gap: 24px; min-height: 112px; border-bottom: 1px solid var(--border); }
.program-index { color: var(--gold); font-family: Georgia, serif; font-size: 22px; }
.program-row h3 { margin: 0; }
.program-row p { margin: 0; color: var(--muted); }
.status-chip { justify-self: end; display: inline-flex; min-height: 32px; align-items: center; padding: 0 12px; color: var(--gold-bright); border: 1px solid var(--border-strong); border-radius: 999px; font-size: 12px; }

.magazine-grid { display: grid; grid-template-columns: 1.4fr .6fr; gap: 20px; }
.magazine-feature { grid-row: span 2; }
.magazine-feature .local-visual, .magazine-feature .visual-placeholder { min-height: 520px; margin: 0; }
.magazine-feature .local-visual img { width: 100%; height: 100%; max-height: 650px; object-fit: contain; background: #050505; }
.magazine-story { padding: 30px; background: var(--panel); border: 1px solid var(--border); }
.magazine-story p { color: var(--muted); }

.honor-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.honor-card { min-height: 230px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid var(--border); background: radial-gradient(circle at 80% 0, rgba(213,175,88,.13), transparent 48%), var(--panel); }
.honor-card .honor-mark { color: var(--gold-bright); font-family: Georgia, serif; font-size: 42px; line-height: 1; }
.honor-card p { color: var(--muted); }

.news-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.news-item { padding: clamp(25px, 3vw, 38px); background: #0e0e0c; }
.news-tag { color: var(--gold); font-size: 12px; letter-spacing: .14em; }
.news-item h3 { margin: 12px 0; }
.news-item p { color: var(--muted); }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 28px 0; }
.service-tile { padding: 20px; border: 1px solid var(--border); background: rgba(16,16,14,.8); }
.service-tile strong { display: block; color: var(--title); }
.service-tile span { color: var(--muted); font-size: 14px; }

.gold-frame { position: relative; padding: clamp(32px, 5vw, 64px); border: 1px solid var(--border-strong); background: linear-gradient(130deg, rgba(213,175,88,.08), rgba(16,16,14,.98) 35%, rgba(7,7,6,.98)); box-shadow: var(--gold-shadow); }
.gold-frame::before, .gold-frame::after { content: ""; position: absolute; pointer-events: none; }
.gold-frame::before { inset: 9px; border: 1px solid rgba(213,175,88,.08); }
.gold-frame::after { top: -1px; left: 9%; width: 18%; height: 1px; background: var(--gold-bright); }
.gold-frame p { color: var(--muted); }

.safety-privacy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.safety-panel { padding: clamp(28px, 4vw, 46px); border: 1px solid var(--border); background: var(--panel); }
.safety-panel p { color: var(--muted); }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 25px; }
.tag-list span { padding: 6px 10px; color: var(--text); background: #171611; border: 1px solid var(--border); border-radius: 999px; font-size: 12px; }

.faq-list { display: grid; gap: 10px; }
details { border: 1px solid var(--border); background: var(--panel); }
summary { min-height: 60px; padding: 17px 56px 17px 20px; display: flex; align-items: center; position: relative; color: var(--title); cursor: pointer; list-style: none; font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 20px; color: var(--gold-bright); font-size: 24px; font-weight: 300; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 20px 22px; color: var(--muted); }

.about-band { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: clamp(28px, 5vw, 70px); align-items: center; }
.about-band .local-visual, .about-band .visual-placeholder { min-height: 420px; margin: 0; }
.about-band .local-visual img { width: 100%; height: 100%; max-height: 560px; object-fit: contain; background: #050505; }

.inner-hero { position: relative; padding: clamp(76px, 9vw, 126px) 0 clamp(58px, 7vw, 92px); overflow: hidden; border-bottom: 1px solid var(--border); background: radial-gradient(circle at 78% 20%, rgba(213,175,88,.12), transparent 26rem), linear-gradient(135deg, #060606, #11100d); }
.inner-hero::before { content: ""; position: absolute; right: -8%; top: -48%; width: 48%; aspect-ratio: 1; border: 1px solid rgba(213,175,88,.11); border-radius: 50%; box-shadow: 0 0 0 55px rgba(213,175,88,.025), 0 0 0 110px rgba(213,175,88,.018); }
.inner-hero .container { position: relative; z-index: 2; }
.inner-hero h1 { margin-bottom: 20px; }
.inner-hero .lead { max-width: 900px; color: #c8c0ae; }
.breadcrumbs { display: flex; gap: 8px; align-items: center; margin-bottom: 28px; color: var(--subtle); font-size: 13px; }
.breadcrumbs a:hover { color: var(--gold-bright); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 25px; }
.hero-meta span { padding: 6px 10px; border: 1px solid var(--border); color: var(--muted); font-size: 12px; }

.content-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.content-card { min-height: 260px; }
.content-card .focus-line { color: var(--text); font-size: 14px; }
.content-card .focus-line strong { color: var(--gold-bright); }
.process-panel { padding: clamp(30px, 5vw, 56px); border: 1px solid var(--border); background: linear-gradient(135deg, #11100e, #090908); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 30px; background: var(--border); border: 1px solid var(--border); }
.process-step { min-height: 170px; padding: 24px; background: var(--panel); }
.process-step span { color: var(--gold); font-size: 11px; letter-spacing: .16em; }
.process-step h3 { margin: 13px 0 8px; }
.process-step p { color: var(--muted); font-size: 14px; }
.notice-box { padding: clamp(26px, 4vw, 42px); border-left: 3px solid var(--gold); background: rgba(23,22,17,.75); }
.notice-box h2 { font-size: clamp(25px, 3vw, 34px); }
.notice-box p { color: var(--muted); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.related-link { min-height: 135px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; background: var(--panel); border: 1px solid var(--border); }
.related-link strong { color: var(--title); }
.related-link span { color: var(--muted); font-size: 13px; }
.related-link:hover { border-color: var(--border-strong); }
.end-note { margin: 35px 0 0; padding-top: 25px; border-top: 1px solid var(--border); color: var(--subtle); text-align: center; }

.checklist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 24px 0; }
.check-item { position: relative; padding: 17px 18px 17px 46px; background: rgba(16,16,14,.82); border: 1px solid var(--border); }
.check-item::before { content: "✓"; position: absolute; left: 18px; top: 16px; color: var(--gold-bright); }

.contact-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.contact-step { padding: 24px; border: 1px solid var(--border); background: var(--panel); }
.contact-step span { color: var(--gold); font-size: 12px; }
.contact-step p { color: var(--muted); font-size: 14px; }

.site-footer { position: relative; padding: 70px 0 26px; overflow: hidden; background: #030303; border-top: 1px solid var(--border-strong); }
.footer-glow { position: absolute; left: 50%; top: -240px; width: 680px; height: 360px; transform: translateX(-50%); background: radial-gradient(ellipse, rgba(213,175,88,.14), transparent 65%); pointer-events: none; }
.footer-main { position: relative; display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 38px; }
.footer-logo { display: inline-flex; margin-bottom: 22px; }
.footer-brand .brand-wordmark { align-items: flex-start; }
.footer-brand p { max-width: 340px; color: var(--muted); }
.footer-group { display: grid; align-content: start; gap: 8px; }
.footer-group h2 { margin-bottom: 8px; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--gold-bright); }
.footer-group a { color: var(--muted); font-size: 14px; }
.footer-group a:hover { color: var(--title); }
.footer-notice { margin-top: 45px; padding: 23px 0; border-block: 1px solid var(--border); }
.footer-notice p { margin: 0; color: var(--subtle); font-size: 13px; }
.footer-bottom { padding-top: 22px; display: flex; justify-content: space-between; gap: 20px; color: var(--subtle); font-size: 12px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 18px; }
.footer-bottom a:hover { color: var(--gold-bright); }

.channel-overlay {
    position: fixed;
    inset: 0;
    z-index: 180;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    background: rgba(0,0,0,.72);
    transition: opacity .22s ease, visibility .22s ease;
}
.channel-overlay.is-open { visibility: visible; pointer-events: auto; opacity: 1; }
.channel-panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 190;
    width: min(520px, 90vw);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(102%);
    background: #080807;
    border-left: 1px solid var(--border-strong);
    box-shadow: -24px 0 60px rgba(0,0,0,.54);
    transition: transform .22s ease, visibility .22s ease;
}
.channel-panel.is-open { visibility: visible; pointer-events: auto; transform: translateX(0); }
.channel-head { min-height: 82px; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); }
.channel-brand { display: inline-flex; align-items: center; }
.channel-brand .brand-wordmark { align-items: flex-start; }
.channel-close { width: 44px; height: 44px; border: 1px solid var(--border); background: #11100d; color: var(--gold-bright); font-size: 28px; line-height: 1; cursor: pointer; }
.channel-scroll { height: calc(100% - 82px); overflow-y: auto; overscroll-behavior: contain; padding: 25px 20px 50px; }
.channel-group { margin-bottom: 30px; }
.channel-group h2 { margin-bottom: 12px; font-family: inherit; font-size: 13px; letter-spacing: .18em; color: var(--gold); }
.channel-group a { display: grid; gap: 3px; padding: 15px 12px; border-top: 1px solid var(--border); }
.channel-group a:last-child { border-bottom: 1px solid var(--border); }
.channel-group a:hover { background: var(--hover); }
.channel-group strong { color: var(--title); }
.channel-group span { color: var(--muted); font-size: 13px; line-height: 1.55; }

.mobile-bottom-nav { display: none; }

@media (max-width: 1100px) {
    .brand-nav { grid-template-columns: 1fr auto 1fr; }
    .stage-mark { display: none; }
    .card-grid { grid-template-columns: repeat(2, 1fr); }
    .profile-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: 1.4fr repeat(2, 1fr); }
    .footer-brand { grid-row: span 2; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    :root { --header-height: 139px; }
    .container { width: min(calc(100% - 28px), var(--container)); }
    .status-inner { width: min(calc(100% - 28px), var(--container)); grid-template-columns: 1fr auto; }
    .status-center { display: none; }
    .status-actions a { display: none; }
    .status-actions .mobile-status-schedule { display: inline-flex; }
    .brand-nav { min-height: 62px; grid-template-columns: 1fr auto 1fr; }
    .brand-side { gap: 8px; }
    .brand-center { min-width: 118px; padding: 3px 8px; }
    .brand-wordmark strong { font-size: 20px; }
    .brand-wordmark small { font-size: 7px; letter-spacing: .24em; }
    .brand-logo-image { max-height: 42px; }
    .desktop-label, .desktop-schedule { display: none; }
    .mobile-label { display: inline; }
    .nav-control { padding: 0 11px; }
    .gold-link-button { padding: 0 12px; }
    .stage-scroll { justify-content: flex-start; overflow-x: auto; scrollbar-width: none; gap: 24px; }
    .stage-scroll::-webkit-scrollbar { display: none; }
    .more-wrap { flex: 0 0 auto; }
    .more-menu { position: fixed; left: 14px; right: 14px; top: 141px; width: auto; display: grid; grid-template-columns: repeat(2, 1fr); }
    .hero-stage { min-height: 650px; }
    .hero-stage::before { background: linear-gradient(0deg, rgba(3,3,3,.98), rgba(3,3,3,.2) 72%); }
    .hero-stage-track { display: none; }
    .hero-content { padding-block: 90px 40px; align-items: flex-end; }
    .hero-console-grid { grid-template-columns: 1fr; gap: 13px; padding-block: 24px; }
    .hero-console-grid .button-row { margin-top: 4px; }
    .info-triptych, .editorial-split, .editorial-split.reverse, .safety-privacy-grid, .about-band { grid-template-columns: 1fr; }
    .info-triptych article { border-right: 0; border-bottom: 1px solid var(--border); }
    .info-triptych article:last-child { border-bottom: 0; }
    .editorial-split .local-visual, .editorial-split .visual-placeholder { min-height: 360px; }
    .timeline-item { grid-template-columns: 68px 1fr; gap: 18px; }
    .timeline-prep { grid-column: 2; max-width: none; }
    .program-row { grid-template-columns: 52px 1fr; gap: 12px 18px; padding: 22px 0; }
    .program-row p, .program-row .status-chip { grid-column: 2; }
    .status-chip { justify-self: start; }
    .magazine-grid { grid-template-columns: 1fr; }
    .magazine-feature { grid-row: auto; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-main { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; grid-row: auto; }
    .footer-brand p { max-width: 620px; }
    .content-grid, .criteria-grid { grid-template-columns: 1fr; }
    .contact-flow { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
    .container { width: calc(100% - 28px); }
    .status-brand { max-width: calc(100vw - 90px); overflow: hidden; text-overflow: ellipsis; }
    .status-actions { gap: 0; }
    .menu-lines { width: 16px; }
    .nav-control { min-width: 44px; }
    .nav-control .mobile-label { display: none; }
    .brand-center { min-width: 102px; }
    .brand-wordmark strong { font-size: 18px; letter-spacing: .12em; }
    .brand-wordmark small { letter-spacing: .17em; }
    .gold-link-button { font-size: 13px; padding: 0 10px; }
    .stage-scroll { padding-right: 14px; }
    .section { padding: 62px 0; }
    h1 { font-size: clamp(38px, 12vw, 58px); }
    h2 { font-size: clamp(29px, 9vw, 40px); }
    .hero-stage { min-height: 600px; }
    .hero-copy h1 { font-size: clamp(42px, 13vw, 62px); }
    .hero-stage .local-visual img { object-fit: contain; object-position: center top; }
    .button-row { display: grid; grid-template-columns: 1fr; }
    .primary-button, .secondary-button { width: 100%; }
    .card-grid, .profile-grid, .honor-grid, .news-list, .service-grid, .checklist, .related-grid, .contact-flow { grid-template-columns: 1fr; }
    .profile-card { min-height: 250px; }
    .timeline-item { grid-template-columns: 48px 1fr; }
    .magazine-feature .local-visual, .magazine-feature .visual-placeholder, .about-band .local-visual, .about-band .visual-placeholder { min-height: 320px; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { flex-direction: column; }
    .channel-panel { width: min(90vw, 520px); }
    .mobile-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 150;
        min-height: calc(62px + env(safe-area-inset-bottom));
        padding-bottom: env(safe-area-inset-bottom);
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        background: rgba(5,5,5,.98);
        border-top: 1px solid var(--border-strong);
        box-shadow: 0 -12px 28px rgba(0,0,0,.48);
    }
    .mobile-nav-link { min-height: 62px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: var(--subtle); }
    .mobile-nav-link span { font-size: 17px; line-height: 1; }
    .mobile-nav-link strong { font-size: 11px; font-weight: 600; }
    .mobile-nav-link.is-current { color: var(--gold-bright); background: linear-gradient(180deg, rgba(213,175,88,.09), transparent); }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
