/*
   Sip Boba Tea — Signature Purple/Yellow Release
   Complete responsive Flask/Jinja website system.
*/

:root {
    --ink: #15101f;
    --ink-2: #241832;
    --muted: #776984;
    --paper: #fffaf0;
    --paper-2: #fff4d8;
    --purple-950: #1b102d;
    --purple-900: #24103f;
    --purple-800: #36156d;
    --purple-700: #5122a7;
    --purple-600: #6e3aff;
    --purple-500: #8c66ff;
    --purple-300: #cbbcff;
    --gold-700: #b87600;
    --gold-500: #ffb800;
    --gold-300: #ffdd75;
    --yellow: #ffe66d;
    --cream: #fff8e7;
    --white: #ffffff;
    --pink: #ff72b6;
    --berry: #9c2fd7;
    --matcha: #8ebf5f;
    --glass: rgba(255, 255, 255, 0.66);
    --glass-strong: rgba(255, 255, 255, 0.82);
    --stroke: rgba(77, 44, 132, 0.16);
    --stroke-light: rgba(255, 255, 255, 0.18);
    --shadow: 0 26px 80px rgba(42, 19, 86, 0.18);
    --shadow-soft: 0 16px 44px rgba(42, 19, 86, 0.10);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 34px;
    --radius-xl: 46px;
    --max: 1180px;
    --nav-h: 82px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 16% 0%, rgba(110, 58, 255, 0.26), transparent 38rem),
        radial-gradient(circle at 88% 12%, rgba(255, 184, 0, 0.26), transparent 32rem),
        radial-gradient(circle at 70% 95%, rgba(255, 114, 182, 0.14), transparent 34rem),
        linear-gradient(180deg, #fffaf0 0%, #fff7e7 48%, #fcf2ff 100%);
    min-height: 100vh;
    overflow-x: hidden;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(54, 21, 109, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(54, 21, 109, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.65), transparent 75%);
    z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 12px;
    z-index: 100000;
    transform: translateY(-160%);
    background: var(--purple-900);
    color: white;
    padding: 12px 16px;
    border-radius: 999px;
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    z-index: 10001;
    background: transparent;
}
.scroll-progress span {
    display: block;
    height: 100%;
    transform-origin: left;
    transform: scaleX(0);
    background: linear-gradient(90deg, var(--purple-600), var(--gold-500));
}

/* Loader */
#loader-wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: radial-gradient(circle, #fffdf6, #f4e9ff);
    transition: opacity .45s ease, visibility .45s ease;
}
.loader-hidden { opacity: 0; visibility: hidden; }
.loader-shell { display: grid; gap: 16px; justify-items: center; color: var(--purple-900); font-weight: 900; letter-spacing: .18em; font-size: .78rem; }
.loader-cup { width: 76px; height: 92px; position: relative; border-radius: 20px 20px 28px 28px; background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,230,109,.84)); border: 2px solid rgba(81,34,167,.18); box-shadow: var(--shadow-soft); animation: loaderFloat 1.4s ease-in-out infinite; }
.loader-cup::before { content: ""; position: absolute; left: 18px; top: -28px; width: 10px; height: 54px; border-radius: 999px; background: linear-gradient(180deg, var(--purple-600), var(--pink)); transform: rotate(16deg); }
.loader-cup span { position: absolute; bottom: 10px; width: 12px; height: 12px; border-radius: 50%; background: var(--purple-950); }
.loader-cup span:nth-child(1) { left: 18px; }
.loader-cup span:nth-child(2) { left: 34px; bottom: 18px; }
.loader-cup span:nth-child(3) { right: 17px; }
@keyframes loaderFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Navigation */
.site-nav-shell { position: sticky; top: 12px; z-index: 1000; padding-block: 12px; pointer-events: none; }
.navbar { min-height: var(--nav-h); padding: 10px 12px 10px 16px; border: 1px solid rgba(255,255,255,.54); border-radius: 999px; background: rgba(255, 250, 240, .68); backdrop-filter: blur(24px) saturate(150%); box-shadow: 0 18px 60px rgba(36,16,63,.12); display: flex; align-items: center; justify-content: space-between; gap: 14px; pointer-events: auto; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 1000; letter-spacing: -.055em; }
.brand-orb { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 17px; color: white; background: linear-gradient(135deg, var(--purple-600), var(--berry) 52%, var(--gold-500)); box-shadow: 0 16px 34px rgba(110,58,255,.28); }
.brand-text { font-size: 1.15rem; }
.nav-links { display: flex; align-items: center; gap: 4px; padding: 6px; border-radius: 999px; background: rgba(255,255,255,.36); border: 1px solid rgba(255,255,255,.38); }
.nav-links a { padding: 11px 14px; border-radius: 999px; color: var(--muted); font-weight: 800; font-size: .9rem; transition: .22s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--purple-950); background: rgba(255,230,109,.44); }
.nav-mobile-cta { display: none !important; }
.nav-actions { display: flex; gap: 8px; }
.hamburger-menu { display: none; width: 46px; height: 46px; border: 0; background: rgba(255,255,255,.7); border-radius: 16px; position: relative; }
.hamburger-menu span { display: block; width: 21px; height: 2px; background: var(--purple-950); margin: 5px auto; transition: .25s ease; }
.hamburger-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger-menu.active span:nth-child(2) { opacity: 0; }
.hamburger-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; gap: 10px; padding: 13px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--purple-950); background: linear-gradient(135deg, var(--yellow), var(--gold-500)); box-shadow: 0 18px 36px rgba(255,184,0,.26); }
.btn-outline { color: var(--purple-950); border-color: rgba(81,34,167,.22); background: rgba(255,255,255,.44); }
.btn-ghost { color: var(--purple-950); background: rgba(255,255,255,.48); border-color: rgba(81,34,167,.12); }
.btn-light { color: var(--purple-950); background: rgba(255,255,255,.86); }
.btn-dark { color: white; background: linear-gradient(135deg, var(--purple-900), var(--purple-700)); box-shadow: 0 18px 38px rgba(54,21,109,.22); }

