/* ============================================
   NTD International Chinese Vocal Competition
   chinesevocalcompetition.com
   Design v2: Carnegie Hall × Opera Stage × Eastern Heritage
   Palette: Midnight Navy · Champagne Gold · Ivory White
            Opera Burgundy · Royal Purple · Heritage Green
   ============================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
    /* === Primary palette === */
    --navy:           #101827;
    --navy-2:         #141A2E;
    --navy-3:         #1B233A;
    --navy-soft:      #232C44;

    --gold:           #C9A45C;
    --gold-light:     #D7B46A;
    --gold-bright:    #E6CB8A;
    --gold-deep:      #8B6F2E;
    --gold-foil:      linear-gradient(135deg, #E6CB8A 0%, #D7B46A 30%, #C9A45C 55%, #8B6F2E 100%);

    --ivory:          #FBF7EF;
    --ivory-warm:     #F6F0E5;
    --ivory-soft:     #FDFCF7;
    --paper:          #F2EBDB;

    /* === Accent palette === */
    --burgundy:       #7A1F2B;
    --burgundy-2:     #8B2635;
    --burgundy-deep:  #5A1620;

    --purple:         #3B2A58;
    --purple-2:       #4E3474;
    --purple-light:   #6E4FA0;

    --heritage:       #1F4A43;
    --heritage-2:     #2A6358;

    /* === Neutral === */
    --ink:            #101827;
    --charcoal:       #3A3F4E;
    --slate:          #5C6378;
    --line:           rgba(16, 24, 39, 0.10);
    --line-gold:      rgba(201, 164, 92, 0.30);

    /* === Type === */
    --serif-tc:   'Noto Serif TC', 'Songti TC', 'PMingLiU', 'STSong', serif;
    --serif-en:   'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --display-en: 'Cormorant Garamond', Georgia, serif;
    --sans-tc:    'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
    --sans-en:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* === Spacing === */
    --s1: 0.5rem;
    --s2: 1rem;
    --s3: 1.5rem;
    --s4: 2rem;
    --s5: 3rem;
    --s6: 4rem;
    --s7: 6rem;
    --s8: 8rem;
    --s9: 9rem;

    /* === Containers === */
    --container:        1180px;
    --container-wide:   1320px;
    --container-narrow: 860px;

    /* === Effects === */
    --shadow-sm:   0 2px 8px rgba(16, 24, 39, 0.06);
    --shadow-md:   0 12px 32px rgba(16, 24, 39, 0.10);
    --shadow-lg:   0 24px 60px rgba(16, 24, 39, 0.18);
    --shadow-gold: 0 14px 38px rgba(201, 164, 92, 0.28);
    --shadow-burg: 0 14px 38px rgba(122, 31, 43, 0.28);

    --ease:     cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

    --radius:    3px;
    --radius-lg: 6px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans-tc);
    color: var(--ink);
    background: var(--ivory);
    line-height: 1.75;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--gold); color: var(--navy); }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
    font-family: var(--serif-tc);
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: 0.015em;
    color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); font-weight: 700; letter-spacing: 0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.25rem); }
p  { font-size: 1.04rem; line-height: 1.85; color: var(--charcoal); }

/* === Section Header pattern: eyebrow + title + diamond + subtitle === */
.eyebrow {
    font-family: var(--sans-en);
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.36em;
    color: var(--gold-deep);
    margin-bottom: var(--s2);
    display: inline-flex;
    align-items: center;
    gap: 14px;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    width: 28px; height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.section-head { text-align: center; margin-bottom: var(--s6); }
.section-head h2 { margin-top: 0.4rem; }
.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: var(--s3) auto 0;
    color: var(--charcoal);
    font-size: 1.06rem;
    line-height: 1.85;
}

.gold-text {
    background: var(--gold-foil);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 7s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }

/* Diamond ornament */
.ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 16px; margin: var(--s2) auto var(--s4);
}
.ornament::before, .ornament::after {
    content: '';
    flex: 0 0 70px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.ornament-diamond {
    width: 9px; height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
    box-shadow: 0 0 14px rgba(201, 164, 92, 0.55);
}

/* Big background heading "watermark" */
.watermark-en {
    position: absolute;
    font-family: var(--display-en);
    font-style: italic;
    font-weight: 400;
    color: rgba(201, 164, 92, 0.05);
    font-size: clamp(5rem, 14vw, 13rem);
    line-height: 1;
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

/* ---------- LAYOUT ---------- */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 var(--s3); }
.container-wide   { max-width: var(--container-wide);   margin: 0 auto; padding: 0 var(--s3); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--s3); }

section { padding: var(--s8) 0; position: relative; }
@media (max-width: 1024px) { section { padding: var(--s7) 0; } }
@media (max-width: 640px)  { section { padding: var(--s6) 0; } }

/* === Backgrounds === */
.bg-ivory       { background: var(--ivory); }
.bg-ivory-warm  { background: var(--ivory-warm); }
.bg-paper       { background: var(--paper); }
.bg-cream       { background: var(--ivory-warm); } /* legacy alias */
.bg-cream-warm  { background: var(--ivory-warm); }
.bg-parchment   {
    background: var(--ivory-warm);
    background-image:
        radial-gradient(circle at 18% 12%, rgba(201, 164, 92, 0.08) 0%, transparent 55%),
        radial-gradient(circle at 82% 86%, rgba(122, 31, 43, 0.05) 0%, transparent 55%);
}
.bg-ink, .bg-navy {
    background: var(--navy);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}
.bg-ink::before, .bg-navy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 164, 92, 0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(78, 52, 116, 0.18) 0%, transparent 55%);
    pointer-events: none;
}
.bg-ink > *, .bg-navy > * { position: relative; z-index: 1; }
.bg-ink p, .bg-navy p { color: rgba(251, 247, 239, 0.78); }
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4,
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--ivory); }

.bg-burgundy {
    background:
        linear-gradient(135deg, var(--burgundy-deep) 0%, var(--burgundy) 100%);
    color: var(--ivory);
    position: relative;
}
.bg-burgundy h2, .bg-burgundy h3 { color: var(--gold-bright); }

