﻿:root{
  --bg:#0b0b0d;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.72);
  --line:rgba(255,255,255,.14);
  --shadow:0 18px 50px rgba(0,0,0,.55);
  --radius:22px;
  --radius2:28px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:"Archivo", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(900px 500px at 10% 0%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  background-attachment: fixed, fixed, scroll;
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; }

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

#loader-overlay{
  position:fixed;
  inset:0;
  background:#fff;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#main-content{ display:none; }

.loader{
  width:250px;
  height:50px;
  line-height:50px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  font-family: helvetica, arial, sans-serif;
  text-transform:uppercase;
  font-weight:900;
  color:#111;
  letter-spacing:0.2em;
}
.loader::before,
.loader::after{
  content:"";
  display:block;
  width:15px;
  height:15px;
  background:#111;
  position:absolute;
  animation:load 0.7s infinite alternate ease-in-out;
}
.loader::before{ top:0; }
.loader::after{ bottom:0; }

@keyframes load{
  0%{ left:0; height:30px; width:15px; }
  50%{ height:8px; width:40px; }
  100%{ left:235px; height:30px; width:15px; }
}

.checker{
  height:14px;
  background:
    linear-gradient(90deg,
      #fff 0 10px, #000 10px 20px,
      #fff 20px 30px, #000 30px 40px,
      #fff 40px 50px, #000 50px 60px,
      #fff 60px 70px, #000 70px 80px,
      #fff 80px 90px, #000 90px 100px);
  background-size:100px 14px;
  opacity:.9;
  border-top:1px solid rgba(255,255,255,.2);
  border-bottom:1px solid rgba(255,255,255,.2);
}
.checker.fat{
  height:18px;
  background-size:120px 18px;
}

.nav{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(14px);
  background:rgba(0,0,0,.35);
  border-bottom:1px solid var(--line);
}
.nav .menu-logo-img{
  background:transparent;
  border:none;
  padding:0;
  border-radius:0;
}

.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:220px;
}

.nav-links{
  display:flex;
  gap:18px;
  align-items:center;
}
.nav-links a{
  color:var(--muted);
  font-weight:600;
  font-size:14px;
  padding:10px 10px;
  border-radius:12px;
  transition:.2s ease;
}
.nav-links a:hover{
  color:var(--text);
  background:rgba(255,255,255,.06);
}
.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn{
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 14px;
  border-radius:14px;
  font-weight:800;
  font-size:14px;
  cursor:pointer;
  transition:.2s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.28);
  display:inline-flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.10);
}
.btn.primary{
  background:#fff;
  color:#000;
  border-color:#fff;
}

.menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  border-radius:14px;
  padding:10px 12px;
  font-weight:900;
  cursor:pointer;
}
.nav-order-mobile{ display:none; }

.nav-links.is-open{
  display:flex;
  flex-direction:column;
  width:100%;
  padding:10px 0 16px;
}
.nav-links.is-open a{
  display:block;
  padding:12px 10px;
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.menu-logo{
  display:flex;
  align-items:center;
  gap:14px;
}
.menu-logo-img{
  width:56px;
  height:56px;
  display:block;
  padding:8px;
  border-radius:18px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
}
.menu-logo-text strong{
  display:block;
  font-weight:900;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.menu-logo-text span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:2px;
}
.nav-brand-logo .menu-logo-img{
  width:58px;
  height:58px;
}

.hero.hero-split{
  padding:110px 0 80px;
  position:relative;
}
.hero-split-grid{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:72px;
  align-items:center;
}
.hero-left{ padding-right:24px; }
.hero-right{
  padding-left:24px;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color:rgba(255,255,255,.86);
}
.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#fff;
  box-shadow:0 0 0 5px rgba(255,255,255,.12);
}
.hero-left h1{
  margin:14px 0 14px;
  font-size:clamp(42px, 5vw, 68px);
  line-height:1.02;
  letter-spacing:-0.03em;
}
.lead{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.55;
  max-width:52ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}
.burger-image-wrap{
  position:relative;
  width:100%;
  max-width:560px;
  aspect-ratio:1/1;
  display:grid;
  place-items:center;
  margin-left:auto;
}
.burger-image-wrap::before{
  content:"";
  position:absolute;
  inset:-22%;
  background:radial-gradient(circle at 50% 50%, rgba(255,255,255,.18), transparent 60%);
  filter:blur(30px);
  z-index:0;
}
.burger-image{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  filter:
    drop-shadow(0 40px 80px rgba(0,0,0,.6))
    drop-shadow(0 10px 20px rgba(0,0,0,.4));
  transform:rotate(-2deg);
}