/* Shared text */
.kicker { color: var(--purple-600); font-size: .78rem; font-weight: 1000; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 12px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; width: fit-content; padding: 9px 13px; border-radius: 999px; background: rgba(255,255,255,.58); border: 1px solid rgba(81,34,167,.13); box-shadow: 0 14px 34px rgba(42,19,86,.08); color: var(--purple-950); font-size: .86rem; font-weight: 900; margin-bottom: 22px; }
.eyebrow span { width: 9px; height: 9px; border-radius: 50%; background: var(--gold-500); box-shadow: 0 0 0 7px rgba(255,184,0,.18); }
.pill { display: inline-flex; width: fit-content; padding: 8px 12px; border-radius: 999px; background: rgba(255,230,109,.5); color: var(--purple-950); font-weight: 900; font-size: .78rem; }

/* Hero */
.hero-lab { position: relative; padding: 82px 0 84px; }
.hero-mesh { position: absolute; inset: -120px 0 auto; height: 760px; background: radial-gradient(circle at 72% 24%, rgba(255,230,109,.4), transparent 25rem), radial-gradient(circle at 22% 40%, rgba(110,58,255,.24), transparent 28rem); pointer-events: none; z-index: -1; }
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 52px; align-items: center; min-height: calc(100vh - 160px); }
.hero-copy h1 { font-size: clamp(3.2rem, 7.4vw, 7.5rem); line-height: .88; letter-spacing: -.088em; margin-bottom: 28px; max-width: 820px; }
.hero-copy p { color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.28rem); line-height: 1.72; max-width: 660px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 34px; }
.signal-strip { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; max-width: 720px; }
.signal-strip div { padding: 16px; border-radius: 22px; background: rgba(255,255,255,.52); border: 1px solid rgba(81,34,167,.12); box-shadow: var(--shadow-soft); }
.signal-strip strong { display: block; color: var(--purple-600); font-size: .84rem; margin-bottom: 5px; }
.signal-strip span { color: var(--muted); font-weight: 800; font-size: .92rem; line-height: 1.35; display: block; }
.hero-device { perspective: 1100px; transform-style: preserve-3d; }
.glass-stage { position: relative; min-height: 640px; display: grid; place-items: center; border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.48), rgba(255,255,255,.16)); border: 1px solid rgba(255,255,255,.64); box-shadow: var(--shadow); overflow: hidden; transform: rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg)); transition: transform .18s ease-out; }
.glass-stage::before { content: ""; position: absolute; inset: 16px; border-radius: 38px; border: 1px solid rgba(255,255,255,.42); background: radial-gradient(circle at 50% 0%, rgba(255,230,109,.34), transparent 40%), radial-gradient(circle at 25% 70%, rgba(110,58,255,.22), transparent 42%); }
.orbit { position: absolute; border: 1px solid rgba(81,34,167,.15); border-radius: 50%; animation: spin 16s linear infinite; }
.orbit-a { width: 520px; height: 520px; }
.orbit-b { width: 390px; height: 390px; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.premium-cup { position: relative; width: 310px; height: 500px; filter: drop-shadow(0 32px 42px rgba(36,16,63,.25)); transform: rotate(-4deg); z-index: 2; animation: cupFloat 5.4s ease-in-out infinite; }
@keyframes cupFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -16px; } }
.straw { position: absolute; left: 145px; top: -50px; width: 26px; height: 350px; border-radius: 999px; background: linear-gradient(90deg, #fff, var(--purple-500), var(--pink)); transform: rotate(13deg); z-index: 1; box-shadow: inset -7px 0 rgba(255,255,255,.28); }
.cup-lid { position: absolute; top: 80px; left: 18px; width: 278px; height: 72px; border-radius: 50%; background: rgba(255,255,255,.84); border: 4px solid rgba(54,21,109,.12); z-index: 3; }
.cup-body { position: absolute; left: 40px; top: 118px; width: 230px; height: 340px; clip-path: polygon(2% 0,98% 0,82% 100%,18% 100%); border-radius: 0 0 42px 42px; background: linear-gradient(180deg, rgba(255,230,109,.94), rgba(110,58,255,.84)); border: 5px solid rgba(54,21,109,.13); overflow: hidden; z-index: 2; }
.liquid-wave { position: absolute; left: -20%; top: 28%; width: 140%; height: 54px; background: rgba(255,255,255,.22); border-radius: 50%; animation: wave 4.8s ease-in-out infinite; }
@keyframes wave { 0%,100% { transform: translateX(-4%) rotate(-2deg); } 50% { transform: translateX(4%) rotate(3deg); } }
.cup-shine { position: absolute; left: 38px; top: 42px; width: 44px; height: 238px; border-radius: 999px; background: rgba(255,255,255,.24); transform: rotate(6deg); }
.ice { position: absolute; border-radius: 14px; background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.25); }
.i1 { width: 52px; height: 38px; left: 124px; top: 60px; transform: rotate(12deg); }
.i2 { width: 42px; height: 34px; left: 54px; top: 110px; transform: rotate(-14deg); }
.i3 { width: 56px; height: 38px; right: 38px; top: 146px; transform: rotate(16deg); }
.pearl { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: radial-gradient(circle at 30% 24%, #7349a6, #1a1027 70%); box-shadow: inset -5px -6px 8px rgba(0,0,0,.24), 0 5px 10px rgba(36,16,63,.18); bottom: 30px; }
.p1 { left: 28px; } .p2 { left: 65px; bottom: 18px; } .p3 { left: 98px; bottom: 46px; } .p4 { left: 132px; bottom: 20px; } .p5 { left: 162px; bottom: 52px; } .p6 { left: 184px; bottom: 16px; } .p7 { left: 52px; bottom: 78px; } .p8 { left: 124px; bottom: 82px; }
.micro-card { position: absolute; z-index: 4; padding: 14px 16px; border-radius: 22px; background: rgba(255,255,255,.72); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.58); box-shadow: 0 18px 50px rgba(42,19,86,.14); }
.micro-card strong { display: block; color: var(--purple-950); margin-bottom: 4px; }
.micro-card span { color: var(--muted); font-size: .88rem; font-weight: 700; }
.card-one { top: 96px; right: 28px; }
.card-two { bottom: 110px; left: 22px; }
.card-three { right: 58px; bottom: 54px; }

/* Sections */
.section { padding: 88px 0; }
.section-heading { max-width: 720px; margin-bottom: 34px; }
.section-heading.wide { max-width: 920px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: end; }
.section-heading h2, .page-hero h1, .brand-copy h2, .trailer-copy h2, .location-info h2, .story-copy h2, .contact-panel h2, .footer-cta h2 { font-size: clamp(2.3rem, 4.8vw, 4.8rem); line-height: .95; letter-spacing: -.065em; }
.section-heading p, .brand-copy p, .trailer-copy p, .location-info p, .story-copy p, .contact-panel p, .page-hero p { color: var(--muted); line-height: 1.76; font-size: 1.02rem; }
.drink-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.drink-card { position: relative; min-height: 360px; overflow: hidden; border-radius: var(--radius-lg); padding: 26px; background: rgba(255,255,255,.58); border: 1px solid rgba(255,255,255,.68); box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.drink-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.drink-card-glow { position: absolute; inset: auto -40px -80px; height: 210px; background: radial-gradient(circle, rgba(110,58,255,.28), transparent 64%); }
.drink-card[data-tone="cream"] .drink-card-glow { background: radial-gradient(circle, rgba(255,230,109,.38), transparent 66%); }
.drink-card[data-tone="matcha"] .drink-card-glow { background: radial-gradient(circle, rgba(142,191,95,.35), transparent 66%); }
.drink-card[data-tone="sunset"] .drink-card-glow { background: radial-gradient(circle, rgba(255,114,182,.28), transparent 66%); }
.drink-card h3 { font-size: 1.55rem; letter-spacing: -.04em; margin: 16px 0 10px; }
.drink-card p { color: var(--muted); line-height: 1.6; }
.drink-card-copy { position: relative; z-index: 2; max-width: 72%; }
.mini-cup { position: absolute; right: 16px; bottom: -20px; width: 136px; height: 196px; transform: rotate(8deg); }
.mini-cup::before { content: ""; position: absolute; inset: 26px 22px 0; clip-path: polygon(5% 0, 95% 0, 80% 100%, 20% 100%); border-radius: 0 0 26px 26px; background: linear-gradient(180deg, var(--yellow), var(--purple-600)); }
.mini-straw { position: absolute; left: 62px; top: -8px; width: 11px; height: 95px; border-radius: 999px; background: var(--purple-900); transform: rotate(13deg); }
.mini-lid { position: absolute; top: 12px; left: 30px; right: 30px; height: 30px; border-radius: 999px; background: rgba(255,255,255,.88); }
.mini-pearl { position: absolute; width: 15px; height: 15px; border-radius: 50%; background: var(--purple-950); bottom: 18px; }
.mini-pearl.p1 { left: 47px; } .mini-pearl.p2 { left: 66px; bottom: 31px; } .mini-pearl.p3 { left: 84px; }

/* Customer-facing brand cards */
.brand-system { padding: 86px 0; display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: center; }
.brand-copy { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-xl); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.66); box-shadow: var(--shadow-soft); }
.brand-copy p { margin-bottom: 24px; }
.feature-stack { display: grid; gap: 16px; }
.feature-card { padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.62); box-shadow: var(--shadow-soft); transition: transform .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-label { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; width: fit-content; padding: 9px 14px; border-radius: 999px; background: var(--yellow); color: var(--purple-950); font-weight: 1000; margin-bottom: 18px; font-size: .82rem; letter-spacing: .03em; }
.feature-card h3 { font-size: 1.36rem; margin-bottom: 8px; letter-spacing: -.03em; }
.feature-card p { color: var(--muted); line-height: 1.65; }

/* Trailer section */
.trailer-showcase { margin-block: 80px 100px; padding: clamp(28px, 5vw, 56px); border-radius: var(--radius-xl); background: radial-gradient(circle at 85% 20%, rgba(255,230,109,.42), transparent 18rem), linear-gradient(135deg, var(--purple-950), var(--purple-700)); color: white; display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: center; box-shadow: var(--shadow); overflow: hidden; }
.trailer-showcase .kicker, .trailer-copy p { color: rgba(255,255,255,.78); }
.trailer-copy h2 { color: white; margin-bottom: 18px; }
.trailer-copy .btn { margin-top: 24px; }
.chip-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.chip-row span { padding: 9px 12px; border-radius: 999px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.14); font-weight: 800; font-size: .9rem; }
.trailer-scene { min-height: 320px; position: relative; border-radius: 36px; background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.06)); border: 1px solid rgba(255,255,255,.16); overflow: hidden; }
.sun-disc { position: absolute; width: 220px; height: 220px; border-radius: 50%; right: 40px; top: 36px; background: rgba(255,230,109,.46); filter: blur(.2px); }
.trailer-body { position: absolute; left: 50%; top: 56%; transform: translate(-50%, -50%); width: min(430px, 88%); height: 132px; border-radius: 34px 52px 30px 30px; background: #fff8e7; box-shadow: 0 28px 46px rgba(0,0,0,.20); }
.trailer-body::before { content: "SIP MOBILE"; position: absolute; left: 32px; top: 38px; color: var(--purple-950); font-weight: 1000; letter-spacing: -.04em; font-size: 1.35rem; }
.trailer-body::after { content: ""; position: absolute; right: 26px; top: 24px; width: 74px; height: 56px; border-radius: 20px 28px 18px 18px; background: linear-gradient(135deg, #ded4ff, #fff); border: 4px solid rgba(54,21,109,.12); }
.trailer-body span { position: absolute; bottom: -19px; width: 48px; height: 48px; border-radius: 50%; background: var(--purple-950); border: 9px solid rgba(255,255,255,.88); }
.trailer-body span:nth-child(1) { left: 72px; }
.trailer-body span:nth-child(2) { right: 72px; }
.trailer-body i { position: absolute; left: 32px; top: -24px; width: 120px; height: 30px; border-radius: 18px 18px 6px 6px; background: var(--yellow); }
.trailer-body b { position: absolute; left: 48px; bottom: 28px; width: 112px; height: 12px; border-radius: 999px; background: linear-gradient(90deg, var(--purple-600), var(--pink)); }

/* Page hero */
.page-hero { position: relative; padding: 86px 0 58px; }
.page-hero h1 { max-width: 860px; margin-bottom: 22px; }
.page-hero p { max-width: 740px; }
.page-hero-badge { position: absolute; right: 0; bottom: 70px; padding: 12px 16px; border-radius: 999px; background: rgba(255,255,255,.62); border: 1px solid rgba(81,34,167,.12); color: var(--purple-950); font-weight: 900; box-shadow: var(--shadow-soft); }

/* Menu */
.menu-studio { display: grid; grid-template-columns: 230px 1fr; gap: 28px; align-items: start; padding-bottom: 90px; }
.menu-rail { position: sticky; top: 116px; }
.rail-card { padding: 20px; border-radius: 28px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.66); box-shadow: var(--shadow-soft); }
.rail-title { color: var(--purple-950); font-weight: 1000; margin-bottom: 14px; }
.rail-card a { display: block; padding: 11px 12px; border-radius: 16px; color: var(--muted); font-weight: 800; }
.rail-card a:hover { background: rgba(255,230,109,.38); color: var(--purple-950); }
.menu-main { min-width: 0; }
.menu-toolbar { position: sticky; top: 116px; z-index: 20; margin-bottom: 28px; padding: 16px; border-radius: 30px; background: rgba(255,250,240,.86); backdrop-filter: blur(22px); border: 1px solid rgba(255,255,255,.68); box-shadow: var(--shadow-soft); }
.search-box { display: grid; gap: 8px; margin-bottom: 14px; color: var(--purple-950); font-weight: 900; }
.search-box input, .contact-panel input, .contact-panel textarea, .contact-panel select { width: 100%; border: 1px solid rgba(81,34,167,.16); background: rgba(255,255,255,.74); border-radius: 18px; padding: 14px 16px; color: var(--ink); outline: none; }
.search-box input:focus, .contact-panel input:focus, .contact-panel textarea:focus, .contact-panel select:focus { border-color: rgba(110,58,255,.62); box-shadow: 0 0 0 5px rgba(110,58,255,.12); }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.chip { border: 0; padding: 9px 12px; border-radius: 999px; background: rgba(81,34,167,.08); color: var(--purple-950); font-weight: 900; }
.chip.active { background: var(--yellow); }
.menu-category { scroll-margin-top: 145px; margin-bottom: 54px; }
.category-head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.category-head > span { flex: 0 0 auto; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: var(--purple-950); color: var(--yellow); font-weight: 1000; }
.category-head h2 { font-size: 2rem; letter-spacing: -.045em; margin-bottom: 5px; }
.category-head p { color: var(--muted); line-height: 1.62; max-width: 760px; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.product-tile { position: relative; min-height: 220px; padding: 22px; border-radius: 28px; background: rgba(255,255,255,.64); border: 1px solid rgba(255,255,255,.70); box-shadow: var(--shadow-soft); overflow: hidden; transition: transform .22s ease, box-shadow .22s ease; display: grid; grid-template-columns: minmax(0, 1fr) 118px; gap: 18px; align-items: center; }
.product-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(255,230,109,.18), transparent 50%), radial-gradient(circle at 0% 100%, rgba(110,58,255,.12), transparent 50%); pointer-events: none; }
.product-copy { position: relative; z-index: 2; min-width: 0; }
.product-tag { display: inline-flex; padding: 7px 10px; border-radius: 999px; background: rgba(255,230,109,.48); color: var(--purple-950); font-weight: 900; font-size: .78rem; margin-bottom: 12px; }
.product-tile h3 { font-size: clamp(1.12rem, 1.8vw, 1.38rem); letter-spacing: -.035em; margin-bottom: 8px; line-height: 1.18; overflow-wrap: anywhere; }
.product-tile p { color: var(--muted); line-height: 1.58; font-size: .95rem; }
.product-tile[hidden] { display: none; }
.tile-visual { position: relative; z-index: 1; width: 108px; height: 150px; justify-self: end; filter: drop-shadow(0 14px 22px rgba(42,19,86,.18)); transform: rotate(5deg); }
.tile-visual::before { content: ""; position: absolute; inset: 24px 16px 0; clip-path: polygon(5% 0, 95% 0, 82% 100%, 18% 100%); border-radius: 0 0 28px 28px; background: linear-gradient(180deg, var(--drink-a), var(--drink-b)); border: 3px solid rgba(255,255,255,.32); }
.tile-lid { position: absolute; top: 10px; left: 22px; right: 22px; height: 28px; border-radius: 999px; background: rgba(255,255,255,.88); border: 2px solid rgba(54,21,109,.1); z-index: 3; }
.tile-straw { position: absolute; left: 50px; top: -22px; width: 10px; height: 100px; background: var(--purple-900); border-radius: 999px; transform: rotate(14deg); z-index: 1; }
.tile-shine { position: absolute; left: 34px; top: 52px; width: 16px; height: 72px; border-radius: 999px; background: rgba(255,255,255,.26); z-index: 4; }
.tile-pearl { position: absolute; bottom: 14px; width: 13px; height: 13px; border-radius: 50%; background: var(--purple-950); z-index: 4; }
.tile-pearl.a { left: 38px; }
.tile-pearl.b { left: 55px; bottom: 27px; }
.tile-pearl.c { left: 72px; }

/* Photo panels + locations/about/contact */
.photo-panel { min-height: 420px; border-radius: var(--radius-xl); background: var(--photo), radial-gradient(circle at 30% 20%, rgba(255,255,255,.48), transparent 22%), linear-gradient(135deg, rgba(110,58,255,.3), rgba(255,230,109,.48)); background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.68); box-shadow: var(--shadow); }
.locations-showcase, .story-lab, .contact-lab { padding: 22px 0 94px; }
.location-feature { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: stretch; margin-bottom: 28px; }
.location-feature.reverse { grid-template-columns: 1.05fr .95fr; }
.location-feature.reverse .location-photo { order: 2; }
.location-info { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-xl); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.66); box-shadow: var(--shadow-soft); }
.location-info h2 { margin: 18px 0 12px; }
.hours-grid { display: grid; gap: 8px; margin: 24px 0; }
.hours-grid div { display: flex; justify-content: space-between; gap: 14px; padding: 11px 0; border-bottom: 1px dashed rgba(81,34,167,.16); color: var(--muted); }
.hours-grid strong { color: var(--purple-950); }
.story-lab { display: grid; grid-template-columns: .92fr 1.08fr; gap: 40px; align-items: center; }
.story-visual { position: relative; min-height: 540px; }
.story-badge { position: absolute; top: 24px; left: 22px; z-index: 2; width: 118px; height: 118px; border-radius: 36px; display: grid; place-items: center; background: linear-gradient(135deg, var(--purple-600), var(--gold-500)); color: white; font-weight: 1000; font-size: 2rem; box-shadow: var(--shadow); transform: rotate(-8deg); }
.story-photo { min-height: 540px; }
.story-copy p { margin: 18px 0; }
.timeline { display: grid; gap: 12px; margin-top: 24px; }
.timeline div { padding: 18px; border-radius: 22px; background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.66); }
.timeline span { color: var(--purple-600); font-weight: 1000; }
.timeline strong { display: block; margin: 4px 0; }
.timeline p { margin: 0; font-size: .94rem; }

