
/* =========================================================
   AT-SMOKER â€“ CLEAN CSS (deduped + header smoke fixed)
   - Header background uses absolute /assets/img/â€¦ paths
   - Header content max width = 1200px centered
   - Removed duplicate .btn definitions (single source of truth)
   - Kept your existing components & responsive behavior
========================================================= */

/* =========================
   0) DESIGN TOKENS
========================= */
:root{
  --bg:#0f0f10;
  --bg2:#141416;
  --card:#17181b;
  --text:#f3f3f3;
  --muted:rgba(243,243,243,.75);
  --line:rgba(255,255,255,.10);

  --accent:#ffb400;
  --accent2:#e86a2a;

  --shadow: 0 14px 40px rgba(0,0,0,.35);
  --radius: 16px;

  --container: 1100px;
  --header-container: 1200px;

  --cta:#E50919; /* Button-Rot */
}

/* =========================
   1) BASE / RESET
========================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont,
               'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--bg), #0b0b0c);
  color: var(--text);
}

a{ color:inherit; }
img{ display:block; max-width:100%; height:auto; }

h1, h2, h3 { letter-spacing: -0.02em; }

/* helpers */
.container{ max-width:var(--container); margin:0 auto; padding:0 18px; }
.center{ text-align:center; }
.mt{ margin-top:26px; }
.mt-sm{ margin-top:14px; }
.muted{ color:var(--muted); }

/* =========================
   2) TOPBAR
========================= */
.topbar{
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.topbar__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.topbar__link{
  opacity:.9;
  text-decoration:none;
}
.topbar__link:hover{ opacity:1; }

.pill{
  display:inline-flex;
  gap:8px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background: rgba(0,0,0,.25);
}

/* =========================
   3) BUTTONS (single source of truth)
   - also works for header actions
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;

  height: 44px;
  padding: 0 18px;
  border-radius: 3px;

  border:1px solid transparent;
  text-decoration:none;
  user-select:none;
  white-space: nowrap;

  background: var(--cta);
  color:#fff;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;

  box-shadow: var(--shadow);
}
.btn:hover{ filter:brightness(1.03); }

.btn--ghost{
  background: transparent;
  border-color: rgba(255,255,255,.55);
  color: var(--text);
  box-shadow:none;
}
.btn--ghost:hover{
  border-color: rgba(255,255,255,.9);
}

.btn--primary{
  background: var(--cta);
  border-color: var(--cta);
  color:#fff;
}

.btn--small{ height: 40px; padding: 0 12px; border-radius:10px; }
.btn--large{ height: 50px; padding: 0 20px; border-radius:14px; font-size:16px; }

.btn:focus-visible{
  outline: 3px solid rgba(255,255,255,.35);
  outline-offset: 3px;
}

/* =========================
   4) HEADER / NAV + SMOKE BG
========================= */
.site-header{
  position: relative;

  background: #0b0b0b  !important;
  min-height: 120px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate; /* keeps overlay layering clean */
}

/* Smoke background (absolute path -> works everywhere) */
.site-header::before{
  content:"";
  position:absolute;
  inset:0;

  /* use JPG for now (server mime weirdness on AVIF in your screenshot) */
  background-image: url("/assets/img/header-smoke.jpg?v=2");
  background-size: cover;
  background-position: center;

  opacity: .90;
  filter: none; /* keep visible; you can re-add later if needed */
  transform: scale(1.05);
  z-index: -2;
}

/* Dark gradient overlay for readability */
.site-header::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.60) 100%);
  z-index: -1;
  pointer-events:none;
}

.header-inner{
    
  width: min(1200px, calc(100% - 48px)) !important;
  
  margin: 0 auto;

  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 24px;
}

.brand{
  display:flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.brand-logo{
  height: 44px;
  width: auto;
  display:block;
}

.brand-sub{
  font-size: 14px;
  color:  #fff;
  letter-spacing: .2px;
  
}

.header-actions{
  display:flex;
  align-items:center;
  gap: 16px;
}

/* NAV (if you use it) */
.nav{
  display:flex;
  align-items:center;
  gap:12px;
}
.nav__link{
  text-decoration:none;
  padding:10px 10px;
  border-radius:10px;
  opacity:.9;
}
.nav__link:hover{
  background: rgba(255,255,255,.06);
  opacity:1;
}

.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:12px;
}
.nav-toggle span{
  display:block;
  width:20px;
  height:2px;
  background: var(--text);
  margin:5px auto;
  opacity:.85;
}

