:root{
  /* Light theme base */
  --bg: #f6f7fb;
  --panel: rgba(255,255,255,.92);
  --panel2: rgba(255,255,255,.80);

  --ink: #121318;                 /* main text */
  --muted: rgba(18,19,24,.72);    /* secondary text */
  --muted2: rgba(18,19,24,.55);   /* small/meta text */

  --bolt: #ffcc11;                /* brand accent */
  --shadow: rgba(0,0,0,.18);

  --road: rgba(255,255,255,.70);  /* "ghost" button background */
  --roadLine: rgba(255,204,17,.45);

  --stroke: rgba(18,19,24,.05);
  --stroke2: rgba(18,19,24,.18);

  --radius: 15px;

  /* Shadows for light UI */
  --shadowSoft: 0 14px 34px rgba(16,18,28,.12);
  --shadowCard: 0 12px 28px rgba(16,18,28,.10);

  --max: 1180px;

  --darkgrey: #616161;
}
i{
  color: var(--bolt);
}

*{ box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  line-height: 1.45;
  background-color: var(--bg);

}
html, body{ overflow-x: hidden; }


html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main.page {
  flex: 1;
}

footer {
  margin-top: auto;
}

img{ max-width:100%; height:auto; display:block;}
a{ color: inherit; text-decoration: none; }
code{   background: rgba(18,19,24,.06);
 padding:.1rem .35rem; border-radius: .5rem; border:1px solid var(--stroke); }

.wrap{ max-width: var(--max); margin: 0 auto; padding: 0 18px; }
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }
.center{ text-align:center; }
.pad-top{ padding-top: 18px; }
.sr-only{ position:absolute; left:-9999px; }
.hide-sm{ display: inline; }

.skip-link{
  position:absolute; left:-9999px; top:0;
  background: var(--bolt); color:#0b0b0c; padding: 10px 12px; border-radius: 999px;
}
.skip-link:focus{ left: 14px; top: 14px; z-index: 9999; }

/* Taxi themed background (subtle road + dots) */
.taxi-bg{
  background:
    radial-gradient(circle at 18px 18px, rgba(255,204,17,.04) 2px, transparent 3px) 0 0/36px 36px,
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 35%),
    radial-gradient(900px 500px at 50% -80px, rgba(255,204,17,.10), transparent 62%),
    var(--bg);
}

/* Header */
/* =========================================================
   HEADER (REPLACE ALL EXISTING HEADER CSS WITH THIS)
   Goals:
   - Sticky top header
   - Desktop: centered nav tabs, logo left, clean spacing
   - Mobile: logo left, burger right, nav as dropdown
   - Phone/WhatsApp moved OUT of header (use .top-contact-bar)
   ========================================================= */

/* A11y */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:12px;
  top:12px;
  width:auto;
  height:auto;
  padding:10px 12px;
  border-radius: 12px;
  background: rgba(255,204,17,.15);
  border: 1px solid rgba(255,204,17,.35);
  color: var(--ink);
  z-index: 999;
}

/* =========================
   TOP HEADER (STICKY ALWAYS)
   ========================= */
/* Top header (sticky) */
.top-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stroke);
  color: #fff;
}

.top-header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px;
}


.top-left{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.top-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255,204,17,.14);
  border: 1px solid rgba(255,204,17,.28);
  color: var(--bolt);
  font-weight: 900;
  letter-spacing: .06em;
  font-size: .82rem;
  white-space: nowrap;
}

.top-text{
  color: #fff;
  font-size: .92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-right{
  display:flex;
  align-items:center;
  gap: 10px;
}

.top-pill{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: #fff;
  text-decoration:none;
  font-weight: 800;
  letter-spacing: .01em;
  white-space: nowrap;
}

.top-pill:hover{
  background: rgba(255,255,255,.08);
}

.top-pill--wa{
  border-color: rgba(255,204,17,.30);
  background: rgba(255,204,17,.10);
}

.top-pill--wa:hover{
  background: rgba(255,204,17,.14);
}

.pill-label{ opacity: .92; }
.pill-value{ opacity: .82; font-weight: 700; }

/* Mobile tightening */
@media (max-width: 720px){
  .top-text{ display:none; } /* keep it clean on mobile */
  .top-pill{ height: 32px; padding: 0 10px; }
  .pill-value{ display:none; } /* keep only icon + label */
}

/* Ultra small phones */
@media (max-width: 420px){
  .pill-label{ display:none; } /* keep icon only if needed */
  .top-pill{ padding: 0 10px; }
}

/*nav*/
/* =========================
   NAVBAR (NOT STICKY)
   ========================= */
.site-header{
  position: relative;   /* not sticky */
  top: auto;
  z-index: 50;
  background: rgba(0,0,0,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

/* Make sure the sticky top-header doesn't cover anchors */
:root{ scroll-padding-top: 60px; }

/* Adjust scroll padding for mobile */
@media (max-width: 720px){
  :root{ scroll-padding-top: 56px; }
}


/* Layout */
.header-inner{
  display:grid;
  grid-template-columns: auto 1fr auto; /* brand | nav | burger (desktop burger hidden) */
  align-items:center;
  gap: 14px;
  padding: 12px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 140px;
  text-decoration:none;
}
.brand-mark{
  position:relative;
  width: 200px;
  height: 54px;
  display:grid;
  place-items:center;
}
.brand-logo{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events:none;
  opacity: .98;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,.55));
}
.bolt-shadow{
  position:absolute;
  inset: 2px 2px 0 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  transform: translate(2px, 2px);
  filter: blur(10px);
  z-index: -1;
}

/* Nav (Desktop tabs) */
.nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  flex-wrap: nowrap;
  overflow: visible;
}
.nav a{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid transparent;
  background: transparent;
}
.nav a:hover{
  color:  #ffffff;
  background: rgba(255,255,255,.08);
}
.nav a.active{
  color:  #ffffff;
  background: rgba(255,204,17,.18);
  border-color: rgba(255,204,17,.35);
}
.nav .nav-cta{
  background: #ffcc11;
  color: #0b0b0b;
  border-color: rgba(255,255,255,.14);
}
.nav .nav-cta:hover{
  background: #ffd84b;
}