section{ padding:40px 0; }

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:14px;
}
.section-head h2{
  margin:0;
  font-size:22px;
  letter-spacing:-0.01em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:62ch;
  line-height:1.45;
  font-size:14px;
}

.menu-section{ padding-top:34px; }
.menu-section + .menu-section{ padding-top:16px; }
.menu-board{
  border:1px solid rgba(255,255,255,.12);
  background:#0d0d0f;
  border-radius:var(--radius2);
  box-shadow:0 24px 60px rgba(0,0,0,.7);
  overflow:visible;
}

.menu-board.menu-poster{
  padding:26px 26px 0;
  background:#0d0d0f;
  overflow:hidden;
}

.menu-poster-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:start;
  min-width:0;
}

.menu-3col{
  grid-template-columns:1.1fr 1fr 0.8fr;
  gap:36px;
}

.menu-board-title{
  font-size:22px;
  font-weight:900;
  letter-spacing:-0.01em;
  margin-bottom:18px;
  padding-bottom:12px;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.menu-box{
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(255,255,255,.04);
  padding:16px;
  margin-top:18px;
}

.menu-box .menu-subhead{
  margin-bottom:10px;
}

.menu-box-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:5px 0;
  font-size:13px;
  color:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.menu-box-row:last-child{
  border-bottom:none;
}

.menu-box-price{
  font-weight:900;
  white-space:nowrap;
  color:rgba(255,255,255,.9);
}

.menu-allergens{
  font-size:11px;
  color:rgba(255,255,255,.45);
  padding:14px 0 16px;
  line-height:1.5;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:16px;
}

.menu-row-strikethrough{
  text-decoration:line-through;
  opacity:.45;
}

.menu-poster-kicker{
  font-weight:800;
  color:rgba(255,255,255,.86);
  letter-spacing:.02em;
  margin-bottom:10px;
  font-size:16px;
}

.menu-poster-divider{
  height:1px;
  background:rgba(255,255,255,.12);
  margin:26px -26px;
}

.menu-block h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  text-transform:none;
  letter-spacing:0;
}

.menu-row{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
}

.menu-row-dual{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:0 10px;
  align-items:start;
}

.menu-row-dual .menu-row-main{
  grid-column:1;
  grid-row:1;
}

.menu-row-dual .menu-row-price{
  min-width:46px;
  text-align:right;
}

.menu-row-header{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:0 10px;
  padding:4px 0 2px;
  border-bottom:1px solid rgba(255,255,255,.08);
  margin-bottom:4px;
}

.menu-col-label{
  font-size:11px;
  font-weight:800;
  color:rgba(255,255,255,.5);
  text-transform:uppercase;
  letter-spacing:.06em;
  min-width:46px;
  text-align:right;
}

.menu-row-main strong{
  display:block;
  font-size:14px;
  font-weight:900;
}

.menu-row-desc{
  display:block;
  color:rgba(255,255,255,.68);
  font-size:11px;
  line-height:1.35;
  margin-top:3px;
  max-width:46ch;
}

.menu-row-price{
  font-weight:900;
  font-size:13px;
  color:rgba(255,255,255,.9);
  white-space:nowrap;
  padding-left:10px;
}

.veggie-icon{
  width:20px;
  height:20px;
  border-radius:999px;
  background:rgba(50, 205, 50, .18);
  color:rgba(50, 205, 50, .95);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  border:1px solid rgba(50, 205, 50, .45);
}

.menu-box-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:5px 0;
  font-size:13px;
  color:rgba(255,255,255,.88);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.menu-note{
  margin:10px 0 0;
  color:rgba(255,255,255,.68);
  font-size:13px;
  line-height:1.45;
}

.menu-note.strong{
  font-weight:800;
  color:rgba(255,255,255,.86);
}

.menu-subhead{
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  font-size:12px;
  color:rgba(255,255,255,.86);
  margin:0 0 10px;
}

.sauce-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.sauce-list li{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.88);
  font-size:13px;
}

