:root{
  /* Brand */
  --mdg-red:#d42128;

  /* You asked for these accents (same value) */
  --mdg-green:#2c6a3a;
  --mdg-gray:#929292;

  /* Light theme */
  --mdg-bg:#ffffff;
  --mdg-bg2:#f6f7f9;
  --mdg-card:#ffffff;
  --mdg-card2:#fbfbfc;

  --mdg-border:rgba(0,0,0,0.10);
  --mdg-border-strong:rgba(0,0,0,0.16);

  --mdg-text:#0f1115;
  --mdg-muted:rgba(15,17,21,0.62);

  --mdg-shadow: 0 18px 50px rgba(12, 18, 28, 0.12);
  --mdg-shadow-soft: 0 12px 30px rgba(12, 18, 28, 0.10);

  --mdg-radius:18px;
  --mdg-radius-lg:22px;
}

*{box-sizing:border-box}
html, body{
  width: 100%;
  overflow-x: clip; /* better than hidden (doesn't create a scrollable overflow area) */
}

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

.mdg-main{
  flex: 1 0 auto;   /* main takes remaining space */
}

/* footer naturally sits at the bottom */
footer{
  flex-shrink: 0;
}

/* make media behave on small screens */
img, video, iframe, svg{
  max-width: 100%;
  height: auto;
}

body{
  font-family:"Nunito",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background: #fff;
  color:var(--mdg-text);
}

a{color:var(--mdg-red)}
a:hover{color:#b0191f}

::selection{background:rgba(212,33,40,0.20)}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important}
  .marquee-track{animation:none!important}
  .gallery-img{transition:none!important}
}

/* -----------------------------
   Topbar
------------------------------ */
/* -----------------------------
   Topbar (Red + White, icons-only on mobile)
------------------------------ */
.topbar{
  background: var(--mdg-red);
  border-bottom: 1px solid rgba(255,255,255,0.22);
  color:#fff;
}

.topbar-link{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  display:flex;
  gap:8px;
  align-items:center;
  line-height:1;
}
.topbar-link:hover{color:#fff;text-decoration:underline}

.topbar-icon{
  color: rgba(255,255,255,0.95);
  font-size:18px;
}
.topbar-icon:hover{color:#fff;opacity:0.95}

.topbar-chip{
  color: rgba(255,255,255,0.95);
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.12);
}

/* Topbar CTA button: white bg + red text */
.btn-mdg-topbar{
  background:#fff;
  color: var(--mdg-red);
  border:1px solid rgba(255,255,255,0.65);
  font-weight:900;
  border-radius:14px;
  padding:8px 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.14);
}
.btn-mdg-topbar:hover{
  background: rgba(255,255,255,0.92);
  color: var(--mdg-red);
  transform: translateY(-1px);
}
.btn-mdg-topbar:active{transform: translateY(0)}
.btn-mdg-topbar:focus{box-shadow:none}
.btn-mdg-topbar i{color: var(--mdg-red)}


/* Make spacing comfy on small screens */
@media (max-width: 576px){
  .topbar{padding-top:6px;padding-bottom:6px}

  /* Show only icons for link items */
  .topbar-link{
    font-size:0;          /* hides text while keeping the link accessible */
    gap:0;
    padding:6px 10px;
  }
  .topbar-link i,
  .topbar-link svg{
    font-size:18px;       /* re-show icon size */
  }

  /* If you have text spans inside the link, hide them too */
  .topbar-link span,
  .topbar-link small{
    display:none !important;
  }

  /* Optional: hide chips on mobile to keep it clean */
  .topbar-chip{
    display:none;
  }
}


/* -----------------------------
   Nav
------------------------------ */
.mdg-nav{
  background:rgba(255,255,255,0.90);
  border-bottom:1px solid var(--mdg-border);
  backdrop-filter: blur(14px);
}
.logo{width:auto; height:60px}
.brand-text{
  font-weight:900;
  letter-spacing:0.2px;
  color:var(--mdg-text);
}
.navbar-toggler{border-color:rgba(255, 255, 255, 0)}
.navbar-toggler:focus{box-shadow:none}

.nav-link{
  color:rgba(15,17,21,0.72)!important;
  font-weight:800;
}
.nav-link:hover,.nav-link.active{
  color:var(--mdg-text)!important;
}
.w-fit{width:fit-content}

/* Language dropdown */
.lang-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px !important;
  border-radius:999px;
  border:1px solid var(--mdg-border);
  background:rgba(255,255,255,0.92);
  color:var(--mdg-text) !important;
  font-weight:900;
  line-height:1;
}

.lang-pill:hover{
  border-color:rgba(212,33,40,0.30);
  background:rgba(212,33,40,0.04);
  color:var(--mdg-text) !important;
}

.lang-pill .fa-globe{color:var(--mdg-red)}

.lang-label{
  font-size:12px;
  letter-spacing:0.5px;
}

.lang-menu{
  border:1px solid var(--mdg-border);
  border-radius:16px;
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(12,18,28,0.14);
  padding:6px;
  background:#fff;
  min-width: 180px;
}

.lang-menu .dropdown-item{
  border-radius:12px;
  padding:10px 12px;
  font-weight:800;
  color:rgba(15,17,21,0.82);
}

.lang-menu .dropdown-item:hover{
  background:rgba(212,33,40,0.06);
  color:var(--mdg-text);
}

.lang-menu .dropdown-item.active,
.lang-menu .dropdown-item:active{
  background:rgba(212,33,40,0.12);
  color:var(--mdg-text);
}

