/* ==========================================================================
   Kansas City Bat Removal — shared stylesheet
   Twilight palette: deep slate dusk + warm amber. Mobile-first, zero deps.
   ========================================================================== */

:root {
  --dusk-950: #141c2b;
  --dusk-900: #1c2739;
  --dusk-800: #263449;
  --dusk-700: #34455e;
  --dusk-600: #465a77;
  --dusk-150: #dde4ee;
  --dusk-75: #eef2f7;
  --gold-600: #c98a2b;
  --gold-500: #e3a83e;
  --gold-400: #f0bc5e;
  --gold-wash: #fbf3e3;
  --slate-ink: #212836;
  --slate-mute: #4f5866;
  --cloud: #ffffff;
  --cloud-dim: #f7f8fa;
  --seam: #d8dde5;
  --edge: 14px;
  --float: 0 3px 14px rgba(20, 28, 43, 0.16);
  --span: 73rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Seravek", "Gill Sans", "Segoe UI", Verdana, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.66;
  color: var(--slate-ink);
  background: var(--cloud);
  /* clearance for the fixed mobile call bar */
  padding-bottom: 4.5rem;
}

img, svg { max-width: 100%; height: auto; }

a { color: var(--dusk-700); }
a:hover, a:focus { color: var(--dusk-950); }

h1, h2, h3 {
  font-family: "Futura", "Century Gothic", "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.22;
  color: var(--dusk-950);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(1.75rem, 5vw, 2.7rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 1.9rem); margin-top: 0; }
h3 { font-size: 1.17rem; }

p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
li { margin-bottom: 0.35em; }

.shell {
  max-width: var(--span);
  margin: 0 auto;
  padding: 0 1.15rem;
}

/* --------------------------------------------------------------------------
   Skip link
   -------------------------------------------------------------------------- */
.skip-jump {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dusk-950);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-jump:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------------------
   Masthead + navigation
   -------------------------------------------------------------------------- */
.masthead {
  background: var(--dusk-950);
  border-bottom: 3px solid var(--gold-500);
}

.mast-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}

.brandmark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #fff;
  font-family: "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.15;
}

.brandmark svg { flex: 0 0 auto; width: 2.2rem; height: 2.2rem; }

.mast-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--gold-500);
  color: var(--dusk-950) !important;
  text-decoration: none;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: var(--edge);
  white-space: nowrap;
  box-shadow: var(--float);
  min-height: 44px;
}

.mast-call:hover, .mast-call:focus { background: var(--gold-400); }

.mast-call svg { width: 1.1rem; height: 1.1rem; }

.mast-call .call-num { display: none; }

.sitenav { background: var(--dusk-900); }

.sitenav ul {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.1rem 0.25rem;
}

.sitenav a {
  display: inline-block;
  color: var(--dusk-150);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.55rem 0.62rem;
  border-radius: 8px;
  min-height: 44px;
}

.sitenav a:hover,
.sitenav a:focus,
.sitenav a[aria-current="page"] {
  background: var(--dusk-700);
  color: #fff;
}

/* Mobile nav: collapsed behind a CSS-only Menu toggle */
.nav-latch { position: absolute; opacity: 0; pointer-events: none; }
.menu-btn { display: none; }
@media (max-width: 899px) {
  .menu-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    font-weight: 700; font-size: 0.95rem; color: #fff;
    border: 2px solid var(--dusk-600); border-radius: 8px;
    padding: 0.45rem 0.7rem; cursor: pointer; user-select: none;
    margin-left: auto; margin-right: 0.6rem;
  }
  .sitenav { display: none; }
  .nav-latch:checked ~ .sitenav { display: block; }
  .nav-latch:checked ~ div .menu-btn { background: var(--dusk-700); }
}

/* --------------------------------------------------------------------------
   Dusk hero — dual conversion
   -------------------------------------------------------------------------- */
