/* =========================================================================
   LAVIN'S DÖNER & PIZZA — delivery-first, photo-driven, hard-square.
   ========================================================================= */

:root {
  --red:        #E11D20;
  --red-dark:   #B3161A;
  --yellow:     #FFC43C;
  --yellow-dk:  #E0A800;
  --orange:     #F39323;
  --cream:      #FAF6EF;
  --cream-2:    #F1E8D3;
  --ink:        #121010;
  --ink-2:      #1a1615;
  --ink-soft:   #332c2b;
  --muted:      #766d6d;
  --paper:      #FFFFFF;
  --line:       #E4DAC4;
  --line-dk:    #26201f;

  --bg:         var(--cream);
  --accent:     var(--red);

  --display: "Space Grotesk", "Inter", system-ui, -apple-system, sans-serif;
  --body:    "Inter", system-ui, -apple-system, sans-serif;

  --max: 1280px;
  --pad: clamp(16px, 4vw, 40px);

  --sh-cta: 0 10px 24px rgba(225, 29, 32, 0.30);
}

/* NO ROUNDED CORNERS anywhere. Hard edges. */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0; padding: 0;
  border-radius: 0 !important;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
body.has-sticky-order { padding-bottom: 0; }

img, iframe, svg { display: block; max-width: 100%; border: 0; }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.skip-link {
  position: absolute; left: -9999px;
  background: var(--ink); color: var(--paper);
  padding: 12px 16px; font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; z-index: 999; }

/* =========================================================================
   STATUS DOT (tiny square, not round)
   ========================================================================= */
.dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: #25c26e;
  margin-right: 6px;
  vertical-align: -1px;
}
.dot--closed { background: var(--red); }

/* =========================================================================
   HEADER
   ========================================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: saturate(150%) blur(8px);
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 100px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; }
.logo__img { display: block; height: 80px; width: auto; }

.header__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.header__status .dot { margin: 0; }

/* below-header status strip (tablet/mobile only) */
.status-strip {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  text-align: center;
}
.status-strip .dot { margin: 0; }

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav a { position: relative; padding: 8px 2px; color: var(--ink-soft); transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 3px; background: var(--red);
  transition: width .25s ease;
}
.nav a:hover::after { width: 100%; }

/* =========================================================================
   BUTTONS — square, bold, no rounded edges
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: background .15s ease, color .15s ease, box-shadow .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--solid {
  background: var(--red); color: var(--paper);
  border-color: var(--red);
  box-shadow: var(--sh-cta);
}
.btn--solid:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  box-shadow: 0 14px 32px rgba(225, 29, 32, 0.40);
}

.btn--yellow {
  background: var(--yellow); color: var(--ink);
  border-color: var(--yellow);
}
.btn--yellow:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); }

.btn--ghost {
  background: transparent; color: var(--paper);
  border-color: var(--paper);
}
.btn--ghost:hover { background: var(--paper); color: var(--ink); }

.btn--lg { padding: 18px 28px; font-size: 15px; gap: 12px; }
.btn--xl { padding: 22px 36px; font-size: 17px; gap: 14px; }
.btn--block { width: 100%; }

.btn__arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.header__cta { padding: 11px 18px; font-size: 13px; }

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow--ink { color: var(--yellow); }
.eyebrow__dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--red);
}
.eyebrow--ink .eyebrow__dot { background: var(--yellow); }

.display {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.display__accent { color: var(--yellow); }

.h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.025em;
  max-width: 14ch;
}
.h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 4.4vw, 56px); line-height: 1.04; letter-spacing: -0.02em;
}
.h2--mid { font-size: clamp(22px, 2.8vw, 32px); }

.lede {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-top: 16px;
}
.lede--ink { color: #ddd3be; }

/* =========================================================================
   HERO — full-bleed photo, dark overlay, text left
   ========================================================================= */