/* =========================
   5) HERO
========================= */
.hero{ padding:46px 0 10px; }

.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:stretch;
}
.hero h1{
  font-size: clamp(28px, 3vw, 44px);
  line-height:1.1;
  margin:0 0 14px;
}
.lead{
  font-size: 18px;
  line-height:1.65;
  color:var(--muted);
  margin:0 0 18px;
}
.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin: 16px 0 18px;
}

.hero__media{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background: var(--card);
}
.hero__media img{
  width:100%;
  height:100%;
  min-height: 380px;
}
.hero__badge{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:10px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.55);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
}

.hero__proof{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  margin-top: 10px;
}
.proof{
  display:flex;
  gap:12px;
  border:1px solid var(--line);
  border-radius: 14px;
  padding:12px 12px;
  background: rgba(255,255,255,.03);
}
.proof__k{ font-size:20px; }
.proof__t{ font-size:14px; color:var(--muted); }
.proof__t strong{ color:var(--text); }

/* =========================
   6) SECTIONS / CARDS (dark)
========================= */
.section{ padding:56px 0; }
.section--alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section h2{
  margin:0 0 12px;
  font-size: clamp(22px, 2vw, 30px);
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top: 18px;
}

.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.card--lift{ background: var(--card); }
.card h3{ margin:0 0 8px; }
.card p{ margin:0; color:var(--muted); line-height:1.65; }

.list{
  margin:12px 0 0;
  padding-left: 18px;
  color:var(--muted);
}
.list li{ margin:6px 0; }

/* =========================
   7) STEPS
========================= */
.steps{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top: 18px;
}
.step{
  display:flex;
  gap:14px;
  padding:16px;
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
}
.step__n, .step__n2{
  height:56px;
  font-size:24px;
  border-radius:99px;
  display:grid;
  place-items:center;
  background: transparent;
  border: 1px solid #f3f3f3;
  font-weight:900;
}
.step__n{ width:56px; }
.step__n2{ width:73px; }

.step__c h3{ margin:0 0 6px; }
.step__c p{ margin:0; color:var(--muted); line-height:1.65; }

/* =========================
   8) SPLIT / NOTE / CALLOUT
========================= */
.split{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:start;
}

.note{
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.note__profile{
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--line);
  background: #111;
}
.note__profile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.callout{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:16px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255,180,0,.14), rgba(232,106,42,.10));
  border:1px solid rgba(255,255,255,.14);
}
.callout__left{ display:flex; flex-direction:column; gap:6px; }
.callout__left span{ color:var(--muted); }

/* =========================
   9) FOOTER
========================= */
.footer{
  border-top:1px solid var(--line);
  padding:34px 0 18px;
  background: rgba(0,0,0,.25);
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap:14px;
}
.footer__brand{ font-weight:900; font-size:18px; }
.footer__title{ font-weight:800; margin-bottom:10px; }
.footer__list{ list-style:none; padding:0; margin:0; }
.footer__list li{ margin:8px 0; color:var(--muted); }
.footer__list a{ text-decoration:none; }
.footer__list a:hover{ text-decoration:underline; }

.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  color:var(--muted);
  font-size:14px;
}

/* =========================
   10) OFFERS GRID (old dark cards)
========================= */
.offers-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}

.offer-card{
  display:flex;
  flex-direction:column;
  gap:12px;
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.18);
  transition: transform .12s ease, filter .12s ease;
}
.offer-card:hover{
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.offer-top h3{ margin:0 0 6px; }
.offer-top p{ margin:0; color:var(--muted); line-height:1.65; }

.offer-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width: fit-content;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,180,0,.22);
  background: rgba(255,180,0,.14);
  color: var(--text);
  font-weight:800;
  font-size:12px;
  margin-bottom:10px;
}
.offer-badge--alt{
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight:700;
}
.offer-list{ margin:0; padding-left:18px; color: var(--muted); }
.offer-list li{ margin:6px 0; }
.offer-actions{
  margin-top:auto;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

/* =========================
   11) OFFER CARDS (white figma cards) - NEW
========================= */
.offer-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:18px;
  margin-top:18px;
}

.offerCard{
  position: relative;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  padding: 28px 30px 26px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
}