.dusk-hero {
  background:
    radial-gradient(ellipse 70rem 24rem at 85% -10%, rgba(227, 168, 62, 0.22), transparent 60%),
    linear-gradient(170deg, var(--dusk-950) 0%, var(--dusk-800) 78%, var(--dusk-700) 100%);
  color: var(--dusk-75);
  padding: 2.25rem 0 2.5rem;
}

.dusk-hero h1 { color: #fff; }

.dusk-hero .hero-tag {
  font-size: 1.15rem;
  max-width: 38rem;
  color: var(--dusk-150);
}

.banner-cols { display: grid; gap: 1.5rem; }

.key-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
}

.key-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.key-points svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--gold-500);
  color: var(--dusk-950) !important;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 800;
  padding: 1rem 1.4rem;
  border-radius: var(--edge);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  min-height: 56px;
}

.call-btn:hover, .call-btn:focus { background: var(--gold-400); }

.call-btn svg { width: 1.4rem; height: 1.4rem; }

.call-btn small {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.85;
}

.after-call {
  text-align: center;
  font-size: 0.85rem;
  color: var(--dusk-150);
  margin-top: 0.5rem;
}

/* Request-help form card */
.request-card {
  background: var(--cloud);
  color: var(--slate-ink);
  border-radius: var(--edge);
  border-top: 5px solid var(--gold-500);
  padding: 1.25rem;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.request-card h2 { font-size: 1.25rem; margin-bottom: 0.25rem; }

.request-card .card-tag {
  font-size: 0.9rem;
  color: var(--slate-mute);
  margin-bottom: 0.9rem;
}

.request-card label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.request-card input,
.request-card select,
.request-card textarea {
  width: 100%;
  font: inherit;
  padding: 0.7rem 0.75rem;
  margin-bottom: 0.85rem;
  border: 2px solid var(--seam);
  border-radius: 9px;
  background: #fff;
  color: var(--slate-ink);
  min-height: 48px;
}

.request-card textarea { min-height: 6rem; resize: vertical; }

.request-card input:focus,
.request-card select:focus,
.request-card textarea:focus {
  outline: 3px solid var(--gold-500);
  outline-offset: 1px;
  border-color: var(--dusk-700);
}

.send-btn {
  width: 100%;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  background: var(--dusk-800);
  border: 0;
  border-radius: var(--edge);
  padding: 0.9rem 1rem;
  cursor: pointer;
  min-height: 52px;
}

.send-btn:hover, .send-btn:focus { background: var(--dusk-950); }

.fine-print {
  font-size: 0.78rem;
  color: var(--slate-mute);
  margin: 0.6rem 0 0;
  text-align: center;
}

.sent-ok {
  background: var(--dusk-75);
  border-left: 4px solid var(--gold-600);
  padding: 1.1rem 1.2rem;
  font-weight: 600;
  border-radius: 8px;
}

/* --------------------------------------------------------------------------
   Assurance bar
   -------------------------------------------------------------------------- */
.assure-bar {
  background: var(--dusk-75);
  border-bottom: 1px solid var(--seam);
}

.assure-bar ul {
  list-style: none;
  margin: 0;
  padding: 0.9rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.assure-bar li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dusk-950);
  margin: 0;
}

.assure-bar svg { width: 1.35rem; height: 1.35rem; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   Blocks (sections)
   -------------------------------------------------------------------------- */
.block { padding: 2.5rem 0; }

.block-tint {
  background: var(--cloud-dim);
  border-top: 1px solid var(--seam);
  border-bottom: 1px solid var(--seam);
}

.block-open { max-width: 46rem; }

.opener { font-size: 1.15rem; }

/* Service cards */
.offer-grid { display: grid; gap: 1rem; margin-top: 1.25rem; }

.offer-card {
  display: flex;
  flex-direction: column;
  background: var(--cloud);
  border: 1px solid var(--seam);
  border-radius: var(--edge);
  padding: 1.25rem;
  box-shadow: var(--float);
}

.offer-card svg.offer-glyph { width: 2.4rem; height: 2.4rem; margin-bottom: 0.6rem; }

.offer-card h3 { margin-bottom: 0.4rem; }

.offer-card h3 a { color: var(--dusk-950); text-decoration: none; }

.offer-card h3 a:hover, .offer-card h3 a:focus {
  text-decoration: underline;
  color: var(--dusk-700);
}

.offer-card p { flex: 1; font-size: 0.95rem; margin-bottom: 0.75rem; }

.offer-more { font-weight: 700; text-decoration: none; }
.offer-more:hover, .offer-more:focus { text-decoration: underline; }

/* Price table */
.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.95rem;
  background: var(--cloud);
  box-shadow: var(--float);
  border-radius: var(--edge);
  overflow: hidden;
}