.flag-dot{
  width:12px;height:12px;border-radius:999px;
  border:1px solid rgba(0,0,0,0.10);
  display:inline-block;
}
.flag-de{background:linear-gradient(180deg,#000 0 33%, #dd0000 33% 66%, #ffce00 66% 100%)}
.flag-en{background:linear-gradient(135deg,#012169 0 45%, #fff 45% 55%, #c8102e 55% 100%)}

/* Mobile: make it big + easy to tap */
@media (max-width: 991px){
  .lang-pill{
    width:100%;
    justify-content:center;
    margin-top:10px;
  }
  .lang-menu{
    width:100%;
    min-width:unset;
  }
  .mdg-lang-wrap{
    align-items: center; text-align: center; justify-content: center;
  }
}

/* Center nav items (desktop) */
.mdg-nav-center{
  justify-content:center;
  text-align:center;
}

/* Language wrapper sits at far right on desktop */
.mdg-lang-wrap{
  margin-left:auto;
  display:flex;
  align-items:center;
}
@media (max-width: 991px){
  /* Center the whole collapsed menu */
  .navbar-nav{
    width:100%;
    align-items:center !important;
    gap:6px;
    padding-top:10px;
    padding-bottom:12px;
  }
  .navbar-nav .nav-link{
    text-align:center;
    width:100%;
    padding:10px 12px;
    border-radius:14px;
  }
  .navbar-nav .nav-link:hover{
    background:rgba(212,33,40,0.05);
  }

  /* Put language selector INSIDE the menu, as last element */
  .mdg-lang-wrap{
    width:100%;
    margin-left:0;
    margin-top:10px;
  }

  /* Language pill full width on mobile */
  .lang-pill{
    width:100%;
    justify-content:center;
  }
  .lang-menu{
    width:100%;
    min-width:unset;
  }
}

/*new header*/


/* fixed header overlays hero */
.mdg-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  padding-top: env(safe-area-inset-top);
  transition: filter .25s ease;
}

/* Let anchor links account for fixed header height */
html{ scroll-padding-top: var(--mdg-header-h, 120px); }

/* ---------- TOPBAR STATES ---------- */
.topbar{
  background: transparent;                 /* initial: fully see-through */
  border-bottom: 1px solid rgba(255,255,255,0.16);
  color: #fff;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background-color .25s ease, border-color .25s ease, color .25s ease;
}

.topbar-link{
  color: rgba(255,255,255,0.92);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  display:flex;
  gap:8px;
  align-items:center;
}
.topbar-link:hover{ color:#fff; }

.btn-mdg-topbar{
  background: rgba(255,255,255,0.14);     /* glass button on hero */
  color: #fff;
  border: 1px solid rgba(255,255,255,0.28);
  font-weight: 900;
  border-radius: 14px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.btn-mdg-topbar:hover{
  background: rgba(255,255,255,0.20);
  transform: translateY(-1px);
}

/* SCROLLED: topbar becomes red */
.mdg-header.is-scrolled .topbar{
  background: var(--mdg-red);
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.mdg-header.is-scrolled .btn-mdg-topbar{
  background:#fff;
  color: var(--mdg-red);
  border-color: rgba(255,255,255,0.65);
}
.mdg-header.is-scrolled .btn-mdg-topbar i{ color: var(--mdg-red); }

/* ---------- NAVBAR STATES ---------- */
.mdg-nav{
  background: transparent;                 /* initial: transparent */
  border-bottom: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

/* SCROLLED: navbar becomes white */
.mdg-header.is-scrolled .mdg-nav{
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid var(--mdg-border);
  box-shadow: 0 14px 40px rgba(12,18,28,0.10);
}

/* Logo swap */
.logo{ height: 60px; width: auto; display:block; }
.logo--dark{ display:none; }
.mdg-header.is-scrolled .logo--light{ display:none; }
.mdg-header.is-scrolled .logo--dark{ display:block; }

/* Toggler visibility on hero */
.navbar-toggler{
  border-color: rgba(255,255,255,0);
  transition: filter .2s ease;
}
.navbar-toggler:focus{ box-shadow:none; }
.mdg-header:not(.is-scrolled) .navbar-toggler-icon{
  filter: invert(1) contrast(1.2);        /* white hamburger on hero */
}
.mdg-header.is-scrolled .navbar-toggler-icon{
  filter: none;
}

/* Nav link color (hero vs scrolled) */
.nav-link{
  position: relative;
  font-weight: 900;
  padding: 10px 12px !important;
  color: rgba(255,255,255,0.92) !important;  /* initial: white */
  transition: color .2s ease;
}
.mdg-header.is-scrolled .nav-link{
  color: rgba(15,17,21,0.76) !important;     /* scrolled: dark */
}

/* “cool” underline: slides in + slight skew + glow */
.nav-link::after{
  content:"";
  position:absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 3px;
  border-radius: 99px;

  background: linear-gradient(90deg, rgba(44,106,58,0.00), var(--mdg-green), rgba(44,106,58,0.00));
  box-shadow: 0 10px 22px rgba(44,106,58,0.28);

  transform: scaleX(0) skewX(-12deg);
  transform-origin: left;
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .18s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after{
  transform: scaleX(1) skewX(-12deg);
  opacity: 1;
}

.nav-link:hover,
.nav-link.active{
  color: #fff !important;
}
.mdg-header.is-scrolled .nav-link:hover,
.mdg-header.is-scrolled .nav-link.active{
  color: var(--mdg-text) !important;
}

/* Language pill adapts */
.lang-pill{
  border-radius: 999px;
  font-weight: 900;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: #fff !important;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.lang-pill .fa-globe{ color: rgba(255,255,255,0.95); }

.mdg-header.is-scrolled .lang-pill{
  border: 1px solid var(--mdg-border);
  background: rgba(255,255,255,0.92);
  color: var(--mdg-text) !important;
}
.mdg-header.is-scrolled .lang-pill .fa-globe{ color: var(--mdg-red); }

/* Mobile collapse menu readability */
@media (max-width: 991px){
  .navbar-nav{
    width:100%;
    align-items:center !important;
    gap:6px;
    padding-top:10px;
    padding-bottom:12px;
  }
  .navbar-nav .nav-link{
    width:100%;
    text-align:center;
    border-radius: 14px;
  }
  /* On hero: give mobile menu a glass panel so it’s readable */
  .mdg-header:not(.is-scrolled) .navbar-collapse{
    background: rgba(10,10,12,0.42);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 10px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }
}
/* -----------------------------
   Buttons
------------------------------ */
.btn-mdg{
  background:var(--mdg-red);
  border:1px solid rgba(212,33,40,0.75);
  color:#fff;
  font-weight:900;
  border-radius:14px;
  padding:10px 14px;
  box-shadow: 0 10px 22px rgba(212,33,40,0.18);
}
.btn-mdg:hover{
  filter:brightness(0.98);
  transform:translateY(-1px);
}
.btn-mdg:active{transform:translateY(0)}
.btn-mdg:focus{box-shadow:none}

.btn-mdg-outline{
  background:#fff;
  border:1px solid rgba(212,33,40,0.45);
  color:var(--mdg-text);
  font-weight:900;
  border-radius:14px;
  padding:10px 14px;
}
.btn-mdg-outline:hover{
  border-color:rgba(212,33,40,0.70);
  background:rgba(212,33,40,0.06);
}
.btn-mdg-outline:focus{box-shadow:none}

/* -----------------------------
   Hero
------------------------------ */
.hero{
  position:relative;
  min-height:86vh;
  display:flex;
  align-items:stretch;
}
.hero-video, .hero-poster{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position: top center; /* ✅ align to top */
  filter:saturate(1.05) contrast(1.02) brightness(1.06);
}


/* Poster layer */
.hero-poster{
  background-image: var(--hero-poster);
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1);
  transition: opacity 900ms ease, transform 1200ms ease;
  z-index: 1;
  pointer-events: none;
}

.hero-video{
  object-fit: cover;
  opacity: 0;
  transition: opacity 900ms ease;
  z-index: 1;
}

.hero-overlay{
  position:absolute;inset:0;
  /* White overlay so text stays black, even on busy video */
  background:linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.1) 100%
  );
}
.hero-content{position:relative;padding:64px 0}

/* Put overlay + content above media */
.hero-overlay{ position:absolute; inset:0; z-index: 2; }
.hero-content{ position:relative; z-index: 3; }

/* When video is ready: crossfade */
.hero.is-video-ready .hero-video{ opacity: 1; }
.hero.is-video-ready .hero-poster{
  opacity: 0;
  transform: scale(1.02); /* tiny “lift” while fading */
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .hero-video, .hero-poster{ transition: none !important; }
}

.hero-kicker{
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,0.85);
  border:1px solid var(--mdg-border);
  color:rgba(15,17,21,0.80);
  font-size:14px;margin-bottom:14px;
}
.fw-800{font-weight:900; color: #fff;}

.hero-lead{
  color:rgba(255, 255, 255, 0.72);
  max-width:44ch;
}

/* Hero alignment helper */
.min-vh-75{min-height:100vh;}
.hero-inner{max-width: 60ch;}


.hero-chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{
  display:inline-flex;align-items:center;
  padding:8px 12px;border-radius:999px;
  background:rgba(255,255,255,0.92);
  border:1px solid var(--mdg-border);
  color:rgba(15,17,21,0.80);
  font-size:13px;
}
.chip-dark{background:rgba(255,255,255,0.92)}
.chip-soft{background:rgba(255,255,255,0.85)}

.scroll-hint{
  position:absolute;left:50%;bottom:18px;transform:translateX(-50%);
  display:flex;align-items:center;gap:8px;
  color:rgba(15,17,21,0.55);
  font-size:13px;
}

.hero-card{
  background:rgba(255,255,255,0.92);
  border:1px solid var(--mdg-border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--mdg-shadow);
}
.hero-card-body{padding:14px}

/* -----------------------------
   Sections
------------------------------ */
.section{padding:72px 0}
.section-dark{
  background-image:url("/img/red.jpg");
  border-top:1px solid var(--mdg-border);
  border-bottom:1px solid var(--mdg-border);
  color: #fff;
}
.section-head{max-width:70ch}
.section-head h2{font-weight:900}
.text-muted{color:var(--mdg-muted)!important}

/* -----------------------------
   Cards
------------------------------ */
.mdg-card{
  background:var(--mdg-card);
  border:1px solid var(--mdg-border);
  border-radius:var(--mdg-radius);
  overflow:hidden;
  box-shadow:var(--mdg-shadow-soft);
}
.mdg-card-img{
  height: 550px;
  background-size:contain;
  background-position:center;
  background-repeat: no-repeat;
}
.shadow-soft{box-shadow:var(--mdg-shadow-soft)}
.icon-pill{
  width:36px;height:36px;border-radius:12px;
  background:rgba(212,33,40,0.10);
  border:1px solid rgba(212,33,40,0.22);
  display:flex;align-items:center;justify-content:center;
  color:var(--mdg-red);
}

/* -----------------------------
   Locations
------------------------------ */
.location-card{
  background:var(--mdg-card);
  border:1px solid var(--mdg-border);
  border-radius:var(--mdg-radius);
  padding:16px;
  height:100%;
  box-shadow:var(--mdg-shadow-soft);
}
.location-day{font-weight:900;font-size:18px}
.location-time{color:var(--mdg-muted);margin-top:2px}
.location-place{margin-top:10px;font-weight:900}
.location-addr{margin-top:4px;color:rgba(15,17,21,0.74)}

/* -----------------------------
   Reviews
------------------------------ */
.review-card{
  background:var(--mdg-card);
  border:1px solid var(--mdg-border);
  border-radius:var(--mdg-radius);
  padding:16px;
  box-shadow:var(--mdg-shadow-soft);
}
.stars{display:flex;gap:3px}
.stars .fa-star{color:rgba(15,17,21,0.20)}
.stars .fa-star.on{color:var(--mdg-red)}

/* -----------------------------
   Parallax
------------------------------ */
.parallax{
  position:relative;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  padding-block: 100px;
}
.parallax-1{background-image:url("/img/crowd_truck.jpeg")}
.parallax-2{background-image:url("/img/food/catering/tacos.jpeg")}
.parallax-3{background-image:url("/img/fire.jpg")}
.parallax-4{background-image:url("/img/peppers.jpg")}
.parallax-5{background-image:url("/img/outbreak.jpg")}

.parallax-overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;

  /* Left = white overlay, Right = transparent */
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.70) 35%,
    rgba(255,255,255,0.18) 60%,
    rgba(255,255,255,0.00) 100%
  );
}

.parallax .container{position:relative}

/* -----------------------------
   Truck 3D
------------------------------ */
.truck-3d-wrap{position:relative;perspective:900px;    

    /* make it bigger */
  max-width: 900px;   /* increase this */
  margin-left: auto;  /* keep it aligned right in the column */
}
.truck-3d{
  transform-style:preserve-3d;
  will-change:transform;
  filter:drop-shadow(0 18px 44px rgba(12,18,28,0.18));
    width: 100%;
  height: auto;
  max-width: none;   
}
.truck-glow{
  position:absolute;inset:auto 10% -10% 10%;
  border-radius:999px;
  background:radial-gradient(circle at center, rgba(212,33,40,0.22), transparent 65%);
  filter:blur(18px);
  z-index:-1;
    inset: auto 6% -12% 6%;
  filter: blur(22px);
}

@media (min-width: 992px){
  .truck-3d-wrap{
    max-width: 1000px;
    width: 120%;          /* bigger than the column */
    margin-left: -10%;    /* pull left (use +10% to pull right) */
  }
}
.truck-3d{ width:100%; max-width:none; height:auto; }


/* -----------------------------
   Page hero
------------------------------ */
/* -----------------------------
   Page hero (big background like home hero)
------------------------------ */
.page-hero{
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* lets hero sit under your fixed transparent header */
  padding: calc(var(--mdg-header-h, 120px) + 34px) 0 28px;

  min-height: clamp(360px, 52vh, 620px);
  display:flex;
  align-items:flex-end;
}

/* background image */
.page-hero__bg{
  position:absolute; inset:0;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05);
  z-index: 0;
}

/* overlay for readability */
.page-hero__overlay{
  position:absolute; inset:0;
  z-index: 1;
  pointer-events:none;

  background:
    radial-gradient(1100px 520px at 18% 78%, rgba(255,90,20,0.22), transparent 60%),
    radial-gradient(900px 520px at 88% 10%, rgba(212,33,40,0.20), transparent 60%),
    linear-gradient(180deg,
      rgba(0,0,0,0.12) 0%,
      rgba(0,0,0,0.55) 62%,
      rgba(0,0,0,0.78) 100%);
  opacity: .98;
}

/* content layer */
.page-hero__content{
  position: relative;
  z-index: 2;
}

/* text styling */
.page-hero h1{
  color: #fff;
  letter-spacing: -0.6px;
  font-weight: 950;
  line-height: 1.03;
  font-size: clamp(34px, 4.2vw, 64px);
  text-shadow: 0 14px 34px rgba(0,0,0,0.40);
}

.page-hero__sub{
  color: rgba(255,255,255,0.82);
  font-weight: 850;
  font-size: clamp(16px, 1.2vw, 18px);
  max-width: 60ch;
}

/* optional: subtle bottom fade into page */
.page-hero::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px;
  height: 60px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.10));
  pointer-events:none;
}

