/* ==========================================================================
   Tasty Döner By Abla — Website styles
   Palette + treatment derived from the in-store menu board.
   Built on the brand's type + spacing system (Bebas Neue / Anton / Montserrat).
   ========================================================================== */

@font-face {
  font-family: "Bebas Neue";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/BebasNeue-Regular.ttf") format("truetype");
}

:root {
  /* --- Palette (from the menu board) --- */
  --red:        #C92A23;
  --red-dark:   #A61F1A;
  --red-deep:   #7E140F;
  --cream:      #F1E9D8;
  --cream-deep: #E7DCC3;   /* card edge / inner shadow on cream */
  --yellow:     #F4C542;
  --yellow-dk:  #E0A92B;
  --brown:      #4A3526;   /* text on cream */
  --brown-soft: #7A6450;
  --ink:        #211712;   /* near-black warm */
  --white:      #FFFFFF;

  /* --- Type --- */
  --display: "Bebas Neue", "Oswald", "Arial Narrow", sans-serif;
  --price:   "Anton", "Bebas Neue", Impact, sans-serif;
  --body:    "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* --- Spacing (4pt) --- */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px;

  /* --- Radius --- */
  --r-sm: 8px; --r-md: 16px; --r-lg: 26px; --r-pill: 999px;

  --shadow-card:  0 10px 26px rgba(40, 12, 8, 0.16);
  --shadow-food:  0 26px 40px rgba(40, 10, 6, 0.34);
  --shadow-soft:  0 6px 18px rgba(40, 12, 8, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--red);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: clamp(18px, 5vw, 40px); }