.bg-stage {
    background:
        radial-gradient(ellipse at 50% -20%, rgba(201, 164, 92, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 60%, var(--purple) 100%);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
}
.bg-stage h2 { color: var(--ivory); }

/* Subtle staff-line texture */
.bg-music-staff {
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}
.bg-music-staff::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg,
            transparent 0, transparent 39px,
            rgba(201, 164, 92, 0.05) 39px, rgba(201, 164, 92, 0.05) 40px,
            transparent 40px, transparent 79px,
            rgba(201, 164, 92, 0.05) 79px, rgba(201, 164, 92, 0.05) 80px,
            transparent 80px, transparent 119px,
            rgba(201, 164, 92, 0.05) 119px, rgba(201, 164, 92, 0.05) 120px,
            transparent 120px, transparent 159px,
            rgba(201, 164, 92, 0.05) 159px, rgba(201, 164, 92, 0.05) 160px,
            transparent 160px, transparent 240px);
    pointer-events: none;
}
.bg-music-staff > * { position: relative; z-index: 1; }

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1.1rem 0;
    transition: background 0.4s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s var(--ease);
    background: linear-gradient(180deg, rgba(16, 24, 39, 0.55) 0%, rgba(16, 24, 39, 0) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.nav.scrolled {
    background: rgba(16, 24, 39, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.7rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(201, 164, 92, 0.12);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--s3);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 18px;
    color: var(--ivory);
    position: relative;
    z-index: 2;
}
.nav-brand img {
    height: 92px;
    width: auto;
    margin: 8px 0 -42px;
    filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.55));
    transition: height 0.4s var(--ease), margin 0.4s var(--ease);
}
.nav.scrolled .nav-brand img {
    height: 52px;
    margin: 0;
}
.nav-brand .brand-text {
    line-height: 1.15;
    font-family: var(--serif-tc);
}
.nav-brand .brand-zh {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--gold-bright);
    letter-spacing: 0.06em;
    display: block;
}
.nav-brand .brand-en {
    font-size: 0.66rem;
    font-family: var(--sans-en);
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(251, 247, 239, 0.62);
    margin-top: 3px;
    display: block;
}
.nav-menu {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}
.nav-menu a {
    color: var(--ivory);
    font-size: 0.92rem;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.04em;
}
.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 50%; right: 50%; bottom: 2px;
    height: 2px;
    background: var(--gold);
    transition: left 0.35s var(--ease), right 0.35s var(--ease);
}
.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta).active::after { left: 0; right: 0; }
.nav-menu a:not(.nav-cta).active { color: var(--gold-bright); }
.nav-menu a:not(.nav-cta):hover { color: var(--gold-bright); }

.nav-cta {
    background: var(--gold-foil);
    background-size: 200% auto;
    color: var(--navy) !important;
    padding: 11px 22px !important;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background-position 0.5s var(--ease), box-shadow 0.3s var(--ease) !important;
    letter-spacing: 0.08em;
}
.nav-cta:hover {
    background-position: right center;
    color: var(--navy) !important;
    box-shadow: 0 8px 24px rgba(201, 164, 92, 0.4);
}

.nav-toggle {
    display: none;
    width: 40px; height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}
.nav-toggle span {
    display: block;
    width: 26px; height: 2px;
    background: var(--ivory);
    transition: all 0.3s var(--ease);
}

@media (max-width: 1024px) {
    .nav-brand .brand-zh { font-size: 0.92rem; }
    .nav-brand .brand-en { display: none; }
    .nav-brand img { height: 68px; margin: 6px 0 -28px; }
    .nav.scrolled .nav-brand img { height: 44px; margin: 0; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: min(86vw, 360px);
        height: 100vh;
        background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
        flex-direction: column;
        justify-content: center;
        gap: 1.6rem;
        padding: var(--s5);
        transition: right 0.4s var(--ease);
        box-shadow: -10px 0 40px rgba(0,0,0,0.4);
    }
    .nav-menu.open { right: 0; }
    .nav-menu a { font-size: 1.1rem; }
    .nav-toggle { display: flex; }
    .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}

/* ---------- HERO (universal) ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
    color: var(--ivory);
    padding: 9rem 0 6rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--navy) url('../images/hero-poster.jpg') center/cover no-repeat;
    transform: scale(1.06);
    will-change: transform;
    overflow: hidden;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}
/* 70% dark overlay (per user request) */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(16, 24, 39, 0.70);
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 50% 0%, rgba(201, 164, 92, 0.10) 0%, transparent 50%),
        linear-gradient(180deg, transparent 0%, transparent 70%, rgba(16, 24, 39, 0.55) 100%);
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 3;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--s4);
    width: 100%;
    text-align: center;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 9px 24px;
    background: rgba(201, 164, 92, 0.08);
    border: 1px solid rgba(201, 164, 92, 0.45);
    border-radius: 100px;
    font-family: var(--sans-en);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--gold-bright);
    margin-bottom: var(--s4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.hero-tag::before, .hero-tag::after {
    content: '◆';
    font-size: 0.5rem;
    color: var(--gold);
    opacity: 0.7;
}
.hero h1 {
    color: var(--ivory);
    font-size: clamp(2.4rem, 5.4vw, 4.6rem);
    line-height: 1.05;
    margin: 0 auto var(--s3);
    max-width: 1000px;
    font-weight: 700;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero h1 .accent {
    background: var(--gold-foil);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 8s linear infinite;
    display: block;
}
.hero-sub {
    font-family: var(--serif-en);
    font-size: clamp(1.05rem, 1.7vw, 1.4rem);
    font-style: italic;
    color: rgba(251, 247, 239, 0.88);
    margin: 0 auto var(--s5);
    max-width: 720px;
    letter-spacing: 0.04em;
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}
.hero-sub-zh {
    font-family: var(--serif-tc);
    font-style: normal;
    font-size: clamp(1.05rem, 1.5vw, 1.3rem);
    color: rgba(251, 247, 239, 0.92);
    letter-spacing: 0.18em;
    margin: 0 auto var(--s5);
    max-width: 720px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

/* Hero key data cards */
.hero-meta {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 880px;
    margin: var(--s5) auto 0;
    padding: 0;
    background: rgba(201, 164, 92, 0.22);
    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: var(--radius);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.hero-meta-item {
    background: rgba(16, 24, 39, 0.55);
    padding: 1.4rem 1rem;
    text-align: center;
    transition: background 0.3s var(--ease);
}
.hero-meta-item:hover { background: rgba(16, 24, 39, 0.7); }
.hero-meta-item .label {
    font-family: var(--sans-en);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--gold-light);
    margin-bottom: 8px;
    display: block;
}
.hero-meta-item .value {
    font-family: var(--serif-tc);
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    color: var(--ivory);
    font-weight: 600;
    line-height: 1.3;
    display: block;
}
.hero-meta-item .value-en {
    font-family: var(--display-en);
    font-style: italic;
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    color: var(--gold-bright);
    font-weight: 600;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--s5);
}

.hero-scroll {
    position: absolute;
    left: 50%; bottom: 30px;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--gold-light);
    font-family: var(--sans-en);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.34em;
    text-align: center;
    opacity: 0.85;
}
.hero-scroll::after {
    content: '';
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(180deg, var(--gold-light), transparent);
    margin: 12px auto 0;
    animation: scrollLine 2.4s infinite;
}
@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === Page Hero (smaller, for sub-pages) === */
.hero.page-hero {
    min-height: 56vh;
    padding: 9rem 0 5rem;
}
.hero.page-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
.hero.page-hero .hero-bg { filter: blur(3px) brightness(0.42) saturate(0.8); }

@media (max-width: 768px) {
    .hero { padding: 8rem 0 4rem; min-height: 92vh; }
    .hero-meta { grid-template-columns: repeat(2, 1fr); }
    .hero-scroll { display: none; }
    .hero-tag { font-size: 0.64rem; padding: 7px 16px; letter-spacing: 0.22em; }
    .hero h1 { letter-spacing: 0.01em; }
}

/* ---------- BUTTONS (3 systems) ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 34px;
    font-family: var(--sans-tc);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
    white-space: nowrap;
}
/* Primary — Gold (champagne) */
.btn-primary {
    background: var(--gold-foil);
    background-size: 200% auto;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201, 164, 92, 0.25);
}
.btn-primary:hover {
    background-position: right center;
    box-shadow: 0 14px 40px rgba(201, 164, 92, 0.45);
    transform: translateY(-2px);
}
/* Secondary — Outline gold */
.btn-outline {
    background: transparent;
    color: var(--gold-bright);
    border-color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: translateY(-2px);
}
/* Emphasis — Burgundy (registration / deadline) */
.btn-emphasis {
    background: linear-gradient(135deg, var(--burgundy-2) 0%, var(--burgundy) 100%);
    color: var(--ivory);
    box-shadow: var(--shadow-burg);
}
.btn-emphasis:hover {
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(122, 31, 43, 0.4);
}
/* Dark (legacy / inverse on light bg) */
.btn-dark {
    background: var(--navy);
    color: var(--ivory);
}
.btn-dark:hover {
    background: var(--burgundy);
    transform: translateY(-2px);
}