/* Gallery */
.gallery-wall { padding: 22px 0 94px; display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-flow: dense; gap: 14px; }
.gallery-tile { position: relative; min-height: 240px; border: 1px solid rgba(255,255,255,.66); border-radius: 28px; overflow: hidden; background: rgba(255,255,255,.68); box-shadow: var(--shadow-soft); }
.gallery-tile:nth-child(6n+1) { grid-column: span 2; grid-row: span 2; }
.gallery-tile img { position: absolute; inset: 10px; z-index: 1; width: calc(100% - 20px); height: calc(100% - 20px); border-radius: 22px; object-fit: contain; transition: transform .35s ease; }
.gallery-fallback { position: absolute; inset: 0; width: 100%; height: 100%; background: var(--photo), radial-gradient(circle at 30% 25%, rgba(255,255,255,.45), transparent 24%), linear-gradient(135deg, rgba(110,58,255,.36), rgba(255,230,109,.52)); background-size: cover; background-position: center; opacity: .28; filter: blur(14px); transform: scale(1.08); transition: transform .35s ease; }
.gallery-tile:hover img { transform: scale(1.025); }
.gallery-tile:hover .gallery-fallback { transform: scale(1.14); }
.modal { position: fixed; inset: 0; z-index: 10000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(10,5,18,.88); backdrop-filter: blur(14px); }
.modal.open { display: flex; }
.modal-content { max-width: min(92vw, 1200px); max-height: 88vh; border-radius: 24px; box-shadow: 0 24px 70px rgba(0,0,0,.45); object-fit: contain; }
.close-modal { position: absolute; top: 22px; right: 30px; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(255,255,255,.12); color: white; font-size: 2.2rem; line-height: 1; }

