:root{
  --text:#fff;
  --muted:rgba(255,255,255,.8);
  --wrap:1000px;
  --pad:20px;
  --sectionY:64px;

  /* fixed header height baseline */
  --headerH:56px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color:var(--text);
  line-height:1.5;
}

/* =========================
   Background (fixed)
   ========================= */
.bg{
  position:fixed;
  inset:0;
  z-index:-1;
  background:url("assets/web-bg.png") center/cover no-repeat;
}

/* Droplet overlay (FIXED background overlay only) */
.bg::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:url("assets/panel-overlay.png");
  background-repeat:repeat;
  background-size:512px 512px;
  opacity:.75;
  pointer-events:none;
}

/* Darken layer */
.bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  pointer-events:none;
}

@media(max-width:820px){
  .bg{background-image:url("assets/mobile-bg.png")}
}

/* =========================
   Layout helpers
   ========================= */
.wrap{
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 var(--pad);
}
.center{text-align:center}

/* =========================
   Top header (fixed)
   ========================= */
.top-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:1000;
  background:#000;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  min-height:var(--headerH);
}

.header-brand{
  font-weight:800;
  letter-spacing:.04em;
  font-size:14px;
  color:#fff;
}

.header-nav{
  display:flex;
  gap:20px;
}

.header-nav a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  font-weight:600;
  font-size:14px;
}
.header-nav a:hover{color:#fff}

/* When header stacks, it becomes taller — update the spacing math */
@media(max-width:700px){
  :root{ --headerH:92px; }

  .header-inner{
    flex-direction:column;
    gap:10px;
    padding:10px 0;
  }
}

/* =========================
   Typography
   ========================= */
h1,h2,h3,
.header-brand,
.tagline{
  font-family:'Oswald', sans-serif;
  letter-spacing:.04em;
  text-transform:uppercase;
}

h1,h2,h3{
  color:#e10600;
  text-shadow:0 1px 2px rgba(0,0,0,.85);
}

h2{
  font-size:clamp(28px,3.2vw,40px);
  margin:0 0 14px;
  letter-spacing:.06em;
}

.muted{color:var(--muted)}

/* =========================
   HERO
   ========================= */
.hero{
  padding:calc(var(--headerH) + 24px) 0 28px;
}

.logo{
  width:min(560px,95%);
  margin:0 auto 16px;
  display:block;
  border-radius:16px;
  overflow:hidden;
}

.tagline{
  color:var(--muted);
  font-weight:600;
  margin-bottom:34px;
}

/* HERO CTA */
.hero-cta{
  display:flex;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
}

.cta-img{
  display:block;
  width:auto;
  transition:transform .18s ease, filter .18s ease;
}

.cta-absurd{height:176px;}
.secondary{opacity:.92}

.cta-img:hover{
  transform:translateY(-4px) scale(1.01);
  filter:brightness(1.08);
}
.fb-cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}

.fb-line{
  margin:0;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.02em;
}

@media(max-width:600px){
  .cta-absurd{height:148px;}
}

/* =========================
   Local sticker divider
   ========================= */
.sticker-divider{
  display:flex;
  justify-content:center;
  margin: 18px 0 12px;
  pointer-events:none;
}

.sticker-divider img{
  width: min(520px, 72vw);
  height: auto;
  opacity: 0.95;
}

@media(max-width:600px){
  .sticker-divider{
    margin: 14px 0 10px;
  }

  .sticker-divider img{
    width: min(440px, 80vw);
  }
}

/* =========================
   Sections
   ========================= */
.section{
  padding:var(--sectionY) 0;
}

.fine{
  margin-top:28px;
  font-size:12px;
  opacity:.7;
}

/* =========================
   Carousel (single image per slide)
   ========================= */
.ba-carousel{
  position: relative;
  max-width: 920px;
  margin: 0 auto;
}

.car-track{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:100%;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.car-track::-webkit-scrollbar{ display:none; }

.car-page{
  scroll-snap-align:start;
  margin:0 auto 38px;
}

.car-page img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
}

/* Tap arrows */
.car-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;

  width:46px;
  height:46px;
  border-radius:999px;

  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.55);
  color:#fff;

  font-size:28px;
  line-height:1;
  cursor:pointer;
}

.car-btn.prev{ left:-10px; }
.car-btn.next{ right:-10px; }

@media(max-width:820px){
  .car-btn.prev{ left:6px; }
  .car-btn.next{ right:6px; }
  .car-page{ margin-bottom:26px; }
}

/* =========================
   Referral section
   ========================= */
.referral{
  background: transparent;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.referral h2{ margin-bottom:12px; }

.referral p{
  max-width:760px;
  margin:0 auto;
  font-size:15px;
}

/* =========================
   Services
   ========================= */
.services{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  gap:12px;
  justify-items:center;
  color:var(--muted);
  font-weight:650;
}

/* =========================
   Contact CTA (Call button)
   ========================= */
.contact-cta{
  margin-top:28px;
  display:flex;
  justify-content:center;
}

img[src$="call-btn.png"]{
  width:120px !important;
  height:auto !important;
}

/* =========================
   Black Stag credit (not blue)
   ========================= */
.credit,
.credit:visited{
  color:inherit;
  text-decoration:none;
  border-bottom:1px solid rgba(255,255,255,.35);
}

.credit:hover{
  border-bottom-color:rgba(255,255,255,.7);
}