.offerCard__icon{
  position:absolute;
  right: 30px;
  top: 30px;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.offerCard__title{
  height:90px;
  margin: 52px 0 12px;
  padding-right: 110px;
  font-weight: 700;
  font-size: 27.8px;
  line-height: 32px;
  letter-spacing: 1px;
  color: #000;
}

.offerCard__text{
  margin: 0 0 18px;
  font-weight: 500;
  font-size: 16.7px;
  line-height: 1.75;
  letter-spacing: 0.2px;
  color: #1D1D1B;
}

.offerCard__btn{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 47px;
  padding: 0 22px;
  width: fit-content;
  background: #B22B18;
  border-radius: 30px;

  font-weight: 900;
  font-size: 14.9px;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  text-decoration: none;
}
.offerCard__btn:hover{ filter: brightness(1.05); }

.offerCard__header{
  width:100%;
  height:90px;
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}

/* =========================
   12) GALLERY MASONRY
========================= */
.gallery-masonry{
  column-count: 4;
  column-gap: 14px;
  margin-top: 18px;
}
.gallery-masonry img{
  width: 100%;
  display: block;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #222;
  border: 1px solid var(--line);
  break-inside: avoid;
  object-fit: cover;
  transition: transform .15s ease, filter .15s ease;
}
.gallery-masonry img:hover{
  transform: scale(1.01);
  filter: brightness(1.05);
}

/* =========================
   13) WILD / FLEISCH SECTION
========================= */
.section--wild{
  padding: 56px 0;
}

.wild__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

/* LEFT */
.wild__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.section--wild h2{
  margin: 0 0 14px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.1;
}

.wild__lead{
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.wild__hint{
  margin: 0 0 18px;
  color: rgba(243,243,243,.85);
  font-size: 16px;
  line-height: 1.7;
}

.wild__actions{
  display:flex;
  gap:12px;
  flex-wrap: wrap;
}

/* RIGHT: Image card */
.wild__media{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255,255,255,.14);

  background-image: url("/assets/img/TobiAlexUeberUns.jpg?v=7");
  background-size: cover;
  background-position: center;
}

.wild__mediaOverlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 20% 15%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 45%, rgba(0,0,0,.55));
}

.wild__facts{
  position:absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;

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

  background: rgba(20,20,22,.55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);

  color: #fff;
}

.wild__facts h3{
  margin: 0 0 12px;
  text-align: center;
  font-size: 26px;
  line-height: 1.1;
}

.wild__facts ul{
  margin: 0;
  padding-left: 22px;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  font-size: 18px;
}

.wild__facts li{
  margin: 10px 0;
}

/* =========================
   14) GENERIC BACKGROUND SECTION
========================= */
.section--bg{
  padding: 0;
}

.section__bg{
  position: relative;
  padding: 56px 0;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.section__bg::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 20% 15%, rgba(0,0,0,.35), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.45) 45%, rgba(0,0,0,.6));
  z-index: 0;
}

.section__bg > .container{
  position: relative;
  z-index: 1;
}

.section__bg--catering{
  background-image: url("/assets/img/catering.jpg");
}

/* =========================
   15) RESPONSIVE (global)
========================= */
@media (max-width: 1100px){
  .gallery-masonry{ column-count: 3; }
}