.sauce-list .box{
  width:12px;
  height:12px;
  border-radius:3px;
  border:1px solid rgba(255,255,255,.32);
  background:rgba(255,255,255,.06);
  flex:0 0 12px;
}

.kfc-boxes{
  display:flex;
  gap:14px;
  margin:10px 0 10px;
}

.kfc-box{
  flex:1;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.9);
  padding:12px 10px;
  border-radius:0;
  font-weight:900;
  text-align:center;
  user-select:none;
  cursor:default;
  text-transform:lowercase;
  letter-spacing:.02em;
}

.kfc-box.is-active{
  background:#fff;
  color:#000;
  border-color:#fff;
}

.kfc-checker{
  height:14px;
  overflow:hidden;
  margin-bottom:12px;
  background:
    linear-gradient(90deg,
      #fff 0 12px, #000 12px 24px,
      #fff 24px 36px, #000 36px 48px,
      #fff 48px 60px, #000 60px 72px,
      #fff 72px 84px, #000 84px 96px);
  background-size:96px 14px;
  opacity:.95;
  border:1px solid rgba(255,255,255,.16);
}

.kfc-mid{
  display:grid;
  grid-template-columns:1fr 160px;
  gap:18px;
  align-items:start;
  margin-top:10px;
}

.kfc-sizes{
  display:grid;
  gap:12px;
}

.size-box{
  border:1px solid rgba(255,255,255,.2);
  background:rgba(255,255,255,.04);
  border-radius:0;
  padding:12px 12px;
  text-align:left;
}

.size-label{
  font-weight:800;
  color:rgba(255,255,255,.86);
  font-size:12px;
}

.size-price{
  margin-top:6px;
  font-weight:900;
  font-size:14px;
}

.kfc-sides{
  margin-top:18px;
}

.kfc-sides h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:900;
}

.sides-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  column-gap:36px;
  row-gap:10px;
}

.side-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  font-size:13px;
  color:rgba(255,255,255,.88);
}

.side-price{
  font-weight:900;
  white-space:nowrap;
}

.menu-poster-footer{
  padding:18px 0 22px;
  margin-top:12px;
}

.menu-tagline{
  text-align:center;
  color:rgba(255,255,255,.55);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
  margin-bottom:14px;
}

/* ================================================
   HOW IT'S MADE
   ================================================ */
.him-section{
  padding:96px 0 80px;
  position:relative;
  overflow:hidden;
}

.him-section::before{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:900px;
  height:400px;
  background:radial-gradient(ellipse, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events:none;
}

.him-section .section-head h2{
  font-size:32px;
  letter-spacing:-.02em;
}

.him-steps{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:0;
  margin-top:56px;
  position:relative;
}

/* FIX: connecting line runs precisely through center of all 5 bubbles */
.him-steps::before{
  content:"";
  position:absolute;
  top:36px;
  left:10%;
  right:10%;
  height:1px;
  background:linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.2) 5%,
    rgba(255,255,255,.2) 95%,
    transparent);
  z-index:0;
}

.him-step{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:0 10px;
  position:relative;
  cursor:default;
}

.him-step-bubble{
  width:72px;
  height:72px;
  border-radius:50%;
  background:linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border:1.5px solid rgba(255,255,255,.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  font-size:18px;
  position:relative;
  z-index:1;
  flex-shrink:0;
  transition:.35s cubic-bezier(.22,.68,0,1.2);
  box-shadow:
    0 0 0 6px rgba(255,255,255,.03),
    0 12px 32px rgba(0,0,0,.5),
    inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
}

.him-step:hover .him-step-bubble{
  border-color:rgba(255,255,255,.5);
  box-shadow:
    0 0 0 10px rgba(255,255,255,.06),
    0 16px 40px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.15);
  transform:scale(1.12);
  background:linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.04));
}

.him-step-icon{
  font-size:38px;
  margin:20px 0 12px;
  line-height:1;
  transition:.35s cubic-bezier(.22,.68,0,1.2);
  filter:drop-shadow(0 4px 12px rgba(0,0,0,.4));
}

.him-step:hover .him-step-icon{
  transform:scale(1.2) translateY(-2px);
}

.him-step-title{
  font-weight:900;
  font-size:15px;
  letter-spacing:-.01em;
  margin-bottom:8px;
  color:rgba(255,255,255,.95);
}