/* ---------- Display helpers ---------- */
.display { font-family: var(--display); font-weight: 400; line-height: 0.92; text-transform: uppercase; letter-spacing: 0.02em; }
.eyebrow {
  font-family: var(--body); font-weight: 800; font-size: 13px;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.kicker-line { display: inline-flex; align-items: center; gap: 12px; }
.kicker-line::before { content: ""; width: 34px; height: 3px; background: var(--yellow); border-radius: 2px; }

/* Big faded background words */
.watermark {
  position: absolute; font-family: var(--display); text-transform: uppercase;
  line-height: 0.8; letter-spacing: 0.04em; pointer-events: none; user-select: none;
  white-space: nowrap; z-index: 0;
}

/* ============================ NAV ============================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--red);
  border-bottom: 2px solid rgba(0,0,0,0.14);
}
.nav.scrolled { box-shadow: 0 6px 22px rgba(40,10,6,0.34); background: var(--red-dark); }
.nav-inner { display: flex; align-items: center; gap: var(--s-4); height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-mark { width: 34px; height: 46px; flex: none; }
.brand-logo { height: 58px; width: auto; display: block; flex: none; }
img.brand-mark { width: auto; height: 46px; object-fit: contain; display: block; }
.hero-logo { position: relative; z-index: 2; width: 100%; max-width: 460px; height: auto; filter: drop-shadow(0 22px 34px rgba(40,8,4,0.45)); }
.brand-text { display: flex; flex-direction: column; line-height: 0.86; }
.brand-text .b1 { font-family: var(--price); font-size: 22px; color: var(--white); letter-spacing: 0.01em; font-style: italic; }
.brand-text .b1 .d { color: var(--yellow); }
.brand-text .b2 { font-family: var(--body); font-weight: 700; font-size: 10px; letter-spacing: 0.32em; color: rgba(255,255,255,0.7); margin-top: 3px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-family: var(--body); font-weight: 700; font-size: 14px; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92); text-transform: uppercase; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--yellow); transition: right var(--dur, 220ms) var(--ease);
}
.nav-links a:hover::after { right: 0; }

.nav-status { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 12.5px; color: var(--white); letter-spacing: 0.02em; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #57d06a; box-shadow: 0 0 0 0 rgba(87,208,106,0.7); animation: pulse 2.4s infinite; }
.dot.closed { background: #ff8a73; animation: none; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(87,208,106,0.6);} 70%{box-shadow:0 0 0 8px rgba(87,208,106,0);} 100%{box-shadow:0 0 0 0 rgba(87,208,106,0);} }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--body); font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  padding: 15px 28px; font-size: 15px; transition: transform 120ms var(--ease), background 180ms, color 180ms, box-shadow 180ms;
}
.btn:active { transform: scale(0.97); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 8px 0 var(--yellow-dk); }
.btn-yellow:hover { background: #ffd05a; box-shadow: 0 6px 0 var(--yellow-dk); transform: translateY(2px); }
.btn-outline { background: transparent; color: var(--white); box-shadow: inset 0 0 0 2px rgba(255,255,255,0.85); }
.btn-outline:hover { background: var(--white); color: var(--red); box-shadow: inset 0 0 0 2px var(--white); }
.btn-red { background: var(--red); color: var(--white); box-shadow: 0 8px 0 var(--red-deep); }
.btn-red:hover { background: var(--red-dark); transform: translateY(2px); box-shadow: 0 6px 0 var(--red-deep); }
.btn-sm { padding: 10px 18px; font-size: 13px; }
.nav-cta { padding: 12px 22px; }

.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--white); border-radius: 2px; margin: 5px 0; transition: 0.25s; }

/* ============================ HERO ============================ */
.hero { position: relative; overflow: hidden; background: var(--red); padding-top: clamp(36px, 6vw, 70px); padding-bottom: clamp(40px, 7vw, 90px); }
.hero-grain { position: absolute; inset: 0; background:
  radial-gradient(120% 90% at 80% 10%, rgba(255,255,255,0.07), transparent 60%),
  radial-gradient(90% 80% at 0% 100%, rgba(0,0,0,0.18), transparent 55%);
  z-index: 0; }
.hero .watermark.wm1 { top: 38%; left: -4%; font-size: clamp(140px, 24vw, 360px); color: rgba(255,255,255,0.06); transform: translateY(-50%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s-6); align-items: center; }
.hero-copy { color: var(--white); }
.hero-copy .eyebrow { color: var(--yellow); }
.hero h1 { font-family: var(--display); font-size: clamp(58px, 9vw, 128px); line-height: 0.86; text-transform: uppercase; letter-spacing: 0.01em; margin: 16px 0 0; }
.hero h1 .stroke { color: transparent; -webkit-text-stroke: 2px rgba(255,255,255,0.85); }
.hero h1 .yl { color: var(--yellow); }
.hero-sub { font-size: clamp(16px, 1.5vw, 19px); font-weight: 500; color: rgba(255,255,255,0.92); max-width: 30ch; margin: 18px 0 0; line-height: 1.5; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust .stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.hero-trust .t-meta { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.85); }
.hero-trust .sep { width: 1px; height: 26px; background: rgba(255,255,255,0.25); }

.hero-food { position: relative; display: grid; place-items: center; min-height: 380px; }
.plate-glow { position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.16), rgba(255,255,255,0) 65%); }
.hero-food .plate-shadow { position: absolute; bottom: 8%; width: 64%; height: 38px; background: rgba(0,0,0,0.32); border-radius: 50%; filter: blur(18px); }
.hero-slot { position: relative; z-index: 2; width: 100%; max-width: 520px; aspect-ratio: 1.18; }
.burst {
  position: absolute; z-index: 4; top: -6px; right: 2%; width: 122px; height: 122px;
  display: grid; place-items: center; text-align: center; transform: rotate(-10deg);
  background: var(--yellow); color: var(--ink); border-radius: 50%;
  box-shadow: 0 10px 22px rgba(0,0,0,0.28);
}
.burst::before { content:""; position:absolute; inset:-7px; border-radius:50%; border:2px dashed rgba(33,23,18,0.45); }
.burst .b-top { font-family: var(--display); font-size: 30px; line-height: 0.82; }
.burst .b-bot { font-family: var(--body); font-weight: 800; font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; }

/* ---------- Food slots (drop your own cutout photos) ---------- */
image-slot { --slot-bg: transparent; }
.foodslot {
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,0.10), rgba(255,255,255,0) 60%);
}
/* placeholder skin for empty slots so they read as intentional */
.plate {
  position: relative; display: grid; place-items: center;
}
.plate .disc {
  position: absolute; width: 84%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, var(--cream), var(--cream-deep));
  box-shadow: var(--shadow-soft);
}