@media (max-width: 980px){
  .offer-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 920px){
  .hero__grid, .split{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .hero__media img{ min-height: 260px; }
  .topbar__inner{ flex-direction:column; align-items:flex-start; }
  .footer__grid{ grid-template-columns: 1fr; }
  .offers-grid{ grid-template-columns: 1fr; }

  .hero__grid { display:flex; flex-direction: column; }
  .hero__media { order: -1; margin-bottom: 18px; }

  .wild__grid{ grid-template-columns: 1fr; }
  .wild__media{ min-height: 560px; }
}

@media (max-width: 860px){
  .nav-toggle{ display:block; }
  .nav{
    position:absolute;
    right:18px;
    top: 64px;
    flex-direction:column;
    align-items:stretch;
    gap:8px;
    width: min(340px, calc(100vw - 36px));
    padding:12px;
    border-radius: var(--radius);
    background: rgba(15,15,16,.96);
    border:1px solid var(--line);
    box-shadow: var(--shadow);
    display:none;
  }
  .nav.is-open{ display:flex; }
  .nav__link{ padding:12px 12px; }
}

@media (max-width: 760px){
  .gallery-masonry{ column-count: 2; }
}

@media (max-width: 720px){
  .site-header{ min-height: 104px; }

  .header-inner{
    width: min(var(--header-container), calc(100% - 28px));
    gap: 14px;
  }

  .brand-logo{ height: 38px; }
  .brand-sub{ font-size: 12px; }

  .header-actions{ gap: 10px; }
  .btn{ height: 40px; padding: 0 12px; font-size: 12px; }
}

@media (max-width: 520px){
  .step__n, .step__n2 { border: none; }

  .offerCard{ padding: 20px; min-height: unset; }

  /* override absolute icon for mobile header row */
  .offerCard__icon{
    position: static;
    width: 30%;
    max-width: 70px;
    height: auto;
    flex-shrink: 0;
  }

  .offerCard__title{
    margin: 0;
    align-content: center;
    height: 60px;
    width: 100%;
    padding-right: 0;
    font-size: 22px;
    line-height: 1.2;
    max-width: 100%;
  }

  /* Mobile: Bild als Eye-Catcher zuerst */
  .wild__content{ order: 2; }
  .wild__media{ order: 1; min-height: 520px; }

  .wild__lead{ font-size: 17px; }
  .wild__facts ul{ font-size: 17px; }
}

@media (max-width: 420px){
  .gallery-masonry{ column-count: 1; }
}

@media (min-width: 900px){
  .note{
    align-items: center;
    text-align: left;
  }
}


/* ===== HERO (full background, centered content max 1200) ===== */

.hero--bg{
  position: relative;
  color: #fff;
  overflow: hidden;

  /* Bild direkt auf die Section -> keine Opacity/Filter-Killer */
  background: url("/assets/img/hero.jpg?v=2") center / cover no-repeat;
  background-color: #000; /* fallback */

  /* optional: falls du willst, dass das Bild ein bisschen "ruhiger" wirkt */
  /* background-position: right center; */
}

/* Overlay: links stark fÃ¼r Text, rechts schwach damit Bild sichtbar bleibt */
.hero--bg::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 0;

  background:
    /* leichte Vignette, damit es "cinematic" wirkt */
    radial-gradient(1200px 700px at 85% 50%, rgba(0,0,0,.10), rgba(0,0,0,.55) 80%),
    /* linke TextflÃ¤che dunkler, rechts deutlich transparenter */
    linear-gradient(90deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.55) 35%,
      rgba(0,0,0,.25) 60%,
      rgba(0,0,0,.10) 78%,
      rgba(0,0,0,.05) 100%
    );
}

/* Inner wrapper: max 1200 und immer zentriert */
.hero__inner{
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 52px;
}

/* Layout */
.hero__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: center;
  min-height: 520px;
}

/* Content panel: nur minimal "glass", nicht zu dunkel */
.hero__content{
  max-width: 580px;
  padding: 22px 18px;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}

.hero h1{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.2vw, 54px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero__lead{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  line-height: 1.65;
}

/* Bullet list */
.hero__bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 10px;
}
.hero__bullets li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 18px;
  color: rgba(255,255,255,.92);
}
.hero__bullets li::before{
  content: "â—¦";
  font-weight: 900;
  line-height: 1;
  opacity: .9;
  transform: translateY(2px);
}

/* CTA row */
.hero__cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}