.him-step-desc{
  font-size:12px;
  color:rgba(255,255,255,.42);
  line-height:1.6;
  max-width:14ch;
}

/* ================================================
   GALERIE
   ================================================ */
.galerie-section{
  padding:96px 0 80px;
  border-top:1px solid rgba(255,255,255,.07);
}

.galerie-section .section-head h2{
  font-size:32px;
  letter-spacing:-.02em;
}

.galerie-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  grid-template-rows:280px 280px;
  gap:14px;
  margin-top:40px;
}

.galerie-item:first-child{
  grid-row:span 2;
}

.galerie-item{
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.09);
  background:
    linear-gradient(145deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.01) 100%);
  position:relative;
  transition:.35s cubic-bezier(.22,.68,0,1.2);
}

.galerie-item:hover{
  border-color:rgba(255,255,255,.22);
  transform:translateY(-3px);
  box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.galerie-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s cubic-bezier(.22,.68,0,1.2);
}

.galerie-item:hover img{
  transform:scale(1.06);
}

.galerie-placeholder{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:rgba(255,255,255,.18);
  font-size:11px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  border:1.5px dashed rgba(255,255,255,.08);
  border-radius:22px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.04), transparent 70%);
  transition:.35s ease;
}

.galerie-item:hover .galerie-placeholder{
  border-color:rgba(255,255,255,.14);
  color:rgba(255,255,255,.28);
  background:
    radial-gradient(circle at 50% 40%, rgba(255,255,255,.06), transparent 70%);
}

.galerie-placeholder-icon{
  font-size:36px;
  opacity:.2;
  transition:.35s ease;
}

.galerie-item:hover .galerie-placeholder-icon{
  opacity:.35;
  transform:scale(1.1);
}

/* ================================================
   REVIEWS – hidden
   ================================================ */
.reviews-section{
  display:none;
}

/* ================================================
   DAS TEAM
   ================================================ */
.team-section{
  padding:96px 0 80px;
  border-top:1px solid rgba(255,255,255,.07);
}

.team-section .section-head h2{
  font-size:32px;
  letter-spacing:-.02em;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
  margin-top:40px;
}

.team-card{
  padding:40px 26px 32px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.11);
  background:linear-gradient(155deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%);
  box-shadow:0 14px 50px rgba(0,0,0,.4);
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:.28s ease;
}

.team-card:hover{
  border-color:rgba(255,255,255,.2);
  transform:translateY(-3px);
  box-shadow:0 24px 60px rgba(0,0,0,.5);
}

.team-avatar{
  width:100px;
  height:100px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  border:1.5px solid rgba(255,255,255,.16);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  overflow:hidden;
  margin-bottom:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.45);
  transition:.28s ease;
}

.team-card:hover .team-avatar{
  border-color:rgba(255,255,255,.3);
}

.team-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.team-name{
  font-weight:900;
  font-size:18px;
  letter-spacing:-.02em;
  margin-bottom:6px;
}

.team-role{
  font-size:13px;
  color:rgba(255,255,255,.45);
  letter-spacing:.01em;
}

.instagram-section{ padding:60px 0; }

.instagram-feed{
  border:1px solid rgba(255,255,255,.12);
  background:#0d0d0f;
  border-radius:var(--radius2);
  box-shadow:0 24px 60px rgba(0,0,0,.7);
  padding:24px;
  overflow:hidden;
}

.visit-section{ padding:60px 0; }

.map-card{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.04);
  border-radius:28px;
  box-shadow:0 14px 40px rgba(0,0,0,.35);
  overflow:hidden;
}

.map-left{ padding:18px; }

.map-left h3{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.map-info{
  margin-top:12px;
  border-top:1px solid rgba(255,255,255,.10);
  padding-top:12px;
}

.map-label{
  color:rgba(255,255,255,.78);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
}

.map-value{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.map-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.map-right{
  min-height:360px;
  position:relative;
}

.map-right iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* Platzhalter statt direktem Google-Maps-Embed (DSGVO: Karte erst nach Klick) */
.map-consent{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.06), transparent 60%),
    rgba(255,255,255,.03);
  border:1px solid var(--line);
}

.map-consent-inner{
  max-width:380px;
  text-align:center;
}

.map-consent-inner h4{
  margin:0 0 10px;
  font-size:17px;
  font-weight:800;
}

