/* ============================================================
   HAKKA BOL — Design System
   Bold dark street-food. Burnt orange, flame, cream brush.
   ============================================================ */

/* Brand display fonts — all three load locally from /fonts (see @font-face below). */
@font-face {
  font-family: 'HWT Artz';
  src: url('fonts/HWTArtz.woff2') format('woff2'),
       url('fonts/HWTArtz.woff') format('woff'),
       url('fonts/HWTArtz.otf') format('opentype'),
       url('fonts/HWTArtz.ttf') format('truetype');
  font-weight: 400 900; font-display: swap;
}
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('fonts/Acumin-RPro.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('fonts/Acumin-ItPro.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('fonts/Acumin-BdPro.otf') format('opentype');
  font-weight: 700 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Acumin Variable Concept';
  src: url('fonts/Acumin-BdItPro.otf') format('opentype');
  font-weight: 700 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Italic.otf') format('opentype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Medium.otf') format('opentype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-SemiBold.otf') format('opentype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Bold.otf') format('opentype');
  font-weight: 700 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-BoldItalic.otf') format('opentype');
  font-weight: 700 900; font-style: italic; font-display: swap;
}

:root {
  /* core ink + surfaces — brand charcoal #1A1A1A foundation */
  --ink:        #1A1A1A;
  --ink-2:      #151515;
  --char:       #242322;
  --char-2:     #2C2A28;
  --line:       rgba(244, 240, 230, 0.10);
  --line-2:     rgba(244, 240, 230, 0.16);

  /* brand — orange #E8662E + cream #F4F0E6 (warm orange tints for UI states) */
  --orange:     #E8662E;   /* primary orange */
  --flame:      #F4824A;   /* lighter orange — bright accents */
  --ember:      #C2511E;   /* deep orange */
  --turmeric:   #E8662E;   /* prices/highlights — orange */
  --cream:      #F4F0E6;   /* secondary cream — text */
  --cream-dim:  rgba(244, 240, 230, 0.62);
  --cream-faint:rgba(244, 240, 230, 0.40);
  --chilli:     #E8662E;

  /* type — HWT Artz headlines · Acumin subheads · Inter body */
  --display: 'HWT Artz', 'Arial Narrow', sans-serif;
  --brush:   'HWT Artz', sans-serif;
  --cond:    'Acumin Variable Concept', 'Acumin Pro', 'Inter', sans-serif;
  --body:    'Inter', system-ui, sans-serif;

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

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Grain overlay — applied to body::after */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.05;
  mix-blend-mode: overlay;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(72px, 11vw, 150px); }
.section--tight { padding-block: clamp(54px, 8vw, 104px); }

/* ---------- type system ---------- */
.kicker {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: var(--flame);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.kicker::before {
  content: "";
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.h-display {
  font-family: var(--display);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
}
.brush {
  font-family: var(--brush);
  font-weight: 600;
  text-transform: none;
  color: var(--orange);
  letter-spacing: 0.005em;
  line-height: 1.12;
}
.section-title {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: 0.01em;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  margin: 0;
}
.lede {
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  color: var(--cream-dim);
  max-width: 56ch;
  line-height: 1.55;
}
.price {
  font-family: var(--cond);
  font-weight: 800;
  color: var(--turmeric);
  font-variant-numeric: tabular-nums;
}

/* outline display type used for big watermark words */
.outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(246,236,221,0.16);
}

/* ---------- buttons ---------- */
.btn {
  --bg: var(--orange);
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 15px 26px;
  border-radius: 4px;
  background: var(--bg);
  color: #1A1A1A;
  border: none;
  cursor: pointer;
  transition: transform .18s cubic-bezier(.2,.8,.2,1), box-shadow .18s, background .18s;
  box-shadow: 0 0 0 rgba(232,84,10,0);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -12px rgba(232,84,10,0.8);
}
.btn--flame { --bg: linear-gradient(135deg, var(--flame), var(--ember)); color: var(--cream); }
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--flame); color: var(--flame); box-shadow: none; }
.btn svg { width: 17px; height: 17px; }