/* PDF link */
.hero__pdf{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.92);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 600;
}
.hero__pdf:hover{ color:#fff; }

/* ===== Responsive ===== */
@media (max-width: 920px){
  .hero__inner{
    width: min(1200px, calc(100% - 28px));
    padding: 48px 0 40px;
  }
  .hero__grid{
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero__content{
    max-width: 100%;
  }

  /* Auf Mobile etwas mehr Overlay, weil Text sonst schnell absÃ¤uft */
  .hero--bg::before{
    background:
      radial-gradient(900px 520px at 70% 35%, rgba(0,0,0,.15), rgba(0,0,0,.70) 85%),
      linear-gradient(180deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 55%,
        rgba(0,0,0,.70) 100%
      );
  }
}

@media (max-width: 520px){
  .hero__content{
    padding: 18px 14px;
    background: rgba(0,0,0,.28);
  }
  .hero__lead,
  .hero__bullets li{
    font-size: 16px;
  }
}


.hero__bullets{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:12px;
}

.hero__bullets li{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:18px;
  color: rgba(255,255,255,.92);
}

/* vorheriges "â—¦" raus */
.hero__bullets li::before{ content:none; }

.hero__icon{
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  opacity: .95;
  /* macht SVGs zuverlÃ¤ssig weiÃŸ, falls sie â€žschwarzâ€œ kommen */
  filter: brightness(0) invert(1);
}

.hero__icon--pdf{
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

/* ===== ABOUT (Ãœber uns mit Background-Image) ===== */
.about--bg{
  position: relative;
  color:#fff;
  overflow:hidden;
  background: #000; /* fallback */
}

/* Background image */
.about--bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/img/ueberuns-bg.jpg?v=1") center / cover no-repeat;
  z-index:0;
  transform: scale(1.02);
}

/* Dark overlay for readability */
.about--bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(0,0,0,.45), rgba(0,0,0,.10) 55%, rgba(0,0,0,.65) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55));
}

.about__inner{
  position: relative;
  z-index:2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 64px 0;
}

.about__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

.about__content h2{
  margin:0 0 18px;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height:1.05;
  font-weight:900;
  letter-spacing:-0.02em;
  text-transform: uppercase;
}

.about__content h3{
  margin:0 0 16px;
  font-size: 18px;
  font-weight: 800;
  opacity:.95;
}

.about__content p{
  margin: 0 0 16px;
  color: rgba(255,255,255,.86);
  font-size: 16.5px;
  line-height: 1.75;
  max-width: 560px;
}

.about__footer{
  margin-top: 18px;
  font-weight: 700;
  opacity:.9;
}

/* Right image card */
.about__media{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  min-height: 520px;
}

.about__media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* quote / tagline top-right like screenshot */
.about__tagline{
  
  top: 18px;
  right: 18px;
 
  text-align: left;
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,.9);

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

/* ===== Responsive ===== */
@media (max-width: 920px){
  .about__inner{
    width: min(var(--container), calc(100% - 28px));
    padding: 52px 0;
  }
  .about__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .about__media{
    min-height: 420px;
    order: -1; /* Bild zuerst wie bei Hero */
  }
  .about__content p{
    max-width: 100%;
  }
}

@media (max-width: 520px){
  .about__media{ min-height: 360px; }
  .about__tagline{
    left: 14px;
    right: 14px;
    top: 14px;
    max-width: unset;
    font-size: 15px;
  }
}

/* ===== OFFERS SECTION (smoke bg + white cards) ===== */
.offers--bg{
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* Smoke background image */
.offers--bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/img/header-smoke.jpg?v=1") center / cover no-repeat;
  filter: contrast(110%) brightness(70%);
  transform: scale(1.03);
  z-index:0;
}

/* Dark overlay */
.offers--bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(0,0,0,.55), rgba(0,0,0,.20) 55%, rgba(0,0,0,.70) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.70));
}

.offers__inner{
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 64px;
}

.offers__title{
  
  margin: 0 0 18px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Grid: 2 columns desktop, 1 column mobile */
.offers__grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 14px;
}

/* Card */
.offerTile{
    width: 546px;
    height: 516px;
  position: relative;
  background: rgba(255,255,255,.92);
  color: #151515;
  border-radius: 14px;
  padding: 18px 18px 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
  overflow: hidden;
  min-height: 160px;
}

/* faint image top-right */
.offerTile::before{
    width: 546px;
    height: 516px;
  content:"";
  position:absolute;
  inset:0;
  background: var(--bgimg) right center / cover no-repeat;
  opacity: .28;            /* <- hier steuerst du â€œsieht man fast nixâ€ */
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
  z-index:0;
}

/* white fade so text stays readable */
.offerTile::after{
    width: 546px;
    height: 516px;
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
}

.offerTile > *{
  position: relative;
  z-index: 2;
}

.offerTile h3{
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: none;
}

.offerTile p{
  margin: 0;
  font-size: 24px;
  line-height: 1.55;
  color: rgba(0,0,0,.72);
  max-width: 92%;
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .offers__inner{
    width: min(var(--container), calc(100% - 28px));
    padding: 46px 0 56px;
  }
  .offers__grid{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .offerTile p{ max-width: 100%; }
}


/* ===== PROCESS / ABLAUF ===== */
.process--bg{
  position: relative;
  background: #000;
  overflow: hidden;
  color: #fff;
}

/* background texture (nimm gern dein smoke/grain bild) */
.process--bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/img/header-smoke.jpg?v=1") center / cover no-repeat;
  opacity: .35;
  filter: contrast(115%) brightness(65%);
  transform: scale(1.03);
  z-index:0;
}

