/* ===========================================================================
   SEO landing pages — city / lake / service-area / service templates.
   Loaded after visual-upgrade.css. Colors from seasonal --c-* vars only.
   Reuses existing primitives (.section,.feature,.split,.btn,.hero-x,.cta-x).
   =========================================================================== */

/* ---- Breadcrumbs --------------------------------------------------------- */
.crumbs{padding:.9rem 20px .2rem;font-size:.85rem;color:var(--c-ink-soft);max-width:var(--maxw);margin:0 auto}
.crumbs a{color:var(--c-ink-soft)}
.crumbs a:hover{color:var(--c-primary)}
.crumbs__sep{margin:0 .4rem;color:var(--c-line)}
.crumbs__cur{color:var(--c-primary-deep);font-weight:700}

/* ---- Long-form prose blocks --------------------------------------------- */
.prose{max-width:760px}
.prose p{font-size:1.06rem;color:var(--c-ink)}
.prose h2{margin-top:1.8rem}
.prose h3{margin-top:1.4rem}
.lead-para{font-size:1.15rem;color:var(--c-ink)}

/* ---- Internal-link cloud (varied anchor chips) -------------------------- */
.link-cloud{display:flex;flex-wrap:wrap;gap:.6rem;justify-content:center}
.link-chip{display:inline-block;padding:.5rem .9rem;border-radius:999px;background:var(--c-surface);
  border:1px solid var(--c-line);font-weight:600;font-size:.92rem;color:var(--c-primary-deep);box-shadow:var(--shadow)}
.link-chip:hover{text-decoration:none;border-color:var(--c-primary);transform:translateY(-1px)}
.link-chip--alt{background:var(--c-bg);color:var(--c-ink-soft)}

/* ---- Centralized pricing: teaser cards ---------------------------------- */
.price-teaser{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.2rem;max-width:840px;margin:0 auto}
.price-teaser__card{display:flex;flex-direction:column;background:var(--c-surface);border:1px solid var(--c-line);
  border-radius:16px;padding:1.4rem;box-shadow:var(--shadow);transition:transform .2s var(--ease),box-shadow .2s var(--ease)}
.price-teaser__card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.price-teaser__top{display:flex;justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:.3rem}
.price-teaser__top h3{margin:0;font-size:1.1rem}
.price-teaser__price{font-size:1.5rem;font-weight:900;color:var(--c-primary);white-space:nowrap}
.price-teaser__meta{color:var(--c-ink-soft);font-size:.9rem;margin-bottom:.6rem}
.price-teaser__card .btn{margin-top:auto}