/* Road line */
.road-line{
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--roadLine, rgba(255,255,255,.35)), transparent);
}

/* Burger button */
.nav-toggle{
  display:none; /* desktop hidden */
  justify-self: end;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0, 0, 0, 0.60);
  border-radius: 14px;
  padding: 10px 12px;
  color:  #ffffff;
  cursor:pointer;
}
.nav-toggle:hover{ background: rgba(0,0,0,.78); }
.burger{
  width: 22px;
  height: 14px;
  position: relative;
  display:block;
}
.burger::before,
.burger::after,
.burger span{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:  #ffffff;
  border-radius: 2px;
  opacity: .9;
}
.burger::before{ top:0; }
.burger::after{ bottom:0; }
.burger span{ top: 6px; }

/* =========================================================
   MOBILE NAV
   - Logo left, burger right
   - Nav becomes dropdown panel under header
   - Uses existing JS that toggles aria-expanded and a class.
   If your JS toggles .nav-open on body/html, keep selector below.
   If your JS toggles .open on .nav, keep the fallback selectors.
   ========================================================= */

@media (max-width: 980px){
  .header-inner{
    grid-template-columns: auto 1fr auto; /* logo | spacer | burger */
    gap: 10px;
    padding: 10px 0;
  }

  .brand-mark{
    width: 170px;
    height: 48px;
  }

  .nav-toggle{
    display:inline-flex;
    align-items:center;
    gap: 10px;
  }

  /* Turn nav into a dropdown panel */
  .nav{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: grid;
    gap: 6px;
    padding: 12px;
    margin: 0;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,.10);
    border-top: 1px solid rgba(255,255,255,.10);
    transform: translateY(-6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    justify-content: stretch;
    background: rgba(0,0,0);
  }

  .nav a{
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
  }
  .nav a:hover{
    transform: none;
    background: rgba(255,255,255,.10);
  }
  .nav .nav-cta{
    background: rgba(255,204,17,.95);
    color: #000000;
    border-color: rgba(255,255,255,.16);
  }

  /* Open states (support both patterns) */
  .nav.is-open,
  .nav.open,
  .site-header .nav[data-open="true"]{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* If your JS toggles aria-expanded on the button, use adjacent selector */
  .nav-toggle[aria-expanded="true"] + .nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Smaller phones */
@media (max-width: 420px){
  .brand-mark{ width: 150px; height: 44px; }
  .nav-toggle{ padding: 9px 10px; border-radius: 12px; }
}

/* If you have a top contact bar, reduce it slightly on small screens */
@media (max-width: 600px){
  .top-contact-inner{ justify-content: space-between; }
  .top-pill{ padding: 8px 10px; font-size: .92rem; }
}


/* =========================
   LANGUAGE DROPDOWN
   ========================= */
/* =========================
   LANGUAGE DROPDOWN (NO JS)
   <details>/<summary>
   ========================= */
.lang-switch{
  position: relative;
  display:inline-flex;
  align-items:center;
  margin-left: 10px;
}

.lang-switch summary{
  list-style: none;
}
.lang-switch summary::-webkit-details-marker{
  display:none;
}

.lang-trigger{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;

  font-weight: 800;
  letter-spacing: .04em;
  font-size: .85rem;

  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
  user-select: none;
}

.lang-trigger:hover{
  background: rgba(255,255,255,.10);
}

.lang-caret{
  opacity: .85;
  transform: translateY(-1px);
}

/* Menu panel */
.lang-menu{
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 160px;

  background: rgba(0,0,0,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 6px;

  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 1000;
}

/* Open state */
.lang-switch[open] .lang-menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Menu items */
.lang-item{
  display:flex;
  align-items:center;
  padding: 10px 10px;
  border-radius: 12px;

  color: rgba(255,255,255,.88);
  text-decoration:none;
  font-weight: 700;
  border: 1px solid transparent;
  background: rgba(255,255,255,.04);
}

.lang-item:hover{
  color: #fff;
  background: rgba(255,255,255,.08);
}

.lang-item.is-active{
  border-color: rgba(255,204,17,.55);
  background: rgba(255,204,17,.18);
  color: #fff;
}

/* Mobile sizing */
@media (max-width: 600px){
  .lang-trigger{
    height: 36px;
    padding: 0 10px;
    font-size: .82rem;
  }
  .lang-menu{ min-width: 150px; }
  .lang-switch {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}


/* Hero */
.kicker{
  display:flex; align-items:center; gap: 10px;
  color: var(--ink);
  font-size: .95rem;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.kicker-dot{
  width: 10px; height:10px;
  background: var(--bolt);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255,204,17,.12);
}
h1{
  font-size: clamp(2.0rem, 4vw, 3.1rem);
  margin: 14px 0 10px;
  line-height: 1.05;
  letter-spacing: -.02em;
}
.bolt-word{
  position:relative;
  display:inline-block;
  padding: 0 6px;
  text-shadow: 0 10px 24px var(--bolt);
}
.lead{ font-size: 1.12rem; color: var(--muted); }
.hero-cta{ display:flex; gap: 12px; flex-wrap: wrap; margin: 16px 0 0; 
align-items: center;
justify-content: center;
text-align: center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  transition: transform .14s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  cursor:pointer;
  user-select:none;
  box-shadow: 0 8px 18px rgba(16,18,28,.08);
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.98);
  border-color: var(--stroke2);
}
.btn:active{ transform: translateY(0px); }

.btn-primary{
  background: var(--bolt);
  border-color: rgba(0,0,0,.12);
  color: #151515;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(255,204,17,.25);
}
.btn-primary:hover{ background: #ffd84b; }

.btn-ghost{
  background: rgba(255,255,255,.90);
}

.badge{
  display:inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: .9rem;
}
.hero-badges{ display:flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.hero-visual{ display:flex; flex-direction:column; gap: 14px; }
.taxi-stage{
  position: relative;
  padding: 16px;
  min-height: 140px;
  overflow:hidden;
}
.taxi-drive{
  width: min(420px, 90%);
  margin-left: auto;
  transform: translateX(-140%) translateY(8px);
  opacity: 0;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.35));
  will-change: transform, opacity;
}
.taxi-drive.is-in{
  animation: driveIn 1.15s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes driveIn{
  0%{ transform: translateX(-140%) translateY(8px); opacity: 0; }
  70%{ opacity: 1; }
  100%{ transform: translateX(0%) translateY(8px); opacity: 1; }
}
.taxi-glow{
  position:absolute; inset: -40px;
  background: radial-gradient(closest-side at 80% 60%, rgba(255,204,17,.18), transparent 66%);
  pointer-events:none;
  filter: blur(2px);
}

.video-frame{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.video-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 12px;
  border-bottom: 1px solid var(--stroke);
}
.chip{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,204,17,.28);
  background: rgba(255,204,17,.10);
  color: var(--ink);
  font-size: .9rem;
}
.hero-video{ width:100%; height:auto; display:block; background: #000; }

.hero-road{
  overflow: hidden;     /* clip the moving dash */
  width: 100%;
}


.dash{
    width: 100%;

  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,204,17,.35) 0 22px,
      transparent 22px 44px
    );
  filter: blur(.1px);
  will-change: transform;

  animation: dashMove 5.5s linear infinite;

}

@keyframes dashMove{
  to{ transform: translateX(44px); }
}

.hero-road{ overflow: clip; } /* modern */
@supports not (overflow: clip){
  .hero-road{ overflow: hidden; }
}

/* Sections */
.section{ padding: 54px 0; align-items: center; text-align: center; justify-content: center; content-visibility: auto; contain-intrinsic-size: 800px; /* prevents layout jumps */ background: radial-gradient(900px 500px at 20% 20%, rgba(255,204,17,.22), transparent 60%), radial-gradient(900px 500px at 80% 30%, rgba(255,140,0,.18), transparent 60%), #fff; }
.section-alt{
  background: #fff;
}
.section-head h2{ margin:0; }
h2{ font-size: clamp(1.55rem, 2.2vw, 2.0rem); margin: 0 0 10px; }
h3{ margin: 0 0 8px; }

.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

/* Generic “panel” feel */
.panel,
.video-frame,
.map-card,
.review,
.review-skeleton,
.tile,
.story-card,
.form,
.note,
.step{
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowCard);
}
.card{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.card img{
  width:100%;
  height: 300px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}
.card-body{ padding: 14px 14px 16px; }
.card p{ margin: 8px 0 0; color: var(--muted); }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.checklist{
  padding-left: 0;
  list-style: none;
  margin: 14px 0 0;
}
.checklist li{
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  color: var(--muted);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left: 0;
  top: 0;
  color: var(--bolt);
  font-weight: 800;
}
.cta-row{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 16px; 
align-items: center;
justify-content: center;
text-align: center;
}

/* =========================
   WHY BLITZ SECTION (LAYOUT)
   ========================= */

/* =========================
   WHY BLITZ SECTION (LAYOUT)
   ========================= */

.why-blitz__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

/* Better stacking on smaller screens */
@media (max-width: 900px){
  .why-blitz__grid{
    grid-template-columns: 1fr;
    align-items: start;
  }

  /* Optional: show image first on mobile */
  .why-blitz__media{ order: -1; }
}

/* =========================
   IMAGE: always show full image
   + adaptive background fill
   ========================= */

.photo-single{
  /* Center the media block nicely inside the grid cell */
  width: 100%;
  max-width: 980px;
  margin-inline: auto;

  /* Use the real aspect ratio of your file: 1440/960 = 3/2 */
  aspect-ratio: 3 / 2;

  /* Keep it big, but never ridiculous on small viewports */
  max-height: min(560px, 70vh);

  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowCard);
}


/* The actual image: NEVER crop, always fully visible */
.photo-single img{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* key: full image always */
  z-index: 1;

  /* subtle “premium” treatment */
  filter: saturate(1.02) contrast(1.02);
}


/* =========================
   CONTENT SPACING polish
   ========================= */

.why-blitz__content h2{
  margin-top: 0;
}


.why-blitz__content .mini{
  margin: 12px 0 0 18px;
}

.why-blitz__content .mini li{
  margin: 10px 0;
}

.why-blitz__content .cta-row{
  margin-top: 18px;
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
}

.photo-stack{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.photo-stack img{
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowCard);
  height: 180px;
  object-fit: cover;
}

.reviews-bar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 14px;
  margin-bottom: 2vh;
}
.rating{ display:flex; align-items:center; gap: 10px; }
.stars{ color: var(--bolt); letter-spacing: .08em; }

.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.review, .review-skeleton{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  padding: 14px;
  box-shadow: var(--shadowCard);
  min-height: 126px;
}
.review-skeleton{
  background:
    linear-gradient(90deg, rgba(255,255,255,.04), rgba(255,255,255,.09), rgba(255,255,255,.04));
  background-size: 200% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}
@keyframes shimmer{
  0%{ background-position: 0% 0; }
  100%{ background-position: -200% 0; }
}
.review-top{ display:flex; gap: 10px; align-items:center; }
.avatar{
  width: 34px; height:34px; border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  object-fit: cover;
}
.review-name{ font-weight: 700; }
.review-meta{ color: var(--muted2); font-size: .92rem; }
.review-text{ margin: 10px 0 0; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }


.embed iframe{
  width:100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadowCard);
}