.process--bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 520px at 50% 0%, rgba(0,0,0,.35), rgba(0,0,0,.75) 70%),
    linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,.80));
}

.process__inner{
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 54px 0 60px;
}

.process__title{
  margin: 0 0 18px;
  text-align: center;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* dark panel behind steps */
.process__panel{
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.45);
  padding: 26px 22px;
}

/* 4 columns */
.process__grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items:start;
}

/* Step */
.processStep__n{
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
  color: #b10f13; /* dunkles AT-smoker rot */
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* kleine rote underline (wie im screenshot) */
.processStep__n::after{
  content:"";
  display:block;
  width: 22px;
  height: 2px;
  background: rgba(177,15,19,.9);
  margin-top: 10px;
}

.processStep__t{
    height: 45px;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  color: #fff;
}

.processStep__p{
  margin: 0;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 1.6;
}

.processStep__hint{
  display:inline-block;
  margin-top: 8px;
  color: rgba(255,255,255,.55);
}

/* ===== Responsive ===== */
@media (max-width: 1000px){
  .process__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
  .processStep__n{ font-size: 56px; }
}

@media (max-width: 560px){
  .process__inner{
    width: min(1200px, calc(100% - 28px));
    padding: 44px 0 52px;
  }
  .process__panel{ padding: 18px 16px; }
  .process__grid{ grid-template-columns: 1fr; gap: 18px; }
  .processStep__n{ font-size: 52px; }
}

/* ===== GENUSS TRIFFT LEIDENSCHAFT ===== */
.passion--bg{ padding:0; background:#000; }

.passion__bg{
  position:relative;
  padding: 56px 0 66px;
  overflow:hidden;
  background:#0b0b0b;
}

/* Background: smoke/grain (nimm gern dein smoke) */
.passion__bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/img/header-smoke.jpg?v=1") center/cover no-repeat;
  opacity:.22;
  filter: contrast(115%) brightness(70%);
  transform: scale(1.03);
  z-index:0;
}

/* Dark overlay for readability */
.passion__bg::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(0,0,0,.45), rgba(0,0,0,.78) 70%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.72));
}

.passion__inner{
  position:relative;
  z-index:2;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.passion__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}

/* LEFT */
.passion__eyebrow{
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 10px;
}

.passion__title{
  margin: 0 0 14px;
  font-size: clamp(30px, 3.1vw, 46px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color:#fff;
}

.passion__accents{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 18px;
  max-width: 520px;
}

.passion__line{
  height: 2px;
  background: rgba(177,15,19,.95); /* AT-smoker rot */
  border-radius: 2px;
}

.passion__line--left{ width: 56px; }
.passion__line--right{ width: 38px; opacity: .9; }

.passion__p{
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-size: 14.6px;
  line-height: 1.7;
  max-width: 560px;
}

/* RIGHT IMAGE CARD */
.passion__media{
  position: relative;
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

.passion__media img{
  width:100%;
  height:auto;
  display:block;
}

/* red corner accents (top-left & bottom-right) */
.passion__corner{
  position:absolute;
  width: 44px;
  height: 44px;
  pointer-events:none;
}

.passion__corner--tl{
  top: -10px;
  left: -10px;
  border-top: 3px solid rgba(177,15,19,1);
  border-left: 3px solid rgba(177,15,19,1);
  border-radius: 16px 0 0 0;
}

.passion__corner--br{
  right: -10px;
  bottom: -10px;
  border-right: 3px solid rgba(177,15,19,1);
  border-bottom: 3px solid rgba(177,15,19,1);
  border-radius: 0 0 16px 0;
}

/* ===== Responsive ===== */
@media (max-width: 920px){
  .passion__inner{
    width: min(1200px, calc(100% - 28px));
  }
  .passion__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  /* mobile: Bild zuerst, wie dein einzelnes Bild-Screenshot */
  .passion__media{ order: -1; }
  .passion__p{ max-width: 100%; }
}
.contactSection{
    
    margin-top: 40px;
    margin-bottom: 40px;

    
}
.contactTitle{
  margin:0 0 14px;
  font-size: 44px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color:#fff;
}
.contactTitle::after{
  content:"";
  display:block;
  width: 34px;
  height: 3px;
  margin-top: 8px;
  background: #b10f13;
  border-radius: 2px;
}

.mapCard{
  position: relative;
  height: 333px;           /* wie Screenshot */
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background:#0b0b0b;
}

.mapFrame{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  filter: grayscale(1) contrast(1.1) brightness(.8); /* nur optischer Hack */
}

/* dunkle/rote TÃ¶nung drÃ¼ber */
.mapOverlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.45), rgba(0,0,0,.65)),
    radial-gradient(700px 180px at 30% 40%, rgba(177,15,19,.18), transparent 55%);
  pointer-events:none;
}