/* chip / tag */
.chip {
  font-family: var(--cond);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid var(--line-2);
  color: var(--cream-dim);
  background: rgba(246,236,221,0.03);
  white-space: nowrap;
}
.chip--heat { color: var(--flame); border-color: rgba(255,122,26,0.4); }
.chip--veg  { color: #8FCB6B; border-color: rgba(143,203,107,0.4); }
.chip--new  { color: #1A1A1A; background: var(--turmeric); border-color: var(--turmeric); }

/* ---------- cards ---------- */
.card {
  background: var(--char);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,122,26,0.45);
  box-shadow: 0 26px 50px -28px rgba(0,0,0,0.9);
}
.card__media { position: relative; aspect-ratio: 4/3; background: var(--ink-2); }
.card__media image-slot { width: 100%; height: 100%; }
.baked-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card__body { padding: 18px 20px 22px; }
.card__title {
  font-family: var(--cond);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: 1.18rem;
  margin: 0 0 6px;
  line-height: 1.05;
}
.card__desc { color: var(--cream-dim); font-size: 0.92rem; margin: 0; line-height: 1.45; }
.card__row { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; }

/* heat meter */
.heat { display: inline-flex; gap: 3px; align-items: center; }
.heat svg { width: 14px; height: 14px; }
.heat .off { opacity: 0.22; }

/* ---------- divider: sauce drip ---------- */
.drip { display: block; width: 100%; height: 28px; color: var(--ink); }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- section heading block ---------- */
.head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(28px, 4vw, 48px); }
.head__left { max-width: 60ch; }
.head .kicker { margin-bottom: 16px; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

/* ---------- marquee ---------- */
.marquee { overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 0; animation: marq 28s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marq { to { transform: translateX(-50%); } }
.marquee__item {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  letter-spacing: 0.02em;
  padding: 0 0.4em;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.marquee__item .dot { color: var(--orange); }

/* ============================================================
   NAV BAR
   ============================================================ */
.bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .3s, backdrop-filter .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
.bar.scrolled {
  background: rgba(11,8,7,0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.bar__in { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px var(--gut); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand image-slot { width: 46px; height: 46px; }
.brand__logo { height: 38px; width: auto; display: block; }
@media (max-width: 600px) { .brand__logo { height: 31px; } }
.brand__mark {
  width: 46px; height: 46px; border-radius: 11px;
  background: linear-gradient(140deg, var(--flame), var(--ember));
  display: grid; place-items: center;
  font-family: var(--display); font-size: 1.5rem; color: var(--cream);
  box-shadow: 0 8px 22px -10px rgba(255,122,26,0.7);
}
.brand__name { font-family: var(--display); font-weight: 700; font-size: 1.42rem; letter-spacing: 0.02em; line-height: .9; }
.brand__name b { color: var(--orange); }
.brand__name small { display: block; font-family: var(--cond); font-weight: 700; font-size: .56rem; letter-spacing: .42em; color: var(--cream-dim); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  font-family: var(--cond); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.86rem; color: var(--cream-dim);
  transition: color .18s; position: relative;
}
.nav a:hover { color: var(--cream); }
.nav a::after { content:""; position:absolute; left:0; bottom:-6px; height:2px; width:0; background:var(--orange); transition:width .22s; }
.nav a:hover::after { width:100%; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line-2); border-radius: 8px; width: 44px; height: 44px; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav-toggle span { width: 20px; height: 2px; background: var(--cream); transition: .25s; }
.nav-toggle.on span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.on span:nth-child(2) { opacity: 0; }
.nav-toggle.on span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 4px;
    background: rgba(11,8,7,0.97); backdrop-filter: blur(14px);
    padding: 16px var(--gut) 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .25s;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { font-size: 1.1rem; padding: 8px 0; }
  .nav .btn { margin-top: 8px; }
}

/* ============================================================
   HERO — shared shell + 3 variants
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: 90px; }
.hero[hidden] { display: none !important; }
.hero__glow-a { width: 620px; height: 620px; background: radial-gradient(circle, rgba(232,84,10,0.5), transparent 65%); top: -120px; right: -120px; }
.hero__glow-b { width: 460px; height: 460px; background: radial-gradient(circle, rgba(193,18,31,0.4), transparent 60%); bottom: -160px; left: -120px; }

/* switcher pills */
.hero-switch {
  position: fixed; z-index: 250; left: 50%; bottom: 22px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 6px;
  background: rgba(11,8,7,0.82); backdrop-filter: blur(12px);
  border: 1px solid var(--line-2); border-radius: 100px; padding: 6px;
}
.hero-switch span { font-family: var(--cond); font-weight: 700; text-transform: uppercase; letter-spacing: .12em; font-size: .64rem; color: var(--cream-faint); padding: 0 8px; }
.hero-switch button {
  font-family: var(--cond); font-weight: 800; font-size: .8rem; letter-spacing: .04em;
  width: 30px; height: 30px; border-radius: 100px; border: none; cursor: pointer;
  background: transparent; color: var(--cream-dim); transition: .18s;
}
.hero-switch button.on { background: var(--orange); color: #1A1A1A; }

/* ---- Variant 1: Split — type left, hero dish right ---- */
.heroA__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; width: 100%; }
.heroA h1 { font-size: clamp(3rem, 7.4vw, 6.6rem); }
.heroA .brush { display: block; font-size: clamp(2.4rem, 6vw, 5.2rem); margin-top: .04em; padding-bottom: .34em; }
.heroA__media { position: relative; aspect-ratio: 1/1; }
.heroA__media image-slot { width: 100%; height: 100%; }
.heroA__ring { position: absolute; inset: -18px; border: 2px dashed rgba(255,122,26,0.4); border-radius: 50%; animation: spin 38s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.heroA__badge {
  position: absolute; right: -6px; bottom: 18px; z-index: 3;
  width: 118px; height: 118px; border-radius: 50%;
  background: var(--turmeric); color: #1A1A1A;
  display: grid; place-content: center; text-align: center;
  font-family: var(--display); line-height: .9; font-size: 1.05rem; padding: 10px;
  transform: rotate(-12deg); box-shadow: 0 14px 30px -12px rgba(0,0,0,.7);
}
@media (max-width: 860px) {
  .heroA__grid { grid-template-columns: 1fr; gap: 30px; }
  .heroA__media { max-width: 380px; margin: 0 auto; }
}

/* ---- Variant 2: Full-bleed image + bottom-left headline ---- */
.heroB { padding: 0; }
.heroB__bg { position: absolute; inset: 0; z-index: 0; }
.heroB__bg image-slot, .heroB__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.heroB__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(11,8,7,0.72) 0%, rgba(11,8,7,0.32) 32%, rgba(11,8,7,0.55) 68%, rgba(11,8,7,0.95) 100%); }
.heroB__in { position: relative; z-index: 2; width: 100%; align-self: flex-end; padding-bottom: 7vh; }
.heroB h1 { font-size: clamp(2.5rem, 8vw, 6rem); }
.heroB .brush { display: inline-block; font-size: clamp(2.1rem, 6.4vw, 4.8rem); color: var(--turmeric); padding-bottom: .08em; }

/* ---- Variant 3: Centered, big stacked type + word grid ---- */
.heroC { text-align: center; }
.heroC__in { width: 100%; }
.heroC h1 { font-size: clamp(3.2rem, 11vw, 8.4rem); }
.heroC .brush { display: block; font-size: clamp(2.8rem, 8vw, 6.2rem); padding-bottom: .12em; }
.heroC__chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 720px; margin: 30px auto 0; }
.heroC__chips .chip { font-size: .8rem; padding: 8px 15px; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.heroC .hero__cta { justify-content: center; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.strip { background: var(--orange); color: #1A1A1A; padding: 16px 0; border-block: 2px solid #1A1A1A; }
.strip .marquee__item { color: #1A1A1A; font-size: clamp(1.4rem, 3.5vw, 2.4rem); }
.strip .marquee__item .dot { color: #7A2E10; font-size: .5em; }

/* ============================================================
   BUILD YOUR MEAL
   ============================================================ */
.builder { display: grid; grid-template-columns: 1.6fr 1fr; gap: 28px; align-items: start; }
@media (max-width: 940px) { .builder { grid-template-columns: 1fr; } }

.bld-steps { display: flex; flex-direction: column; gap: 22px; }
.bld-step__head { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.bld-step__num { font-family: var(--display); font-size: 1.1rem; color: var(--orange); }
.bld-step__title { font-family: var(--cond); font-weight: 800; text-transform: uppercase; letter-spacing: .04em; font-size: 1.05rem; }
.bld-step__hint { font-size: .8rem; color: var(--cream-faint); margin-left: auto; font-family: var(--cond); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

.bld-opts { display: flex; flex-wrap: wrap; gap: 10px; }
.bld-opt {
  position: relative; text-align: left; cursor: pointer;
  background: var(--char); border: 1.5px solid var(--line); border-radius: 11px;
  padding: 12px 15px; min-width: 116px; flex: 1 1 116px; max-width: 200px;
  display: flex; flex-direction: column; gap: 2px; transition: .16s; color: var(--cream);
}
.bld-opt:hover { border-color: var(--line-2); transform: translateY(-2px); }
.bld-opt.on { border-color: var(--orange); background: rgba(232,84,10,0.10); box-shadow: 0 0 0 1px var(--orange) inset; }
.bld-opt.on::after { content: "✓"; position: absolute; top: 9px; right: 11px; color: var(--orange); font-weight: 800; }
.bld-opt__emoji { font-size: 1.3rem; }
.bld-opt__name { font-family: var(--cond); font-weight: 700; font-size: .98rem; letter-spacing: .01em; line-height: 1.1; }
.bld-opt__note { font-size: .72rem; color: var(--cream-faint); }
.bld-opt__heat { margin-top: 3px; color: var(--flame); }
.bld-opt__heat .heat svg { width: 12px; height: 12px; }
.bld-opt__veg { position: absolute; bottom: 10px; right: 11px; font-family: var(--cond); font-weight: 800; font-size: .56rem; letter-spacing: .1em; color: #8FCB6B; }

/* meal summary card */
.meal {
  position: sticky; top: 96px;
  background: linear-gradient(170deg, var(--char-2), var(--char));
  border: 1px solid var(--line-2); border-radius: 18px; padding: 24px;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,.9);
}
.meal__emoji { font-size: 3.4rem; line-height: 1; margin-bottom: 6px; }
.meal__price { font-family: var(--display); font-weight: 700; color: var(--turmeric); font-size: 3rem; line-height: 1; margin-bottom: 4px; font-variant-numeric: tabular-nums; }
.meal h3 { font-family: var(--cond); font-weight: 800; text-transform: uppercase; font-size: 1.45rem; line-height: 1; margin: 0 0 18px; }
.meal__line { display: flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-top: 1px solid var(--line); font-size: .92rem; }
.meal__line span { color: var(--cream-faint); font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; }
.meal__line b { text-align: right; font-weight: 700; }
.meal__heat { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; margin-top: 6px; border-top: 1px solid var(--line); }
.meal__heat span { color: var(--cream-faint); font-family: var(--cond); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: .76rem; }
.meal__heat .heat { color: var(--flame); }
.meal .note { margin-top: 18px; font-size: .8rem; color: var(--cream-faint); }

/* ============================================================
   FEATURE / SPLIT BLOCKS (poutine, lollipops)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px) { .split, .split--rev { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__media { position: relative; aspect-ratio: 5/4; }
.split__media image-slot { width: 100%; height: 100%; }
.split__media .tag-float { position: absolute; top: 16px; left: 16px; }

/* sauces row */
.sauce-card { text-align: center; padding: 26px 18px; }
.sauce-jar { width: 84px; height: 110px; margin: 0 auto 16px; position: relative; }
.sauce-dot { width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 16px; box-shadow: 0 10px 24px -8px rgba(0,0,0,.8), inset 0 -6px 12px rgba(0,0,0,.35), inset 0 4px 8px rgba(255,255,255,.18); }
.sauce-card h3 { font-family: var(--cond); font-weight: 800; text-transform: uppercase; font-size: 1.18rem; margin: 0 0 6px; }

/* ============================================================
   LOCATION
   ============================================================ */
.loc { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line-2); border-radius: 20px; overflow: hidden; }
@media (max-width: 800px) { .loc { grid-template-columns: 1fr; } }
.loc__info { padding: clamp(28px, 5vw, 54px); background: var(--char); }
.loc__map { position: relative; min-height: 340px; background: var(--ink-2); }
.loc__map image-slot { width: 100%; height: 100%; }
.loc__addr { font-family: var(--cond); font-weight: 700; font-size: 1.25rem; line-height: 1.3; }
.loc__row { display: flex; gap: 12px; align-items: flex-start; padding: 14px 0; border-top: 1px solid var(--line); }
.loc__row svg { width: 22px; height: 22px; color: var(--flame); flex: none; margin-top: 2px; }
.notify { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.notify input { flex: 1 1 200px; background: var(--ink); border: 1.5px solid var(--line-2); border-radius: 6px; padding: 13px 16px; color: var(--cream); font-family: var(--body); font-size: .95rem; }
.notify input:focus { outline: none; border-color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { background: var(--ink-2); border-top: 1px solid var(--line); padding: clamp(48px, 7vw, 84px) 0 36px; }
.foot__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
@media (max-width: 700px) { .foot__grid { grid-template-columns: 1fr; gap: 26px; } }
.foot h4 { font-family: var(--cond); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .82rem; color: var(--cream-dim); margin: 0 0 14px; }
.foot a { display: block; color: var(--cream-dim); padding: 5px 0; font-size: .92rem; transition: color .16s; }
.foot a:hover { color: var(--flame); }
.foot__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .82rem; color: var(--cream-faint); }
.foot__social { display: flex; gap: 10px; }
.foot__social a { width: 40px; height: 40px; border: 1px solid var(--line-2); border-radius: 9px; display: grid; place-items: center; padding: 0; }
.foot__social a:hover { border-color: var(--flame); }
.foot__social svg { width: 18px; height: 18px; }

/* utility */
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 40px; }
.muted { color: var(--cream-dim); }
.glow-bg { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }

/* ---------- tweak-driven states ---------- */
body.no-grain::after { display: none; }
body.cards-round .card { border-radius: 22px; }
body.cards-round .btn { border-radius: 100px; }
body.cards-round .bld-opt { border-radius: 16px; }