.faq{ display:grid; gap: 10px;}
.faq-q{
  width:100%;
  text-align:left;
  padding: 12px 12px;
  border-radius: 15px 15px 0px 0px;
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.767);
  color: #fff;
  font-weight: 700;
  cursor:pointer;
}
.faq-a{
  padding: 2px 12px 12px;
  color: var(--muted);
  background-color: rgba(255, 255, 255, 0.8);
    border-radius: 0px 0px 15px 15px;

}

.faq-toolbar{
  display:grid;
  gap: 12px;
  align-items:center;
  margin-bottom: 16px;
}
.search input{
  width: 100%;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.9);
  color: var(--text);
}
.faq-chips{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}
.faq-links{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
/* DETAILS-based FAQ accordion */
.faq-item{
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.92);
  overflow: hidden;
}

.faq-item + .faq-item{ margin-top: 10px; }

.faq-item > summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

.faq-item > summary::-webkit-details-marker{ display:none; }

/* IMPORTANT: don't hide .faq-a globally; hide only via details closed state */
.faq-item .faq-a{
  padding: 0 14px 14px;
  color: rgba(16,19,24,.82);
}

/* Icon changes */
.faq-icon{
  display:inline-grid;
  place-items:center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,204,17,.18);
  font-weight: 900;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