.rate-table caption {
  caption-side: bottom;
  font-size: 0.8rem;
  color: var(--slate-mute);
  padding: 0.5rem;
  text-align: left;
}

.rate-table th,
.rate-table td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--seam);
}

.rate-table thead th {
  background: var(--dusk-900);
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rate-table tbody tr:nth-child(even) { background: var(--dusk-75); }

.scroll-x { overflow-x: auto; }

/* Season calendar strip */
.season-row { display: grid; gap: 0.8rem; margin: 1.25rem 0; }

.season-cell {
  background: var(--cloud);
  border: 1px solid var(--seam);
  border-top: 4px solid var(--dusk-600);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  box-shadow: var(--float);
}

.season-cell.season-go { border-top-color: var(--gold-500); }
.season-cell.season-stop { border-top-color: #a33d2e; }

.season-cell h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.season-cell p { font-size: 0.9rem; margin: 0; }

/* FAQ */
.qa {
  background: var(--cloud);
  border: 1px solid var(--seam);
  border-radius: var(--edge);
  margin-bottom: 0.75rem;
  box-shadow: var(--float);
}

.qa summary {
  font-weight: 700;
  font-family: "Futura", "Century Gothic", "Trebuchet MS", sans-serif;
  font-size: 1.02rem;
  color: var(--dusk-950);
  padding: 1rem 1.1rem;
  cursor: pointer;
  list-style-position: inside;
}

.qa summary:hover { color: var(--dusk-700); }

.qa .qa-panel { padding: 0 1.1rem 1rem; }

/* Content pages (service spokes) */
.page-top {
  background:
    radial-gradient(ellipse 55rem 18rem at 90% -15%, rgba(227, 168, 62, 0.2), transparent 60%),
    linear-gradient(170deg, var(--dusk-950) 0%, var(--dusk-800) 100%);
  color: var(--dusk-75);
  padding: 2rem 0;
}

.page-top h1 { color: #fff; margin-bottom: 0.35rem; }

.page-top .hero-tag {
  color: var(--dusk-150);
  font-size: 1.1rem;
  max-width: 42rem;
  margin-bottom: 1.25rem;
}

.page-top .call-btn { max-width: 26rem; }

.split-cols { display: grid; gap: 2rem; }

.article-main h2 { margin-top: 1.75rem; }
.article-main h2:first-child { margin-top: 0; }
.article-main h3 { margin-top: 1.25rem; }

/* CTA band */
.dusk-band {
  background:
    radial-gradient(ellipse 60rem 20rem at 15% 120%, rgba(227, 168, 62, 0.18), transparent 60%),
    var(--dusk-950);
  color: var(--dusk-150);
  text-align: center;
  padding: 2.25rem 0;
}

.dusk-band h2 { color: #fff; }

.dusk-band .call-btn { max-width: 24rem; margin: 1rem auto 0; }

.dusk-band p { max-width: 38rem; margin-left: auto; margin-right: auto; }

/* Note boxes */
.note-box {
  background: var(--dusk-75);
  border-left: 5px solid var(--dusk-700);
  border-radius: 0 var(--edge) var(--edge) 0;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
}

.note-warn {
  background: var(--gold-wash);
  border-left-color: var(--gold-600);
}

.note-box p:last-child { margin-bottom: 0; }

/* Rail (sidebar) */
.sidewing .wing-box {
  background: var(--cloud);
  border: 1px solid var(--seam);
  border-radius: var(--edge);
  padding: 1.1rem;
  box-shadow: var(--float);
  margin-bottom: 1.25rem;
}

.sidewing h2 { font-size: 1.1rem; }

.sidewing ul { list-style: none; padding: 0; margin: 0; }

.sidewing li { margin: 0; border-bottom: 1px solid var(--seam); }

.sidewing li:last-child { border-bottom: 0; }

.sidewing li a {
  display: block;
  padding: 0.6rem 0.2rem;
  text-decoration: none;
  font-weight: 600;
}

.sidewing .wing-call {
  background: var(--dusk-950);
  color: var(--dusk-150);
  text-align: center;
  border-top: 5px solid var(--gold-500);
}

.sidewing .wing-call h2 { color: #fff; }

.sidewing .wing-call .call-btn { font-size: 1.15rem; margin-top: 0.5rem; }

/* Plain-fact list on rail */
.sidewing .tick-list li {
  border-bottom: 1px solid var(--seam);
  padding: 0.45rem 0.2rem;
  font-size: 0.95rem;
}

/* Area blocks */
.area-zone h3 { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   Footer — NAP-free by design (no street address)
   -------------------------------------------------------------------------- */
.site-base {
  background: var(--dusk-950);
  color: var(--dusk-150);
  padding: 2.25rem 0 1.5rem;
  font-size: 0.92rem;
}

.base-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }

.site-base h2 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.6rem;
}

.site-base ul { list-style: none; padding: 0; margin: 0; }

.site-base li { margin-bottom: 0.4rem; }

.site-base a { color: var(--dusk-75); text-decoration: none; }

.site-base a:hover, .site-base a:focus { text-decoration: underline; color: #fff; }

.base-call {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold-400) !important;
}

.base-end {
  border-top: 1px solid var(--dusk-700);
  padding-top: 1rem;
  font-size: 0.82rem;
  color: var(--dusk-600);
}

.base-end a { color: var(--dusk-150); }

/* --------------------------------------------------------------------------
   Sticky mobile call bar
   -------------------------------------------------------------------------- */
.duskbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 50;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.3);
}

.duskbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.95rem 0.5rem;
  min-height: 56px;
}

.duskbar .db-call { background: var(--gold-500); color: var(--dusk-950); }

.duskbar .db-quote { background: var(--dusk-800); color: #fff; }

.duskbar svg { width: 1.2rem; height: 1.2rem; }

/* --------------------------------------------------------------------------
   Larger screens
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .assure-bar ul {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }

  .offer-grid { grid-template-columns: 1fr 1fr; }

  .season-row { grid-template-columns: 1fr 1fr; }

  .mast-call .call-num { display: inline; }

  .base-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  body { padding-bottom: 0; }

  .duskbar { display: none; }

  .dusk-hero { padding: 3.5rem 0 4rem; }

  .banner-cols {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
    gap: 2.5rem;
  }

  .call-btn { max-width: 26rem; justify-content: flex-start; }

  .dusk-hero .after-call { text-align: left; }

  .offer-grid { grid-template-columns: repeat(3, 1fr); }

  .season-row { grid-template-columns: repeat(4, 1fr); }

  .split-cols { grid-template-columns: 2fr 1fr; }

  .base-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (min-width: 1100px) {
  .sitenav a { font-size: 0.95rem; padding: 0.65rem 0.7rem; }
}

/* Print: keep it readable */
@media print {
  .duskbar, .sitenav { display: none; }
}

/* ==========================================================================
   DESIGN ELEVATION LAYER — nightfall over Kansas City
   All advanced features are progressive enhancements behind @supports /
   @media guards. Reduced-motion users get a perfectly still dusk.
   ========================================================================== */

:root {
  --night-990: #0a0f1a;
  --night-970: #0d1420;
  --horizon: #b97c2e;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --lift: 0 1px 2px rgba(10,15,26,.08), 0 8px 28px -10px rgba(10,15,26,.25);
  --lift-hover: 0 2px 4px rgba(10,15,26,.1), 0 20px 48px -14px rgba(10,15,26,.38);
}

@view-transition { navigation: auto; }

::selection { background: var(--gold-400); color: var(--night-990); }

h1, h2, h3 { text-wrap: balance; }
p, li { text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 2px; border-radius: 4px; }

body { accent-color: var(--gold-600); }

/* --- Sticky dark-glass masthead (desktop) --------------------------------- */
@media (min-width: 900px) {
  @supports (backdrop-filter: blur(1px)) {
    .masthead {
      position: sticky;
      top: 0;
      z-index: 60;
      background: color-mix(in srgb, var(--dusk-950) 84%, transparent);
      backdrop-filter: blur(14px) saturate(1.3);
      -webkit-backdrop-filter: blur(14px) saturate(1.3);
    }
  }
}

/* --- Hero: nightfall sky --------------------------------------------------- */
.dusk-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(178deg,
      var(--night-990) 0%,
      var(--night-970) 26%,
      #16233a 46%,
      #2c3a54 62%,
      #3e3a4e 74%,
      #8a5f3a 88%,
      var(--horizon) 100%);
  padding-bottom: 4.6rem;
}

/* amber moon */
.dusk-hero::before {
  content: "";
  position: absolute;
  right: 8%;
  top: 4%;
  width: clamp(90px, 11vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 34%, #fbe6bd 0%, var(--gold-400) 46%, var(--gold-600) 100%);
  box-shadow:
    0 0 40px 12px rgba(240,188,94,.35),
    0 0 140px 60px rgba(227,168,62,.16);
  pointer-events: none;
}

/* starfield — one element, many box-shadows */
.dusk-hero::after {
  content: "";
  position: absolute;
  top: 6%; left: 4%;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    4vw 1vh 0 0 rgba(255,255,255,.9),  11vw 6vh 0 0 rgba(255,255,255,.5),
    18vw 2vh 0 0 rgba(255,255,255,.7), 26vw 8vh 0 0 rgba(255,255,255,.45),
    33vw 3vh 0 0 rgba(255,255,255,.8), 41vw 10vh 0 0 rgba(255,255,255,.4),
    48vw 5vh 0 0 rgba(255,255,255,.65),56vw 1vh 0 0 rgba(255,255,255,.5),
    63vw 12vh 0 0 rgba(255,255,255,.35),70vw 7vh 0 1px rgba(255,255,255,.75),
    76vw 15vh 0 0 rgba(255,255,255,.4), 8vw 14vh 0 0 rgba(255,255,255,.55),
    22vw 17vh 0 0 rgba(255,255,255,.35),51vw 16vh 0 0 rgba(255,255,255,.45),
    88vw 4vh 0 0 rgba(255,255,255,.6), 92vw 12vh 0 0 rgba(255,255,255,.35);
  pointer-events: none;
}

.dusk-hero .shell { position: relative; z-index: 3; }

.hero-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-eyebrow::before {
  content: "";
  width: 2.2rem; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}

.dusk-hero h1 { letter-spacing: -0.015em; font-size: clamp(1.9rem, 4.4vw, 3rem); }

/* skyline strip */
.skyline {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: clamp(80px, 12vw, 150px);
  display: block;
  pointer-events: none;
  z-index: 1;
}

/* lit windows flicker */
@media (prefers-reduced-motion: no-preference) {
  .skyline .win { animation: winkle 5s ease-in-out infinite alternate; }
  .skyline .win:nth-child(2n) { animation-delay: 1.4s; }
  .skyline .win:nth-child(3n) { animation-delay: 2.6s; }
  @keyframes winkle { 0%, 70% { opacity: .9; } 100% { opacity: .35; } }

  .dusk-hero::before { animation: moonrise 12s ease-in-out infinite alternate; }
  @keyframes moonrise {
    from { transform: translateY(4px); }
    to   { transform: translateY(-6px); }
  }

  .dusk-hero::after { animation: twinkle 4.5s ease-in-out infinite alternate; }
  @keyframes twinkle { from { opacity: .55; } to { opacity: 1; } }
}

/* --- The bats: motion-path flight + wing flap ------------------------------ */
.nightbats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  display: none; /* only shown when motion + offset-path are supported */
}

@media (prefers-reduced-motion: no-preference) {
  @supports (offset-path: path("M0 0 L10 10")) {
    .nightbats { display: block; }

    .bat {
      position: absolute;
      width: 26px;
      height: 14px;
      offset-rotate: auto;
      will-change: offset-distance;
    }

    .bat svg { overflow: visible; display: block; }

    .bat-1 {
      offset-path: path("M -40 190 C 240 120, 480 40, 760 90 C 1000 130, 1240 60, 1560 110");
      animation: flight 26s linear infinite;
    }
    .bat-2 {
      width: 18px; height: 10px;
      offset-path: path("M -30 90 C 300 160, 620 190, 900 120 C 1140 65, 1360 120, 1540 80");
      animation: flight 34s linear infinite;
      animation-delay: -12s;
      opacity: .8;
    }
    .bat-3 {
      width: 13px; height: 7px;
      offset-path: path("M -20 140 C 260 80, 560 130, 860 170 C 1120 200, 1380 150, 1530 170");
      animation: flight 44s linear infinite;
      animation-delay: -30s;
      opacity: .55;
    }

    @keyframes flight {
      0%   { offset-distance: 0%; }
      100% { offset-distance: 100%; }
    }

    .bwing-l, .bwing-r { animation: flap .34s ease-in-out infinite alternate; }
    .bwing-l { transform-origin: 58% 42%; }
    .bwing-r { transform-origin: 42% 42%; animation-name: flap-r; }
    @keyframes flap   { from { transform: rotate(14deg); }  to { transform: rotate(-26deg); } }
    @keyframes flap-r { from { transform: rotate(-14deg); } to { transform: rotate(26deg); } }
  }
}

/* --- Glass request card ---------------------------------------------------- */
.request-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--lift-hover);
}