.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(10,6,4,0.88) 0%, rgba(10,6,4,0.60) 55%, rgba(10,6,4,0.30) 100%),
    url('/assets/hero.jpg') center center/cover no-repeat;
  background-color: var(--ink);
  color: var(--paper);
  padding: clamp(72px, 11vw, 150px) 0 clamp(72px, 11vw, 140px);
  overflow: hidden;
  border-bottom: 4px solid var(--red);
}
.hero__inner { max-width: 720px; position: relative; }
.hero h1.display { color: var(--paper); }

.hero__lede {
  font-size: clamp(17px, 1.4vw, 20px);
  color: #e7dcc7;
  margin-top: 20px;
  max-width: 52ch;
}

.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 36px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  margin-top: 40px;
  max-width: 620px;
  border-top: 1px solid rgba(255,255,255,0.14);
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.hero__stat {
  padding: 18px 24px 18px 0;
  border-right: 1px solid rgba(255,255,255,0.14);
}
.hero__stat:nth-child(n+2) { padding-left: 24px; }
.hero__stat:last-child { border-right: 0; }
.hero__stat dt {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: #cfbfa3; font-weight: 600;
  margin-bottom: 4px;
}
.hero__stat dd {
  font-family: var(--display); font-weight: 700;
  font-size: 22px;
  color: var(--paper);
}

/* =========================================================================
   TRUST STRIP
   ========================================================================= */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust__item {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 0;
  border-right: 1px solid var(--line);
  padding-left: 24px;
}
.trust__item:first-child { padding-left: 0; }
.trust__item:last-child { border-right: 0; }
.trust__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--red);
  color: var(--paper);
  flex: 0 0 auto;
}
.trust__icon svg { width: 24px; height: 24px; fill: currentColor; }
.trust__text {
  display: flex; flex-direction: column; line-height: 1.2;
}
.trust__label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--muted);
  margin-bottom: 3px;
}
.trust__value {
  font-family: var(--display); font-weight: 700; font-size: 17px;
  color: var(--ink);
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section {
  padding: clamp(56px, 8vw, 112px) 0;
}
.section--cream { background: var(--cream-2); }
.section--ink {
  background: var(--ink);
  color: var(--paper);
}
.section__head { max-width: 820px; margin-bottom: 40px; }

/* =========================================================================
   CATEGORIES — real photo backgrounds, hard-square tiles, bottom text
   ========================================================================= */
.grid-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--ink);
}
.cat {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--ink) center/cover no-repeat;
  transition: transform .25s ease;
}
.cat::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
  transition: background .25s ease;
}
.cat:hover { transform: scale(1.015); }
.cat:hover::before {
  background: linear-gradient(180deg, rgba(225,29,32,0.25) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.90) 100%);
}
.cat__name, .cat__meta {
  position: relative; z-index: 2;
  color: var(--paper);
  display: block;
}
.cat__body {
  position: absolute;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 2;
}
.cat__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -0.015em;
  line-height: 1;
}
.cat__meta {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}
.cat__badge {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  background: var(--red); color: var(--paper);
  font-size: 10px; font-weight: 700;
  padding: 6px 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* per-slug photo backgrounds */
.cat[data-slug="doener"]    { background-image: url('/assets/cat/doener.jpg'); }
.cat[data-slug="pizza"]     { background-image: url('/assets/cat/pizza.jpg'); }
.cat[data-slug="duerum"]    { background-image: url('/assets/cat/duerum.jpg'); }
.cat[data-slug="burger"]    { background-image: url('/assets/cat/burger.jpg'); }
.cat[data-slug="salate"]    { background-image: url('/assets/cat/salate.jpg'); }
.cat[data-slug="pasta"]     { background-image: url('/assets/cat/pasta.jpg'); }
.cat[data-slug="beilagen"]  { background-image: url('/assets/cat/beilagen.jpg'); }
.cat[data-slug="getraenke"] { background-image: url('/assets/cat/getraenke.jpg'); }

/* =========================================================================
   HOURS — two columns
   ========================================================================= */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--ink);
  margin-top: 24px;
}
.hours-col {
  background: var(--paper);
  padding: 28px 32px 32px;
}
.hours-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  color: var(--ink);
  display: flex; align-items: center; gap: 12px;
}
.hours-title::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--red);
  flex: 0 0 auto;
}
.hours-col--delivery .hours-title::before { background: var(--yellow); }
.hours {
  display: flex; flex-direction: column;
  gap: 0;
}
.hours > div {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.hours > div:last-child { border-bottom: 0; }
.hours dt { color: var(--muted); font-weight: 500; font-size: 14px; }
.hours dd { font-family: var(--display); font-weight: 700; font-size: 18px; color: var(--ink); }

/* =========================================================================
   ZONES
   ========================================================================= */
.zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--ink);
  margin-top: 24px;
}
.zones > li { list-style: none; }
.zone {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 16px;
  min-height: 140px;
  padding: 24px;
  background: var(--paper);
  transition: background .15s ease, color .15s ease;
}
.zone::after {
  content: "→";
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--display); font-weight: 700; font-size: 20px;
  color: var(--red);
  transition: transform .2s ease;
}
a.zone:hover {
  background: var(--red); color: var(--paper);
}
a.zone:hover::after { color: var(--paper); transform: translateX(4px); }
a.zone:hover .zone__meta { color: rgba(255,255,255,0.85); }
.zone__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
}
.zone__meta {
  font-size: 12px; letter-spacing: 0.04em;
  color: var(--muted);
}

