/* ===========================================================================
   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{
  position:relative;
  background:
    radial-gradient(90% 60% at 12% 0%, color-mix(in srgb, var(--c-section-accent) 9%, transparent), transparent 70%),
    radial-gradient(80% 70% at 100% 100%, color-mix(in srgb, var(--c-primary) 8%, transparent), transparent 70%),
    linear-gradient(180deg, var(--c-surface), var(--c-bg));
}
.section--tint::before{
  content:"";position:absolute;inset:0;pointer-events:none;opacity:.5;
  background-image:repeating-linear-gradient(135deg, rgba(16,32,44,.022) 0 2px, transparent 2px 22px);
}
.section--tint > .wrap{position:relative;z-index:1}
/* Fallback for browsers without color-mix(): plain tint still applies above. */
@supports not (background: color-mix(in srgb, red 10%, white)){
  .section--tint{background:linear-gradient(180deg,var(--c-surface),var(--c-bg))}
}
/* 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}}

/* ---- 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)}
