/* =============================================================
   JESTERLIFT — shared design system
   Source of truth for tokens: 20260527-jesterlift-logo-system-final.html
   Court Black #0B0B0F · Stainless White #F5F6F7 · Royal Blue #1E40AF
   Festival Gold #FDD017 (accent-forward, never flat UI fills)
   ============================================================= */

:root {
  --court: #0B0B0F;
  --stainless: #F5F6F7;
  --royal: #1E40AF;
  --royal-mid: #2563EB;
  --royal-soft: #5b86ff;
  --gold: #FDD017;
  --gold-deep: #E0B400;
  --gold-soft: rgba(253, 208, 23, 0.16);
  --mercury: #9CA3AF;
  --mercury-light: #E5E7EB;
  --ink-2: #4a4f57;
  --display: 'Inter', system-ui, sans-serif;
  --body: 'Inter', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --max: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--stainless); color: var(--court); font-family: var(--body); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }

/* ---------- TOP BANNER ---------- */
.topbar { background: var(--royal); color: var(--stainless); font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em; }
.topbar .wrap { display: flex; justify-content: center; align-items: center; gap: 10px; padding: 9px 48px; }
.topbar a { font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { text-decoration: underline; }
.topbar .spark { color: var(--gold); }

/* ---------- NAV ---------- */
header.nav { position: sticky; top: 0; z-index: 50; background: rgba(245,246,247,0.86); backdrop-filter: saturate(140%) blur(10px); border-bottom: 1px solid var(--mercury-light); }
header.nav .wrap { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; padding-bottom: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand .wm { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.04em; line-height: 1; }
.brand .wm small { display: block; font-family: var(--mono); font-weight: 400; font-size: 9px; letter-spacing: 0.16em; color: var(--mercury); margin-top: 4px; }
.nav-links { display: flex; gap: 30px; align-items: center; font-size: 14px; font-weight: 500; }
.nav-links > a { position: relative; padding-bottom: 3px; }
/* gold underline-sweep on nav links */
.nav-links > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .28s var(--ease); }
.nav-links > a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a:not(.nav-cta):hover { color: var(--court); }
.nav-cta { background: var(--royal); color: var(--stainless); padding: 10px 18px; border-radius: 4px; font-size: 14px; font-weight: 500; transition: background .15s ease, box-shadow .2s ease; }
.nav-cta:hover { background: var(--royal-mid); box-shadow: 0 6px 18px rgba(253,208,23,0.28); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 4px; }

/* mobile drawer */
.mobile-menu { display: none; }
@media (max-width: 980px) {
  .mobile-menu { display: block; position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--court); color: var(--stainless); z-index: 70; transform: translateX(100%); transition: transform .32s var(--ease); padding: 88px 28px 28px; box-shadow: -20px 0 60px rgba(0,0,0,0.4); }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a { display: block; font-size: 18px; font-weight: 600; padding: 16px 0; border-bottom: 1px solid rgba(245,246,247,0.12); }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mm-cta { margin-top: 22px; background: var(--royal); text-align: center; border-radius: 6px; border-bottom: none; }
  .menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 60; opacity: 0; pointer-events: none; transition: opacity .3s ease; }
  .menu-overlay.open { opacity: 1; pointer-events: auto; }
  .mm-close { position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer; }
}

/* ---------- HERO ---------- */
.hero { background: var(--court); color: var(--stainless); position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: 70% center; }
/* black legibility gradient */
.hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11,11,15,0.94) 0%, rgba(11,11,15,0.86) 30%, rgba(11,11,15,0.42) 62%, rgba(11,11,15,0.26) 100%),
    linear-gradient(0deg, rgba(11,11,15,0.88) 0%, rgba(11,11,15,0.15) 38%, rgba(11,11,15,0.0) 60%); }