/* =========================================================================
   KONTAKT + MAP
   ========================================================================= */
.contact-lines { margin-top: 28px; }
.contact-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: var(--paper);
  transition: padding .2s ease;
}
.contact-line:last-of-type { border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-line:hover { padding-left: 8px; }
.contact-line > span:first-child {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: #9e8f75;
}
.contact-line__val {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
}

.map-card {
  overflow: hidden;
  height: min(60vh, 520px);
  background: var(--paper);
  border: 2px solid var(--paper);
}
.map-card iframe { width: 100%; height: 100%; border: 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

/* =========================================================================
   STICKY MOBILE ORDER BAR
   ========================================================================= */
.sticky-order {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: var(--ink);
  color: var(--paper);
  display: none;
  align-items: center;
  gap: 12px;
  border-top: 2px solid var(--red);
}
.sticky-order__info {
  flex: 1;
  display: flex; flex-direction: column; line-height: 1.2;
}
.sticky-order__info strong {
  font-family: var(--display); font-weight: 700;
  font-size: 14px;
}
.sticky-order__info span {
  font-size: 11px; color: #b7a98e;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.sticky-order__btn {
  background: var(--red); color: var(--paper);
  border: 0;
  padding: 13px 22px;
  font-family: var(--body); font-weight: 800;
  font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: background .15s ease;
  white-space: nowrap;
}
.sticky-order__btn:hover { background: var(--red-dark); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--ink);
  color: #b6a98f;
  padding: 72px 0 28px;
}
.footer a { color: #ddd; transition: color .15s ease; }
.footer a:hover { color: var(--yellow); }
.footer__top {
  display: grid; grid-template-columns: 1fr 2fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dk);
}
.footer__addr { margin-top: 18px; font-size: 14px; line-height: 1.7; }
.footer__cta { margin-top: 20px; }
.footer__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__h {
  font-family: var(--body);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 14px; font-weight: 700;
}
.footer ul li { padding: 4px 0; font-size: 14px; }

.footer__seo {
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dk);
  font-size: 13px; color: #8e7f65; line-height: 1.8;
}

