/* ---------- Laffeh Truck — brand tokens ---------- */
:root {
  --black: #1b1712;
  --black-soft: #262019;
  --cream: #fbf4e7;
  --cream-alt: #f3e6cf;
  --white: #ffffff;
  --gold: #e3a335;
  --gold-dark: #c6871f;
  --olive: #71803e;
  --olive-dark: #5a662f;
  --tomato: #c1452b;

  --text: #241d15;
  --text-soft: #5c5346;
  --text-on-dark: #f5ead4;
  --text-on-dark-soft: #cabca3;

  --font-display: 'Poppins', sans-serif;
  --font-script: 'Pacifico', cursive;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(27, 23, 18, 0.08);
  --shadow-md: 0 12px 30px rgba(27, 23, 18, 0.14);

  --container: 1140px;
  --header-h: 78px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-display);
  color: var(--text);
  background: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

ul { list-style: none; }

address { font-style: normal; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
h3 { font-size: 1.25rem; }

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-dark); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: rgba(245, 234, 212, 0.55);
  color: var(--text-on-dark);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline--dark {
  border-color: rgba(27, 23, 18, 0.25);
  color: var(--black);
}
.btn-outline--dark:hover { border-color: var(--black); background: var(--black); color: var(--text-on-dark); }

.btn-disabled {
  background: rgba(27, 23, 18, 0.08);
  color: var(--text-soft);
  cursor: not-allowed;
}
.btn-disabled:hover { transform: none; }

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.badge--popular {
  background: var(--gold);
  color: var(--black);
}
.badge--soon {
  background: var(--olive);
  color: var(--white);
  margin-bottom: 16px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--black);
  border-bottom: 1px solid rgba(245, 234, 212, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-badge {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--black-soft);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-badge--sm { width: 40px; height: 40px; }
.logo-badge__script {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(1px);
}
.logo-badge--sm .logo-badge__script { font-size: 0.95rem; }

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand__name {
  font-weight: 800;
  color: var(--text-on-dark);
  font-size: 1.05rem;
}
.brand__tag {
  font-size: 0.72rem;
  color: var(--text-on-dark-soft);
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-on-dark);
  cursor: pointer;
  padding: 6px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav__list {
  display: flex;
  gap: 28px;
}
.site-nav__list a {
  color: var(--text-on-dark-soft);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.site-nav__list a:hover { color: var(--gold); }

.site-nav__social {
  display: flex;
  gap: 16px;
  padding-left: 24px;
  border-left: 1px solid rgba(245, 234, 212, 0.15);
}
.site-nav__social a {
  color: var(--text-on-dark-soft);
  transition: color 0.15s ease;
}
.site-nav__social a:hover { color: var(--gold); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--text-on-dark);
  overflow: hidden;
  padding: 96px 0 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(27, 23, 18, 0.85), rgba(27, 23, 18, 0.78) 45%, rgba(27, 23, 18, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(227, 163, 53, 0.16), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(113, 128, 62, 0.22), transparent 50%),
    radial-gradient(rgba(245, 234, 212, 0.08) 1.4px, transparent 1.4px),
    url('../images/hero.jpg');
  background-size: cover, auto, auto, 22px 22px, cover;
  background-position: center, center, center, center, center;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat, no-repeat;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
}

.hero__sub {
  font-size: 1.1rem;
  color: var(--text-on-dark-soft);
  max-width: 560px;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.hero__social {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-on-dark-soft);
}
.hero__social a {
  color: var(--gold);
  font-weight: 700;
}
.hero__social a:hover { text-decoration: underline; }

/* ---------- Features strip ---------- */
.features {
  background: var(--cream-alt);
  border-bottom: 1px solid rgba(27, 23, 18, 0.06);
}
.features__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 36px 24px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--text);
  font-size: 1.05rem;
}
.feature::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Section shared ---------- */
section { padding: 88px 0; }

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 48px;
}
.section-head__sub {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin-top: 12px;
}