.faq-item[open] .faq-icon{
  transform: rotate(45deg); /* + becomes x */
}

/* Nice open animation */
.faq-item .faq-a{
  animation: faqIn .18s ease-out;
}
@keyframes faqIn{
  from{ opacity: 0; transform: translateY(-4px); }
  to{ opacity: 1; transform: translateY(0); }
}


.final-cta{
  background:
    radial-gradient(900px 500px at 50% 40%, rgba(255,204,17,.18), transparent 90%),
    rgba(255,255,255,.55);
}

/* Pages */
.page{ padding-bottom: 32px; }
.page-hero{
  padding: 60px 10px;
  position: relative;
  text-align: center;

  /* photo background */
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,.62), rgba(0,0,0,.45)),
    var(--hero-img, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #fff;
}

.page-hero .wrap{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.page-hero h1,
.page-hero .lead{
  color: #fff;
  text-shadow: 0 8px 18px rgba(0,0,0,.55);
}

/* Optional: nicer height feel */
@media (min-width: 900px){
  .page-hero{ padding: 90px 10px; }
}


.filters{ display:flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.chip-btn{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.8);
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  cursor:pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.chip-btn:hover{ background: rgba(255,255,255,.06); color: var(--ink); }
.chip-btn.active{ background: rgba(255,204,17,.12); color: var(--ink); border-color: rgba(255,204,17,.22); }

.service-list{ display:grid; gap: 14px; }
.service-card{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap: 14px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.service-card img{
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}
.service-card > div{ padding: 14px 14px 16px; }
.mini{ margin: 10px 0 0; color: var(--muted); 
align-items: start;
text-align: start;
justify-items: start;}
.mini li{ margin: 6px 0; 
}

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.step{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  padding: 14px;
}
.step-num{
  width: 34px; height:34px;
  display:grid; place-items:center;
  border-radius: 12px;
  background: rgba(255,204,17,.12);
  border: 1px solid rgba(255,204,17,.22);
  color: var(--ink);
  font-weight: 900;
  margin-bottom: 10px;
}

.gallery-toolbar{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.masonry{
  columns: 3 260px;
  column-gap: 14px;
}
.tile{
  break-inside: avoid;
  margin: 0 0 14px;
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadowCard);
  cursor: zoom-in;
}
.tile img{ width:100%; height:auto; }
.tile figcaption{
  padding: 10px 12px;
  color: var(--muted);
  font-size: .95rem;
  border-top: 1px solid var(--stroke);
}

.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.72);
  display:none;
  place-items: center;
  z-index: 80;
  padding: 18px;
}
.lightbox[aria-hidden="false"]{ display:grid; }
.lightbox img{
  max-width: min(1000px, 96vw);
  max-height: 76vh;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: #000;
}
.lightbox-close{
  position: absolute;
  top: 18px;
  right: 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.08);
  color: var(--ink);
  padding: 10px 12px;
  cursor:pointer;
}
.lightbox-cap{
  margin-top: 10px;
  color: var(--muted);
  text-align:center;
}