.btn-large { padding: 18px 44px; font-size: 1.05rem; }

.btn-arrow::after {
    content: '→';
    transition: transform 0.3s var(--ease);
    margin-left: 4px;
}
.btn-arrow:hover::after { transform: translateX(6px); }

/* ---------- COUNTDOWN ---------- */
.countdown {
    display: inline-flex;
    gap: var(--s2);
    margin: var(--s3) auto 0;
    flex-wrap: wrap;
    justify-content: center;
}
.countdown-unit {
    flex: 0 0 auto;
    min-width: 84px;
    text-align: center;
    padding: 14px 18px;
    background: rgba(201, 164, 92, 0.06);
    border: 1px solid rgba(201, 164, 92, 0.32);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.countdown-unit .num {
    display: block;
    font-family: var(--display-en);
    font-size: clamp(1.8rem, 3.6vw, 2.4rem);
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
    letter-spacing: 0.02em;
}
.countdown-unit .lbl {
    font-family: var(--sans-en);
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(251, 247, 239, 0.72);
    margin-top: 8px;
    display: block;
}

/* ---------- INFO STRIP (after hero) ---------- */
.info-strip {
    background: var(--navy);
    color: var(--ivory);
    padding: var(--s5) 0;
    border-top: 1px solid rgba(201, 164, 92, 0.18);
    border-bottom: 1px solid rgba(201, 164, 92, 0.18);
    position: relative;
}
.info-strip::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(201, 164, 92, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
.info-strip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--s4);
    align-items: center;
    position: relative;
    z-index: 1;
}
.info-block {
    text-align: center;
    padding: var(--s2);
    position: relative;
}
.info-block:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 18%; bottom: 18%;
    right: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 164, 92, 0.3), transparent);
}
.info-block .icon {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 10px;
    line-height: 1;
}
.info-block .label {
    font-family: var(--sans-en);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.26em;
    color: var(--gold-light);
    margin-bottom: 8px;
}
.info-block .value {
    font-family: var(--serif-tc);
    font-size: 1.18rem;
    color: var(--ivory);
    line-height: 1.4;
    font-weight: 600;
}

@media (max-width: 768px) {
    .info-block:nth-child(2n)::after { display: none; }
}