/* gold atmosphere — sits under the black scrim so text stays legible */
.hero-gold { position: absolute; inset: 0; z-index: 1; pointer-events: none; mix-blend-mode: screen;
  background:
    radial-gradient(60% 55% at 78% 38%, rgba(253,208,23,0.30) 0%, rgba(253,208,23,0.10) 38%, rgba(253,208,23,0) 70%),
    radial-gradient(40% 40% at 95% 85%, rgba(224,180,0,0.22) 0%, rgba(224,180,0,0) 70%); }
.hero-gold::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0.55; }
.hero .wrap { padding-top: 120px; padding-bottom: 120px; position: relative; z-index: 3; width: 100%; }
.hero .eyebrow { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #cdd9ff; background: rgba(37,99,235,0.28); border: 1px solid rgba(120,150,255,0.4); padding: 7px 13px; border-radius: 2px; margin-bottom: 28px; backdrop-filter: blur(4px); }
.hero h1 { font-family: var(--display); font-weight: 900; font-size: 84px; line-height: 0.98; letter-spacing: -0.045em; max-width: 920px; margin-bottom: 28px; text-shadow: 0 2px 30px rgba(0,0,0,0.55); }
.hero h1 .royal { color: var(--royal-soft); }
.hero h1 .gold { color: var(--gold); }
.hero .sub { font-size: 19px; color: #e3e6eb; max-width: 640px; line-height: 1.6; margin-bottom: 44px; text-shadow: 0 1px 14px rgba(0,0,0,0.7); }
.hero .sub b { color: #fff; font-weight: 600; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 16px; padding: 15px 26px; border-radius: 4px; transition: transform .12s ease, box-shadow .25s var(--ease), background .15s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--royal); color: var(--stainless); }
.btn-primary:hover { background: var(--royal-mid); box-shadow: 0 10px 30px rgba(253,208,23,0.30); }
.btn-gold { background: var(--gold); color: var(--court); }
.btn-gold:hover { background: var(--gold-deep); box-shadow: 0 10px 30px rgba(253,208,23,0.45); }
.btn-ghost { background: transparent; color: var(--stainless); border: 1px solid rgba(245,246,247,0.28); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.badges { display: flex; flex-wrap: wrap; gap: 10px 12px; }
.badge-pill { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: #d6d9de; border: 1px solid rgba(245,246,247,0.18); padding: 8px 13px; border-radius: 100px; }
.badge-pill .dot { color: var(--gold); margin-right: 6px; }

/* floating logo badges over the hero products */
.hero-badges { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-badge { position: absolute; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.45)); will-change: transform; }
.hero-badge svg { display: block; width: 100%; height: 100%; }
.hero-badge.b1 { width: 92px; height: 92px; right: 20%; top: 30%; }
.hero-badge.b2 { width: 116px; height: 116px; right: 9%; top: 52%; }
.hero-badge.b3 { width: 74px; height: 74px; right: 30%; top: 66%; }
@media (max-width: 980px) { .hero-badges { display: none; } }

/* ---------- SECTION SCAFFOLD ---------- */
section.block { padding: 104px 0; border-bottom: 1px solid var(--mercury-light); }
.section-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mercury); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 9px; }
.section-label::before { content: ""; width: 18px; height: 2px; background: var(--gold); display: inline-block; }
.section-title { font-family: var(--display); font-weight: 800; font-size: 52px; line-height: 1.05; letter-spacing: -0.04em; margin-bottom: 22px; max-width: 820px; }
.section-lede { font-size: 17px; line-height: 1.6; color: var(--ink-2); max-width: 760px; margin-bottom: 52px; }

/* ---------- COMPARISON TABLE ---------- */
.compare-table { width: 100%; border-collapse: collapse; background: white; border: 1px solid var(--mercury-light); border-radius: 8px; overflow: hidden; }
.compare-table thead th { font-family: var(--mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--mercury); text-align: right; padding: 18px 24px; border-bottom: 1px solid var(--mercury-light); background: var(--stainless); }
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td { padding: 22px 24px; border-bottom: 1px solid var(--mercury-light); text-align: right; font-family: var(--mono); font-size: 15px; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody td:first-child { text-align: left; font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.compare-table .their { color: var(--mercury); text-decoration: line-through; }
.compare-table .ours { color: var(--court); font-weight: 500; font-size: 17px; }
.compare-table .save { color: var(--royal); font-weight: 500; }
.table-note { font-family: var(--mono); font-size: 12px; color: var(--mercury); margin-top: 18px; letter-spacing: 0.04em; }

/* ---------- CATALOG ---------- */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod-card { background: white; border: 1px solid var(--mercury-light); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s var(--ease), transform .2s var(--ease); }
.prod-card:hover { box-shadow: 0 16px 40px rgba(11,11,15,0.10); transform: translateY(-4px); }
.prod-visual { position: relative; height: 240px; background: #0d0d12; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.prod-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-visual .corner-mark { position: absolute; top: 14px; right: 14px; width: 32px; height: 32px; opacity: 0.85; }
.prod-visual .matbadge { position: absolute; bottom: 14px; left: 14px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: var(--stainless); background: rgba(11,11,15,0.7); border: 1px solid rgba(245,246,247,0.18); padding: 5px 9px; border-radius: 2px; }
.prod-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.prod-body .sku { font-family: var(--mono); font-size: 11px; color: var(--mercury); letter-spacing: 0.1em; margin-bottom: 6px; }
.prod-body .name { font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 6px; }
.prod-body .desc { font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 16px; }
.spec-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.spec-chips span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em; color: #444; background: var(--stainless); border: 1px solid var(--mercury-light); padding: 5px 9px; border-radius: 3px; }
.price-block { margin-top: auto; padding-top: 16px; border-top: 1px solid var(--mercury-light); }
.price-block .their { font-family: var(--mono); font-size: 13px; color: var(--mercury); text-decoration: line-through; }
.price-block .ours { font-family: var(--mono); font-weight: 500; font-size: 27px; color: var(--court); margin: 2px 0; }
.price-block .lead { font-family: var(--mono); font-size: 11px; color: var(--mercury); letter-spacing: 0.05em; }
.prod-foot { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-top: 1px solid var(--mercury-light); background: var(--stainless); }
.prod-foot .matopt { font-family: var(--mono); font-size: 11px; color: var(--mercury); }
.prod-foot .matopt b { color: var(--royal); font-weight: 500; }
.prod-foot a { font-family: var(--mono); font-size: 12px; color: var(--royal); font-weight: 500; }
.prod-foot a:hover { text-decoration: underline; }

/* ---------- CLAIMS ---------- */
.claims-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--mercury-light); border-radius: 8px; overflow: hidden; background: white; }
.claim { padding: 40px 36px; border-right: 1px solid var(--mercury-light); }
.claim:last-child { border-right: none; }
.claim .num { font-family: var(--mono); font-size: 13px; color: var(--royal); font-weight: 500; letter-spacing: 0.1em; margin-bottom: 20px; }
.claim h3 { font-family: var(--display); font-weight: 700; font-size: 23px; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 14px; }
.claim p { font-size: 15px; line-height: 1.6; color: #555; }

/* ---------- VALIDATION PACK ---------- */
.vp-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.vp-list { list-style: none; }
.vp-list li { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--mercury-light); font-size: 16px; }
.vp-list li:last-child { border-bottom: none; }
.vp-list li .check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--royal); color: white; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.vp-list li .label b { font-weight: 600; }
.vp-list li .label span { color: var(--mercury); font-family: var(--mono); font-size: 12px; display: block; margin-top: 2px; letter-spacing: 0.04em; }
.vp-card { background: var(--court); color: var(--stainless); border-radius: 8px; padding: 40px; }
.vp-card h4 { font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 18px; letter-spacing: -0.02em; }
.vp-card .compliance { display: flex; flex-wrap: wrap; gap: 8px; }
.vp-card .compliance span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: #cfd3d9; border: 1px solid rgba(245,246,247,0.2); padding: 7px 11px; border-radius: 3px; }
.vp-card .seal { margin-top: 26px; padding-top: 22px; border-top: 1px solid rgba(245,246,247,0.14); font-family: var(--mono); font-size: 12px; color: var(--mercury); line-height: 1.6; }

/* ---------- CTA BANNER ---------- */
.cta { background: var(--royal); color: var(--stainless); position: relative; overflow: hidden; }
.cta .wrap { padding: 96px 48px; position: relative; z-index: 2; }
.cta-mark { position: absolute; right: -70px; bottom: -90px; width: 420px; height: 420px; opacity: 0.13; }
.cta h2 { font-family: var(--display); font-weight: 800; font-size: 64px; letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 18px; }
.cta h2 .strike { color: rgba(245,246,247,0.55); text-decoration: line-through; text-decoration-thickness: 3px; }
.cta h2 .gold { color: var(--gold); }
.cta .links { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; font-weight: 600; font-size: 16px; }
.cta .links a:first-child { background: var(--stainless); color: var(--court); padding: 14px 24px; border-radius: 4px; }
.cta .links a:last-child { border-bottom: 1px solid rgba(245,246,247,0.5); padding-bottom: 2px; }

/* ---------- CONTACT FORM (shared) ---------- */
.contact-cta { background: var(--court); color: var(--stainless); position: relative; overflow: hidden; }
.contact-cta .wrap { padding: 96px 48px; position: relative; z-index: 2; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-cta .cc-mark { position: absolute; left: -80px; top: -80px; width: 360px; height: 360px; opacity: 0.10; z-index: 1; }
.contact-intro .section-label { color: var(--mercury); }
.contact-intro h2 { font-family: var(--display); font-weight: 800; font-size: 42px; letter-spacing: -0.035em; line-height: 1.05; margin-bottom: 18px; }
.contact-intro p { font-size: 16px; line-height: 1.65; color: #c9cdd4; max-width: 420px; margin-bottom: 28px; }
.contact-detail { font-family: var(--mono); font-size: 13px; color: var(--mercury); line-height: 1.9; }
.contact-detail b { color: var(--stainless); font-weight: 500; }
.contact-detail .gold { color: var(--gold); }
.jl-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jl-form .full { grid-column: 1 / -1; }
.jl-field { display: flex; flex-direction: column; gap: 7px; }
.jl-field label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mercury); }
.jl-field label .req { color: var(--gold); }
.jl-field input, .jl-field select, .jl-field textarea {
  background: rgba(245,246,247,0.04); border: 1px solid rgba(245,246,247,0.18); border-radius: 5px;
  padding: 13px 14px; color: var(--stainless); font-family: var(--body); font-size: 15px; transition: border-color .18s ease, box-shadow .18s ease; }
.jl-field textarea { min-height: 120px; resize: vertical; }
.jl-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239CA3AF' stroke-width='1.6' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.jl-field input:focus, .jl-field select:focus, .jl-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-soft); }
.jl-field input::placeholder, .jl-field textarea::placeholder { color: #6b7077; }
.jl-field.invalid input, .jl-field.invalid select, .jl-field.invalid textarea { border-color: #f87171; box-shadow: 0 0 0 3px rgba(248,113,113,0.18); }
.jl-field .err { font-family: var(--mono); font-size: 11px; color: #f87171; display: none; }
.jl-field.invalid .err { display: block; }
.jl-form .form-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.jl-form .form-note { font-family: var(--mono); font-size: 11px; color: var(--mercury); }
.form-success { grid-column: 1 / -1; display: none; background: var(--gold-soft); border: 1px solid var(--gold); border-radius: 6px; padding: 22px 24px; }
.form-success.show { display: block; }
.form-success h4 { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--gold); margin-bottom: 6px; }
.form-success p { font-size: 14px; color: #d7dadf; }
.jl-form.submitted .jl-field, .jl-form.submitted .form-foot { display: none; }
/* compact variant (legal pages) */
.contact-cta.compact .wrap { grid-template-columns: 1fr; gap: 28px; padding: 64px 48px; text-align: center; }
.contact-cta.compact .contact-intro p { margin-left: auto; margin-right: auto; }
.contact-cta.compact .jl-form { max-width: 640px; margin: 0 auto; }

/* ---------- GENERIC PAGE HERO (sub-pages) ---------- */
.page-hero { background: var(--court); color: var(--stainless); position: relative; overflow: hidden; }
.page-hero .wrap { padding: 120px 48px 96px; position: relative; z-index: 2; }
.page-hero .gold-band { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: linear-gradient(90deg, var(--royal), var(--gold)); z-index: 2; }
.page-hero .pm { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 380px; height: 380px; opacity: 0.10; z-index: 1; }
.page-hero .eyebrow { display: inline-flex; align-items: center; gap: 9px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.page-hero h1 { font-family: var(--display); font-weight: 900; font-size: 64px; line-height: 1.0; letter-spacing: -0.045em; max-width: 880px; margin-bottom: 20px; }
.page-hero p.lede { font-size: 19px; line-height: 1.6; color: #cdd2d8; max-width: 680px; }
.breadcrumbs { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--mercury); margin-bottom: 24px; }
.breadcrumbs a:hover { color: var(--gold); }

/* prose for legal / about body */
.prose { max-width: 760px; }
.prose h2 { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -0.03em; margin: 44px 0 14px; }
.prose h3 { font-family: var(--display); font-weight: 700; font-size: 20px; margin: 28px 0 10px; }
.prose p { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 16px; }
.prose ul { margin: 0 0 16px 22px; }
.prose li { font-size: 16px; line-height: 1.7; color: #333; margin-bottom: 8px; }

/* ---------- ABOUT: values + stats + festival band ---------- */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: white; border: 1px solid var(--mercury-light); border-radius: 8px; padding: 32px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,11,15,0.08); }
.value-card .vmark { width: 44px; height: 44px; margin-bottom: 18px; }
.value-card h3 { font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; margin-bottom: 10px; }
.value-card p { font-size: 15px; line-height: 1.6; color: #555; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: left; }
.stat .big { font-family: var(--display); font-weight: 800; font-size: 48px; letter-spacing: -0.04em; line-height: 1; }
.stat .big .gold { color: var(--gold-deep); }
.stat .cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mercury); margin-top: 10px; }
.festival-band { background: var(--gold); color: var(--court); position: relative; overflow: hidden; }
.festival-band .wrap { padding: 72px 48px; position: relative; z-index: 2; display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.festival-band .fb-mark { width: 120px; height: 120px; flex-shrink: 0; }
.festival-band h2 { font-family: var(--display); font-weight: 800; font-size: 40px; letter-spacing: -0.035em; line-height: 1.05; max-width: 720px; }
.festival-band p { font-size: 16px; line-height: 1.6; color: #3a3000; max-width: 720px; margin-top: 12px; }

/* ---------- PRESS: media kit ---------- */
.kit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kit-card { background: white; border: 1px solid var(--mercury-light); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.kit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,11,15,0.08); }
.kit-stage { height: 180px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--mercury-light); }
.kit-stage.dark { background: var(--court); }
.kit-stage.royal { background: var(--royal); }
.kit-stage.gold { background: var(--gold); }
.kit-stage.light { background: var(--stainless); }
.kit-stage svg { width: 96px; height: 96px; }
.kit-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.kit-body h3 { font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.kit-body p { font-size: 14px; color: #555; line-height: 1.55; margin-bottom: 16px; }
.kit-body .dl { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--royal); font-weight: 500; }
.kit-body .dl:hover { text-decoration: underline; }
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.swatch { border: 1px solid var(--mercury-light); border-radius: 8px; overflow: hidden; }
.swatch .chip { height: 110px; }
.swatch .meta { padding: 14px 16px; }
.swatch .meta .nm { font-family: var(--display); font-weight: 600; font-size: 15px; }
.swatch .meta .hex { font-family: var(--mono); font-size: 12px; color: var(--mercury); margin-top: 4px; }
.boiler { background: white; border: 1px solid var(--mercury-light); border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; padding: 28px 32px; }
.boiler p { font-size: 15px; line-height: 1.7; color: #333; }
.press-list { list-style: none; }
.press-list li { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--mercury-light); }
.press-list li:last-child { border-bottom: none; }
.press-list .date { font-family: var(--mono); font-size: 12px; color: var(--mercury); min-width: 120px; }
.press-list .pt { font-family: var(--display); font-weight: 600; font-size: 17px; }
.press-list .tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-deep); }

/* ---------- FOOTER ---------- */
footer { background: var(--court); color: var(--mercury); padding: 72px 0 40px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(245,246,247,0.1); }
.foot-brand .footer-lockup { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.foot-brand .footer-lockup .wm { font-family: var(--display); font-weight: 800; font-size: 24px; color: var(--stainless); letter-spacing: -0.04em; }
.foot-brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.foot-brand .tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; color: var(--mercury); margin-top: 16px; }
.foot-brand .tag .gold { color: var(--gold); }
.foot-col h5 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stainless); margin-bottom: 18px; }
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 11px; font-size: 14px; }
.foot-col a:hover { color: var(--gold); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; flex-wrap: wrap; gap: 12px; }
.foot-legal-links { display: inline-flex; gap: 22px; }
.foot-legal-links a:hover { color: var(--gold); text-decoration: underline; }