/* ============================ SECTION SHELL ============================ */
.section { position: relative; overflow: hidden; }
.sec-head { text-align: center; position: relative; z-index: 3; }
.sec-head .eyebrow { display: inline-flex; }
.sec-title { font-family: var(--display); font-size: clamp(40px, 6vw, 84px); line-height: 0.9; text-transform: uppercase; letter-spacing: 0.02em; }
.on-red .sec-title { color: var(--white); }
.on-red .sec-title .yl,
.on-cream .sec-title .yl { color: var(--yellow); }
.on-red .eyebrow { color: var(--yellow); }
.sec-lead { max-width: 56ch; margin: 16px auto 0; font-size: 16px; line-height: 1.6; }
.on-red .sec-lead { color: rgba(255,255,255,0.86); }

/* ============================ POPULAIR ============================ */
.populair { background: var(--red); padding-block: clamp(56px, 8vw, 104px); }
.populair .watermark.wm { top: 6%; right: -3%; font-size: clamp(120px, 18vw, 260px); color: rgba(0,0,0,0.10); }
.pop-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: var(--s-7); }
.pop-card {
  background: var(--cream); border-radius: var(--r-lg); padding: 22px 22px 20px;
  box-shadow: var(--shadow-card); position: relative; transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  border: 1px solid var(--cream-deep);
}
.pop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-food); }
.pop-media { position: relative; height: 188px; margin: -2px 0 8px; }
.pop-media .plate-slot { width: 100%; height: 100%; }
.pop-tag {
  position: absolute; top: 10px; left: 10px; z-index: 5; background: var(--red); color: var(--white);
  font-family: var(--body); font-weight: 800; font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 11px; border-radius: var(--r-pill);
}
.pop-tag.spice { background: var(--ink); }
.pop-tag.veg { background: #2E8B57; }
.pop-name { font-family: var(--body); font-weight: 800; font-size: 20px; color: var(--brown); margin: 4px 0 2px; }
.pop-desc { font-size: 13px; color: var(--brown-soft); line-height: 1.45; min-height: 38px; }
.pop-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.pop-price { font-family: var(--price); font-size: 30px; color: var(--red); }
.pop-price small { font-size: 18px; }

/* ============================ MENUKAART ============================ */
.menu { background: var(--red-dark); padding-block: clamp(56px, 8vw, 104px); }
.menu .watermark.wm { top: 2%; left: 50%; transform: translateX(-50%); font-size: clamp(120px, 20vw, 300px); color: rgba(0,0,0,0.12); }
.cat-nav { position: relative; z-index: 5; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: var(--s-6); }
.cat-chip {
  font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); background: rgba(255,255,255,0.10); border: 1.5px solid rgba(255,255,255,0.28);
  padding: 9px 16px; border-radius: var(--r-pill); cursor: pointer; transition: 0.18s;
}
.cat-chip:hover { background: rgba(255,255,255,0.2); }
.cat-chip.active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

.menu-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: var(--s-6); align-items: start; }
.menu-panel {
  background: var(--cream); border-radius: var(--r-lg); padding: 28px 30px 26px;
  box-shadow: var(--shadow-card); scroll-margin-top: 100px; border: 1px solid var(--cream-deep);
  position: relative; overflow: visible;
}
.menu-grid { overflow: visible; }
/* Cutout category image — floats out past the top-right corner */
.cat-img {
  position: absolute; top: -110px; right: -48px; z-index: 6;
  width: 420px; height: 340px;
  transform: rotate(-5deg);
  filter: drop-shadow(0 22px 22px rgba(40,10,6,0.28));
  pointer-events: auto;
}
.cat-img::part(frame) { background: transparent; }
.cat-img::part(empty) { border-radius: 16px; }
.panel-head { padding-right: 250px; min-height: 70px; }
.menu-panel.span2 { grid-column: 1 / -1; }
.panel-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 6px; }
.panel-title { font-family: var(--display); font-size: clamp(32px, 4vw, 46px); color: var(--yellow-dk); letter-spacing: 0.03em; line-height: 1; }
.panel-title .ico { color: var(--red); }
.panel-note { font-size: 12px; font-weight: 700; color: var(--brown-soft); letter-spacing: 0.04em; text-transform: uppercase; margin-left: auto; }
.mrow { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; border-bottom: 1px dashed rgba(74,53,38,0.22); }
.mrow:last-child { border-bottom: none; }
.mrow .mname { font-family: var(--body); font-weight: 700; font-size: 16px; color: var(--brown); white-space: nowrap; }
.mrow .mname .msub { display: block; font-weight: 500; font-size: 11.5px; color: var(--brown-soft); letter-spacing: 0.02em; text-transform: none; }
.mrow .leader { flex: 1; border-bottom: 2px dotted rgba(74,53,38,0.32); transform: translateY(-4px); min-width: 12px; }
.mrow .mprice { font-family: var(--price); font-size: 21px; color: var(--red); white-space: nowrap; }
.badge-mini { display: inline-block; font-family: var(--body); font-weight: 800; font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 2px 7px; border-radius: var(--r-pill); margin-left: 8px; vertical-align: middle; }
.badge-mini.new { background: var(--yellow); color: var(--ink); }
.badge-mini.hot { background: var(--red); color: var(--white); }
.menu-cta { text-align: center; margin-top: var(--s-6); position: relative; z-index: 3; }