@supports (backdrop-filter: blur(1px)) {
  .request-card {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
  }
}

.request-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  border-radius: var(--edge) var(--edge) 0 0;
  background: linear-gradient(90deg, var(--gold-400), var(--gold-600) 55%, var(--dusk-700));
}

.request-card input,
.request-card select {
  transition: border-color .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.request-card input:focus,
.request-card select:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 4px rgba(201,138,43,.2);
  outline: none;
}

/* --- Buttons ---------------------------------------------------------------- */
.call-btn, .send-btn, .db-call {
  background-image: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 10px 26px -10px rgba(201,138,43,.7);
  transition: transform .16s var(--ease-out), box-shadow .16s var(--ease-out), filter .16s var(--ease-out);
}

.call-btn:hover, .send-btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.call-btn:active, .send-btn:active, .db-call:active { transform: scale(.985); }

/* --- Section craft ---------------------------------------------------------- */
.block { padding: 3.2rem 0; }

.block h2 { position: relative; padding-bottom: 0.55rem; }

.block h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 2.6rem; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-500), var(--dusk-700));
}

.offer-card {
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
  box-shadow: 0 1px 3px rgba(10,15,26,.08);
}

.offer-card:hover { transform: translateY(-4px); box-shadow: var(--lift-hover); }

