/* ============================================================
   FARSHMAN — premium halal grill landing
   Flat, gritty, dark. Faithful to the brand reference:
   near-black textured ground, sharp orange/red accents,
   condensed Oswald display + Golos Text body.
   ============================================================ */

:root {
  --bg:        #0a0908;
  --bg-2:      #0c0b0a;
  --panel:     #121110;
  --panel-2:   #17150f;
  --field:     #1b1814;
  --line:      rgba(255, 246, 236, 0.075);
  --line-2:    rgba(255, 246, 236, 0.16);

  --text:      #f2ece2;
  --dim:       #9a9087;
  --mute:      #6b6259;

  --orange:    #ef8b1f;
  --orange-2:  #f6a623;
  --gold:      #c08b3e;
  --red:       #c0392b;
  --red-dk:    #8c1d14;

  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 64px);

  --ff-display: "Oswald", system-ui, sans-serif;
  --ff-body: "Manrope", system-ui, sans-serif;

  --r: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* flat dark ground — faint warmth only at the extremes, no soft blobs */
body::before {
  content: "";
  position: fixed;
  inset: 0; z-index: -3;
  background:
    linear-gradient(180deg, #050404 0%, var(--bg) 16%, var(--bg) 84%, #060504 100%),
    radial-gradient(120% 60% at 92% 0%, rgba(192,57,43,.10), transparent 55%);
}
/* film grain for grit */
body::after {
  content: "";
  position: fixed;
  inset: 0; z-index: -2;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* image-slot legibility on dark */
image-slot { background: linear-gradient(160deg, #cfc4b6, #aa9a87); border-radius: 0; }

.shell { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.ic { display: inline-grid; place-items: center; }
.ic svg { width: 100%; height: 100%; display: block; }

/* ---- shared display helpers ---- */
.display { font-family: var(--ff-display); font-weight: 700; text-transform: uppercase; line-height: .95; }
.eyebrow {
  font-family: var(--ff-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .26em; font-size: 13px; color: var(--orange); margin: 0;
}
.dash { display: inline-block; width: 56px; height: 5px; background: var(--orange); flex: none; }

.section-head { display: flex; align-items: center; gap: 18px; margin-bottom: 42px; }
.section-head h2 {
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .015em; font-size: clamp(30px, 4.3vw, 50px); margin: 0; line-height: 1;
}
.accent { color: var(--orange); }

.pad { padding-block: clamp(60px, 8vw, 104px); }
section { position: relative; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s, backdrop-filter .3s;
}
.header.scrolled {
  background: rgba(8,7,6,.86);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.header .shell { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.nav { display: flex; align-items: center; gap: 36px; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-family: var(--ff-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .12em; font-size: 14px; color: var(--dim);
  white-space: nowrap; padding: 6px 0; position: relative; transition: color .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

/* logo */
.logo { display: flex; align-items: center; }
.logo-mark { height: 44px; width: auto; flex: none; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.footer .logo-mark { height: 58px; }

/* buttons — flat */
.btn {
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .12em; font-size: 14px; cursor: pointer; border: none;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--r); color: #fff; background: var(--red);
  transition: background .18s, transform .18s, border-color .18s, color .18s;
}
.btn:hover { background: #d2412f; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn.lg { padding: 16px 34px; font-size: 15px; }
.btn.ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line-2); }
.btn.ghost:hover { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn .ic { width: 17px; height: 17px; }

.burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding-top: 78px; overflow: hidden; }
.hero-inner {
  display: grid; grid-template-columns: 1.04fr 1fr; gap: clamp(28px, 4.5vw, 64px);
  align-items: center; min-height: calc(100vh - 78px); padding-block: clamp(36px, 6vw, 80px);
}
.hero-copy { position: relative; z-index: 3; }
.hero h1 {
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  margin: 16px 0 0; font-size: clamp(46px, 8vw, 104px); line-height: .9; letter-spacing: .005em;
}
.hero h1 .glow { color: var(--orange); display: block; }
.hero .lead { margin: 22px 0 0; max-width: 33ch; font-size: clamp(16px, 1.5vw, 20px); color: var(--dim); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 30px; margin: 34px 0 38px; }
.hbadge { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; width: 92px; }
.hbadge .ic { width: 30px; height: 30px; color: var(--orange); }
.hbadge span {
  font-family: var(--ff-display); font-weight: 500; font-size: 11.5px; letter-spacing: .07em;
  text-transform: uppercase; color: var(--dim); line-height: 1.3;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* hero visual */
.hero-visual { position: relative; z-index: 2; }
.hero-haze {
  position: absolute; inset: -14% -8% -2% 4%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 45% at 68% 22%, rgba(195, 200, 210, 0.10), transparent 65%),
    radial-gradient(70% 60% at 50% 42%, rgba(150, 160, 175, 0.075), transparent 72%),
    radial-gradient(40% 38% at 78% 72%, rgba(170, 180, 195, 0.055), transparent 70%);
  filter: blur(22px);
  animation: hazeDrift 32s ease-in-out infinite alternate;
}
@keyframes hazeDrift {
  0%   { transform: translate3d(0, 0, 0)   scale(1); opacity: .85; }
  100% { transform: translate3d(6px, -8px, 0) scale(1.04); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero-haze { animation: none; } }
.hero-stage { position: relative; z-index: 1; }
.hero-img {
  position: relative; z-index: 1; width: 100%; height: auto; aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--r); box-shadow: 0 40px 80px -42px rgba(0,0,0,.92);
  display: block;
}

/* flat brand sticker */
.sticker {
  border-radius: 50%; background: var(--red); border: 1.5px solid rgba(255,255,255,.22);
  display: grid; place-items: center; text-align: center; color: #fff;
  box-shadow: 0 6px 16px -8px rgba(0,0,0,.7);
}
.sticker b { font-family: var(--ff-display); font-weight: 700; line-height: .92; letter-spacing: .03em; }
.sticker b span { display: block; color: transparent; -webkit-text-stroke: .7px #fff; }
.sticker small { letter-spacing: .16em; color: rgba(255,255,255,.72); display: block; }
.hero-sticker {
  position: absolute; top: -16px; right: 7%; z-index: 4; width: 92px; height: 92px; transform: rotate(-9deg);
}
.hero-sticker b { font-size: 22px; letter-spacing: .04em; }

.scroll-cue {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%); z-index: 4;
  color: var(--mute); width: 26px; height: 26px; animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,7px)} }

/* ============================================================
   MENU
   ============================================================ */
/* Up to 4 cards fit in one row; 5+ overflow horizontally and scroll. */
.menu-grid {
  display: flex; gap: 26px;
  overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 14px;
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.menu-grid::-webkit-scrollbar { height: 6px; }
.menu-grid::-webkit-scrollbar-track { background: transparent; }
.menu-grid::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.card {
  flex: 1 0 calc((100% - 3 * 26px) / 4);
  scroll-snap-align: start;
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .25s ease, border-color .25s;
}
.card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.card-media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.card-media image-slot { width: 100%; height: 100%; }
.card-sticker { position: absolute; top: 14px; left: 14px; width: 58px; height: 58px; z-index: 3; }
.card-sticker b { font-size: 11px; } .card-sticker b span { font-size: 8px; }

/* per-card photo gallery (horizontal swipe) */
.card-gallery {
  display: flex; width: 100%; height: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
.card-gallery::-webkit-scrollbar { display: none; }
.card-gallery.draggable { cursor: grab; }
.card-gallery.draggable.dragging { cursor: grabbing; }
.card-gallery .gimg {
  flex: 0 0 100%; width: 100%; height: 100%;
  object-fit: cover; scroll-snap-align: start;
  user-select: none; -webkit-user-drag: none;
}
.card-gallery-empty {
  background: linear-gradient(160deg, #cfc4b6, #aa9a87);
}
.card-gallery-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 6px;
  padding: 5px 9px; border-radius: 999px;
  background: rgba(0, 0, 0, .45); backdrop-filter: blur(6px);
  pointer-events: none;
}
.card-gallery-dots i {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255, 255, 255, .45); transition: all .2s;
  pointer-events: auto; cursor: pointer;
}
.card-gallery-dots i.on { background: #fff; width: 16px; border-radius: 3px; }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 {
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .015em; font-size: 21px; margin: 0 0 9px;
}
.card-body p { margin: 0; color: var(--dim); font-size: 15px; }
.card-compo {
  margin-top: 12px; padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 13px; line-height: 1.45; color: var(--dim);
}
.card-compo__label {
  display: inline-block; margin-right: 7px;
  font-family: var(--ff-display); font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  font-size: 11px; color: var(--orange);
}
.price { display: flex; align-items: baseline; gap: 7px; margin: 18px 0 18px; margin-top: auto; }
.price .num { font-family: var(--ff-display); font-weight: 700; font-size: 32px; color: var(--orange); line-height: 1; }
.price .unit { color: var(--mute); font-size: 14px; letter-spacing: .03em; }
.card .btn { width: 100%; }

.menu-dots { display: none; }

/* ============================================================
   PANELS  (process / why / order)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(26px, 3.2vw, 42px);
}
.panel-head {
  display: flex; align-items: center; gap: 14px; margin: 0 0 30px;
  font-family: var(--ff-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; font-size: clamp(22px, 2.7vw, 30px); line-height: 1;
}
.panel-head .dash { width: 42px; height: 4px; }

.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.step { display: flex; flex-direction: column; align-items: center; gap: 13px; text-align: center; }
.step .ic { width: 34px; height: 34px; color: var(--orange); transition: transform .2s; }
.step:hover .ic { transform: translateY(-3px); }
.step span {
  font-family: var(--ff-display); font-weight: 500; font-size: 11.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--dim); line-height: 1.3;
}
.panel .note { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--dim); font-size: 15px; }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.why-item { display: flex; align-items: center; gap: 12px; }
.why-item .ic { width: 20px; height: 20px; color: var(--red); flex: none; }
.why-item span {
  font-family: var(--ff-display); font-weight: 500; text-transform: uppercase;
  letter-spacing: .025em; font-size: 15px; color: var(--text);
}
.why-stats { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }
.why-stats .stat { flex: 1; min-width: 130px; background: var(--field); border: 1px solid var(--line); border-radius: var(--r); padding: 18px; text-align: center; }
.why-stats .stat b { font-family: var(--ff-display); font-weight: 700; font-size: 32px; color: var(--orange); line-height: 1; display: block; }
.why-stats .stat span { font-size: 12.5px; color: var(--dim); letter-spacing: .04em; text-transform: uppercase; margin-top: 6px; display: block; }

/* ============================================================
   ORDER + DELIVERY
   ============================================================ */
/* equal-column layout: form on the left, contacts + delivery info on the right */
.order-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }

.delivery-panel,
.info-panel {
  background: var(--panel-2); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px, 2.8vw, 36px);
  display: flex; flex-direction: column; gap: 22px;
}
.delivery-panel .panel-head,
.info-panel .panel-head { margin-bottom: 0; }
.delivery-panel .order-form { margin-top: 0; }

.contact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-card {
  display: flex; gap: 13px; align-items: center;
  background: var(--field); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px 15px; transition: border-color .2s, transform .2s;
  min-width: 0; /* let small text ellipse instead of overflow */
}
a.contact-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.contact-card .ic { width: 38px; height: 38px; flex: none; border-radius: 7px; background: rgba(239,139,31,.1); color: var(--orange); }
.contact-card .ic svg { width: 20px; height: 20px; }
.contact-card .ic.brand { color: var(--orange); }
.contact-card .t { min-width: 0; }
.contact-card .t b { font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .035em; font-size: 14px; display: block; }
.contact-card .t small { color: var(--dim); font-size: 12.5px; display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.delivery-summary {
  margin-top: auto;
  background: var(--field); border: 1px solid var(--line); border-radius: var(--r);
  padding: 6px 18px;
}
.delivery-summary .opt { display: flex; gap: 15px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.delivery-summary .opt:last-of-type { border-bottom: none; }
.delivery-summary .opt .ic { width: 38px; height: 38px; flex: none; border-radius: 7px; background: rgba(239,139,31,.1); color: var(--orange); display: grid; place-items: center; }
.delivery-summary .opt .ic svg { width: 20px; height: 20px; }
.delivery-summary .opt b { font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .035em; font-size: 14.5px; display: block; margin-bottom: 2px; }
.delivery-summary .opt small { color: var(--dim); font-size: 13px; }
.delivery-summary .opt .tag { margin-left: auto; font-family: var(--ff-display); font-weight: 700; color: var(--orange); font-size: 15px; text-transform: uppercase; white-space: nowrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); background: var(--bg-2); }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; padding-block: clamp(44px, 5.5vw, 68px); }
.footer .logo { margin-bottom: 16px; }
.footer-col h4 { font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; font-size: 14px; margin: 0 0 15px; }
.footer-col a, .footer-col p { display: block; color: var(--dim); font-size: 15px; margin: 0 0 9px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.socials { display: flex; gap: 11px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border-radius: 7px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--dim); transition: all .2s; }
.socials a:hover { color: #fff; border-color: var(--orange); background: var(--field); transform: translateY(-3px); }
.socials a svg { width: 19px; height: 19px; }
.copyright { border-top: 1px solid var(--line); padding-block: 20px; text-align: center; color: var(--mute); font-size: 13px; }

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-drawer { display: none; }
@media (max-width: 980px) {
  .nav-links, .header .nav .btn { display: none; }
  .burger { display: grid; place-items: center; width: 46px; height: 46px; background: var(--field); border: 1px solid var(--line); border-radius: 8px; cursor: pointer; }
  .burger span { display: block; width: 20px; height: 2px; background: var(--text); position: relative; }
  .burger span::before, .burger span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--text); }
  .burger span::before { top: -6px; } .burger span::after { top: 6px; }
  .mobile-drawer {
    position: fixed; inset: 0; z-index: 60; background: rgba(7,6,5,.98); backdrop-filter: blur(8px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
    opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .mobile-drawer.open { opacity: 1; pointer-events: auto; }
  .mobile-drawer a { font-family: var(--ff-display); font-weight: 600; text-transform: uppercase; letter-spacing: .1em; font-size: 25px; color: var(--text); padding: 11px; }
  .mobile-drawer .btn { margin-top: 14px; }
  .mobile-drawer .close { position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border: 1px solid var(--line); background: var(--field); border-radius: 8px; color: #fff; font-size: 26px; cursor: pointer; }

  .hero-inner { grid-template-columns: 1fr; min-height: auto; gap: 34px; }
  .hero-visual { order: -1; max-width: 480px; }
  .hero .lead { max-width: 42ch; }
  .split, .order-grid { grid-template-columns: 1fr; }
}
@media (max-width: 980px) {
  /* tablet: 2 cards visible; more → horizontal scroll */
  .card { flex-basis: calc((100% - 26px) / 2); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .menu-grid {
    gap: 14px; padding-bottom: 10px;
    margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
    scroll-padding-inline: var(--gut); scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain; scrollbar-width: none;
  }
  .menu-grid::-webkit-scrollbar { display: none; }
  .card { flex-basis: 86%; }
  .card:hover { transform: none; }
  .card-body { padding: 18px 18px 20px; }
  .card-body h3 { font-size: 19px; }
  .card-body p { font-size: 14.5px; }
  .price { margin: 14px 0 16px; }
  .price .num { font-size: 28px; }
  .card-sticker { width: 50px; height: 50px; top: 12px; left: 12px; }
  .menu-dots { display: flex; gap: 8px; justify-content: center; margin-top: 20px; }
  .menu-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--field); border: 1px solid var(--line); transition: all .2s; }
  .menu-dots i.on { background: var(--orange); width: 22px; border-radius: 4px; border-color: var(--orange); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 22px 12px; }
  .why-grid, .contact-list, .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .menu-grid { gap: 12px; }
  .card { flex-basis: 88%; }
  .card-body { padding: 16px 16px 18px; }
  .card-body h3 { font-size: 18px; letter-spacing: 0; }
  .card-sticker { width: 46px; height: 46px; top: 10px; left: 10px; }
  .card-sticker b { font-size: 10px; }
  .price .num { font-size: 26px; }
  .hero-sticker { width: 78px; height: 78px; right: 6%; top: -10px; }
  .hero-sticker b { font-size: 19px; }
  .section-head { margin-bottom: 28px; gap: 12px; }
}
@media (max-width: 420px) { .hero-badges { gap: 20px; } .hbadge { width: 78px; } }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; } .scroll-cue { animation: none; } }

/* ============================================================
   BRUTAL LAYER — distressed wordmark, embers, vignette, char
   ============================================================ */

/* heavier charred vignette on top of the ground */
body { position: relative; }
.vignette {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(130% 120% at 50% 38%, transparent 52%, rgba(0,0,0,.6) 100%),
    linear-gradient(180deg, rgba(0,0,0,.55), transparent 22%, transparent 80%, rgba(0,0,0,.7));
}

/* ---- hero brand lockup ---- */
.brand-lockup { margin-bottom: 24px; }
.hero-logo {
  display: block; width: clamp(520px, 82vw, 1000px); height: auto;
  filter: drop-shadow(0 12px 26px rgba(0,0,0,.5));
}
.wm-sub {
  display: flex; align-items: center; gap: 14px;
  margin-top: clamp(12px, 1.6vw, 18px);
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .26em; font-size: clamp(11px, 1.15vw, 14px); color: var(--gold);
}
.wm-sub::before, .wm-sub::after { content: ""; height: 1.5px; background: var(--gold); opacity: .6; }
.wm-sub::before { width: clamp(20px, 3vw, 34px); flex: none; }
.wm-sub::after { flex: 1; }

/* headline + tagline */
.hero h1 {
  font-size: clamp(34px, 5vw, 64px); line-height: .96; margin-top: 4px;
  color: var(--text); letter-spacing: .01em;
}
.tagline {
  display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 18px 0 0;
  font-family: var(--ff-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; font-size: clamp(14px, 1.5vw, 18px); color: var(--orange);
}
.tagline span { display: inline-flex; align-items: center; gap: 8px; }
.tagline .ic { width: 16px; height: 16px; color: var(--red); }

/* badges with dividers */
.hero-badges { gap: 18px; align-items: stretch; margin: 30px 0 34px; }
.hero-badges .hbadge { width: auto; min-width: 84px; }
.hero-badges .bdiv { width: 1px; align-self: stretch; background: var(--line-2); flex: none; }
.hbadge span { line-height: 1.18; }

/* stacked CTA like the reference button */
.cta-stack { padding: 12px 26px; align-items: center; gap: 12px; }
.cta-stack .ic { width: 22px; height: 22px; }
.cta-stack span { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.05; }
.cta-stack span small {
  font-weight: 500; font-size: 10px; letter-spacing: .16em; opacity: .85; margin-top: 3px;
  font-family: var(--ff-display);
}

/* ---- embers ---- */
.embers { position: absolute; inset: -8% -4% 0 -4%; z-index: 3; pointer-events: none; overflow: hidden; }
.embers span {
  position: absolute; bottom: -6px; width: var(--sz, 2px); height: var(--sz, 2px);
  border-radius: 50%; background: #ffb24d;
  box-shadow: 0 0 6px 1px rgba(255,150,40,.8);
  animation: ember var(--dur, 5s) linear infinite;
}
@keyframes ember {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  12%  { opacity: 1; }
  80%  { opacity: .9; }
  100% { transform: translate(var(--dx, 0), -88%) scale(.4); opacity: 0; }
}

/* ---- charred hairline between major sections ---- */
#menu::before, #about::before, #delivery::before, .footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2) 18%, var(--line-2) 82%, transparent);
}
#menu, #about, #delivery { isolation: isolate; }

@media (max-width: 980px) {
  .embers { display: none; }
}
@media (max-width: 760px) {
  .hero-badges { gap: 14px; }
  .hero-badges .bdiv { display: none; }
  .cta-stack { width: auto; }
}
@media (prefers-reduced-motion: reduce) { .embers { display: none; } }

/* ============================================================
   ORDER FORM (added during Django port)
   ============================================================ */
.order-form { display: grid; gap: 12px; margin-top: 22px; }
.order-form .hp { display: none; }
.order-form input,
.order-form select,
.order-form textarea {
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--text);
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 14px;
  width: 100%;
  transition: border-color .15s;
}
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.order-form textarea { resize: vertical; min-height: 72px; }
.order-form .order-form__msg {
  font-family: var(--ff-display);
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: var(--r);
}
.order-form .order-form__msg.ok { color: #2e7d32; background: rgba(46,125,50,.08); border: 1px solid rgba(46,125,50,.25); }
.order-form .order-form__msg.err { color: #c62828; background: rgba(198,40,40,.08); border: 1px solid rgba(198,40,40,.25); }
.order-form .field-error { color: #c62828; font-size: 13px; margin-top: -8px; }