.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}
.contact-card{
  display:flex;
  align-items:center;
  gap: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  padding: 14px;
  box-shadow: var(--shadowCard);
  transition: transform .14s ease, background .2s ease;
}
.contact-card:hover{ transform: translateY(-1px); background: rgba(255,255,255,.06); }
.contact-ico{
  width: 44px; height:44px;
  display:grid; place-items:center;
  border-radius: 16px;
  background: rgba(255,204,17,.10);
  border: 1px solid rgba(255,204,17,.22);
  font-size: 1.1rem;
}
.contact-title{ color: var(--muted2); font-size: .95rem; }
.contact-val{ font-weight: 800; letter-spacing: .01em; }

.note{
  margin-top: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  padding: 14px;
  color: var(--muted);
}
.form{
  display:grid;
  gap: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255);
  border: 1px solid var(--stroke);
  padding: 14px;
  box-shadow: var(--shadowCard);
}
label{ display:grid; gap: 6px; color: var(--muted); font-size: .95rem; }
input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.92);
  padding: 12px 12px;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus{ 
  border-color: rgba(255,204,17,.35); 
  box-shadow: 0 0 0 4px rgba(255,204,17,.12); }
.alert{
  border-radius: var(--radius);
  background: rgba(255,204,17,.10);
  border: 1px solid rgba(255,204,17,.24);
  padding: 12px 14px;
  color: var(--ink);
  margin-bottom: 12px;
}
.social-row{ display:flex; gap: 12px; flex-wrap: wrap; }

.quote{
  margin-top: 14px;
  border-left: 3px solid rgba(255,204,17,.55);
  padding-left: 12px;
  color: var(--muted);
}
.story-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  overflow:hidden;
  box-shadow: var(--shadowCard);
}
.story-card img{ height: 250px; object-fit: cover; width:100%; }
.story-card-body{ padding: 14px; }

/* Footer */
.site-footer{
  border-top: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  backdrop-filter: blur(10px);
    padding: 0px;
}
.footer-grid{
  color: #fff;

  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 18px;
  padding-top: 20px;
}
.link-list{
  list-style:none;
  padding-left: 0;
  margin: 10px 0 0;
  display:grid;
  gap: 8px;
}
.link-list a{   color: #ffffffce; }
.link-list a:hover{  color: #fff; text-decoration: none; }
.footer-bottom{
  background-color: var(--darkgrey);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--stroke);
  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  grid-template-columns: 1fr;
  padding: 10px 0; 
}
.footer-credits-text {
    text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
}

/* Sticky CTA for mobile */
.sticky-cta{
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display:none;
  gap: 10px;
  z-index: 60;
}
.sticky-btn{
  flex: 1;
  text-align:center;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadowCard);
}
.sticky-btn--bolt{
  background: rgba(255,204,17,.92);
  color: #0b0b0c;
  border-color: rgba(0,0,0,.2);
  font-weight: 900;
}


/* Lightning strike animation on bolt elements */
.bolt-pulse{ position: relative; overflow:hidden; }
.bolt-pulse::after{
  content:"";
  position:absolute;
  inset: -60% -40%;
  background: radial-gradient(circle at 30% 40%, rgba(255,204,17,.45), transparent 55%);
  transform: translateX(-120%) rotate(18deg);
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events:none;
}
.bolt-pulse.is-striking::after{
  opacity: 1;
  animation: strike 650ms ease-out forwards;
}
@keyframes strike{
  0%{ transform: translateX(-120%) rotate(18deg); }
  60%{ transform: translateX(10%) rotate(18deg); }
  100%{ transform: translateX(140%) rotate(18deg); opacity: 0; }
}
.bolt-strike.is-striking{
  box-shadow: 0 0 0 6px rgba(255,204,17,.12);
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .brand{ min-width: unset; }
  .footer-grid{ grid-template-columns: 1fr;     align-items: center;
    justify-content: center;
    text-align: center;}
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
  .split{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

@media (max-width: 740px){
  .hide-sm{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .services-grid{ grid-template-columns: 1fr; }
  .reviews-grid{ grid-template-columns: 1fr; }
  .service-card{ grid-template-columns: 1fr; }
  .service-card img{ height: 200px; }
  .sticky-cta{ display:flex; }

  .footer-bottom{
  padding-bottom: 60px;
  }

  .site-footer {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}


/* ===== Reviews Marquee (static, smooth auto-scroll) ===== */
.reviews-marquee{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: var(--panel);
  box-shadow: var(--shadowCard);
  margin-top: 14px;
}

/* soft fade edges */
.reviews-marquee::before,
.reviews-marquee::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 42px;
  z-index: 2;
  pointer-events:none;
}
.reviews-marquee::before{
  left:0;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}
.reviews-marquee::after{
  right:0;
  background: linear-gradient(270deg, rgba(255,255,255,.95), rgba(255,255,255,0));
}

.reviews-track{
  display:flex;
  gap: 14px;
  padding: 14px;
  will-change: transform;
  animation: reviewsScroll 48s linear infinite;
}

/* Pause on hover (desktop) */
.reviews-marquee:hover .reviews-track{
  animation-play-state: paused;
}

/* Pause on touch/drag */
.reviews-marquee:active .reviews-track{
  animation-play-state: paused;
}

@keyframes reviewsScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); } /* because we duplicated the set */
}