.map-consent-inner p{
  margin:0 0 16px;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

.map-consent-inner a{
  color:#fff;
  text-decoration:underline;
}

.map-consent-remember{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  margin-top:14px;
  font-size:13px;
  color:var(--muted);
  cursor:pointer;
}

.map-consent-remember input{
  accent-color:#fff;
  cursor:pointer;
}

footer{
  padding:26px 0 34px;
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:18px;
}
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.footer-socials{
  display:flex;
  gap:12px;
}

.footer-socials a{
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:transparent;
  transition:.25s ease;
}

.footer-socials a:hover{
  background:rgba(255,255,255,.08);
  transform:translateY(-1px);
}

.footer-socials svg{
  width:20px;
  height:20px;
  fill:none;
  stroke:rgba(255,255,255,.9);
  stroke-width:1.8;
}

footer .nav-logo{
  width:42px;
  height:42px;
  padding:0;
  border-radius:0;
  background:transparent;
  border:none;
}

.footgrid{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  align-items:center;
}

.footer-brand{
  min-width:260px;
}

.brand-name{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.brand-name strong{
  font-weight:900;
  font-size:15px;
  letter-spacing:.02em;
}

.brand-name small{
  font-size:12px;
  color:rgba(255,255,255,.5);
}

.small{
  font-size:13px;
  color:rgba(255,255,255,.5);
}

.footer-link{
  color: rgba(255,255,255,.82);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom: 2px;
  transition: .2s ease;
}

.footer-link:hover{
  color: rgba(255,255,255,.95);
  border-bottom-color: rgba(255,255,255,.45);
}

.footer-sep{
  opacity: .55;
  margin: 0 8px;
}

.modal{
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
}
.modal.is-open{
  display: block;
}

.modal-backdrop{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.66);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: opacity .25s ease;
}

.modal-dialog{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(50%, -46%) scale(.98);
  width: min(860px, calc(100% - 28px));
  max-height: min(78vh, 720px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,.18);
  background: linear-gradient(rgba(15,15,18,.96), rgba(10,10,12,.98));
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0,0,0,.65);
  opacity: 0;
  transition: transform .25s ease, opacity .25s ease;
  padding: 20px 18px 18px;
}

.modal.is-open .modal-backdrop{
  opacity: 1;
}

.modal.is-open .modal-dialog{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: .2s ease;
}

.modal-close:hover{
  background: rgba(255,255,255,.14);
  transform: scale(1.05);
}

.modal-head{
  margin-top: 10px;
  padding: 4px 6px 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.modal-title{
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}

.modal-subtitle{
  margin: 6px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}

.modal-body{
  padding: 14px 6px 6px;
  color: rgba(255,255,255,.86);
  line-height: 1.6;
  font-size: 14px;
}

.modal-body h4{
  margin: 18px 0 8px;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
}

.modal-body p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.78);
}

.modal-body ul{
  margin: 0 0 12px 18px;
  padding: 0;
  color: rgba(255,255,255,.78);
}

.modal-body li{
  margin: 6px 0;
}

body.is-locked{
  overflow: hidden;
}

/* Scroll Reveal Animation */
.reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal.up{ transform: translateY(22px); }
.reveal.left{ transform: translateX(-18px); }
.reveal.right{ transform: translateX(18px); }

.reveal.left.is-visible,
.reveal.right.is-visible{
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 940px){
  .nav-links{ display:none; }
  .nav-links.is-open{ display:flex; }
  .nav-order-mobile{ display:block; }
  .menu-btn{ display:inline-flex; }
  .nav-inner{ flex-wrap:wrap; }

  .hero-split-grid{
    grid-template-columns:1fr;
    gap:36px;
  }

  .hero-right{ padding-left:0; }
  .hero-left{ padding-right:0; }

  .burger-image-wrap{
    max-width:420px;
    margin-left:auto;
    margin-right:auto;
  }

  .menu-poster-grid,
  .menu-3col{
    grid-template-columns:1fr;
    gap:34px;
  }

  .kfc-mid{ grid-template-columns:1fr; }
  .kfc-sizes{ grid-template-columns:1fr 1fr; gap:12px; }
  .sides-grid{ grid-template-columns:1fr; }
  .map-card{ grid-template-columns:1fr; }
  .map-right{ min-height:300px; }

  .him-steps{
    grid-template-columns:1fr 1fr;
    gap:32px 16px;
  }
  .him-steps::before{ display:none; }
  .him-step-bubble{ width:64px; height:64px; }

  .team-grid{ grid-template-columns:1fr; }

  .galerie-grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:220px 220px;
  }
  .galerie-item:first-child{
    grid-row:span 1;
    min-height:200px;
  }
}