/* ============================ OVER ONS ============================ */
.about { background: var(--cream); color: var(--brown); padding-block: clamp(60px, 9vw, 120px); }
.about .watermark.wm { bottom: -4%; right: -2%; font-size: clamp(120px, 18vw, 260px); color: rgba(74,53,38,0.06); }
.about-grid { position: relative; z-index: 3; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: var(--s-7); align-items: center; }
.about-media { position: relative; }
.about-slot { width: 100%; aspect-ratio: 4 / 4.4; }
.about-stamp {
  position: absolute; bottom: -22px; left: -22px; background: var(--red); color: var(--white);
  border-radius: 50%; width: 132px; height: 132px; display: grid; place-items: center; text-align: center;
  box-shadow: var(--shadow-card); transform: rotate(-8deg); z-index: 4; line-height: 1;
}
.about-stamp .y { font-family: var(--price); font-size: 40px; }
.about-stamp .l { font-family: var(--body); font-weight: 800; font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; margin-top: 5px; }
.about h2 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 74px); line-height: 0.92; color: var(--brown); margin: 14px 0 0; text-transform: uppercase; }
.about h2 .yl { color: var(--yellow-dk); -webkit-text-stroke: 1px var(--red); }
.about-copy p { font-size: 16.5px; line-height: 1.7; margin: 18px 0 0; max-width: 46ch; }
.about-copy p.lead { font-size: 19px; font-weight: 600; color: var(--ink); }
.about .eyebrow { color: var(--red); }

/* ---------- Waarom (why) ---------- */
.why { background: var(--cream); padding-bottom: clamp(60px, 9vw, 110px); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: var(--s-6); position: relative; z-index: 3; }
.why-card {
  background: var(--white); border: 1px solid var(--cream-deep); border-radius: var(--r-md);
  padding: 30px 24px; text-align: center; transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.why-ico { width: 64px; height: 64px; margin: 0 auto 16px; display: grid; place-items: center; background: var(--red); color: var(--white); border-radius: 50%; }
.why-ico svg { width: 32px; height: 32px; }
.why-card h3 { font-family: var(--body); font-weight: 800; font-size: 17px; color: var(--brown); margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.03em; }
.why-card p { font-size: 13.5px; color: var(--brown-soft); line-height: 1.55; margin: 0; }

/* ============================ REVIEWS ============================ */
.reviews { background: var(--red); padding-block: clamp(56px, 8vw, 104px); }
.reviews .watermark.wm { top: 8%; left: -2%; font-size: clamp(100px, 16vw, 220px); color: rgba(0,0,0,0.1); }
.rev-grid { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: var(--s-7); }
.rev-card { background: var(--cream); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 12px; }
.rev-card .stars { color: var(--yellow-dk); font-size: 17px; letter-spacing: 2px; }
.rev-card .quote { font-size: 16px; line-height: 1.6; color: var(--ink); font-weight: 500; flex: 1; }
.rev-who { display: flex; align-items: center; gap: 12px; margin-top: 4px; }
.rev-av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--price); font-size: 18px; color: var(--white); background: var(--red); flex: none; }
.rev-name { font-weight: 800; font-size: 14px; color: var(--brown); }
.rev-meta { font-size: 11.5px; color: var(--brown-soft); }
.rev-summary { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: var(--s-6); color: var(--white); position: relative; z-index: 3; flex-wrap: wrap; }
.rev-summary .big { font-family: var(--price); font-size: 44px; color: var(--yellow); }