.review-card{
  flex: 0 0 auto;
  width: clamp(260px, 34vw, 420px);
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 22px rgba(16,18,28,.10);
  padding: 14px 14px 16px;
}

.review-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.review-name{
  font-weight: 900;
  letter-spacing: .01em;
}
.review-date{
  color: var(--muted2);
  font-size: .92rem;
  white-space: nowrap;
}
.review-stars{
  margin-top: 6px;
  letter-spacing: .12em;
  color: var(--bolt);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.14));
}
.review-text{
  margin: 10px 0 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile: tighter cards, faster feel */
@media (max-width: 720px){
  .reviews-track{ padding: 12px; animation-duration: 40s; }
  .review-card{ width: 78vw; }
  .reviews-marquee::before,
  .reviews-marquee::after{ width: 28px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .reviews-track{ animation: none; overflow-x: auto; scroll-snap-type: x mandatory; }
  .review-card{ scroll-snap-align: start; }
}


/* ===== Reviews Carousel (autoplay + arrows + dots + swipe) ===== */
/* Controls row */
.reviews-controls{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
}

/* Arrows */
.rev-arrow{
  width: 38px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.86);
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display:grid;
  place-items:center;
  box-shadow: 0 8px 18px rgba(16,18,28,.08);
}
.rev-arrow:hover{ background: rgba(255,255,255,.98); }
.rev-arrow:active{ transform: translateY(1px); }
.rev-arrow:disabled{
  opacity: .45;
  cursor: not-allowed;
}

/* Dots */
.rev-dots{
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:center;
  flex: 1;
}
.rev-dot{
  width: 7px;
  height: 7px;
  border-radius: 999px;
  border: 1px solid rgba(18,19,24,.25);
  background: rgba(18,19,24,.18);
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.rev-dot:hover{ transform: scale(1.15); }
.rev-dot.active{
  background: rgba(255,204,17,.95);
  border-color: rgba(255,204,17,.95);
  box-shadow: 0 0 0 6px rgba(255,204,17,.16);
}

/* Viewport with snap scrolling */
.reviews-viewport{
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

/* Fade edges */
.reviews-viewport::before,
.reviews-viewport::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 38px;
  z-index: 2;
  pointer-events:none;
}

.reviews-track{
  display:flex;
  gap: 14px;
  padding: 14px;
}

/* Each card snaps */
.review-card{
  flex: 0 0 auto;
  width: clamp(280px, 34vw, 440px);
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255);
  box-shadow: 0 10px 22px rgba(16,18,28,.10);
  padding: 14px 14px 16px;
}

.review-top{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.review-name{ font-weight: 900; }
.review-date{ color: var(--muted2); font-size: .92rem; white-space: nowrap; }
.review-stars{
  margin-top: 6px;
  letter-spacing: .12em;
  color: var(--bolt);
  filter: drop-shadow(0 3px 10px rgba(0,0,0,.14));
}
.review-text{
  margin: 10px 0 0;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile tweaks */
@media (max-width: 720px){
  .review-card{ width: 84vw; }
  .reviews-viewport::before,
  .reviews-viewport::after{ width: 26px; }
}

/* Reduce motion: disable autoplay (JS will respect this too) */
@media (prefers-reduced-motion: reduce){
  .reviews-viewport{ scroll-behavior: auto; }
}


/* Hide scrollbar but keep scrolling */
#reviewsViewport{
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge legacy */
}
#reviewsViewport::-webkit-scrollbar{
  display: none;                /* Chrome/Safari */
}

.chef img{
  max-height: 350px;
  width: auto;
  
}

/* =========================
   LIST MARKERS (GLOWING BOLT)
   ========================= */

/* Unordered + ordered list markers */
ul li::marker,
ol li::marker{
  color: var(--bolt, #ffcc11);

  /* Black outline + bolt glow */
  text-shadow:
    /* faux black stroke */
    1px 0 0 rgba(0,0,0,.95),
   -1px 0 0 rgba(0,0,0,.95),
    0 1px 0 rgba(0,0,0,.95),
    0 -1px 0 rgba(0,0,0,.95),
    1px 1px 0 rgba(0,0,0,.85),
   -1px 1px 0 rgba(0,0,0,.85),
    1px -1px 0 rgba(0,0,0,.85),
   -1px -1px 0 rgba(0,0,0,.85),

    /* bolt glow */
    0 0 6px rgba(255,204,17,.85),
    0 0 14px rgba(255,204,17,.55);
}

/* Optional: slightly nicer spacing (keep if you want) */
ul, ol{
  padding-left: 1.25em;
}
li{
  padding-left: .15em;
}

.maps{
  display: flex;
  flex-direction: column;
  align-items: center;     /* centers the map-card */
  text-align: center;
}

.map-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: var(--shadowCard);

  max-width: 600px;
  width: min(600px, 100%); /* ensures it can shrink on mobile */
  margin: 0 auto;          /* centers as a block */
}

.map-card img{
  display: block;          /* removes inline baseline gap */
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.map-card-footer{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 12px;
  border-top: 1px solid var(--stroke);
  justify-content: center; /* centers buttons */
}
.reveal.maps{ width: 100%; }
.reveal.maps .map-card{ margin-left:auto; margin-right:auto; }


.cta-banner{
  position: relative;
  overflow: visible;
}

.cta-banner__img{
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}



.cta-banner__content{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: clamp(16px, 3vw, 28px);
  color: #fff;
}

.cta-banner__content > *{
  max-width: 60ch;
}

@media (max-width: 720px){
  .cta-banner__content{
    place-items: end center;
    padding: 18px;
  }
  .cta-banner__img{
  object-fit: cover;
  }
}


.section-end{ 
  margin-bottom: 0;
align-items: center;
text-align: center;
justify-content: center;
padding-bottom: 60px;
}




/* ABOUT PAGE improvements (add to styles.css) */


.chef-img img{
  width: auto;
  height: 420px;
  border: 10px solid #111;            /* thin black border (requested) */
}
.chef-meta{
  padding: 12px 14px 14px;
}
.chef-name{
  font-weight: 900;
  letter-spacing: .01em;
}
.chef-sub{
  font-size: .95rem;
}

.chef-img{
  width: auto;              /* adjust size */
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #000;    /* black border */
  background: #fff;          /* helps if PNG has transparency edges */
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  margin: 16px auto 0;       /* center inside card */
}


/* About media placeholders */
.media-stack{ display:grid; gap: 14px; }
.media{
  border-radius: var(--radius);
  overflow:hidden;
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowCard);
}
.media img{
  width:100%;
  height: 260px;
  object-fit: cover;
  display:block;
}
.media figcaption{ padding: 10px 12px; }



/* Full-width interior photo block */
.interior-wide img{
  width: auto;
  height: 100%;
  object-fit: cover;
  display:block;
  border-radius: var(--radius);
}


/* Link-like button for footer */
.linklike{
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
color: #ffffffce; }
.linklike:hover{  color: #fff; text-decoration: none; }
/* Cookie banner */
.cookie-banner{
  position: fixed;
  inset: auto 14px 14px 14px;
  z-index: 999;
  display: none;
}
.cookie-banner.is-open{ display: block; }

.cookie-card{
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadowSoft);
    background: #ffffff;
  color: #000000;
}

.cookie-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
    padding: 14px;
  padding-bottom: 0px;

}
.cookie-head h3{ margin: 0 0 4px; }
.cookie-head p{ margin: 0; }

.cookie-x{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.85);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
}
.cookie-x:hover{ background: rgba(255,255,255,.98); }