/* ---------- CARDS (general) ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid.cols-5 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
@media (max-width: 768px) {
    .card-grid.cols-2, .card-grid.cols-3 { grid-template-columns: 1fr; }
}

.card {
    background: var(--ivory-soft);
    padding: 2.4rem 2rem;
    position: relative;
    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: var(--radius);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 38px; height: 38px;
    border-top: 2px solid var(--gold);
    border-left: 2px solid var(--gold);
    transition: all 0.4s var(--ease);
    opacity: 0.55;
}
.card::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 38px; height: 38px;
    border-bottom: 2px solid var(--gold);
    border-right: 2px solid var(--gold);
    transition: all 0.4s var(--ease);
    opacity: 0.55;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 164, 92, 0.5);
}
.card:hover::before, .card:hover::after {
    width: 56px; height: 56px;
    opacity: 1;
}
.card .number {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 2.6rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--s2);
    opacity: 0.7;
    font-weight: 600;
}
.card h3 {
    margin-bottom: var(--s2);
    color: var(--ink);
}
.card p { color: var(--charcoal); }

/* Variant — on dark backgrounds */
.bg-ink .card, .bg-navy .card, .bg-stage .card {
    background: rgba(251, 247, 239, 0.04);
    border-color: rgba(201, 164, 92, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.bg-ink .card:hover, .bg-navy .card:hover, .bg-stage .card:hover {
    background: rgba(251, 247, 239, 0.07);
    border-color: var(--gold);
}
.bg-ink .card h3, .bg-navy .card h3, .bg-stage .card h3 { color: var(--gold-bright); }
.bg-ink .card p, .bg-navy .card p, .bg-stage .card p { color: rgba(251, 247, 239, 0.78); }
.bg-ink .card .number, .bg-navy .card .number, .bg-stage .card .number {
    color: var(--gold-bright); opacity: 0.55;
}

/* Editorial 10-card mosaic (advantages) */
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.6rem;
    margin-top: var(--s5);
}
/* Symmetric 3×2 variant (homepage 6-card preview) */
.advantage-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
    .advantage-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .advantage-grid.cols-3 { grid-template-columns: 1fr; }
}
.advantage-card {
    background: var(--ivory-soft);
    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: all 0.5s var(--ease);
    overflow: hidden;
}
.advantage-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-foil);
    background-size: 200% auto;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.advantage-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 164, 92, 0.5);
}
.advantage-card:hover::before { transform: scaleX(1); }
.advantage-card .num {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
    font-weight: 600;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.advantage-card .num::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0.5;
}
.advantage-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--ink);
}
.advantage-card p {
    font-size: 0.95rem;
    line-height: 1.78;
    color: var(--charcoal);
}
.advantage-card.tone-paper { background: var(--paper); }
.advantage-card.tone-warm  { background: var(--ivory-warm); }
.advantage-card.tone-rose  {
    background: linear-gradient(135deg, var(--ivory-warm) 0%, #F0E5DD 100%);
}

/* ---------- AWARDS PODIUM ---------- */
.awards-podium {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 1.5rem;
    margin-top: var(--s5);
    align-items: end;
}
@media (max-width: 900px) { .awards-podium { grid-template-columns: 1fr; } }

.award {
    position: relative;
    padding: 3.2rem 2rem;
    text-align: center;
    overflow: hidden;
    border-radius: var(--radius);
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.award:hover { transform: translateY(-6px); }
.award-gold {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 235, 180, 0.5) 0%, transparent 60%),
        linear-gradient(135deg, #F4D78A 0%, #D7B46A 40%, #C9A45C 70%, #8B6F2E 100%);
    color: var(--navy);
    min-height: 460px;
    box-shadow:
        0 20px 60px rgba(201, 164, 92, 0.35),
        inset 0 0 80px rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
}
.award-gold:hover { transform: scale(1.05) translateY(-6px); }
.award-silver {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
        linear-gradient(135deg, #EDEDED 0%, #C5C5C5 50%, #888888 100%);
    color: var(--navy);
    min-height: 400px;
}
.award-bronze {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 220, 180, 0.4) 0%, transparent 60%),
        linear-gradient(135deg, #D8AA80 0%, #B0794D 50%, #7A4F2E 100%);
    color: var(--ivory);
    min-height: 400px;
}
.award::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    pointer-events: none;
}
.award::after {
    content: '◆';
    position: absolute;
    top: 28px; left: 50%;
    transform: translateX(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
}
.award .medal {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin-bottom: var(--s2);
    opacity: 0.85;
    font-weight: 600;
}
.award .tier {
    font-family: var(--serif-tc);
    font-size: 2.2rem;
    margin-bottom: var(--s3);
    font-weight: 700;
    letter-spacing: 0.4em;
    padding-left: 0.4em;
}
.award-gold .tier { font-size: 2.6rem; }
.award .amount {
    font-family: var(--display-en);
    font-size: clamp(2.4rem, 4.6vw, 3.4rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.4rem;
}
.award-gold .amount { font-size: clamp(2.8rem, 5.2vw, 4rem); }
.award .amount-zh {
    font-family: var(--serif-tc);
    font-size: 1.05rem;
    opacity: 0.85;
}
.award .count {
    margin-top: var(--s3);
    padding-top: var(--s3);
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 0.92rem;
    opacity: 0.88;
}

/* Legacy 3-equal layout (used on awards-jury page) */
.awards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s3);
    margin-top: var(--s5);
}
@media (max-width: 900px) { .awards { grid-template-columns: 1fr; } }

/* ---------- JURY ---------- */
.jury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.6rem;
    margin-top: var(--s5);
}
/* 5-in-a-row variant (homepage jury preview) */
.jury-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
}
.jury-grid.cols-5 .jury-name { font-size: 1.25rem; }
.jury-grid.cols-5 .jury-voice { font-size: 0.82rem; }
.jury-grid.cols-5 .jury-info { padding: 1.2rem 1rem; }
@media (max-width: 1024px) {
    .jury-grid.cols-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .jury-grid.cols-5 { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
    .jury-grid.cols-5 .jury-info { padding: 0.9rem 0.6rem; }
    .jury-grid.cols-5 .jury-name { font-size: 1.05rem; letter-spacing: 0.12em; }
    .jury-grid.cols-5 .jury-voice { font-size: 0.72rem; }
}
.jury-card {
    background: var(--ivory-soft);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.5s var(--ease);
    border-radius: var(--radius);
    border: 1px solid rgba(201, 164, 92, 0.18);
}
.jury-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-foil);
    background-size: 200% auto;
    animation: shimmer 6s linear infinite;
}
.jury-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: rgba(201, 164, 92, 0.45);
}
.jury-photo {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    background: var(--ivory-warm);
}
.jury-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.jury-card:hover .jury-photo img { transform: scale(1.06); }
.jury-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(16, 24, 39, 0.45) 100%);
}
.jury-info {
    padding: 1.6rem 1.4rem;
    text-align: center;
}
.jury-name {
    font-family: var(--serif-tc);
    font-size: 1.45rem;
    color: var(--ink);
    margin-bottom: 6px;
    font-weight: 700;
    letter-spacing: 0.18em;
    padding-left: 0.18em;
}
.jury-voice {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    color: var(--gold-deep);
    margin-bottom: 0.6rem;
}
.jury-bio {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.78;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s var(--ease), padding 0.6s var(--ease);
    padding-top: 0;
    border-top: 1px solid transparent;
}
.jury-card.expanded .jury-bio {
    max-height: 800px;
    padding-top: 1rem;
    border-top-color: rgba(201, 164, 92, 0.3);
}
.jury-toggle {
    margin-top: var(--s2);
    color: var(--gold-deep);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}
.jury-toggle::after {
    content: '⌄';
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 0.3s var(--ease);
}
.jury-card.expanded .jury-toggle::after { transform: rotate(180deg); }