@media (max-width: 560px){
  .hero.hero-split{ padding:70px 0 50px; }
  .burger-image-wrap{ max-width:340px; }
  .menu-logo-img{ width:48px; height:48px; }

  .him-steps{
    grid-template-columns:1fr;
    gap:28px;
  }

  .him-step{
    flex-direction:row;
    text-align:left;
    gap:16px;
    padding:16px;
    border:1px solid rgba(255,255,255,.09);
    border-radius:20px;
    background:linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.01));
  }

  .him-step-bubble{
    width:52px;
    height:52px;
    font-size:15px;
    flex-shrink:0;
  }

  .him-step-icon{
    font-size:28px;
    margin:0;
  }

  .him-step-desc{ max-width:none; }

  .galerie-grid{ grid-template-columns:1fr; grid-template-rows:auto; }
  .galerie-item{ min-height:200px; }
}

/* ================================================
   MOBILE OPTIMIZATIONS (extended)
   ================================================ */
@media (max-width: 940px){
  /* Hide redundant order CTA from nav on mobile – nav-order-mobile covers it */
  .nav-cta .btn.primary{ display:none; }

  /* Stack section headers vertically */
  .section-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    margin-bottom:16px;
  }

  /* Menu board: tighter padding */
  .menu-board.menu-poster{ padding:18px 16px 0; }
  .menu-poster-divider{ margin:20px -16px; }

  /* Reduce large section paddings on tablet */
  .him-section{ padding:60px 0 48px; }
  .team-section{ padding:60px 0 48px; }
  .galerie-section{ padding:60px 0 48px; }

  /* Map */
  .map-left{ padding:18px 16px; }

  /* Footer: allow brand to shrink */
  .footer-brand{ min-width:unset; }
}

@media (max-width: 560px){
  /* Container: tighter on small screens */
  .container{ width:calc(100% - 28px); }

  /* Hero */
  .hero.hero-split{ padding:56px 0 36px; }
  .lead{ font-size:15px; }
  .hero-actions .btn{ flex:1 1 auto; justify-content:center; min-width:0; }

  /* Nav brand text: shrink */
  .menu-logo-text strong{ font-size:13px; }
  .menu-logo-text span{ font-size:11px; }

  /* Menu board */
  .menu-board.menu-poster{ padding:14px 12px 0; }
  .menu-poster-divider{ margin:16px -12px; }
  .menu-board-title{ font-size:18px; }
  .menu-poster-kicker{ font-size:14px; }

  /* Menu rows */
  .menu-row{ gap:10px; }
  .menu-row-dual{ gap:0 6px; }
  .menu-row-main strong{ font-size:13px; }
  .menu-row-desc{ font-size:10px; }
  .menu-row-price{ font-size:12px; padding-left:6px; }
  .menu-col-label{ font-size:10px; min-width:38px; }

  /* Buttons */
  .btn{ padding:9px 12px; font-size:13px; }

  /* Section head */
  .section-head h2{ font-size:20px; }

  /* Footer */
  .footer-bottom{ flex-direction:column; align-items:flex-start; gap:10px; }
  .footgrid{ gap:10px; }
  .footer-brand{ width:100%; }

  /* Sections padding */
  .him-section{ padding:48px 0 36px; }
  .him-section .section-head h2{ font-size:26px; }
  .team-section{ padding:48px 0 36px; }
  .team-card{ padding:28px 18px 22px; }
  .galerie-section{ padding:48px 0 36px; }
  .galerie-item{ min-height:180px; }
  .galerie-grid{ gap:10px; }
  .instagram-section{ padding:40px 0; }
  .visit-section{ padding:40px 0; }
  .map-right{ min-height:240px; }
}

@media (max-width: 380px){
  .container{ width:calc(100% - 20px); }
  .menu-logo-text{ display:none; }
  .hero-actions{ flex-direction:column; }
  .hero-actions .btn{ width:100%; justify-content:center; }
  .menu-row-dual{
    grid-template-columns:1fr auto auto;
    gap:0 4px;
  }
}