/* Mobile */
@media (max-width: 576px){
  .page-hero{
    padding: calc(var(--mdg-header-h, 120px) + 26px) 0 22px;
    min-height: 340px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .page-hero__bg{ transform: none !important; }
}

/* -----------------------------
   Service slabs
------------------------------ */
/* ===== Stack wrapper ===== */
.services-stack{ padding-bottom: 26px; }
.services-stack__wrap{
  width: min(1480px, calc(100% - 2rem));
  margin: 18px auto 0;
  display: grid;
  gap: 22px;
}

/* ===== Card shell ===== */
.svc{
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255, 255, 255);
  box-shadow: 0 26px 80px rgba(0,0,0,0.34);
}

.svc__link{
  display:block;
  text-decoration:none;
  color: inherit;
}

/* ===== Two-column grid ===== */
.svc__grid{
  display:grid;
  grid-template-columns: 0.8fr 1.35fr;
  min-height: 520px;
}

.svc--right .svc__grid{ grid-template-columns: 1.35fr 0.8fr; }
.svc--right .svc__content{ order: 2; }
.svc--right .svc__media{ order: 1; }

/* ===== Content side ===== */
.svc__content{
  position: relative;
  padding: clamp(18px, 3.2vw, 34px);
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;

  /* panel feel */
  background:
    radial-gradient(900px 520px at 20% 80%, rgba(255,90,20,0.14), transparent 55%),
    radial-gradient(700px 520px at 90% 10%, rgba(255,0,70,0.10), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255), rgba(255, 255, 255));
}