.offer-glyph { transition: transform .25s var(--ease-out); }
.offer-card:hover .offer-glyph { transform: scale(1.12) rotate(-3deg); }

.offer-more { display: inline-flex; gap: .3rem; transition: gap .18s var(--ease-out); }
.offer-card:hover .offer-more { gap: .55rem; }

.rate-table { font-variant-numeric: tabular-nums; box-shadow: var(--lift); border-radius: 10px; overflow: hidden; }
.rate-table tbody tr { transition: background .15s ease; }
.rate-table tbody tr:hover { background: var(--gold-wash); }

/* --- FAQ ---------------------------------------------------------------------- */
.qa summary { list-style: none; position: relative; padding-right: 2rem; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after {
  content: "";
  position: absolute;
  right: .4rem; top: 50%;
  width: .6rem; height: .6rem;
  border-right: 2.5px solid var(--gold-600);
  border-bottom: 2.5px solid var(--gold-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s var(--ease-out);
}
.qa[open] summary::after { transform: translateY(-30%) rotate(225deg); }

@supports (interpolate-size: allow-keywords) {
  :root { interpolate-size: allow-keywords; }
  .qa::details-content {
    block-size: 0;
    overflow-y: clip;
    transition: content-visibility .38s allow-discrete, block-size .38s var(--ease-out);
  }
  .qa[open]::details-content { block-size: auto; }
}

/* --- Dusk band + subpage heads ---------------------------------------------- */
.dusk-band {
  background:
    radial-gradient(120% 150% at 82% -10%, rgba(227,168,62,.3), transparent 48%),
    linear-gradient(168deg, var(--dusk-800), var(--night-970) 80%);
}

.page-top {
  position: relative;
  background:
    radial-gradient(90rem 30rem at 85% -30%, rgba(227,168,62,.35), transparent 55%),
    linear-gradient(172deg, var(--night-970) 0%, var(--dusk-800) 62%, #6d5137 100%);
  padding-bottom: 2.8rem;
}

.page-top::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 24px;
  background:
    radial-gradient(58% 100% at 25% 100%, var(--cloud-dim) 49%, transparent 51%),
    radial-gradient(58% 100% at 75% 100%, var(--cloud-dim) 49%, transparent 51%);
  pointer-events: none;
}

/* --- Mobile dock glass -------------------------------------------------------- */
@supports (backdrop-filter: blur(1px)) {
  .duskbar {
    background: rgba(10,15,26,.86);
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
  }
}
.duskbar { padding-bottom: env(safe-area-inset-bottom); }

/* --- Exclusion diagram ---------------------------------------------------------- */
.excl-fig {
  margin: 2rem 0 0;
  background: var(--gold-wash);
  border: 1px solid var(--seam);
  border-radius: var(--edge);
  padding: 1.4rem 1.4rem 1rem;
  box-shadow: var(--lift);
}

.excl-fig svg { display: block; width: 100%; height: auto; }

.excl-fig figcaption {
  font-size: 0.9rem;
  color: var(--slate-mute);
  margin-top: 0.8rem;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  /* one-way arrows march outward */
  .excl-fig .flowline {
    stroke-dasharray: 7 6;
    animation: march 1.1s linear infinite;
  }
  @keyframes march { to { stroke-dashoffset: -13; } }

  /* exiting bats: fly out along their paths and fade, on a stagger */
  @supports (offset-path: path("M0 0 L10 10")) {
    .excl-bat {
      offset-rotate: auto;
      animation: exitflight 6s ease-in infinite;
    }
    .excl-bat-1 { offset-path: path("M 315 118 C 360 90, 420 60, 500 42"); }
    .excl-bat-2 { offset-path: path("M 315 118 C 350 110, 430 100, 505 78"); animation-delay: 2s; }
    .excl-bat-3 { offset-path: path("M 315 118 C 355 100, 415 78, 498 58"); animation-delay: 4s; }
    @keyframes exitflight {
      0%   { offset-distance: 0%; opacity: 0; }
      8%   { opacity: 1; }
      55%  { offset-distance: 100%; opacity: 0; }
      100% { offset-distance: 100%; opacity: 0; }
    }
    .excl-bat .bwing-l, .excl-bat .bwing-r { animation-duration: .3s; }
  }
}

/* --- Scroll-driven entrances ------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .offer-card, .block h2, .rate-table, .qa, .season-cell, .excl-fig, .wing-box {
      animation: rise-in both;
      animation-timeline: view();
      animation-range: entry 0% entry 42%;
    }
    @keyframes rise-in {
      from { opacity: 0; transform: translateY(18px); }
      to   { opacity: 1; transform: none; }
    }
  }
}