/* ---- Centralized pricing: CTA strip ------------------------------------- */
.price-cta{background:var(--c-primary-deep);color:#fff;padding:2.4rem 0;margin:0}
.price-cta__inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.price-cta__copy h2{color:#fff;margin:0 0 .3rem}
.price-cta__line{color:rgba(255,255,255,.9);margin:0;font-size:1.05rem}
.price-cta__line strong{color:var(--c-accent)}
.price-cta__actions{display:flex;gap:.7rem;flex-wrap:wrap}
.price-cta__actions .btn-ghost{color:#fff;border-color:rgba(255,255,255,.5)}

/* ---- City page: quick facts / info grid --------------------------------- */
.fact-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:1rem}
.fact{background:var(--c-surface);border:1px solid var(--c-line);border-left:4px solid var(--c-section-accent);
  border-radius:12px;padding:1rem 1.1rem;box-shadow:var(--shadow)}
.fact__k{font-size:.78rem;text-transform:uppercase;letter-spacing:.5px;color:var(--c-ink-soft);font-weight:700}
.fact__v{font-size:1.05rem;font-weight:700;color:var(--c-primary-deep);margin-top:.2rem}

/* ---- City page: angle cards (drive / nearby / seasonal) ----------------- */
.angle-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.2rem}
.angle{background:var(--c-surface);border:1px solid var(--c-line);border-radius:16px;padding:1.5rem;box-shadow:var(--shadow)}
.angle__icon{font-size:1.7rem;margin-bottom:.5rem}
.angle h3{font-size:1.12rem;margin:0 0 .4rem}
.angle p{color:var(--c-ink-soft);margin:0}

/* ---- Lake comparison table (comparison layout) -------------------------- */
.cmp-table{width:100%;border-collapse:collapse;background:var(--c-surface);border-radius:12px;overflow:hidden;box-shadow:var(--shadow)}
.cmp-table th,.cmp-table td{padding:.75rem .9rem;text-align:left;border-bottom:1px solid var(--c-line);font-size:.95rem}
.cmp-table th{background:var(--c-bg);color:var(--c-primary-deep);font-weight:800}
.cmp-table tr:last-child td{border-bottom:0}
.cmp-table .cmp-lake{font-weight:700;color:var(--c-primary)}

/* ---- "What to bring" checklist ------------------------------------------ */
.bring-list{list-style:none;padding:0;margin:0;display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:.6rem}
.bring-list li{background:var(--c-surface);border:1px solid var(--c-line);border-radius:10px;padding:.6rem .9rem;font-weight:600;font-size:.95rem}
.bring-list li::before{content:"✓ ";color:var(--c-primary);font-weight:900}

/* ---- Service-area hub grid ---------------------------------------------- */
.region-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.3rem}
.region-card{position:relative;border-radius:18px;overflow:hidden;min-height:240px;display:flex;align-items:flex-end;
  color:#fff;box-shadow:var(--shadow);isolation:isolate}
.region-card img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2;transition:transform .6s var(--ease)}
.region-card::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(10,30,50,.15),rgba(10,30,50,.88))}
.region-card:hover img{transform:scale(1.07)}
.region-card__body{padding:1.4rem}
.region-card__body h3{color:#fff;margin:0 0 .3rem}
.region-card__body p{color:rgba(255,255,255,.9);font-size:.92rem;margin:0 0 .6rem}
.region-card__body .tag{display:inline-block;background:var(--c-accent);color:#16261d;font-weight:800;font-size:.78rem;
  padding:.2rem .6rem;border-radius:999px}

/* ---- City list under a region hub --------------------------------------- */
.city-list{columns:3 200px;column-gap:1.5rem}
.city-list a{display:block;padding:.3rem 0;font-weight:600}
@media(max-width:600px){.city-list{columns:2 140px}}

/* ---- Responsive video embed (About page) -------------------------------- */
.section--video{background:linear-gradient(180deg,var(--c-primary-deep),var(--c-primary))}
.section--video .sec-head .eyebrow{color:var(--c-accent)}
.section--video .sec-head h2{color:#fff}
.section--video .sec-head p{color:rgba(255,255,255,.85)}
.video-embed{position:relative;width:100%;max-width:960px;margin:0 auto;aspect-ratio:16/9;border-radius:18px;
  overflow:hidden;box-shadow:var(--shadow-float);border:3px solid rgba(255,255,255,.14);background:#000}
.video-embed iframe{position:absolute;inset:0;width:100%;height:100%;border:0}
@supports not (aspect-ratio:16/9){.video-embed{height:0;padding-bottom:56.25%}}

/* ---- Radio jingle band (branded landing-page player) -------------------- */
.jingle-band{background:
    radial-gradient(120% 140% at 0% 0%, rgba(255,255,255,.10), transparent 60%),
    linear-gradient(120deg,var(--c-primary),var(--c-primary-deep));
  color:#fff;padding:1.6rem 0;border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(0,0,0,.12)}
.jingle-band__inner{display:flex;align-items:center;gap:1.2rem;flex-wrap:wrap}
.jingle-band__icon{font-size:2rem;width:58px;height:58px;flex:none;display:grid;place-items:center;border-radius:50%;
  background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.28);box-shadow:0 6px 18px rgba(0,0,0,.25)}
.jingle-band__copy{flex:1;min-width:200px}
.jingle-band__copy h2{color:#fff;margin:0 0 .15rem;font-size:1.3rem;text-shadow:0 1px 2px rgba(0,0,0,.5)}
.jingle-band__copy p{color:rgba(255,255,255,.9);margin:0;font-size:.95rem;text-shadow:0 1px 2px rgba(0,0,0,.4)}
.jingle-player{height:42px;flex:none;width:min(360px,100%);border-radius:999px;background:rgba(255,255,255,.92);box-shadow:var(--shadow)}
@media(max-width:620px){.jingle-band__inner{justify-content:center;text-align:center}.jingle-player{width:100%}}

/* ---- Light-on-dark text: tight drop shadow for legibility --------------- */
/*  Applies ONLY to white/light text over dark/photo backgrounds — never to   */
/*  dark body copy on light surfaces.                                         */
.hero-x__eyebrow,
.hero-x .lede,
.hero-x .hero-card .btn-ghost,
.cta-x h2, .cta-x p,
.cta-band h2, .cta-band p,
.price-cta__copy h2, .price-cta__line,
.stats-strip .stat__num, .stats-strip .stat__label,
.lake-card__body h3, .lake-card__body p,
.region-card__body h3, .region-card__body p,
.section--video .sec-head h2, .section--video .sec-head p,
.site-footer .footer__brand, .site-footer h4, .site-footer .footer__muted,
.site-footer .footer__links a, .site-footer .footer-seo a, .site-footer .footer__phone{
  text-shadow:0 1px 2px rgba(0,0,0,.5);
}
.hero-x h1{text-shadow:0 4px 30px rgba(0,0,0,.45),0 1px 2px rgba(0,0,0,.55)}
.cta-x h2,.cta-band h2{text-shadow:0 2px 4px rgba(0,0,0,.55)}

/* ---- Custom polish: distinctive alternating panels --------------------- */
/*  Tinted sections (every other panel in the landing templates) get a real  */
/*  character instead of the flat surface→bg wash: a soft brand glow + a      */
/*  faint diagonal "water" texture + a hairline accent at the top edge.       */
/* .section--tint is a deep, themed DARK band so no two adjacent content panels
   are both light (glossy-magazine rhythm). Cards keep their own light background
   and pop on the dark. The text overrides below touch ONLY direct text
   (sec-head / prose / split / city-list / link chips) — never text inside cards. */
.section--tint{
  position:relative;color:rgba(255,255,255,.92);
  background:
    radial-gradient(120% 130% at 0% 0%, color-mix(in srgb, var(--c-primary) 55%, transparent), transparent 60%),
    linear-gradient(160deg, var(--c-primary-deep), #0c1622);
}
.section--tint > .wrap{position:relative;z-index:1}
@supports not (background: color-mix(in srgb, red 10%, white)){
  .section--tint{background:linear-gradient(160deg, var(--c-primary-deep), #0c1622)}
}
/* Shared light-text treatment for dark panels (tint + photo bands). */
.section--tint .sec-head .eyebrow,.section--photo .sec-head .eyebrow{color:var(--c-accent-warm)}
.section--tint .sec-head h2,.section--photo .sec-head h2{color:#fff;text-shadow:0 2px 6px rgba(0,0,0,.5)}
.section--tint .sec-head p,.section--photo .sec-head p{color:rgba(255,255,255,.9)}
.section--tint .sec-head a,.section--photo .sec-head a,.section--tint .prose a,.section--photo .prose a{color:var(--c-accent-warm)}
.section--tint .prose,.section--tint .prose p,.section--tint .prose h2,.section--tint .prose h3{color:rgba(255,255,255,.93)}
.section--tint .split__body p,.section--photo .split__body p{color:rgba(255,255,255,.92)}
.section--tint .split__body h2,.section--tint .split__body h3,.section--photo .split__body h2,.section--photo .split__body h3{color:#fff}
.section--tint .city-list a,.section--photo .city-list a{color:rgba(255,255,255,.88)}
.section--tint .city-list a:hover,.section--photo .city-list a:hover{color:#fff}
.section--tint .link-chip,.section--photo .link-chip{background:rgba(255,255,255,.13);color:#fff;border-color:rgba(255,255,255,.26);box-shadow:none}
.section--tint .link-chip:hover,.section--photo .link-chip:hover{border-color:#fff;background:rgba(255,255,255,.22)}
.section--tint .link-chip--alt,.section--photo .link-chip--alt{background:rgba(255,255,255,.06)}
.section--tint .deposit-note,.section--photo .deposit-note{background:rgba(255,255,255,.08);color:rgba(255,255,255,.9);border-color:rgba(255,255,255,.22)}
/* Cards lift on the dark panels (glossy magazine pop). */
.section--tint .feature,.section--tint .angle,.section--tint .price-teaser__card,.section--tint .fact,.section--tint .rate-card,.section--tint .blog-card,
.section--photo .feature,.section--photo .angle,.section--photo .price-teaser__card,.section--photo .fact,.section--photo .rate-card,.section--photo .blog-card{box-shadow:0 22px 50px rgba(0,0,0,.42)}
/* White cards on dark panels: force dark base text so inherited text (e.g. the
   "what to bring" checklist, comparison-table cells, list items) is never
   white-on-white. Sub-elements with their own color keep it. */
.section--tint .feature,.section--photo .feature,.section--tint .angle,.section--photo .angle,
.section--tint .trip-card,.section--photo .trip-card,.section--tint .price-teaser__card,.section--photo .price-teaser__card,
.section--tint .rate-card,.section--photo .rate-card,.section--tint .blog-card,.section--photo .blog-card,
.section--tint .fact,.section--photo .fact,
.section--tint .bring-list li,.section--photo .bring-list li,
.section--tint .cmp-table,.section--photo .cmp-table,
.section--tint .cmp-table td,.section--photo .cmp-table td{color:var(--c-ink)}
/* Refined section-header accent rule (adds polish to every section head). */
.sec-head h2{position:relative;display:inline-block;padding-bottom:.45rem}
.sec-head h2::after{content:"";position:absolute;left:50%;bottom:0;transform:translateX(-50%);
  width:54px;height:3px;border-radius:2px;background:var(--c-section-accent);opacity:.9}

/* ---- Footer: ONE cohesive footer (kills the "two footers" look) -------- */
.site-footer{position:relative;background:
    radial-gradient(120% 80% at 100% 0%, color-mix(in srgb, var(--c-primary) 35%, var(--c-primary-deep)), var(--c-primary-deep) 60%),
    var(--c-primary-deep);
  border-top:4px solid var(--c-section-accent)}
@supports not (background: color-mix(in srgb, red 10%, white)){.site-footer{background:var(--c-primary-deep)}}
.footer-top{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr 1fr;gap:1.6rem;padding-top:.5rem}
.footer-brandcol .footer__brand{font-size:1.15rem}
.footer-col h4{color:#fff;margin:0 0 .55rem;font-size:.95rem;letter-spacing:.3px}
.footer-col ul{list-style:none;padding:0;margin:0}
.footer-col a{color:rgba(255,255,255,.82);font-size:.9rem;display:block;padding:.2rem 0}
.footer-col a:hover{color:#fff}
@media(max-width:980px){.footer-top{grid-template-columns:1fr 1fr 1fr}.footer-brandcol{grid-column:1/-1;margin-bottom:.5rem}}
@media(max-width:560px){.footer-top{grid-template-columns:1fr 1fr}}

/* ---- Smooth cross-document page transition (blend old↔new, no flash) ----- */
@view-transition { navigation: auto; }
::view-transition-old(root),::view-transition-new(root){animation-duration:1.15s;animation-timing-function:cubic-bezier(.4,0,.2,1)}

/* ---- Water-temperature widget (current temps + gauge + trend) ----------- */
.wt-strip-sec,.wt-sec{background:linear-gradient(180deg,#eef4f8,#e6eef4)}
.wt-strip{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:1rem}
.wt-chip{display:flex;flex-direction:column;align-items:center;gap:.25rem;background:var(--c-surface);
  border:1px solid var(--c-line);border-radius:16px;padding:1.1rem 1rem;box-shadow:var(--shadow);
  transition:transform .2s var(--ease),box-shadow .2s var(--ease)}
.wt-chip:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);text-decoration:none}
.wt-chip__lake{font-weight:800;color:var(--c-primary-deep);font-size:.95rem;text-align:center}
.wt-chip__temp{font-size:2.7rem;font-weight:900;line-height:1}
.wt-chip__temp small{font-size:1rem;vertical-align:super;margin-left:2px;font-weight:800}
.wt-chip__cta{font-size:.82rem;color:var(--c-primary);font-weight:700}
.wt-card{display:grid;grid-template-columns:auto 1fr;gap:1rem 1.6rem;align-items:center;background:var(--c-surface);
  border:1px solid var(--c-line);border-radius:18px;padding:1.6rem;box-shadow:var(--shadow)}
.wt-now{text-align:center}
.wt-temp{font-size:4rem;font-weight:900;line-height:.9}
.wt-temp .wt-deg{font-size:1.4rem;vertical-align:super;margin-left:2px}
.wt-asof{font-size:.78rem;color:var(--c-ink-soft);margin-top:.35rem}
.wt-gauge-wrap{align-self:center}
.wt-gauge{width:100%;max-width:360px;height:auto}
.wt-insight{grid-column:1/-1;margin:0;background:var(--c-bg);border-left:4px solid var(--c-section-accent);
  border-radius:8px;padding:.7rem 1rem;color:var(--c-ink);font-size:.97rem}
.wt-trend-wrap{margin-top:1.5rem;background:var(--c-surface);border:1px solid var(--c-line);border-radius:16px;padding:1.4rem;box-shadow:var(--shadow)}
.wt-trend-title{margin:0 0 .6rem;font-size:1.1rem}
.wt-trend{width:100%;height:auto;display:block}
.wt-trend-note{font-size:.85rem;color:var(--c-ink-soft);margin:.6rem 0 0}
@media(max-width:620px){.wt-card{grid-template-columns:1fr;text-align:center}.wt-gauge-wrap{display:flex;justify-content:center}}

/* ---- "Mission control" high-tech theme for the live conditions dashboard -- */
.wt-strip-sec,.wt-sec{position:relative;overflow:hidden;
  background:radial-gradient(120% 130% at 0% 0%, #15324c, #0a1622 58%, #060d15)}
.wt-strip-sec::before,.wt-sec::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.6;
  background-image:linear-gradient(rgba(90,200,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(90,200,255,.055) 1px,transparent 1px);background-size:36px 36px}
.wt-strip-sec>.wrap,.wt-sec>.wrap{position:relative;z-index:1}
.wt-sec .sec-head .eyebrow,.wt-strip-sec .sec-head .eyebrow{color:#5ad0ff;letter-spacing:3px;font-family:ui-monospace,"Cascadia Code",monospace}
.wt-sec .sec-head h2,.wt-strip-sec .sec-head h2{color:#eaf6ff}
.wt-sec .sec-head p,.wt-strip-sec .sec-head p{color:rgba(214,232,248,.72)}
.wt-sec .sec-head a,.wt-strip-sec .sec-head a{color:#5ad0ff}
.wt-chip{background:rgba(14,32,48,.66);border:1px solid rgba(90,200,255,.26);
  box-shadow:0 14px 40px rgba(0,0,0,.5),inset 0 0 30px rgba(90,200,255,.05);backdrop-filter:blur(5px)}
.wt-chip__lake{color:#bcd6ea}
.wt-chip__cta{color:#5ad0ff}
.wt-chip__temp,.wt-temp{font-family:ui-monospace,"Cascadia Code",monospace;text-shadow:0 0 20px currentColor}
.wt-card,.wt-trend-wrap{position:relative;overflow:hidden;background:rgba(12,26,40,.7);border:1px solid rgba(90,200,255,.26);
  box-shadow:0 16px 46px rgba(0,0,0,.55),inset 0 0 40px rgba(90,200,255,.045);backdrop-filter:blur(5px)}
/* ambient scan-line sweep (looks "live") */
.wt-card::after,.wt-trend-wrap::after{content:"";position:absolute;left:0;right:0;top:0;height:40%;pointer-events:none;
  background:linear-gradient(180deg,rgba(90,200,255,.10),transparent);animation:wtscan 5.5s linear infinite}
@keyframes wtscan{0%{transform:translateY(-110%)}100%{transform:translateY(360%)}}
.wt-card>*,.wt-trend-wrap>*{position:relative;z-index:1}
.wt-asof{color:rgba(190,214,234,.62);font-family:ui-monospace,monospace}
.wt-insight{background:rgba(90,200,255,.08);border-left-color:#5ad0ff;color:#dcecfb}
.wt-trend-title{color:#eaf6ff}
.wt-trend-note{color:rgba(190,214,234,.6)}
/* pulsing LIVE telemetry badge + ambient equalizer "signal" */
.wt-live{display:inline-flex;align-items:center;gap:.4rem;font-family:ui-monospace,monospace;font-size:.7rem;
  letter-spacing:2px;color:#36e07f;text-transform:uppercase;margin-bottom:.3rem}
.wt-live::before{content:"";width:8px;height:8px;border-radius:50%;background:#36e07f;box-shadow:0 0 10px #36e07f;animation:wtpulse 1.5s ease-in-out infinite}
@keyframes wtpulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.35;transform:scale(.7)}}
.wt-eq{display:inline-flex;align-items:flex-end;gap:2px;height:14px;margin-left:.5rem;vertical-align:middle}
.wt-eq i{width:3px;background:#5ad0ff;border-radius:1px;transform-origin:bottom;animation:wteq 1s ease-in-out infinite}
.wt-eq i:nth-child(1){height:50%;animation-delay:0s}.wt-eq i:nth-child(2){height:90%;animation-delay:.12s}
.wt-eq i:nth-child(3){height:35%;animation-delay:.28s}.wt-eq i:nth-child(4){height:75%;animation-delay:.45s}
.wt-eq i:nth-child(5){height:55%;animation-delay:.6s}
@keyframes wteq{0%,100%{transform:scaleY(.35)}50%{transform:scaleY(1)}}

/* ---- Branded right-click context menu ----------------------------------- */
.ctx-menu{position:fixed;z-index:3000;min-width:220px;background:var(--c-surface);border:1px solid var(--c-line);
  border-radius:14px;box-shadow:0 22px 60px rgba(12,28,44,.32);padding:.45rem;display:none}
.ctx-menu.open{display:block;animation:ctxpop .12s ease}
@keyframes ctxpop{from{transform:translateY(-5px) scale(.97)}to{transform:none}}
.ctx-menu__head{display:flex;align-items:center;gap:.5rem;font-size:.72rem;text-transform:uppercase;letter-spacing:1px;
  color:var(--c-ink-soft);padding:.45rem .7rem .35rem;font-weight:800;border-bottom:1px solid var(--c-line);margin-bottom:.3rem}
.ctx-menu a{display:flex;align-items:center;gap:.6rem;padding:.62rem .75rem;border-radius:9px;color:var(--c-primary-deep);
  font-weight:700;font-size:.95rem;text-decoration:none}
.ctx-menu a:hover{background:var(--c-bg);text-decoration:none;transform:none}
.ctx-menu a.ctx-call{color:var(--c-button-text);background:var(--c-button);margin-top:.2rem}
.ctx-menu a.ctx-call:hover{background:var(--c-primary-deep);color:#fff}

/* ---- Footer SEO link columns (legacy hook, retained) -------------------- */
.footer-seo ul{list-style:none;padding:0;margin:0}
.footer-seo a{color:rgba(255,255,255,.82);font-size:.9rem;display:block;padding:.18rem 0}

/* ===========================================================================
   Jingle panel — full Parkway-style section with EQ animation + decorative bar
   =========================================================================== */
.section--jingle{position:relative;overflow:hidden;padding:3.4rem 0 0;color:#fff;isolation:isolate;
  background:
    radial-gradient(100% 130% at 0% 0%, color-mix(in srgb,var(--c-accent) 16%,transparent), transparent 55%),
    linear-gradient(135deg, var(--c-primary-deep), var(--c-primary));}
@supports not (background: color-mix(in srgb, red 10%, white)){.section--jingle{background:linear-gradient(135deg,var(--c-primary-deep),var(--c-primary))}}
.section--jingle .eyebrow{color:var(--c-accent-warm);text-transform:uppercase;letter-spacing:3px;font-weight:800;font-size:.82rem}
.jingle{display:grid;grid-template-columns:1.05fr .95fr;gap:2.5rem;align-items:center;padding-bottom:2.6rem}
.jingle__copy h2{color:#fff;font-size:clamp(1.8rem,3.6vw,2.7rem);margin:.4rem 0 .6rem;text-shadow:0 1px 2px rgba(0,0,0,.5)}
.jingle__lede{color:rgba(255,255,255,.93);font-size:1.08rem;text-shadow:0 1px 2px rgba(0,0,0,.4)}
.jingle__quote{border-left:4px solid var(--c-accent);background:rgba(255,255,255,.10);backdrop-filter:blur(4px);
  padding:1rem 1.2rem;border-radius:0 12px 12px 0;color:rgba(255,255,255,.95);font-style:italic;margin:1.2rem 0}
.section--jingle .jingle__copy .btn-primary{background:var(--c-accent);color:#16261d;margin-top:.4rem}
.jingle__player{background:rgba(255,255,255,.97);border-radius:18px;padding:1.4rem;box-shadow:var(--shadow-float)}
.jingle__player-head{display:flex;align-items:center;gap:.7rem;margin-bottom:.9rem}
.jingle__player-title{font-weight:800;color:var(--c-primary-deep)}
.jingle__player audio{width:100%;height:42px}
.jingle__hint{margin:.85rem 0 0;font-size:.85rem;color:var(--c-ink-soft)}
.jingle__eq{display:inline-flex;align-items:flex-end;gap:2px;height:20px;flex:none}
.jingle__eq i{width:3px;background:var(--c-accent);border-radius:2px;transform-origin:bottom;animation:eqpulse 1s ease-in-out infinite}
.jingle__eq i:nth-child(1){height:45%;animation-delay:0s}
.jingle__eq i:nth-child(2){height:95%;animation-delay:.15s}
.jingle__eq i:nth-child(3){height:65%;animation-delay:.3s}
.jingle__eq i:nth-child(4){height:100%;animation-delay:.45s}
.jingle__eq i:nth-child(5){height:55%;animation-delay:.6s}
@keyframes eqpulse{0%,100%{transform:scaleY(.4)}50%{transform:scaleY(1)}}
.jingle__eqbar{display:flex;align-items:flex-end;gap:3px;height:48px;padding:0 16px}
.jingle__eqbar i{flex:1;border-radius:2px 2px 0 0;background:var(--c-accent);transform-origin:bottom;height:70%;animation:eqpulse 1.4s ease-in-out infinite}
.jingle__eqbar i:nth-child(even){background:rgba(255,255,255,.4)}
.jingle__eqbar i:nth-child(3n){animation-delay:.2s;height:55%}
.jingle__eqbar i:nth-child(3n+1){animation-delay:.55s;height:90%}
.jingle__eqbar i:nth-child(4n){animation-delay:.85s;height:45%}
@media(max-width:820px){.jingle{grid-template-columns:1fr;gap:1.4rem;padding-bottom:2rem}}

/* ===========================================================================
   Blog — index cards + single post
   =========================================================================== */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:1.5rem}
.blog-card{display:flex;flex-direction:column;background:var(--c-surface);border:1px solid var(--c-line);
  border-radius:16px;overflow:hidden;box-shadow:var(--shadow);transition:transform .2s var(--ease),box-shadow .2s var(--ease)}
.blog-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.blog-card__media{display:block;aspect-ratio:16/10;overflow:hidden;background:var(--c-bg)}
.blog-card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s var(--ease)}
.blog-card:hover .blog-card__media img{transform:scale(1.06)}
.blog-card__body{padding:1.2rem;display:flex;flex-direction:column;flex:1}
.blog-card__date{font-size:.78rem;color:var(--c-section-accent);font-weight:800;text-transform:uppercase;letter-spacing:.5px}
.blog-card__title{font-size:1.15rem;margin:.3rem 0 .5rem;line-height:1.25}
.blog-card__title a{color:var(--c-primary-deep)}
.blog-card__excerpt{color:var(--c-ink-soft);font-size:.95rem;flex:1}
.blog-card__more{margin-top:.85rem;font-weight:700;color:var(--c-primary)}
.blog-post{max-width:780px}
.blog-post__hero{width:100%;border-radius:16px;box-shadow:var(--shadow-lg);margin-bottom:1.6rem}
.blog-post__body p{font-size:1.07rem;margin-bottom:1.1rem;color:var(--c-ink)}

/* ===========================================================================
   Sponsors strip (footer)
   =========================================================================== */
.sponsors{background:var(--c-bg);border-top:1px solid var(--c-line);padding:2.4rem 0}
.sponsors__head{text-align:center;margin-bottom:1.4rem}
.sponsors__head .eyebrow{color:var(--c-section-accent);font-weight:800;text-transform:uppercase;letter-spacing:2px;font-size:.85rem}
.sponsors__head p{color:var(--c-ink-soft);margin:.3rem 0 0}
.sponsors__grid{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:1.3rem 2.4rem}
.sponsor{display:flex;align-items:center;justify-content:center;filter:grayscale(.35);opacity:.82;transition:.2s ease}
.sponsor:hover{filter:none;opacity:1;transform:translateY(-2px);text-decoration:none}
.sponsor img{max-height:52px;width:auto;max-width:150px;object-fit:contain}
.sponsor__name{font-weight:800;color:var(--c-ink-soft)}

/* ===========================================================================
   Photo-band panel — colorful image background for alternating sections
   =========================================================================== */
.section--photo{position:relative;color:#fff;isolation:isolate;background:var(--c-primary-deep)}
.section--photo::before{content:"";position:absolute;inset:0;z-index:-2;background-image:var(--photo);background-size:cover;background-position:center}
.section--photo::after{content:"";position:absolute;inset:0;z-index:-1;background:linear-gradient(180deg,rgba(12,28,44,.74),rgba(12,28,44,.9))}
.section--photo .sec-head .eyebrow{color:var(--c-accent-warm)}
.section--photo .sec-head h2{color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.55)}
.section--photo .sec-head p{color:rgba(255,255,255,.92);text-shadow:0 1px 2px rgba(0,0,0,.5)}
.section--photo .link-chip{background:rgba(255,255,255,.14);color:#fff;border-color:rgba(255,255,255,.28);box-shadow:none}
.section--photo .link-chip:hover{border-color:#fff;background:rgba(255,255,255,.22)}
.section--photo .link-chip--alt{background:rgba(255,255,255,.07)}