.svc__chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
}

.svc__title{
  margin: 0;
  color:#000000;
  font-weight: 950;
  line-height: 1.03;
  font-size: clamp(30px, 3.0vw, 54px);
}

.svc__sub{
  margin: 0 0 4px 0;
  color: rgba(0, 0, 0, 0.84);
  font-weight: 800;
  font-size: clamp(16px, 1.15vw, 18px);
}

/* reveal area collapses, expands on hover */
.svc__reveal{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    max-height .75s cubic-bezier(.2,.9,.2,1),
    opacity .35s ease,
    transform .55s cubic-bezier(.2,.9,.2,1);
}

/* bullets */
.svc__bullets{
  margin: 10px 0 0 0;
  padding-left: 18px;
}
.svc__bullets li{
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 8px;
  font-weight: 750;
}

/* CTA */
.svc__cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  width: fit-content;

  background: #2c6a3a;
  border: 1px solid rgba(255,255,255,0.18);
  color:#ffffff;
  font-weight: 950;
  letter-spacing: .01em;
}

/* ===== Image side ===== */
.svc__media{
  position: relative;
  overflow:hidden;
  background: #0b0b0d;
}

.svc__img{
  position:absolute; inset:0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: saturate(1.15) contrast(1.06);
  transition:
    transform .9s cubic-bezier(.2,.9,.2,1),
    filter .55s ease;
}

/* warm gradient overlay for readability / vibe */
.svc__media::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.18) 45%,
      rgba(0,0,0,0.08) 100%),
    radial-gradient(900px 520px at 25% 85%, rgba(255,90,20,0.30), transparent 58%),
    radial-gradient(900px 520px at 85% 10%, rgba(255,0,70,0.20), transparent 60%);
  opacity: .98;
  pointer-events:none;
  transition: opacity .35s ease;
}

/* heat shimmer */
.svc__heat{
  position:absolute; inset:-35%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,200,80,0.18), transparent 42%),
    radial-gradient(circle at 70% 55%, rgba(255,60,60,0.16), transparent 44%),
    radial-gradient(circle at 45% 80%, rgba(255,120,30,0.14), transparent 46%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: .52;
  animation: svcHeat 7s ease-in-out infinite;
  pointer-events:none;
}

@keyframes svcHeat{
  0%,100% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%     { transform: translate3d( 2%,  2%, 0) scale(1.02); }
}

/* shine sweep */
.svc__shine{
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(110deg, transparent 42%, rgba(255,255,255,0.22) 50%, transparent 58%);
  transform: translateX(-30%) rotate(6deg);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events:none;
}