/* Contact */
.contact-lab { display: grid; grid-template-columns: 1.04fr .96fr; gap: 28px; align-items: start; }
.contact-panel, .quick-contact { padding: clamp(28px, 4vw, 44px); border-radius: var(--radius-xl); background: rgba(255,255,255,.62); border: 1px solid rgba(255,255,255,.66); box-shadow: var(--shadow-soft); }
.contact-panel h2 { margin: 18px 0 12px; }
.contact-panel form { display: grid; gap: 16px; margin-top: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-panel label { display: grid; gap: 8px; color: var(--purple-950); font-weight: 900; }
.contact-panel textarea { resize: vertical; min-height: 150px; }
.contact-side { display: grid; gap: 16px; }
.contact-photo { min-height: 460px; }
.quick-contact h3 { font-size: 1.35rem; margin-bottom: 12px; }
.quick-contact a { color: var(--purple-700); font-weight: 900; }
.quick-contact p { color: var(--muted); line-height: 1.65; margin-top: 12px; }
.quick-contact .chip-row span { background: rgba(81,34,167,.08); color: var(--purple-950); border-color: rgba(81,34,167,.1); }

/* Footer */
.site-footer { padding: 82px 0 34px; background: radial-gradient(circle at 85% 0%, rgba(255,230,109,.16), transparent 30rem), linear-gradient(135deg, var(--purple-950), #12091f); color: rgba(255,255,255,.78); margin-top: 48px; }
.footer-cta { display: flex; justify-content: space-between; gap: 24px; align-items: end; padding: 34px; border-radius: var(--radius-xl); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); margin-bottom: 44px; }
.footer-cta .kicker { color: var(--yellow); }
.footer-cta h2 { color: white; max-width: 720px; }
.footer-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .75fr .9fr; gap: 34px; padding-top: 24px; }
.footer-brand { display: inline-block; color: white; font-size: 1.5rem; font-weight: 1000; letter-spacing: -.055em; margin-bottom: 14px; }
.site-footer h3 { color: white; margin-bottom: 14px; }
.site-footer p { line-height: 1.68; }
.site-footer a:not(.btn):not(.footer-brand) { display: block; color: rgba(255,255,255,.7); margin-bottom: 9px; transition: color .2s ease; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top: 22px; color: rgba(255,255,255,.56); font-size: .9rem; }

/* Motion */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 1050px) {
    .hero-grid, .brand-system, .trailer-showcase, .location-feature, .location-feature.reverse, .story-lab, .contact-lab, .footer-cta { grid-template-columns: 1fr; }
    .location-feature.reverse .location-photo { order: 0; }
    .section-heading.wide { grid-template-columns: 1fr; gap: 16px; }
    .drink-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .product-grid { grid-template-columns: 1fr; }
    .menu-studio { grid-template-columns: 1fr; }
    .menu-rail { display: none; }
    .gallery-wall { grid-template-columns: repeat(3, minmax(0,1fr)); }
    .page-hero-badge { position: static; width: fit-content; margin-top: 20px; }
}