.footer__bottom {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-top: 20px;
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: #8e7f65;
}
.footer__sep { color: #3a2f27; }
.footer__spacer { flex: 1; }
.footer__muted { color: #6b5f4d; }

.logo--footer .logo__img { height: 110px; }

/* =========================================================================
   HAMBURGER + MOBILE NAV
   ========================================================================= */
.burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 2px solid var(--ink);
  cursor: pointer;
  padding: 0; position: relative;
}
.burger span, .burger span::before, .burger span::after {
  content: ""; position: absolute;
  left: 10px; width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .2s ease, top .2s ease, opacity .15s ease;
}
.burger span { top: 50%; transform: translateY(-50%); }
.burger span::before { top: -7px; }
.burger span::after  { top: 7px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.burger[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0;
  background: var(--ink);
  color: var(--paper);
  z-index: 100;
  display: none;
  padding: 80px var(--pad) 100px;
  overflow-y: auto;
}
.mobile-nav[aria-hidden="false"] { display: flex; flex-direction: column; }
.mobile-nav__close {
  position: absolute; top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  color: var(--paper);
  border: 2px solid rgba(255,255,255,0.14);
  cursor: pointer;
  font-size: 22px;
}
.mobile-nav ul {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 20px; border-top: 1px solid var(--line-dk);
}
.mobile-nav li { border-bottom: 1px solid var(--line-dk); }
.mobile-nav a, .mobile-nav button {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 20px 0;
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 5vw, 28px);
  letter-spacing: -0.01em; text-align: left;
  background: transparent; color: var(--paper);
  border: 0; cursor: pointer;
}
.mobile-nav a::after, .mobile-nav button::after {
  content: "→"; color: var(--yellow);
  font-family: var(--display); font-weight: 700;
}
.mobile-nav__meta {
  margin-top: auto; padding-top: 28px;
  border-top: 1px solid var(--line-dk);
  color: #9e8f75; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.mobile-nav__meta a { color: var(--paper); font-family: var(--display); font-weight: 700; }

body.is-locked { overflow: hidden; }

/* =========================================================================
   COOKIE CONSENT
   ========================================================================= */
.cookie {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 80;
  background: var(--ink); color: #ddd;
  border-top: 2px solid var(--red);
  padding: 18px 20px;
  transform: translateY(100%);
  transition: transform .3s ease;
}
.cookie[aria-hidden="false"] { transform: translateY(0); }
.cookie__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie__text { flex: 1 1 260px; font-size: 13px; line-height: 1.55; }
.cookie__text strong {
  color: var(--paper); display: block;
  font-family: var(--display); font-size: 15px; margin-bottom: 4px;
}
.cookie__text a { color: var(--yellow); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie .btn { border-color: rgba(255,255,255,0.35); color: var(--paper); }
.cookie .btn:hover { background: rgba(255,255,255,0.08); border-color: var(--paper); }
.cookie .btn--solid {
  background: var(--yellow); color: var(--ink); border-color: var(--yellow);
}
.cookie .btn--solid:hover { background: var(--yellow-dk); border-color: var(--yellow-dk); }

.consent-blocked { opacity: 0.7; cursor: not-allowed !important; }

/* =========================================================================
   SUB-PAGE HELPERS
   ========================================================================= */
.page-head {
  padding: clamp(56px, 8vw, 104px) 0 clamp(40px, 5vw, 72px);
  background: var(--cream);
  border-bottom: 4px solid var(--red);
}
.page-head__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--red);
  margin-bottom: 16px;
}
.page-head__eyebrow::before {
  content: ""; width: 10px; height: 10px;
  background: var(--red);
}
.page-head .h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(36px, 6vw, 80px); line-height: 1.02; letter-spacing: -0.025em;
  max-width: 16ch;
}
.page-head__lede {
  margin-top: 20px; max-width: 60ch;
  color: var(--ink-soft); font-size: clamp(16px, 1.2vw, 18px);
}
.page-head__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 12px; }
.page-head__cta .btn--ghost { color: var(--ink); border-color: var(--ink); }
.page-head__cta .btn--ghost:hover { background: var(--ink); color: var(--paper); }

.backlink {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 20px;
}
.backlink::before { content: "←"; color: var(--red); font-weight: 700; }
.backlink:hover { color: var(--ink); }

.cross-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--line);
  border: 2px solid var(--ink);
  margin-top: 24px;
}
.cross-links a {
  position: relative;
  padding: 22px;
  background: var(--paper);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 120px;
  justify-content: space-between;
  transition: background .15s ease, color .15s ease;
}
.cross-links a::after {
  content: "→";
  position: absolute; top: 22px; right: 22px;
  font-family: var(--display); font-weight: 700; color: var(--red);
  transition: transform .2s ease;
}
.cross-links a:hover { background: var(--red); color: var(--paper); }
.cross-links a:hover::after { color: var(--paper); transform: translateX(4px); }
.cross-links a:hover .cross-links__meta { color: rgba(255,255,255,0.85); }
.cross-links__name {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
}
.cross-links__meta { font-size: 12px; letter-spacing: 0.04em; color: var(--muted); }