/* ticker text */
.svc__ticker{
  position:absolute;
  left:-10%;
  right:-10%;
  bottom: 18px;
  pointer-events:none;
  opacity: .16;
  transform: rotate(-2deg);
}
.svc__ticker span{
  display:inline-block;
  white-space: nowrap;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: clamp(30px, 4.8vw, 78px);
  color: rgba(255,255,255,0.95);
  animation: svcTicker 14s linear infinite;
}
@keyframes svcTicker{
  from{ transform: translateX(0); }
  to  { transform: translateX(-35%); }
}

/* floating sticker icon */
.svc__sticker{
  position:absolute;
  top: 18px;
  right: 18px;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.92);
  box-shadow: 0 14px 44px rgba(0,0,0,0.35);
  transform: translateY(0);
  animation: stickerFloat 3.6s ease-in-out infinite;
}
@keyframes stickerFloat{
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ===== Hover / focus interactions ===== */
.svc:hover .svc__img,
.svc:focus-within .svc__img{
  filter: saturate(1.35) contrast(1.08);
}

.svc:hover .svc__media::before,
.svc:focus-within .svc__media::before{ opacity: .90; }

.svc:hover .svc__shine,
.svc:focus-within .svc__shine{
  opacity: 1;
  animation: shineSweep .9s ease-out forwards;
}
@keyframes shineSweep{
  from{ transform: translateX(-35%) rotate(6deg); }
  to{ transform: translateX(35%) rotate(6deg); }
}

.svc:hover .svc__ticker span,
.svc:focus-within .svc__ticker span{
  animation-duration: 9s;
  opacity: .95;
}

/* content reveal expands */
.svc:hover .svc__reveal,
.svc:focus-within .svc__reveal{
  max-height: 360px;
  opacity: 1;
  transform: translateY(0);
}

/* subtle “lift” */
.svc:hover,
.svc:focus-within{
  border-color: rgba(255,120,60,0.28);
  box-shadow: 0 30px 92px rgba(0,0,0,0.42);
}

/* Touch devices: keep expanded */
@media (hover: none){
  .svc__reveal{
    max-height: 360px;
    opacity: 1;
    transform: none;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .svc__img,
  .svc__media,
  .svc__reveal,
  .svc__ticker span,
  .svc__heat,
  .svc__sticker,
  .svc__shine{
    transition: none !important;
    animation: none !important;
  }
}

@media (max-width: 992px){
  /* Set one fixed card height for all mobile service cards */
  .svc{
    height: 620px; /* adjust to taste: 580–700px */
  }

  .svc__link{
    height: 100%;
  }

  /* Force 1-column stack for ALL cards (including .svc--right) */
  .svc__grid,
  .svc--right .svc__grid{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 260px minmax(0, 1fr); /* image + content */
    height: 100%;
    min-height: 0;
  }

  /* Image always on top */
  .svc__media,
  .svc--right .svc__media{
    order: 1;
    height: 260px;
    min-height: 260px;
  }

  /* Content always below, constrained to equal card height */
  .svc__content,
  .svc--right .svc__content{
    order: 2;
    min-height: 0;
    justify-content: flex-start;
    padding: 20px;
    gap: 10px;
    overflow: hidden; /* prevents card from growing */
  }

  /* optional mobile text sizing (keeps visual consistency) */
  .svc__title{
    font-size: clamp(24px, 6vw, 34px);
    line-height: 1.06;
  }

  .svc__sub{
    font-size: 15px;
  }


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

/* On touch devices your reveal is always open — make it scroll inside the fixed card */
@media (max-width: 992px) and (hover: none){
  .svc__reveal{
    max-height: none;
    opacity: 1;
    transform: none;
    overflow: auto;
    flex: 1 1 auto;
    min-height: 0;
    padding-right: 4px; /* optional: space for scrollbar */
  }
}

/* -----------------------------
   PDF
------------------------------ */
.pdf-wrap{
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--mdg-border);
  background:var(--mdg-card);
  box-shadow:var(--mdg-shadow-soft);
}
.pdf-frame{width:100%;height:78vh;border:0}

/* -----------------------------
   About
------------------------------ */
.about-card{
  background:var(--mdg-card);
  border:1px solid var(--mdg-border);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--mdg-shadow-soft);
}

/* -----------------------------
   Gallery
------------------------------ */
.gallery-card{
  width:100%;
  border:0;
  padding:0;
  border-radius:18px;
  overflow:hidden;
  background:transparent;
  text-align:left;
  cursor:pointer;
}
.gallery-img{
  height:220px;
  background-size:cover;background-position:center;
  filter:saturate(1.04);
  transition:transform .25s ease, filter .25s ease;
}
.gallery-card:hover .gallery-img{
  transform:scale(1.04);
  filter:saturate(1.18) contrast(1.03);
}
.gallery-label{
  padding:10px 12px;
  background:rgba(255,255,255,0.95);
  border:1px solid var(--mdg-border);
  border-top:0;
  color:rgba(15,17,21,0.82);
  font-size:13px;
}
.lightbox-wrap{
  position:relative;
  display:flex;justify-content:center;align-items:center;
  min-height:60vh;
}
.lightbox-wrap img{
  max-width:100%;
  max-height:75vh;
  border-radius:18px;
  border:1px solid var(--mdg-border);
  box-shadow:var(--mdg-shadow);
}
.lightbox-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  border:1px solid var(--mdg-border-strong);
  background:rgba(255,255,255,0.92);
  color:var(--mdg-text);
  width:46px;height:46px;border-radius:14px;
  box-shadow:var(--mdg-shadow-soft);
}
.lightbox-nav:hover{border-color:rgba(212,33,40,0.35)}
.lightbox-nav.prev{left:10px}
.lightbox-nav.next{right:10px}

/* -----------------------------
   FAQ
------------------------------ */
.mdg-accordion .accordion-item{
  background:var(--mdg-card);
  border:1px solid var(--mdg-border);
  border-radius:18px;
  overflow:hidden;
  margin-bottom:12px;
  box-shadow:var(--mdg-shadow-soft);
}
.mdg-accordion .accordion-button{
  background:transparent;
  color:var(--mdg-text);
  font-weight:900;
}
.mdg-accordion .accordion-button:focus{box-shadow:none}
.mdg-accordion .accordion-button:not(.collapsed){
  background:rgba(212,33,40,0.04);
}
.mdg-accordion .accordion-body{
  background:rgba(246,247,249,0.70);
  color:rgba(15,17,21,0.74);
}