/* ---------- EVALUATION (6 dims, glass cards on dark bg) ---------- */
.eval-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-top: var(--s5);
}
@media (max-width: 900px) {
    .eval-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .eval-grid { grid-template-columns: 1fr; }
}
.eval-card {
    background: rgba(251, 247, 239, 0.04);
    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: var(--radius);
    padding: 2rem 1.6rem;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.eval-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.eval-card:hover {
    background: rgba(251, 247, 239, 0.07);
    border-color: var(--gold);
    transform: translateY(-4px);
}
.eval-card:hover::before { transform: scaleX(1); }
.eval-card .icon {
    width: 56px; height: 56px;
    margin: 0 auto var(--s2);
    border-radius: 50%;
    border: 1px solid rgba(201, 164, 92, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    font-size: 1.4rem;
    transition: all 0.4s var(--ease);
}
.eval-card:hover .icon {
    border-color: var(--gold);
    box-shadow: 0 0 0 6px rgba(201, 164, 92, 0.08);
    background: rgba(201, 164, 92, 0.1);
}
.eval-card h3 {
    color: var(--gold-bright);
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    letter-spacing: 0.1em;
}
.eval-card .en {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 0.92rem;
    color: rgba(201, 164, 92, 0.7);
    margin-bottom: var(--s2);
    display: block;
    letter-spacing: 0.06em;
}
.eval-card p {
    color: rgba(251, 247, 239, 0.78);
    font-size: 0.92rem;
    line-height: 1.7;
}

/* ---------- FAQ ---------- */
.faq-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--s5);
    margin-top: var(--s5);
}
@media (max-width: 900px) { .faq-layout { grid-template-columns: 1fr; gap: var(--s3); } }

.faq-side {
    position: sticky;
    top: 110px;
    align-self: start;
    border-left: 1px solid rgba(201, 164, 92, 0.25);
    padding-left: var(--s3);
}
@media (max-width: 900px) {
    .faq-side {
        position: static;
        border-left: none;
        border-bottom: 1px solid rgba(201, 164, 92, 0.25);
        padding-left: 0;
        padding-bottom: var(--s3);
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
    }
}
.faq-side a {
    display: block;
    padding: 10px 0;
    font-family: var(--serif-tc);
    font-size: 0.95rem;
    color: var(--charcoal);
    border-left: 2px solid transparent;
    margin-left: -1.5rem;
    padding-left: 1.5rem;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}
.faq-side a:hover, .faq-side a.active {
    color: var(--gold-deep);
    border-left-color: var(--gold);
    font-weight: 600;
}
@media (max-width: 900px) {
    .faq-side a {
        margin-left: 0;
        padding: 8px 16px;
        border-left: none;
        border-bottom: 2px solid transparent;
        font-size: 0.85rem;
    }
    .faq-side a:hover, .faq-side a.active {
        border-left: none;
        border-bottom-color: var(--gold);
    }
}

.faq-list { max-width: none; margin: 0; }
.faq-category { margin-bottom: var(--s5); scroll-margin-top: 110px; }
.faq-category-title {
    font-family: var(--serif-tc);
    font-size: 1.4rem;
    color: var(--ink);
    padding-bottom: var(--s2);
    border-bottom: 1px solid rgba(201, 164, 92, 0.3);
    margin-bottom: var(--s3);
    display: flex;
    align-items: center;
    gap: var(--s2);
}
.faq-category-title .num {
    font-family: var(--display-en);
    font-style: italic;
    color: var(--gold);
    font-size: 1.8rem;
    font-weight: 600;
}
.faq-item {
    background: var(--ivory-soft);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: var(--s2);
    overflow: hidden;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-item.open { background: linear-gradient(180deg, var(--ivory-warm) 0%, var(--ivory-soft) 100%); }
.faq-q {
    padding: 1.3rem 1.6rem;
    font-family: var(--serif-tc);
    font-size: 1.06rem;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--s2);
    width: 100%;
    text-align: left;
    transition: background 0.3s var(--ease);
}
.faq-q:hover { background: rgba(201, 164, 92, 0.05); }
.faq-q::after {
    content: '+';
    font-family: var(--display-en);
    font-size: 1.6rem;
    color: var(--gold-deep);
    transition: transform 0.4s var(--ease);
    line-height: 1;
    flex-shrink: 0;
    width: 26px;
    text-align: center;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
    padding: 0 1.6rem;
    color: var(--charcoal);
    line-height: 1.85;
}
.faq-item.open .faq-a { max-height: 800px; padding: 0 1.6rem 1.4rem; }

/* ---------- FORMS ---------- */
.form {
    max-width: 760px;
    margin: 0 auto;
    background: var(--ivory-soft);
    padding: 3rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(201, 164, 92, 0.15);
}
.form::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gold-foil);
    background-size: 200% auto;
    animation: shimmer 6s linear infinite;
    border-radius: var(--radius) var(--radius) 0 0;
}
.form-section {
    border-top: 1px solid rgba(201, 164, 92, 0.18);
    padding-top: 1.6rem;
    margin-top: 2rem;
}
.form-section:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.form-section-head {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}
.form-section-head .num {
    font-family: var(--display-en);
    font-style: italic;
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 600;
}
.form-section-head h3 {
    font-size: 1.25rem;
    color: var(--ink);
    letter-spacing: 0.04em;
}
.form-section-head .desc {
    font-size: 0.85rem;
    color: var(--slate);
    margin-left: auto;
    font-weight: 400;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: 1rem; }
.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}
.form-field label .req { color: var(--burgundy); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--sans-tc);
    font-size: 1rem;
    border: 1px solid rgba(16, 24, 39, 0.14);
    background: var(--ivory);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
    color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 164, 92, 0.18);
    background: var(--ivory-soft);
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field .hint {
    font-size: 0.82rem;
    color: var(--slate);
    margin-top: 6px;
    line-height: 1.6;
}
.form button[type=submit] {
    width: 100%;
    margin-top: 1.4rem;
}

@media (max-width: 600px) {
    .form { padding: 1.6rem; }
}

/* ---------- CTA BAND ---------- */
.cta-band {
    padding: var(--s7) 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(201, 164, 92, 0.18) 0%, transparent 50%),
        linear-gradient(135deg,
            var(--navy) 0%,
            var(--purple) 50%,
            var(--burgundy-deep) 100%);
    color: var(--ivory);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(201, 164, 92, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(201, 164, 92, 0.08) 0%, transparent 40%);
    pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 {
    color: var(--ivory);
    margin-bottom: var(--s3);
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
}
.cta-band h2 .accent {
    background: var(--gold-foil);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer 6s linear infinite;
}
.cta-band p {
    color: rgba(251, 247, 239, 0.85);
    max-width: 640px;
    margin: 0 auto var(--s4);
    font-size: 1.08rem;
}
.cta-band .eyebrow { color: var(--gold-light); }
.cta-band .eyebrow::before, .cta-band .eyebrow::after { background: var(--gold-light); }