/* =========================================================================
   ORDER CTA (on sub-pages)
   ========================================================================= */
.order-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line-dk);
  border: 2px solid var(--paper);
}
.order-cta {
  position: relative;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: clamp(28px, 4vw, 48px);
  min-height: clamp(240px, 28vw, 320px);
  background: var(--red);
  color: var(--paper);
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--body);
  transition: transform .18s ease;
  overflow: hidden;
}
.order-cta:hover { transform: scale(1.01); }
.order-cta--alt { background: var(--yellow); color: var(--ink); }
.order-cta__title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 0.98; letter-spacing: -0.025em;
}
.order-cta__meta {
  font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}
.order-cta--alt .order-cta__meta { color: rgba(20,17,17,0.65); }
.order-cta__arrow {
  position: absolute;
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  font-family: var(--display); font-weight: 700; font-size: 26px;
  transition: transform .2s ease;
}
.order-cta:hover .order-cta__arrow { transform: translateX(4px); }

/* =========================================================================
   LEGAL
   ========================================================================= */
.legal { padding: clamp(32px, 5vw, 72px) 0 clamp(56px, 8vw, 96px); }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 5vw, 56px); letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.legal h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(22px, 2.5vw, 30px);
  margin-top: 36px; margin-bottom: 10px;
}
.legal h3 { font-family: var(--display); font-weight: 600; font-size: 18px; margin-top: 22px; margin-bottom: 8px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; font-size: 15px; }
.legal p + p, .legal p + ul, .legal ul + p { margin-top: 12px; }
.legal ul { margin-left: 20px; list-style: disc; }
.legal ul li { margin-top: 6px; }
.legal .fill {
  background: #fff3a8; padding: 1px 6px;
  border: 1px solid #d5b800; font-family: monospace; font-size: 13px;
}
.legal table {
  width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 14px;
  border: 2px solid var(--ink);
}
.legal th, .legal td {
  text-align: left; padding: 10px 14px; vertical-align: top;
  border-bottom: 1px solid var(--line);
}
.legal th {
  font-family: var(--display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 12px;
  background: var(--cream-2);
}
.legal td:first-child { font-weight: 700; color: var(--ink); width: 80px; }

.as-trigger { cursor: pointer; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .header__status { display: none; }
  .status-strip { display: flex; }
  .header__inner { grid-template-columns: auto 1fr auto auto; gap: 18px; min-height: 84px; }
  .logo__img { height: 64px; }
  .logo--footer .logo__img { height: 92px; }
  .grid-cats { grid-template-columns: repeat(3, 1fr); }
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(3), .trust__item:nth-child(4) { border-top: 1px solid var(--line); }
  .two-col { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .order-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .burger { display: inline-block; justify-self: end; }
  .nav, .header__cta { display: none; }
  .header__inner { display: flex; justify-content: space-between; align-items: center; min-height: 72px; gap: 12px; }
  .logo__img { height: 52px; }
  .logo--footer .logo__img { height: 80px; }
  .hero { padding: 48px 0 64px; }
  .hero__stats { grid-template-columns: 1fr; }
  .hero__stat { padding: 16px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .hero__stat:last-child { border-bottom: 0; }
  .hero__stat:nth-child(n+2) { padding-left: 0; }
  .grid-cats { grid-template-columns: repeat(2, 1fr); }
  .hours-grid { grid-template-columns: 1fr; }
  .cross-links { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: 1fr; gap: 20px; }
  .sticky-order { display: flex; }
  body.has-sticky-order { padding-bottom: 84px; }
  .cookie { padding: 14px 18px; }
}

@media (max-width: 480px) {
  .btn--lg { padding: 14px 20px; font-size: 13px; }
  .btn--xl { padding: 16px 22px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