/* Pin mittig */
.mapPin{
  position:absolute;
  left:50%;
  top:46%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  display:grid;
  place-items:center;
  background: rgba(177,15,19,.95);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.14);
}

.mapPin img{
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}
/* =========================
   MOBILE OVERRIDES
========================= */
@media (max-width: 720px){

  /* HEADER: Buttons untereinander */
  .header-actions{
    display:flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  /* Mobile Buttons generell volle Breite */
  .btn{
    width: 100%;
    justify-content: center;
  }

  /* Offer Tiles: Typo kleiner/ruhiger */
  .offerTile p{
    font-size: 16px;
    line-height: 1.6;
  }

  .offerTile h3{
    font-size: 16px;
    line-height: 1.3;
  }

  /* Offer Tile: feste Breite killen */
  .offerTile{
    width: auto !important;
 
    height: auto !important;
    max-width: 100%;
  }
}

/*MENU*/ 
//* =========================
   MOBILE MENU (Header)
========================= */
/* =========================
   MOBILE OVERLAY MENU (SAFE)
   ganz ans ENDE der CSS
========================= */

/* ===== MOBILE OVERLAY MENU (final) ===== */

@media (max-width: 720px){
  .btn--desktopOnly{ display:none !important; }
  .nav-toggle{ display:block !important; }
}

.mobile-overlay{
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: none;
}

.mobile-overlay.is-open{ display:block !important; }

.mobile-overlay__backdrop{
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0,0,0,.72);
}

.mobile-overlay__panel{
  position: fixed !important;
  left: 16px;
  right: 16px;
  top: 92px;
  margin: 0 auto;
  max-width: 420px;

  background: rgba(10,10,10,.96);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.65);
  padding: 14px;
}

.mobile-overlay__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 12px;
}