/* ============================ CONTACT ============================ */
.contact { background: var(--ink); color: var(--white); padding-block: clamp(56px, 8vw, 104px); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--s-7); align-items: stretch; }
.contact .eyebrow { color: var(--yellow); }
.contact h2 { font-family: var(--display); font-size: clamp(40px, 5.5vw, 72px); line-height: 0.9; margin: 14px 0 8px; text-transform: uppercase; }
.contact h2 .yl { color: var(--yellow); }
.info-block { margin-top: 26px; }
.info-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.info-row .ic { width: 42px; height: 42px; border-radius: 12px; background: var(--red); display: grid; place-items: center; flex: none; }
.info-row .ic svg { width: 22px; height: 22px; color: #fff; }
.info-row h4 { margin: 0 0 4px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); font-weight: 800; }
.info-row p { margin: 0; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.9); }
.info-row a:hover { color: var(--yellow); }
.hours-list { list-style: none; padding: 0; margin: 8px 0 0; }
.hours-list li { display: flex; justify-content: space-between; padding: 5px 0; font-size: 14px; color: rgba(255,255,255,0.85); }
.hours-list li.today { color: var(--white); font-weight: 700; }
.hours-list li.today .h-day::after { content: " · vandaag"; color: var(--yellow); font-weight: 700; }
.map-card { border-radius: var(--r-lg); overflow: hidden; background: #20364a; min-height: 420px; position: relative; box-shadow: var(--shadow-card); }
.map-card iframe { width: 100%; height: 100%; border: 0; min-height: 420px; filter: saturate(0.92); }
.map-pin {
  position: absolute; top: 18px; left: 18px; z-index: 3; background: var(--white); color: var(--ink);
  border-radius: var(--r-pill); padding: 10px 16px; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 800; font-size: 13px; box-shadow: var(--shadow-soft);
}
.map-pin svg { width: 16px; height: 16px; color: var(--red); }

/* ============================ FOOTER ============================ */
.footer { background: var(--red-deep); color: rgba(255,255,255,0.78); padding-top: clamp(48px, 7vw, 80px); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--s-5); padding-bottom: var(--s-6); }
.footer .brand-text .b2 { color: rgba(255,255,255,0.6); }
.footer-about { font-size: 14px; line-height: 1.6; margin: 18px 0 0; max-width: 32ch; }
.footer h5 { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--yellow); margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.78); transition: 0.15s; }
.footer ul a:hover { color: var(--white); padding-left: 4px; }
.socials { display: flex; gap: 10px; margin-top: 4px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); display: grid; place-items: center; transition: 0.18s; }
.socials a:hover { background: var(--yellow); color: var(--ink); }
.socials svg { width: 19px; height: 19px; }
.footer-bar { border-top: 1px solid rgba(255,255,255,0.12); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(255,255,255,0.55); }

/* ============================ MOBILE CALL BAR ============================ */
.call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none;
  align-items: center; gap: 12px; text-decoration: none;
  background: var(--red); color: var(--white);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  box-shadow: 0 -8px 24px rgba(0,0,0,0.28);
}
.call-bar .cb-ico { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.18); display: grid; place-items: center; flex: none; }
.call-bar .cb-ico svg { width: 20px; height: 20px; }
.call-bar .cb-txt { display: flex; flex-direction: column; line-height: 1.12; margin-right: auto; }
.call-bar .cb-l1 { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; color: rgba(255,255,255,0.85); text-transform: uppercase; }
.call-bar .cb-l2 { font-family: var(--price); font-size: 20px; letter-spacing: 0.01em; }
.call-bar .cb-go { background: var(--yellow); color: var(--ink); font-weight: 800; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; padding: 12px 18px; border-radius: var(--r-pill); }