/* ---------- STAT BLOCKS ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--s3);
    margin: var(--s5) 0 0;
}
.stat {
    text-align: center;
    padding: var(--s4) var(--s2);
    border-left: 1px solid rgba(201, 164, 92, 0.18);
}
.stat:first-child { border-left: 0; }
@media (max-width: 768px) {
    .stat { border-left: 0; border-top: 1px solid rgba(201, 164, 92, 0.18); padding: var(--s3) var(--s2); }
    .stat:first-child { border-top: 0; }
}
.stat .figure {
    font-family: var(--display-en);
    font-size: clamp(2.4rem, 4.8vw, 3.4rem);
    font-weight: 700;
    background: var(--gold-foil);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: var(--s2);
    animation: shimmer 6s linear infinite;
}
.stat .desc {
    font-size: 0.9rem;
    color: rgba(251, 247, 239, 0.72);
    line-height: 1.5;
    font-family: var(--sans-en);
    letter-spacing: 0.06em;
}
.stat .desc-zh {
    font-family: var(--sans-tc);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* ---------- TIMELINE ---------- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: var(--s5) auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 30px; top: 8px; bottom: 8px;
    width: 1px;
    background: linear-gradient(180deg, var(--gold), rgba(201, 164, 92, 0.2));
}
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2.4rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: 22px; top: 8px;
    width: 17px; height: 17px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--ivory-soft), 0 0 0 5px var(--gold);
}
.bg-ink .timeline-item::before, .bg-navy .timeline-item::before {
    box-shadow: 0 0 0 4px var(--navy), 0 0 0 5px var(--gold);
}
.timeline-stage {
    font-family: var(--display-en);
    font-style: italic;
    color: var(--gold-deep);
    font-size: 0.92rem;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
    font-weight: 600;
}
.bg-ink .timeline-stage, .bg-navy .timeline-stage { color: var(--gold-light); }
.timeline-title {
    font-family: var(--serif-tc);
    font-size: 1.36rem;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 600;
}
.bg-ink .timeline-title, .bg-navy .timeline-title { color: var(--gold-bright); }

/* ---------- SPLIT (2-col) ---------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s6);
    align-items: center;
}
.split.reverse > :first-child { order: 2; }
@media (max-width: 768px) {
    .split { grid-template-columns: 1fr; gap: var(--s4); }
    .split.reverse > :first-child { order: 0; }
}
.split-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.split-image::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid var(--gold);
    pointer-events: none;
    z-index: 2;
}

/* Visual block — used for mission section right side */
.visual-frame {
    position: relative;
    aspect-ratio: 4/5;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(201, 164, 92, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
}
.visual-frame::before {
    content: '';
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(201, 164, 92, 0.4);
    border-radius: 2px;
    pointer-events: none;
}
.visual-frame .visual-inner {
    text-align: center;
    padding: var(--s4);
    z-index: 2;
}
.visual-frame .visual-en {
    font-family: var(--display-en);
    font-style: italic;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--gold-bright);
    letter-spacing: 0.02em;
}
.visual-frame .visual-zh {
    font-family: var(--serif-tc);
    font-size: 1.1rem;
    color: rgba(251, 247, 239, 0.8);
    letter-spacing: 0.2em;
}
.visual-frame .visual-symbol {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
    opacity: 0.85;
    line-height: 1;
}

/* ---------- LIST STYLES ---------- */
.refined-list { list-style: none; counter-reset: refined; }
.refined-list li {
    counter-increment: refined;
    padding: 1rem 0 1rem 64px;
    position: relative;
    border-bottom: 1px solid rgba(201, 164, 92, 0.2);
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--charcoal);
}
.refined-list li::before {
    content: counter(refined, decimal-leading-zero);
    position: absolute;
    left: 0; top: 1.05rem;
    font-family: var(--display-en);
    font-style: italic;
    color: var(--gold);
    font-size: 1.4rem;
    font-weight: 600;
}
.bg-ink .refined-list li, .bg-navy .refined-list li { color: rgba(251, 247, 239, 0.86); }

.feature-list { list-style: none; }
.feature-list li {
    padding: 0.8rem 0;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    border-bottom: 1px solid rgba(201, 164, 92, 0.16);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
    content: '◆';
    color: var(--gold);
    font-size: 0.65rem;
    margin-top: 9px;
    flex-shrink: 0;
}

/* ---------- BADGE ---------- */
.badge {
    display: inline-block;
    padding: 6px 14px;
    font-family: var(--sans-en);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    background: rgba(201, 164, 92, 0.1);
    color: var(--gold-deep);
    border: 1px solid rgba(201, 164, 92, 0.4);
    border-radius: 100px;
    font-weight: 600;
}
.badge.zh {
    font-family: var(--serif-tc);
    text-transform: none;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
}

/* ---------- ALERT ---------- */
.alert {
    padding: 1.4rem 1.6rem;
    border-left: 3px solid var(--gold);
    background: var(--ivory-warm);
    font-size: 0.95rem;
    color: var(--charcoal);
    margin: 1.5rem 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}
.alert strong { color: var(--burgundy); }
.alert-burgundy {
    border-left-color: var(--burgundy);
    background: rgba(122, 31, 43, 0.05);
}
.bg-ink .alert, .bg-navy .alert {
    background: rgba(251, 247, 239, 0.05);
    color: rgba(251, 247, 239, 0.85);
    border-left-color: var(--gold);
}

/* ---------- FULL-WIDTH FEATURE BANNER ---------- */
.feature-banner {
    width: 100%;
    background: var(--navy);
    overflow: hidden;
    padding: 0;
    line-height: 0;
}
.feature-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- NEWS LIST ---------- */
.news-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin: var(--s4) 0 var(--s5);
}
.news-filter {
    padding: 8px 18px;
    font-family: var(--display-en);
    font-style: italic;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    background: transparent;
    color: var(--charcoal);
    border: 1px solid rgba(201, 164, 92, 0.35);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-weight: 600;
}
.news-filter:hover { border-color: var(--gold); color: var(--gold-deep); }
.news-filter.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

.news-year-group { margin-bottom: var(--s5); scroll-margin-top: 100px; }
.news-year {
    font-family: var(--display-en);
    font-style: italic;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.04em;
    margin-bottom: var(--s3);
    padding-bottom: var(--s2);
    border-bottom: 1px solid rgba(201, 164, 92, 0.3);
    display: flex;
    align-items: baseline;
    gap: 1rem;
}
.news-year .count {
    font-family: var(--sans-en);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--slate);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
}