/* -----------------------------
   Contact
------------------------------ */
.contact-cards{display:grid;grid-template-columns:1fr;gap:10px}
@media(min-width:992px){.contact-cards{grid-template-columns:1fr 1fr}}
.contact-card{
  display:flex;align-items:center;gap:14px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid var(--mdg-border);
  background:rgba(255,255,255,0.92);
  text-decoration:none;
  color:var(--mdg-text);
  box-shadow:var(--mdg-shadow-soft);
}
.contact-card:hover{
  border-color:rgba(212,33,40,0.28);
  background:rgba(212,33,40,0.03);
}
.contact-card i{
  width:42px;height:42px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(212,33,40,0.10);
  border:1px solid rgba(212,33,40,0.22);
  color:var(--mdg-red);
}

/* ===== Contact: direct cards (3 columns) ===== */
.contact-cards-grid .contact-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--mdg-border);
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--mdg-shadow-soft);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
  height: 100%;
}

.contact-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 1.05rem;
  color: var(--mdg-text);
  background:
    linear-gradient(135deg, rgba(212,33,40,.10), rgba(44,106,58,.10)),
    #fff;
  border: 1px solid var(--mdg-border);
}

.contact-card__body {
  min-width: 0;
}

.contact-card__label {
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 4px;
}

.contact-card__value {
  color: var(--mdg-text);
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.contact-card__hint {
  margin-top: 5px;
  color: var(--mdg-muted);
  font-size: .88rem;
}

@media (hover:hover) and (pointer:fine) {
  .contact-cards-grid .contact-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--mdg-shadow);
    border-color: var(--mdg-border-strong);
    background: linear-gradient(135deg, rgba(212,33,40,.03), rgba(44,106,58,.03)), #fff;
  }
}

.contact-cards-grid .contact-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(44,106,58,.15), var(--mdg-shadow-soft);
  border-color: rgba(44,106,58,.35);
}

/* ===== Contact: map card ===== */
.contact-map-card {
  overflow: hidden;
}

.contact-map-frame {
  border: 1px solid var(--mdg-border);
  background: var(--mdg-bg2);
}

.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-map-meta {
  display: grid;
  gap: 8px;
}

.contact-map-meta__item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--mdg-border);
  background: rgba(255,255,255,.76);
}

.contact-map-meta__item i {
  margin-top: 2px;
  width: 16px;
  text-align: center;
  color: var(--mdg-muted);
}

.contact-map-meta__item span,
.contact-map-meta__item a {
  color: var(--mdg-text);
  text-decoration: none;
  font-weight: 600;
  line-height: 1.35;
}

.contact-map-meta__item a:hover {
  text-decoration: underline;
}

.parallax-card{
  border-radius:22px;
  min-height:100%;
  background-size:cover;background-position:center;
  border:1px solid var(--mdg-border);
  overflow:hidden;
  position:relative;
  box-shadow:var(--mdg-shadow-soft);
}
.parallax-card::before{
  content:"";
  position:absolute;inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.70));
}
.parallax-card-inner{position:relative;padding:26px}

/* -----------------------------
   Shop
------------------------------ */
.price-pill{
  padding:10px 10px;border-radius:999px;
  background:rgba(212,33,40,0.10);
  border:1px solid rgba(212,33,40,0.22);
  font-weight:900;
  color:var(--mdg-text);
  min-width: 95px;
}
.order-summary{
  border-radius:18px;
  padding:14px;
  border:1px solid var(--mdg-border);
  background:rgba(246,247,249,0.75);
  color:rgba(15,17,21,0.78);
}
.bank-box{
  border-radius:18px;
  padding:14px;
  border:1px solid rgba(212,33,40,0.22);
  background:rgba(212,33,40,0.06);
}

/* -----------------------------
   Modal (Jetzt Anfragen)
------------------------------ */
.mdg-modal{
  background:rgba(255,255,255,0.96);
  border:1px solid var(--mdg-border);
  border-radius:22px;
  box-shadow:var(--mdg-shadow);
}
.wizard-progress{
  height:10px;border-radius:999px;
  background:rgba(246,247,249,0.95);
  border:1px solid var(--mdg-border);
  overflow:hidden;
}
.wizard-progress-bar{
  height:100%;
  width:33%;
  background:linear-gradient(90deg, var(--mdg-red), rgba(212,33,40,0.55));
  border-radius:999px;
  transition:width .25s ease;
}
.tag-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media(max-width:480px){.tag-grid{grid-template-columns:1fr}}
.tag-check input{display:none}
.tag-check span{
  display:flex;align-items:center;gap:10px;
  padding:12px 14px;border-radius:16px;
  border:1px solid var(--mdg-border);
  background:rgba(255,255,255,0.92);
  color:rgba(15,17,21,0.84);
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease, background .12s ease;
}
.tag-check span i{color:rgba(15,17,21,0.55)}
.tag-check input:checked + span{
  border-color:rgba(212,33,40,0.55);
  background:rgba(212,33,40,0.08);
  transform:translateY(-1px);
}
.tag-check input:checked + span i{color:var(--mdg-red)}
.wizard-error{
  border:1px solid rgba(212,33,40,0.35);
  background:rgba(212,33,40,0.10);
  padding:10px 12px;border-radius:14px;
  color:var(--mdg-text);
}
.check-badge{
  width:70px;height:70px;border-radius:22px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(212,33,40,0.10);
  border:1px solid rgba(212,33,40,0.22);
  margin:0 auto;
  font-size:28px;
  color:var(--mdg-red);
}

/* -----------------------------
   CTA
------------------------------ */
.cta-card{
  background:rgba(255,255,255,0.92);
  border:1px solid var(--mdg-border);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--mdg-shadow-soft);
}

/* -----------------------------
   Footer
------------------------------ */
/* -----------------------------
   Footer
------------------------------ */
.footer{
  margin-top: 0 !important;
  border-top:1px solid rgba(255,255,255,.18);
  background:#5b0a0a; /* dark red */
  color:#fff;
}

/* Make Bootstrap "muted" text readable on dark bg */
.footer .text-muted{
  color:rgba(255,255,255,.78) !important;
}