@media (max-width: 820px) {
    :root { --nav-h: 68px; }
    .container { width: min(var(--max), calc(100% - 28px)); }
    .site-nav-shell { top: 0; padding-block: 8px; }
    .navbar { border-radius: 24px; }
    .hamburger-menu { display: block; }
    .nav-actions { display: none; }
    .nav-links { position: fixed; top: 88px; left: 14px; right: 14px; display: grid; gap: 8px; padding: 16px; border-radius: 28px; background: rgba(255,250,240,.96); border: 1px solid rgba(255,255,255,.66); box-shadow: var(--shadow); transform: translateY(-16px); opacity: 0; pointer-events: none; transition: .25s ease; }
    .nav-links.active { transform: translateY(0); opacity: 1; pointer-events: auto; }
    .nav-links a { width: 100%; padding: 14px 16px; }
    .nav-mobile-cta { display: inline-flex !important; justify-content: center; background: var(--yellow); color: var(--purple-950) !important; }
    .hero-lab { padding-top: 44px; }
    .hero-grid { min-height: auto; }
    .glass-stage { min-height: 520px; }
    .premium-cup { scale: .86; }
    .signal-strip { grid-template-columns: 1fr; }
    .drink-grid, .gallery-wall, .footer-grid { grid-template-columns: 1fr; }
    .gallery-tile:nth-child(6n+1) { grid-column: span 1; grid-row: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .footer-cta { align-items: start; }
    .menu-toolbar { top: 92px; }
}

@media (max-width: 640px) {
    .product-tile { grid-template-columns: 1fr; min-height: auto; }
    .tile-visual { justify-self: start; order: -1; width: 96px; height: 132px; margin-bottom: 4px; }
    .product-copy { width: 100%; }
    .product-tile h3 { font-size: 1.28rem; }
    .category-head { flex-direction: column; }
    .hours-grid div { display: grid; gap: 4px; }
}

@media (max-width: 540px) {
    .hero-copy h1 { font-size: 3.05rem; }
    .hero-actions .btn { width: 100%; }
    .glass-stage { min-height: 460px; }
    .premium-cup { scale: .72; }
    .micro-card { display: none; }
    .trailer-showcase, .brand-copy { padding: 26px; }
    .page-hero { padding-top: 54px; }
    .footer-bottom { display: grid; }
    .brand-text { font-size: 1rem; }
    .brand-orb { width: 42px; height: 42px; }
    .page-hero h1, .section-heading h2, .brand-copy h2, .trailer-copy h2, .location-info h2, .story-copy h2, .contact-panel h2, .footer-cta h2 { letter-spacing: -.045em; }
}

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


/* =========================================================
   MEDIA FEATURE ADDITION — Cleveland Asian Cultural Festival
========================================================= */
.media-proof-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 14% 16%, rgba(255,230,109,.30), transparent 34rem),
        radial-gradient(circle at 92% 20%, rgba(110,58,255,.16), transparent 30rem);
}
.media-proof-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 36px;
    align-items: center;
}
.media-proof-copy h2 {
    font-size: clamp(2.25rem, 4.8vw, 4.85rem);
    line-height: .94;
    letter-spacing: -.065em;
    color: var(--purple-950);
    margin-bottom: 18px;
}
.media-proof-copy p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 24px;
}
.media-proof-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.media-proof-card {
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease;
}
.media-proof-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 90px rgba(42,19,86,.20);
}
.media-proof-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    padding: 9px 13px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--yellow), var(--gold-500));
    color: var(--purple-950);
    font-size: .75rem;
    font-weight: 1000;
    letter-spacing: .12em;
    text-transform: uppercase;
    box-shadow: 0 14px 34px rgba(255,184,0,.24);
}
.media-proof-image {
    position: relative;
    height: 330px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-600), var(--gold-500));
}
.media-proof-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.media-proof-card:hover .media-proof-image img { transform: scale(1.06); }
.media-fallback {
    display: none;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(255,255,255,.92);
    font-size: clamp(2.2rem, 7vw, 5rem);
    font-weight: 1000;
    letter-spacing: -.07em;
    background:
        radial-gradient(circle at 25% 25%, rgba(255,255,255,.32), transparent 22rem),
        linear-gradient(135deg, var(--purple-600), var(--gold-500));
}
.media-proof-card-copy {
    padding: 28px;
}
.media-proof-card-copy span {
    display: block;
    color: var(--purple-600);
    font-weight: 1000;
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.media-proof-card-copy h3 {
    color: var(--purple-950);
    font-size: 1.65rem;
    line-height: 1.05;
    letter-spacing: -.045em;
    margin-bottom: 10px;
}
.media-proof-card-copy p {
    color: var(--muted);
    line-height: 1.66;
    margin-bottom: 12px;
}
.media-proof-card-copy strong { color: var(--purple-700); }

.media-hero-page {
    position: relative;
    min-height: 78vh;
    display: grid;
    place-items: center;
    padding: 90px 0;
    text-align: center;
    overflow: hidden;
}
.media-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}
.media-orb-one {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 18%;
    background: rgba(255,230,109,.28);
}
.media-orb-two {
    width: 480px;
    height: 480px;
    right: -160px;
    top: 10%;
    background: rgba(110,58,255,.18);
}
.media-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 980px;
}
.media-hero-inner .eyebrow { margin-inline: auto; }
.media-hero-inner h1 {
    font-size: clamp(3.1rem, 8.2vw, 7.4rem);
    line-height: .88;
    letter-spacing: -.088em;
    color: var(--purple-950);
    margin-bottom: 24px;
}
.media-hero-inner p {
    max-width: 760px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 1.12rem;
    line-height: 1.78;
}
.media-hero-actions { justify-content: center; }
.media-story-grid {
    display: grid;
    grid-template-columns: .96fr 1.04fr;
    gap: 44px;
    align-items: center;
}
.media-story-visual {
    min-height: 540px;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--purple-600), var(--gold-500));
}
.media-story-visual img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}
.media-large-fallback {
    display: none;
    min-height: 540px;
    padding: 38px;
    place-content: end start;
    color: white;
    background:
        radial-gradient(circle at 20% 18%, rgba(255,255,255,.28), transparent 18rem),
        radial-gradient(circle at 80% 78%, rgba(255,230,109,.36), transparent 20rem),
        linear-gradient(135deg, var(--purple-800), var(--purple-600) 52%, var(--gold-500));
}
.media-large-fallback span {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    margin-bottom: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .75rem;
}
.media-large-fallback strong {
    display: block;
    max-width: 420px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: .95;
    letter-spacing: -.065em;
}
.media-large-fallback em {
    display: block;
    margin-top: 12px;
    font-style: normal;
    font-weight: 1000;
    color: var(--yellow);
}
.media-story-copy h2,
.section-heading.center h2,
.event-booking-card h2 {
    font-size: clamp(2.25rem, 4.8vw, 4.85rem);
    line-height: .95;
    letter-spacing: -.065em;
    color: var(--purple-950);
    margin-bottom: 18px;
}
.media-story-copy p,
.section-heading.center p,
.event-booking-card p {
    color: var(--muted);
    font-size: 1.04rem;
    line-height: 1.78;
    margin-bottom: 16px;
}
.media-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 12px;
    margin-top: 24px;
}
.media-stat-grid div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.66);
    box-shadow: var(--shadow-soft);
}
.media-stat-grid span {
    display: block;
    color: var(--purple-600);
    font-size: 1.15rem;
    font-weight: 1000;
    margin-bottom: 4px;
}
.media-stat-grid strong {
    color: var(--purple-950);
    line-height: 1.35;
}
.news-feature-section {
    padding: 94px 0;
    background:
        radial-gradient(circle at 14% 18%, rgba(255,230,109,.22), transparent 30rem),
        linear-gradient(180deg, rgba(255,255,255,.42), rgba(248,242,255,.56));
}
.section-heading.center {
    max-width: 820px;
    margin: 0 auto 36px;
    text-align: center;
}
.news-video-shell {
    width: min(100%, 860px);
    max-width: 860px;
    margin-inline: auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--purple-950);
    box-shadow: 0 28px 70px rgba(42,19,86,.22);
    aspect-ratio: 16 / 9;
}
.news-video-shell iframe,
.news-video-player,
.video-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    display: block;
}
.news-video-player {
    object-fit: cover;
    background: var(--purple-950);
}
.video-placeholder {
    display: grid;
    place-items: center;
    padding: 30px;
    text-align: center;
    color: white;
    background:
        radial-gradient(circle at 30% 20%, rgba(255,230,109,.18), transparent 28rem),
        linear-gradient(135deg, var(--purple-950), var(--purple-700));
}
.video-placeholder h3 {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    letter-spacing: -.04em;
    margin: 14px 0 8px;
}
.video-placeholder p {
    color: rgba(255,255,255,.72);
    line-height: 1.65;
}
.video-placeholder code {
    color: var(--yellow);
    font-weight: 900;
}
.play-button {
    display: inline-grid;
    place-items: center;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--gold-500));
    color: var(--purple-950);
    box-shadow: 0 18px 42px rgba(255,184,0,.32);
}
.news-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}
.press-strip-section { padding: 54px 0; }
.press-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 14px;
}
.press-strip div {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.66);
    box-shadow: var(--shadow-soft);
}
.press-strip span {
    display: block;
    color: var(--purple-600);
    font-size: .76rem;
    font-weight: 1000;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.press-strip strong {
    color: var(--purple-950);
    font-size: 1.08rem;
    line-height: 1.35;
}
.event-gallery-section { background: rgba(255,255,255,.28); }
.media-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 14px;
}
.media-gallery-item {
    position: relative;
    overflow: hidden;
    min-height: 310px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--purple-600), var(--gold-500));
    box-shadow: var(--shadow-soft);
}
.media-gallery-item img,
.gallery-fallback-card {
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform .35s ease;
}
.gallery-fallback-card {
    display: none;
    place-items: end start;
    padding: 22px;
    color: white;
    font-weight: 1000;
    font-size: 1.25rem;
    line-height: 1.15;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 12rem),
        linear-gradient(135deg, var(--purple-700), var(--gold-500));
}
.media-gallery-item:hover img { transform: scale(1.06); }
.event-booking-cta-section {
    padding: 94px 0;
    background:
        radial-gradient(circle at 18% 35%, rgba(255,230,109,.30), transparent 32rem),
        radial-gradient(circle at 82% 22%, rgba(110,58,255,.20), transparent 30rem);
}
.event-booking-card {
    max-width: 980px;
    padding: clamp(30px, 6vw, 70px);
    text-align: center;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,.68);
    border: 1px solid rgba(255,255,255,.68);
    box-shadow: var(--shadow);
}
.event-booking-card .kicker { justify-content: center; }
.event-booking-card p {
    max-width: 740px;
    margin-inline: auto;
    margin-bottom: 26px;
}