/* ============================ REVEAL ANIM ============================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .hero-food { order: -1; min-height: 300px; }
  .pop-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}

/* ---- PHONES — primary experience (max 600px) ---- */
@media (max-width: 600px) {
  :root { --maxw: 100%; }
  html { scroll-padding-top: 70px; }

  /* Nav: compact + thumb-friendly */
  .nav-inner { height: 62px; gap: 12px; }
  .brand-mark { width: 28px; height: 38px; }
  img.brand-mark { width: auto; height: 36px; }
  .brand-logo { height: 46px; }
  .brand-text .b1 { font-size: 19px; }
  .brand-text .b2 { font-size: 9px; letter-spacing: 0.26em; }
  .nav-status, .nav-cta { display: none; }
  .hamburger { margin-left: auto; }

  /* Single-column layout everywhere */
  .pop-grid, .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px var(--s-4); }

  /* Hero */
  .hero { padding-top: 26px; padding-bottom: 42px; }
  .hero h1 { font-size: clamp(46px, 14.5vw, 76px); margin-top: 12px; }
  .hero-sub { font-size: 16px; max-width: none; margin-top: 14px; }
  .hero-actions { gap: 12px; margin-top: 24px; }
  .hero-actions .btn { flex: 1 1 auto; }
  .hero-food { min-height: 250px; }
  .hero-slot { max-width: 320px; }
  .burst { width: 90px; height: 90px; top: 0; right: 4px; }
  .burst .b-top { font-size: 22px; }
  .burst .b-bot { font-size: 8px; }

  /* Section heads */
  .sec-title { font-size: clamp(38px, 11vw, 58px); }
  .sec-lead { font-size: 15px; }

  /* Populair cards */
  .pop-card { padding: 16px; }
  .pop-media { height: 200px; }
  .pop-name { font-size: 19px; }

  /* Menu — names wrap, prices stay right */
  .menu-panel { padding: 22px 18px; }
  .panel-head { gap: 10px; padding-right: 150px; }
  .cat-img { width: 250px; height: 205px; top: -78px; right: -16px; }
  .panel-title { font-size: 34px; }
  .mrow { padding: 12px 0; gap: 10px; align-items: baseline; }
  .mrow .mname { white-space: normal; flex: 1; font-size: 15.5px; line-height: 1.25; }
  .mrow .leader { display: none; }
  .mrow .mprice { font-size: 20px; }
  .cat-chip { font-size: 12.5px; padding: 10px 14px; }

  /* About */
  .about-copy h2 { font-size: clamp(40px, 12vw, 64px); }
  .about-copy p.lead { font-size: 17px; }
  .about-copy p { font-size: 15.5px; }
  .about-copy .hero-actions .btn { flex: 1 1 auto; }
  .about-slot { aspect-ratio: 4 / 3.4; }

  /* Why */
  .why-card { padding: 24px 20px; }

  /* Contact — prominent + readable */
  .contact h2 { font-size: clamp(38px, 12vw, 58px); }
  .info-row { padding: 14px 0; }
  .info-row p { font-size: 16px; }
  .hours-list li { font-size: 14.5px; }
  .map-card, .map-card iframe { min-height: 280px; }

  /* Footer */
  .footer-bar { flex-direction: column; gap: 6px; }

  /* Tap-to-call bar */
  .call-bar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---- Small phones (max 380px) ---- */
@media (max-width: 380px) {
  .wrap { padding-inline: 16px; }
  .hero h1 { font-size: clamp(42px, 14vw, 62px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .panel-title { font-size: 30px; }
}

/* mobile menu drawer */
.drawer { position: fixed; inset: 0; z-index: 80; background: var(--red); transform: translateX(100%); transition: transform 0.32s var(--ease); display: flex; flex-direction: column; padding: 24px; }
.drawer.open { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; }
.drawer-close { background: none; border: none; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }
.drawer nav { display: flex; flex-direction: column; gap: 6px; margin-top: 30px; }
.drawer nav a { font-family: var(--display); font-size: 34px; color: #fff; text-transform: uppercase; letter-spacing: 0.03em; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.drawer nav a .yl { color: var(--yellow); }
.drawer .btn { margin-top: 24px; }