/* =============================================================
   ANIMATIONS
   ============================================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* scroll-reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* hero entrance (staggered) */
.hero .anim { opacity: 0; animation: fadeUp .8s var(--ease) forwards; }
.hero .anim.a1 { animation-delay: .05s; }
.hero .anim.a2 { animation-delay: .18s; }
.hero .anim.a3 { animation-delay: .32s; }
.hero .anim.a4 { animation-delay: .46s; }
.hero .anim.a5 { animation-delay: .60s; }

/* idle float on hero badges (JS adds parallax on top) */
.hero-badge { animation: floatY 6s ease-in-out infinite; }
.hero-badge.b2 { animation-duration: 7.5s; animation-delay: .6s; }
.hero-badge.b3 { animation-duration: 5.4s; animation-delay: 1.1s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero .anim { opacity: 1 !important; animation: none !important; }
  .hero-badge { animation: none !important; }
  .btn:hover, .prod-card:hover, .value-card:hover, .kit-card:hover { transform: none !important; }
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 980px) {
  .wrap { padding: 0 24px; }
  .topbar .wrap, .cta .wrap, .contact-cta .wrap, .page-hero .wrap, .festival-band .wrap { padding-left: 24px; padding-right: 24px; }
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .hero h1 { font-size: 48px; }
  .page-hero h1 { font-size: 40px; }
  .section-title { font-size: 34px; }
  .cta h2 { font-size: 40px; }
  .contact-cta .wrap { grid-template-columns: 1fr; gap: 36px; }
  .jl-form { grid-template-columns: 1fr; }
  .catalog-grid, .claims-grid, .values-grid, .kit-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .claim { border-right: none; border-bottom: 1px solid var(--mercury-light); }
  .claim:last-child { border-bottom: none; }
  .vp-layout { grid-template-columns: 1fr; gap: 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .compare-table thead { display: none; }
  .compare-table tbody td { display: block; text-align: right; }
  .compare-table tbody td:first-child { text-align: left; border-top: 2px solid var(--mercury-light); }
  .compare-table tbody td::before { content: attr(data-label); float: left; font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mercury); }
}