.cookie-actions{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items:center;
  margin-top: 12px;
}
.cookie-link{
  margin-left: auto;
  color: var(--muted);
  text-decoration: underline;
}
.cookie-link:hover{ color: var(--ink); }

.cookie-prefs{
  border-top: 1px solid var(--stroke);
  display:grid;
  gap: 10px;
  background: #fff;
  color: #000;
    padding: 14px;
    margin-top: 2px;
  padding-top: 2px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.cookie-pref{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--stroke);
}

/* Toggle switch */
.switch{
  position: relative;
  width: 54px;
  height: 32px;
  display:inline-block;
}
.switch input{ display:none; }
.slider{
  position:absolute;
  inset:0;
  border-radius: 15px;
  background: rgba(18,19,24,.18);
  border: 1px solid var(--stroke);
  transition: background .2s ease;
}
.slider::after{
  content:"";
  position:absolute;
  top: 50%;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 15px;
  transform: translateY(-50%);
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(18,19,24,.12);
  transition: transform .2s ease;
  box-shadow: 0 10px 18px rgba(16,18,28,.10);
}
.switch input:checked + .slider{
  background: rgba(255,204,17,.35);
  border-color: rgba(255,204,17,.40);
}
.switch input:checked + .slider::after{
  transform: translate(22px, -50%);
}

/* Mobile */
@media (max-width: 720px){
  .cookie-link{ width: 100%; margin-left: 0; }
}


.legal-panel {
  padding: 50px;
  border-radius: var(--radius);
}



/* ===== WOW HERO ===== */
.hero-wow{
  position: relative;
  min-height: clamp(640px, 78vh, 920px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff; /* site background is white */
}

/* Layers */
.wow-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
}

/* Soft noise to make it feel “premium” */
.wow-noise{
  position:absolute;
  inset:0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  opacity: .08;
  mix-blend-mode: multiply;
  pointer-events:none;
}

/* Glowing blobs (yellow/orange) */
.wow-glow{
  position:absolute;
  width: 52vmax;
  height: 52vmax;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .55;
  mix-blend-mode: multiply;
  transform: translate3d(0,0,0);
  animation: glowFloat 12s ease-in-out infinite;
}
.wow-glow--a{
  left: -14vmax; top: -10vmax;
  background: radial-gradient(circle at 30% 30%, rgba(255,204,17,.95), rgba(255,125,0,.35), transparent 65%);
  animation-duration: 13s;
}
.wow-glow--b{
  right: -18vmax; top: 6vmax;
  background: radial-gradient(circle at 40% 40%, rgba(255,140,0,.78), rgba(255,204,17,.30), transparent 66%);
  animation-duration: 15s;
}
.wow-glow--c{
  left: 10vmax; bottom: -22vmax;
  background: radial-gradient(circle at 40% 40%, rgba(255,204,17,.65), rgba(255,125,0,.28), transparent 68%);
  animation-duration: 16s;
}