/* ---------- Menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.menu-card__photo {
  position: relative;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  width: 100%;
  border: 0;
  padding: 0;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
.menu-card__photo--gold { background-color: var(--gold); background-image: linear-gradient(145deg, var(--gold), var(--gold-dark)); }
.menu-card__photo--olive { background-color: var(--olive); background-image: linear-gradient(145deg, var(--olive), var(--olive-dark)); }
.menu-card__photo--charcoal { background-color: var(--black-soft); background-image: linear-gradient(145deg, var(--black-soft), var(--black)); }

button.menu-card__photo { cursor: pointer; }

.menu-card__view {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(27, 23, 18, 0.45);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.2s ease;
}
button.menu-card__photo:hover .menu-card__view,
button.menu-card__photo:focus-visible .menu-card__view {
  opacity: 1;
}

.menu-card .badge--popular {
  position: absolute;
  top: 14px;
  left: 14px;
}

.menu-card__body {
  padding: 22px 22px 26px;
}
.menu-card__body h3 { margin-bottom: 8px; }
.menu-card__body p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.menu-card--side .menu-card__photo { aspect-ratio: 16 / 9; }

.menu-note {
  text-align: center;
  color: var(--text-soft);
  margin-top: 40px;
  font-size: 0.95rem;
}

/* ---------- Order (coming soon) ---------- */
.order {
  background: var(--black);
  color: var(--text-on-dark);
}
.order__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.order h2 { color: var(--white); margin-bottom: 14px; }
.order p {
  color: var(--text-on-dark-soft);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* ---------- Location ---------- */
.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.location__info address {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 20px 0 28px;
  color: var(--text);
}
.location__info p { color: var(--text-soft); margin-bottom: 6px; }
.location__info h2 { margin-bottom: 16px; }

.location__map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}

/* ---------- Follow ---------- */
.follow {
  background: var(--cream-alt);
  text-align: center;
}
.follow__inner { max-width: 560px; margin: 0 auto; }
.follow h2 { margin-bottom: 14px; }
.follow p { color: var(--text-soft); margin-bottom: 32px; }
.follow__links {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: var(--text-on-dark-soft);
  padding: 56px 0 28px;
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(245, 234, 212, 0.12);
}
.site-footer__address {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
}
.site-footer__social {
  display: flex;
  gap: 16px;
}
.site-footer__social a { color: var(--text-on-dark-soft); }
.site-footer__social a:hover { color: var(--gold); }

.site-footer__copy {
  text-align: center;
  font-size: 0.82rem;
  margin-top: 24px;
  color: rgba(202, 188, 163, 0.6);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 23, 18, 0.82);
}

.lightbox__dialog {
  position: relative;
  z-index: 1;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 16px 16px 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-md);
  transform: scale(0.96);
  transition: transform 0.2s ease;
  text-align: center;
}
.lightbox.is-open .lightbox__dialog {
  transform: scale(1);
}

.lightbox__img {
  width: 100%;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
  background: var(--cream-alt);
}

.lightbox__caption {
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 16px;
}

.lightbox__credit {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 4px;
}
.lightbox__credit a { color: var(--gold-dark); font-weight: 600; }
.lightbox__credit a:hover { text-decoration: underline; }

.lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  color: var(--text-on-dark);
  border: 2px solid var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.lightbox__close:hover { background: var(--gold-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .location__inner { grid-template-columns: 1fr; }
  .location__map { order: -1; aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  :root { --header-h: 68px; }

  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px 36px;
    border-top: 1px solid rgba(245, 234, 212, 0.1);
    border-bottom: 1px solid rgba(245, 234, 212, 0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }
  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav__list {
    flex-direction: column;
    gap: 18px;
  }
  .site-nav__social {
    border-left: none;
    padding-left: 0;
  }

  .hero { padding: 64px 0 56px; }
  section { padding: 64px 0; }

  .menu-grid { grid-template-columns: 1fr; }

  .site-footer__inner { flex-direction: column; text-align: center; }
}