.news-item {
    display: grid;
    grid-template-columns: 110px 1fr auto;
    gap: 1.4rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 164, 92, 0.18);
    align-items: center;
    transition: all 0.3s var(--ease);
    position: relative;
}
.news-item:hover { padding-left: 12px; border-bottom-color: var(--gold); }
.news-item time {
    font-family: var(--display-en);
    font-style: italic;
    color: var(--gold-deep);
    font-size: 1rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}
.news-item time .day {
    display: block;
    font-size: 0.85rem;
    color: var(--slate);
    font-style: normal;
    margin-top: 2px;
    letter-spacing: 0.04em;
    font-weight: 400;
}
.news-content h4 {
    font-family: var(--serif-tc);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.news-content h4 a {
    color: inherit;
    transition: color 0.3s var(--ease);
}
.news-content h4 a:hover { color: var(--gold-deep); }
.news-source {
    display: inline-block;
    font-family: var(--sans-en);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-deep);
    background: rgba(201, 164, 92, 0.1);
    padding: 3px 10px;
    border-radius: 100px;
    border: 1px solid rgba(201, 164, 92, 0.3);
    font-weight: 600;
}
.news-source.zh {
    font-family: var(--serif-tc);
    text-transform: none;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
}
.news-arrow {
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.5;
    transition: all 0.3s var(--ease);
}
.news-item:hover .news-arrow {
    opacity: 1;
    transform: translateX(6px);
    color: var(--gold-deep);
}

@media (max-width: 700px) {
    .news-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 1.2rem 0;
    }
    .news-item time { font-size: 0.85rem; }
    .news-item time .day { display: inline; margin-left: 6px; }
    .news-content h4 { font-size: 1rem; line-height: 1.55; }
    .news-arrow { display: none; }
    .news-item:hover { padding-left: 0; }
}

/* ---------- VIDEO MODAL (YouTube lightbox) ---------- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(8, 12, 20, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    opacity: 0;
    transition: opacity 0.3s var(--ease);
}
.video-modal.open {
    display: flex;
    opacity: 1;
}
.video-modal-frame {
    width: 100%;
    max-width: 1280px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 164, 92, 0.25);
    transform: scale(0.96);
    transition: transform 0.4s var(--ease);
    position: relative;
}
.video-modal.open .video-modal-frame { transform: scale(1); }
.video-modal-inner { width: 100%; height: 100%; }
.video-modal-inner iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
.video-modal-close {
    position: absolute;
    top: 1.4rem;
    right: 1.6rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.12);
    border: 1px solid rgba(201, 164, 92, 0.4);
    color: var(--gold-bright);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    z-index: 1;
}
.video-modal-close:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: rotate(90deg);
}
@media (max-width: 600px) {
    .video-modal { padding: 1rem; }
    .video-modal-close { top: 0.6rem; right: 0.6rem; width: 40px; height: 40px; font-size: 1.4rem; }
}
body.modal-open { overflow: hidden; }

/* ---------- VIDEO HIGHLIGHTS (past finals) ---------- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
    margin-top: var(--s5);
}
.video-grid.featured {
    grid-template-columns: 1.6fr 1fr 1fr;
}
@media (max-width: 900px) {
    .video-grid.featured { grid-template-columns: 1fr; }
}
.video-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--navy);
    aspect-ratio: 16/9;
    cursor: pointer;
    border: 1px solid rgba(201, 164, 92, 0.22);
    transition: all 0.5s var(--ease);
    display: block;
}
.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.video-card .thumb {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease);
}
.video-card:hover .thumb { transform: scale(1.08); }
.video-card .thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(16, 24, 39, 0.15) 0%,
            rgba(16, 24, 39, 0.25) 50%,
            rgba(16, 24, 39, 0.85) 100%);
    z-index: 1;
}
.video-card .play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76px; height: 76px;
    border-radius: 50%;
    background: rgba(201, 164, 92, 0.18);
    border: 2px solid var(--gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.4s var(--ease);
    box-shadow: 0 0 0 8px rgba(201, 164, 92, 0.08);
}
.video-card:hover .play {
    background: var(--gold);
    box-shadow: 0 0 0 14px rgba(201, 164, 92, 0.18);
    transform: translate(-50%, -50%) scale(1.06);
}
.video-card .play::after {
    content: '';
    width: 0; height: 0;
    border-style: solid;
    border-width: 13px 0 13px 22px;
    border-color: transparent transparent transparent var(--gold);
    margin-left: 6px;
    transition: border-color 0.4s var(--ease);
}
.video-card:hover .play::after {
    border-color: transparent transparent transparent var(--navy);
}
.video-card .info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.4rem 1.6rem;
    color: var(--ivory);
    z-index: 2;
}
.video-card .info .year {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 0.84rem;
    letter-spacing: 0.2em;
    color: var(--gold-bright);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.video-card .info h3 {
    color: var(--ivory);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}
.video-card .info .meta {
    font-size: 0.82rem;
    color: rgba(251, 247, 239, 0.75);
    letter-spacing: 0.06em;
}
/* Featured (first card larger) */
.video-card.featured {
    aspect-ratio: 16/10;
}
.video-card.featured .play {
    width: 96px; height: 96px;
}
.video-card.featured .play::after {
    border-width: 16px 0 16px 28px;
}
.video-card.featured .info { padding: 2rem 2.2rem; }
.video-card.featured .info h3 { font-size: 1.5rem; }