@media (max-width: 1050px) {
    .media-proof-grid,
    .media-story-grid {
        grid-template-columns: 1fr;
    }
    .media-gallery-grid {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 820px) {
    .media-proof-section,
    .news-feature-section,
    .event-booking-cta-section {
        padding: 64px 0;
    }
    .media-hero-page {
        min-height: auto;
        padding: 74px 0 66px;
    }
    .media-proof-actions,
    .news-actions {
        flex-direction: column;
    }
    .media-proof-actions .btn,
    .news-actions .btn,
    .media-hero-actions .btn {
        width: 100%;
    }
    .media-stat-grid,
    .press-strip {
        grid-template-columns: 1fr;
    }
    .media-story-visual,
    .media-story-visual img,
    .media-large-fallback {
        min-height: 380px;
        height: 380px;
    }
    .media-proof-image {
        height: 260px;
    }
    .news-video-shell {
        width: 100%;
        max-width: 100%;
        border-radius: 28px;
        aspect-ratio: 16 / 9;
    }
    .news-video-player {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .video-placeholder {
        min-height: 260px;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 560px) {
    .media-hero-inner h1 {
        font-size: clamp(2.85rem, 16vw, 4.4rem);
    }
    .media-gallery-grid {
        grid-template-columns: 1fr;
    }
    .media-gallery-item,
    .media-gallery-item img,
    .gallery-fallback-card {
        min-height: 270px;
        height: 270px;
    }
    .media-proof-card-copy {
        padding: 22px;
    }
    .news-video-shell {
        border-radius: 22px;
        aspect-ratio: 16 / 9;
    }
}