.mobile-overlay__title{
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.mobile-overlay__close{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-size: 18px;
  cursor:pointer;
}

.mobile-overlay__actions{
  display:flex;
  flex-direction:column;
  gap: 10px;
}

body.menu-open{ overflow:hidden; }
/* ===== DESKTOP BUTTONS AUF MOBILE AUSBLENDEN ===== */
@media (max-width: 720px){
  .header-actions .btn--desktopOnly{
    display: none !important;
  }
}

/*PDF */

/* ===== BROCHURE / PDF.JS VIEW ===== */
.page-brochure main{ background:#000; }

.brochureWrap{
  position: relative;
  padding: 46px 0 70px;
  background:#000;
}
.brochureWrap::before{
  content:"";
  position:absolute;
  inset:0;
  background: url("/assets/img/header-smoke.jpg?v=1") center/cover no-repeat;
  opacity:.18;
  filter: contrast(115%) brightness(70%);
}
.brochureWrap > *{
  position: relative;
  z-index: 1;
}

.brochureTop{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto 18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.brochureTitle{
  margin:0 0 8px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.brochureLead{
  margin:0;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.brochureActions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pdfShell{
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.35);
  box-shadow: 0 18px 55px rgba(0,0,0,.55);
}

/* Toolbar */
.pdfToolbar{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(10,10,10,.85);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.pdfBtn{
  height: 38px;
  min-width: 38px;
  padding: 0 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.pdfBtn:disabled{
  opacity:.4;
  cursor: not-allowed;
}
.pdfBtn:hover{ filter: brightness(1.06); }

.pdfBtn--ghost{
  background: transparent;
}

.pdfPageInfo{
  display:flex;
  align-items:center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}
.pdfPageInput{
  width: 72px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color:#fff;
  padding: 0 10px;
  font-weight: 800;
}
.pdfPageTotal{
  color: rgba(255,255,255,.65);
}

.pdfSpacer{ flex:1; }
.pdfZoomLabel{
  width: 62px;
  text-align:center;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}

/* Stage */
.pdfStage{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:flex-start;
  padding: 16px 12px 18px;
  background: rgba(0,0,0,.35);
  min-height: 70vh;
}
.pdfCanvas{
  border-radius: 12px;
  background: #111;
  box-shadow: 0 14px 40px rgba(0,0,0,.55);
}
.pdfLoading{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  color: rgba(255,255,255,.75);
  font-weight: 800;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
}

/* Mobile */
@media (max-width: 920px){
  .brochureTop, .pdfShell{
    width: min(1200px, calc(100% - 28px));
  }
  .pdfStage{ min-height: 65vh; }
}
@media (max-width: 520px){
  .brochureActions .btn{ width: 100%; }
  .pdfToolbar{ gap: 8px; flex-wrap: wrap; }
  .pdfSpacer{ display:none; }
}

    
    
}
/* =========================
   CTA: Preorder (wie Screenshot)
========================= */
.preorderCta{
  width: min(1400px, calc(100% - 36px));
  margin: 18px auto 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  background:
    radial-gradient(900px 520px at 50% 35%, rgba(177,15,19,.18), rgba(0,0,0,.86) 70%),
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.0));
}

.preorderCta__inner{
  padding: 86px 24px 78px;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.preorderCta__eyebrow{
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
}

.preorderCta__title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1.02;
  font-size: clamp(44px, 5.4vw, 78px);
  color: #fff;
}

.preorderCta__title span{
  color: #b10f13;
}

.preorderCta__line{
  width: 54px;
  height: 2px;
  background: #b10f13;
  margin: 18px auto 22px;
  border-radius: 2px;
}

.preorderCta__lead{
  margin: 0 auto 30px;
  max-width: 760px;
  color: rgba(255,255,255,.60);
  font-size: 14px;
  line-height: 1.8;
}

.preorderCta__actions{
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* CTA Buttons optisch wie Screenshot (ohne dein Global-.btn zu zerstören) */
.preorderCta__btn{
  height: 44px;
  border-radius: 3px;
  padding: 0 22px;
}

.preorderCta__btn--call{
  border: 1px solid rgba(255,255,255,.22);
}

.preorderCta__btn--call:hover{
  border-color: rgba(255,255,255,.45);
}

.preorderCta__phoneIcon{
  margin-right: 8px;
  opacity: .9;
}

.preorderCta__phones{
  font-size: 12px;
  color: rgba(255,255,255,.55);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.preorderCta__phones a{
  color: rgba(255,255,255,.55);
  text-decoration: none;
}

.preorderCta__phones a:hover{
  color: rgba(255,255,255,.80);
}

.preorderCta__dot{
  opacity: .55;
}

/* =========================
   FOOTER (wie Screenshot)
========================= */
.siteFooter{
  width: min(1400px, calc(100% - 36px));
  margin: 0 auto 18px;
  border-radius: 0 0 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  border-top: none;
  background: #0a0a0a;
}

.siteFooter__inner{
  padding: 56px 24px 18px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.siteFooter__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.siteFooter__title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.siteFooter__line{
  width: 26px;
  height: 2px;
  background: #b10f13;
  border-radius: 2px;
  margin: 12px 0 16px;
}

.siteFooter__text{
  margin: 0;
  max-width: 360px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.8;
}

.siteFooter__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  line-height: 1.7;
}

.siteFooter__list a{
  color: rgba(255,255,255,.42);
  text-decoration: none;
}

.siteFooter__list a:hover{
  color: rgba(255,255,255,.75);
}

.siteFooter__bottom{
  margin-top: 40px;
}

.siteFooter__divider{
  height: 1px;
  background: rgba(255,255,255,.06);
  margin-bottom: 14px;
}

.siteFooter__copy{
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* Responsive */
@media (max-width: 900px){
  .siteFooter__grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 620px){
  .preorderCta,
  .siteFooter{
    width: min(1400px, calc(100% - 20px));
    border-radius: 16px;
  }
  .siteFooter{
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .preorderCta__inner{
    padding: 72px 18px 64px;
  }
}