@keyframes glowFloat{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  50%{ transform: translate3d(0,-14px,0) scale(1.04); }
}


/* Lightning bolts container */
.wow-bolts{
  position:absolute;
  inset:0;
  pointer-events:none;
}

/* Individual bolt */
.wow-bolt{
  position:absolute;
  width: 220px;
  height: 420px;
  opacity: 0;
  transform: rotate(10deg);
  filter: drop-shadow(0 16px 34px rgba(255,204,17,.12));
  mix-blend-mode: multiply;
}
.wow-bolt::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(255,204,17,.95), rgba(255,140,0,.55), rgba(255,255,255,0));
  clip-path: polygon(44% 0%, 62% 18%, 52% 18%, 70% 44%, 54% 44%, 68% 70%, 40% 46%, 52% 46%, 34% 22%, 48% 22%);
  border-radius: 18px;
}
.wow-bolt.is-on{
  animation: boltFlash 650ms ease-out forwards;
}
@keyframes boltFlash{
  0%{ opacity: 0; transform: translateY(-8px) rotate(10deg) scale(.98); }
  18%{ opacity: 1; }
  60%{ opacity: .9; }
  100%{ opacity: 0; transform: translateY(10px) rotate(10deg) scale(1.02); }
}

/* Content above all */
.hero-wow .wrap.hero-grid{
  position: relative;
  z-index: 2;
}

/* Big, readable text */
.hero-title{
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
  color: #0f1218;
}
.hero-lead{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(15,18,24,.85);
  font-weight: 700;
}


/* Bolt word feels electric */
.bolt-word--wow{
  background: linear-gradient(180deg, rgba(255,204,17,.35), rgba(255,140,0,.10));
  border: 1px solid rgba(255,140,0,.18);
  box-shadow: 0 10px 24px rgba(255,204,17,.18);
}

/* Ensure kicker readable */
.kicker{ justify-content:center; }
.kicker-dot{
  box-shadow: 0 0 0 6px rgba(255,204,17,.18);
}

/* Mobile: keep it punchy */
@media (max-width: 720px){
  .hero-wow{ min-height: 640px; padding: 6vh 0; }
  .hero-copy--glass{ border-radius: 18px; }
  .wow-glow{ opacity: .48; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  .wow-glow, .wow-road__dashes{ animation: none; }
}


.section-divider{
  width: 100%;
  overflow: hidden;          /* prevents any accidental overflow */
  line-height: 0;
}

.section-divider img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;         /* keeps it filled if you set a height */
}

/* If you want a consistent “strip” height (nice for long images): */
.section-divider--strip img{
  height: clamp(90px, 14vw, 200px);
  object-fit: cover;
  object-position: center;
}


/* ===== BLITZ Button Spark Effect ===== */
.btn{
  position: relative;
  overflow: visible; /* let sparks fly outside */
  isolation: isolate; /* keeps pseudo elements layered nicely */
}

/* Electric ring */
.btn::before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius: inherit;
  pointer-events:none;
  opacity: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,204,17,.35), transparent 55%),
    radial-gradient(circle at 70% 60%, rgba(255,140,0,.22), transparent 60%);
  filter: blur(6px);
  z-index: -1;
  transform: scale(.96);
  transition: opacity .18s ease, transform .18s ease;
}

.btn:hover::before,
.btn:focus-visible::before{
  opacity: 1;
  transform: scale(1.02);
}

/* Spark container (injected by JS) */
.btn .btn-sparks{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow: visible;
  z-index: 2;
}

/* Individual spark (a tiny bolt shard) */
.btn .spark{
  position:absolute;
  width: 10px;
  height: 18px;
  opacity: 0;
  transform-origin: center;
  filter: drop-shadow(0 8px 12px rgba(255,204,17,.18));
  background: linear-gradient(180deg, rgba(255,204,17,1), rgba(255,140,0,.9));
  clip-path: polygon(45% 0%, 70% 20%, 55% 20%, 78% 50%, 58% 50%, 70% 78%, 42% 55%, 56% 55%, 28% 26%, 45% 26%);
  border-radius: 6px;
}

/* animate sparks when class applied */
.btn.is-sparking .spark{
  animation: sparkFly 520ms ease-out forwards;
}

@keyframes sparkFly{
  0%{ opacity: 0; transform: translate(0,0) rotate(var(--r)) scale(.7); }
  18%{ opacity: 1; }
  100%{ opacity: 0; transform: translate(var(--tx), var(--ty)) rotate(calc(var(--r) + 40deg)) scale(1.1); }
}

/* Optional: add a subtle “charge” shimmer on primary */
.btn-primary:hover{
  box-shadow:
    0 10px 22px rgba(255,204,17,.25),
    0 0 0 6px rgba(255,204,17,.14);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .btn::before{ transition: none; }
  .btn.is-sparking .spark{ animation: none; opacity: 0; }
}