.footer-title{font-weight:900;margin-bottom:12px;color:#fff}

.footer-link{
  color:rgba(255,255,255,0.88);
  text-decoration:none;
}
.footer-link:hover{color:#fff;text-decoration:underline}

.social{
  width:42px;height:42px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,0.10);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  text-decoration:none;
}
.social:hover{
  border-color:rgba(255,255,255,0.55);
  background:rgba(255,255,255,0.16);
  color:#fff;
}

.hr-soft{height:1px;background:rgba(255,255,255,0.15)}

.footer-bottom{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.18);
  display:block;
  text-align:center;
}

/* Credits link */
.footer .credits-link{color:rgba(255,255,255,.90);text-decoration:none}
.footer .credits-link:hover{color:#fff;text-decoration:underline}

/* Mobile: single column (already happens) + center everything */
@media (max-width: 767.98px){
  .footer{ text-align:center; }
  .footer .d-flex{ justify-content:center !important; }
  .footer .d-flex.flex-column{ align-items:center; }
  .footer .d-flex.flex-wrap{ flex-direction:column; align-items:center; }
}


/* -----------------------------
   Back to top
------------------------------ */
.to-top{
  position:fixed;
  right:18px;bottom:18px;
  width:46px;height:46px;border-radius:16px;
  border:1px solid var(--mdg-border-strong);
  background:rgba(255,255,255,0.95);
  color:var(--mdg-text);
  box-shadow:var(--mdg-shadow-soft);
  display:none;
}
.to-top.show{display:inline-flex;align-items:center;justify-content:center}
.to-top:hover{border-color:rgba(212,33,40,0.35);color:var(--mdg-red)}

/* -----------------------------
   Responsive tweaks
------------------------------ */
@media(max-width:991px){
  .hero{min-height:78vh}
  .hero-content{padding:46px 0}
  .service-slab{grid-template-columns:1fr}
  .service-img{min-height:200px}
  .pdf-frame{height:70vh}

  .hero-inner, .hero-ctas{
    align-items: center; justify-content: center; text-align: center;
  }
}




/* -----------------------------
   Final CTA (image background + borders footer)
------------------------------ */
.final-cta{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* IMPORTANT: make it border footer */
  margin-bottom: 0;
  padding: 180px 0 0;   /* no bottom padding so it kisses the footer */
}

/* background image layer */
.final-cta__bg{
  position:absolute; inset:0;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  filter: saturate(1.15) contrast(1.06);
  z-index: 0;
}

/* card */
.final-cta__card{
  position: relative;
  z-index: 2;

  border-radius: 28px 28px 0 0; /* top corners rounded, bottom edges flush to footer */
  padding: clamp(18px, 3vw, 30px);

  background: rgba(10,10,12,0.55);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow: 0 26px 80px rgba(0,0,0,0.35);

  /* sit on the bottom edge of section */
  margin-top: clamp(10px, 2vw, 18px);
  margin-bottom: 0;
}

/* little glow behind card */
.final-cta__glow{
  position:absolute;
  inset: -30px;
  background:
    radial-gradient(520px 240px at 20% 20%, rgba(212,33,40,0.22), transparent 60%),
    radial-gradient(520px 240px at 80% 80%, rgba(44,106,58,0.18), transparent 60%);
  filter: blur(18px);
  opacity: .55;
  pointer-events:none;
  z-index: -1;
}

.final-cta__kicker{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}

.final-cta__title{
  color:#fff;
  font-weight: 950;
  font-size: clamp(26px, 3.0vw, 44px);
  line-height: 1.05;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.final-cta__sub{
  color: rgba(255,255,255,0.80);
  font-weight: 850;
}

/* actions */
.final-cta__actions{
  display:flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* micro interactions */
.final-cta__card:hover .btn,
.final-cta__card:focus-within .btn{
  transform: translateY(-1px);
}

/* small line */
.final-cta__tiny{
  margin-top: 10px;
  color: rgba(255,255,255,0.68);
  font-weight: 800;
  font-size: 13px;
}
.final-cta__actions button:hover{
  color: #fff;
}

.final-cta__actions a:hover{
  color: #fff;
}
/* mobile */
@media (max-width: 991px){
  .final-cta__actions{ justify-content: flex-start; }
  .final-cta__card{ border-radius: 24px; } /* on mobile ok to round all */
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .final-cta::after{ animation: none !important; }
  .final-cta__bg{ transform: none !important; }
}



/* -----------------------------
   Locations (image cards)
------------------------------ */
.locations .text-muted{ color: rgba(255,255,255,0.72) !important; }

.loc-card{
  position: relative;
  display:block;
  min-height: 460px;
  border-radius: 26px;
  overflow:hidden;
  text-decoration:none;
  color: #fff;

  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 22px 70px rgba(0,0,0,0.34);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, filter .18s ease;
  isolation: isolate;
}

/* background image */
.loc-bg{
  position:absolute; inset:0;
  background-image: var(--loc-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.15) contrast(1.05);
  transition: transform .85s cubic-bezier(.2,.9,.2,1), filter .55s ease;
}

/* readability overlay */
.loc-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 540px at 22% 85%, rgba(255,90,20,0.28), transparent 58%),
    radial-gradient(900px 520px at 85% 10%, rgba(212,33,40,0.22), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.70) 70%, rgba(0,0,0,0.88) 100%);
  opacity: .98;
  transition: opacity .25s ease;
  pointer-events:none;
}

/* subtle “heat/sauce” shimmer */
.loc-fx{
  position:absolute; inset:-35%;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,200,80,0.18), transparent 42%),
    radial-gradient(circle at 72% 55%, rgba(255,60,60,0.14), transparent 44%),
    radial-gradient(circle at 45% 82%, rgba(255,120,30,0.14), transparent 46%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: .45;
  animation: locFloat 7s ease-in-out infinite;
  pointer-events:none;
}
@keyframes locFloat{
  0%,100% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%     { transform: translate3d( 2%,  2%, 0) scale(1.02); }
}