/* Placeholder background variants for video cards (no real images yet) */
.video-card .thumb.gen-1 {
    background:
        radial-gradient(circle at 30% 40%, rgba(201, 164, 92, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
}
.video-card .thumb.gen-2 {
    background:
        radial-gradient(circle at 70% 30%, rgba(201, 164, 92, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, var(--burgundy-deep) 0%, var(--navy) 100%);
}
.video-card .thumb.gen-3 {
    background:
        radial-gradient(circle at 50% 60%, rgba(201, 164, 92, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, var(--navy-2) 0%, var(--heritage) 100%);
}
.video-card .thumb.gen-4 {
    background:
        radial-gradient(circle at 40% 50%, rgba(201, 164, 92, 0.28) 0%, transparent 55%),
        linear-gradient(135deg, var(--purple) 0%, var(--burgundy) 100%);
}
.video-card .thumb.gen-5 {
    background:
        radial-gradient(circle at 60% 40%, rgba(201, 164, 92, 0.22) 0%, transparent 55%),
        linear-gradient(135deg, var(--navy-3) 0%, var(--purple-2) 100%);
}

/* ---------- TESTIMONIALS (winner stories) ---------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.6rem;
    margin-top: var(--s5);
}
.testimonial {
    background: var(--ivory-soft);
    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: var(--radius);
    padding: 2.4rem 2rem 2rem;
    position: relative;
    transition: all 0.5s var(--ease);
    display: flex;
    flex-direction: column;
}
.testimonial::before {
    content: '\201C';
    position: absolute;
    top: 1rem;
    left: 1.4rem;
    font-family: var(--display-en);
    font-size: 5rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.25;
    font-weight: 700;
}
.testimonial:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 164, 92, 0.5);
}
.testimonial .quote {
    font-family: var(--serif-tc);
    font-size: 1.04rem;
    line-height: 1.85;
    color: var(--ink);
    margin-top: 1.6rem;
    margin-bottom: 1.6rem;
    font-style: italic;
    letter-spacing: 0.02em;
    flex: 1;
    padding-left: 0.4rem;
    position: relative;
    z-index: 1;
}
.testimonial .person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(201, 164, 92, 0.25);
}
.testimonial .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gold-foil);
    background-size: 200% auto;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif-tc);
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    border: 2px solid var(--ivory-soft);
    box-shadow: 0 0 0 2px var(--gold);
}
.testimonial .person-info { flex: 1; min-width: 0; }
.testimonial .person-info .name {
    font-family: var(--serif-tc);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}
.testimonial .person-info .achievement {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 0.82rem;
    color: var(--gold-deep);
    letter-spacing: 0.08em;
    line-height: 1.4;
}
.testimonial .person-info .achievement-zh {
    font-family: var(--serif-tc);
    font-style: normal;
    font-size: 0.85rem;
    color: var(--slate);
    margin-top: 2px;
}
/* Featured testimonial (larger) */
.testimonial.feat {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--ivory-soft) 0%, var(--ivory-warm) 100%);
}
.testimonial.feat .quote { font-size: 1.18rem; }
@media (max-width: 900px) {
    .testimonial.feat { grid-column: span 1; }
}

/* ---------- CONTACT INFO CARDS ---------- */
.contact-card {
    text-align: center;
    padding: 2.6rem 1.8rem;
    background: var(--ivory-soft);
    border: 1px solid rgba(201, 164, 92, 0.22);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-foil);
    background-size: 200% auto;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.contact-card:hover::before { transform: scaleX(1); }
.contact-card .icon-wrap {
    width: 64px; height: 64px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201, 164, 92, 0.12), rgba(201, 164, 92, 0.04));
    border: 1px solid rgba(201, 164, 92, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--gold-deep);
}
.contact-card h3 { margin-bottom: 0.6rem; font-size: 1.3rem; }
.contact-card .meta {
    font-size: 0.92rem;
    color: var(--slate);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.contact-card .value {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gold-deep);
    font-weight: 600;
    margin-bottom: 0.4rem;
    word-break: break-word;
}
.contact-card .value-zh {
    font-family: var(--serif-tc);
    font-style: normal;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* ---------- MAP PLACEHOLDER ---------- */
.map-placeholder {
    aspect-ratio: 21/9;
    background:
        linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
    border-radius: var(--radius);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: var(--s4);
}
.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg,
            transparent 0, transparent 60px,
            rgba(201, 164, 92, 0.04) 60px, rgba(201, 164, 92, 0.04) 61px);
}
.map-placeholder .pin {
    text-align: center;
    color: var(--gold-bright);
    z-index: 1;
}
.map-placeholder .pin-icon {
    font-size: 3rem;
    margin-bottom: 0.6rem;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(201, 164, 92, 0.6);
}
.map-placeholder .pin-label {
    font-family: var(--display-en);
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 0.14em;
    margin-bottom: 0.3rem;
}
.map-placeholder .pin-zh {
    font-family: var(--serif-tc);
    font-size: 0.95rem;
    color: rgba(251, 247, 239, 0.8);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--navy);
    color: rgba(251, 247, 239, 0.7);
    padding: var(--s6) 0 var(--s3);
    position: relative;
    overflow: hidden;
}
footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.5;
}
footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(78, 52, 116, 0.18) 0%, transparent 50%);
    pointer-events: none;
}
footer .container { max-width: var(--container); position: relative; z-index: 1; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--s4);
    margin-bottom: var(--s5);
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s3); }
    .footer-section.footer-brand { grid-column: 1 / -1; }
}
.footer-section h4 {
    font-family: var(--serif-tc);
    color: var(--gold-bright);
    margin-bottom: var(--s2);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.footer-section p, .footer-section a {
    color: rgba(251, 247, 239, 0.7);
    font-size: 0.92rem;
    line-height: 1.85;
    margin-bottom: 6px;
    display: block;
}
.footer-section a:hover { color: var(--gold-bright); }
.footer-brand .brand-zh {
    font-family: var(--serif-tc);
    font-size: 1.25rem;
    color: var(--gold-bright);
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}
.footer-brand .brand-en {
    font-family: var(--sans-en);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(251, 247, 239, 0.55);
    margin-bottom: var(--s2);
}
.footer-bottom {
    border-top: 1px solid rgba(201, 164, 92, 0.15);
    padding-top: var(--s3);
    text-align: center;
    font-size: 0.82rem;
    color: rgba(251, 247, 239, 0.45);
}
.footer-partner {
    margin-top: var(--s2);
    line-height: 1.7;
}
.footer-partner a {
    display: inline;
    color: var(--gold-bright);
}
.footer-partner a:hover { color: var(--gold); }

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- RESPONSIVE TYPOGRAPHY ---------- */
@media (max-width: 480px) {
    p { font-size: 0.98rem; line-height: 1.78; }
    .container, .container-wide, .container-narrow { padding: 0 var(--s2); }
    .form { padding: 1.4rem; }
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--s1); }
.mt-2 { margin-top: var(--s2); }
.mt-3 { margin-top: var(--s3); }
.mt-4 { margin-top: var(--s4); }
.mt-5 { margin-top: var(--s5); }
.mb-2 { margin-bottom: var(--s2); }
.mb-3 { margin-bottom: var(--s3); }
.mb-4 { margin-bottom: var(--s4); }
.mxa { margin-left: auto; margin-right: auto; }
.relative { position: relative; }

/* Decorative SVG-like flourish */
.flourish {
    text-align: center;
    margin: var(--s3) auto;
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 0.5em;
    opacity: 0.55;
}