/* content layout */
.loc-top{
  position:relative;
  z-index: 2;
  padding: 18px 18px 0 18px;
  display:flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.loc-day{
  font-weight: 950;
  font-size: 20px;
  letter-spacing: .2px;
  text-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.loc-pill{
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 950;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

.loc-body{
  position:absolute;
  left: 18px; right: 18px; bottom: 18px;
  z-index: 2;

  border-radius: 22px;
  padding: 16px 16px;

  background: rgba(10,10,12,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  transform: translateY(10px);
  transition: transform .55s cubic-bezier(.2,.9,.2,1), border-color .25s ease;
}

.loc-place{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 950;
  font-size: 16px;
  line-height: 1.2;
}
.loc-place i{ color: rgba(255,255,255,0.92); margin-top: 2px; }

.loc-addr{
  margin-top: 6px;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  font-size: 13px;
}

.loc-special{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(44,106,58,0.22), rgba(255,160,40,0.12));
  border: 1px solid rgba(44,106,58,0.28);
  color: rgba(255,255,255,0.92);
  font-weight: 900;
}

.loc-cta{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-weight: 950;
  color:#fff;
  width: fit-content;
  transition: transform .18s ease, background-color .18s ease;
}

.loc-closed{
  color: rgba(255,255,255,0.78);
  font-weight: 850;
  line-height: 1.35;
}

/* state tweaks */
.loc-card.is-closed .loc-bg{
  filter: grayscale(1) contrast(1.02) brightness(.9);
}
.loc-card.is-closed .loc-pill{
  background: rgba(212,33,40,0.16);
  border-color: rgba(212,33,40,0.26);
}

/* hover wow */
.loc-card:hover,
.loc-card:focus-visible{
  transform: translateY(-4px);
  border-color: rgba(44,106,58,0.32);
  box-shadow: 0 28px 90px rgba(0,0,0,0.44);
}

.loc-card:hover .loc-bg,
.loc-card:focus-visible .loc-bg{
  transform: scale(1.12) rotate(-0.35deg);
  filter: saturate(1.32) contrast(1.08);
}

.loc-card:hover::before,
.loc-card:focus-visible::before{
  opacity: .92;
}

.loc-card:hover .loc-body,
.loc-card:focus-visible .loc-body{
  transform: translateY(0);
  border-color: rgba(255,255,255,0.18);
}

.loc-card:hover .loc-cta,
.loc-card:focus-visible .loc-cta{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.18);
}

/* mobile */
@media (max-width: 576px){
  .loc-card{ min-height: 420px; border-radius: 22px; }
  .loc-top{ padding: 16px 16px 0 16px; }
  .loc-body{ left: 16px; right: 16px; bottom: 16px; }
  .loc-day{ font-size: 18px; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .loc-fx{ animation: none !important; }
  .loc-card, .loc-bg, .loc-body, .loc-cta{ transition: none !important; }
}




/* -----------------------------
   Services CTA (SPX) — full-section background
------------------------------ */
.spx-services-cta{
  position: relative;
  overflow: hidden;
  isolation: isolate;

  padding: clamp(56px, 6vw, 86px) 0;
  margin-top: 22px;
}

/* full-section background */
.spx-services-cta .spx-cta__bg{
  position:absolute; inset:0;
  background-image: var(--spx-cta-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.14) contrast(1.06);
  transition: transform .9s cubic-bezier(.2,.9,.2,1), filter .35s ease;
  z-index: 0;
}

/* overlay for readability */
.spx-services-cta .spx-cta__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(1000px 520px at 18% 78%, rgba(255,90,20,0.22), transparent 60%),
    radial-gradient(900px 520px at 88% 10%, rgba(212,33,40,0.18), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.58) 62%, rgba(0,0,0,0.86) 100%);
  opacity: .98;
  pointer-events:none;
  z-index: 1;
}

/* subtle shimmer */
.spx-services-cta .spx-cta__fx{
  position:absolute; inset:-35%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,200,80,0.18), transparent 42%),
    radial-gradient(circle at 70% 55%, rgba(255,60,60,0.14), transparent 44%),
    radial-gradient(circle at 45% 80%, rgba(255,120,30,0.14), transparent 46%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: .45;
  animation: spxCtaFloat 7s ease-in-out infinite;
  pointer-events:none;
  z-index: 1;
}
@keyframes spxCtaFloat{
  0%,100% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50%     { transform: translate3d( 2%,  2%, 0) scale(1.02); }
}

/* glass content block */
.spx-services-cta .spx-cta__inner{
  position: relative;
  z-index: 2;
  color: #fff;

  border-radius: 30px;
  padding: clamp(18px, 3.2vw, 34px);

  background: rgba(10,10,12,0.52);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 26px 80px rgba(0,0,0,0.35);
}

.spx-services-cta .spx-cta__center{
  max-width: 760px;
  margin-inline: auto;
}

.spx-services-cta .spx-cta__title{
  font-weight: 950;
  letter-spacing: -0.4px;
  line-height: 1.05;
  text-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.spx-services-cta .spx-cta__sub{
  color: rgba(255,255,255,0.82);
  font-weight: 850;
  max-width: 60ch;
  margin-inline: auto;
}

.spx-services-cta .spx-cta__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* hover wow */
.spx-services-cta:hover .spx-cta__bg{
  transform: scale(1.12);
  filter: saturate(1.28) contrast(1.08);
}

/* reduced motion */
@media (prefers-reduced-motion: reduce){
  .spx-services-cta .spx-cta__fx{ animation: none !important; }
  .spx-services-cta .spx-cta__bg{ transition: none !important; transform: none !important; }
}



/* ===== Cookie banner ===== */
.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  padding: 12px;
  pointer-events: none; /* allows card-only interactions */
}

.cookie-banner__card {
  pointer-events: auto;
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,0.96);
  border: 1px solid var(--mdg-border, #e5e7eb);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(12, 18, 28, 0.18);
  backdrop-filter: blur(8px);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.cookie-banner__title {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--mdg-text, #111827);
  margin-bottom: 4px;
}

.cookie-banner__text {
  margin: 0;
  color: var(--mdg-muted, #4b5563);
  font-size: 0.94rem;
  line-height: 1.4;
}

.cookie-banner__text a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.cookie-btn {
  width: 100%;
  justify-content: center;
}

/* Tablet / desktop */
@media (min-width: 640px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-banner__card {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px;
  }

  .cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }

  .cookie-btn {
    width: auto;
    min-width: 160px;
  }
}

/* Respect small screens & notches */
@supports (padding: max(0px)) {
  .cookie-banner {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
}