/* ============================================================
   SPLIFF'S GASTROPUB — DESIGN SYSTEM
   Dark, atmospheric, upscale-casual gastropub
   ============================================================ */

@font-face {
  font-family: 'LHFBigTopREG';
  src: url('LHFBigTopREG.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* === TOKENS === */
:root {
  --bg:          #0F0B07;
  --surface:     #131009;
  --card:        #1A1208;
  --card-hover:  #201608;
  --border:      #2A1F10;
  --border-mid:  #3A2A14;

  --red:         #C2331D;
  --red-hover:   #D94028;
  --red-dim:     rgba(194, 51, 29, 0.15);

  --cream:       #EFE9D8;
  --cream-70:    rgba(239, 233, 216, 0.70);
  --cream-40:    rgba(239, 233, 216, 0.40);
  --cream-15:    rgba(239, 233, 216, 0.08);

  --muted:       #777;
  --faint:       #3A3A3A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --nav-h:       82px;
  --max-w:       1180px;
  --pad-x:       24px;
  --section-y:   96px;
  --radius:      4px;
  --radius-lg:   8px;
  --ease:        0.22s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--ease); }

/* === UTILITY === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: var(--section-y) var(--pad-x); }
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
}
.section-sub {
  font-size: 17px;
  color: var(--cream-70);
  margin-top: 14px;
  max-width: 560px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--red);
  margin: 20px 0;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--ease);
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: #fff;
}
.btn-primary:hover { background: var(--red-hover); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover {
  border-color: var(--cream-70);
  color: var(--cream);
}
.btn-ghost {
  background: transparent;
  color: var(--cream-70);
  padding: 13px 0;
}
.btn-ghost:hover { color: var(--cream); }
.btn-sm { padding: 9px 18px; font-size: 13px; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: visible;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease;
}
.nav.scrolled {
  background: rgba(13, 13, 13, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-home {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--ease);
  flex-shrink: 0;
  line-height: 1;
}
.nav-home:hover { color: var(--red); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream-70);
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1.5px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--cream); }
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  transition: all var(--ease);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--surface);
  padding: calc(var(--nav-h) + 32px) var(--pad-x) 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  display: block;
  padding: 16px 0;
  font-size: 22px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cream-70);
  border-bottom: 1px solid var(--border);
}
.nav-drawer a:hover { color: var(--cream); }
.nav-drawer .btn { margin-top: 28px; width: 100%; justify-content: center; }

/* === FILM GRAIN === */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px;
  animation: grain 0.4s steps(1) infinite;
  z-index: 2;
}
@keyframes grain {
  0%   { background-position: 0 0; }
  20%  { background-position: -30px 15px; }
  40%  { background-position: 15px -20px; }
  60%  { background-position: -15px 25px; }
  80%  { background-position: 25px -10px; }
  100% { background-position: 0 0; }
}

/* === MARQUEE === */
.marquee-strip {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-hero-pinned {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  padding: 0 8px;
}
.marquee-sep {
  color: rgba(255,255,255,0.45);
  padding: 0 20px;
  font-size: 14px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at center, rgba(28,18,8,0) 0%, rgba(16,11,6,0.6) 55%, rgba(10,8,5,0.95) 100%),
    linear-gradient(135deg, #1a0d06 0%, #100c07 50%, #0e0b06 100%);
  background-size: cover;
  background-position: center;
}
.hero-bg.has-photo {
  background-size: cover;
  background-position: center;
}


/* Diagonal menu-board line texture */
.hero-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 28px,
    rgba(239,233,216,0.03) 28px,
    rgba(239,233,216,0.03) 29px
  );
  background-size: 40px 40px;
  animation: lines-drift 18s linear infinite;
}
@keyframes lines-drift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

/* Vertical margin text */
.hero-margin {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fade-margin 1s ease 1.2s forwards;
}
.hero-margin-left  { left: clamp(12px, 3vw, 48px); }
.hero-margin-right { right: clamp(12px, 3vw, 48px); }
@keyframes fade-margin {
  to { opacity: 1; }
}
.hero-margin-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(239,233,216,0.25), transparent);
}
.hero-margin-text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(239,233,216,0.35);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero-margin-left  .hero-margin-text { transform: rotate(180deg); }

@media (max-width: 768px) {
  .hero-margin { display: none; }
}
.hero-content {
  position: relative;
  z-index: 3;
  z-index: 1;
  max-width: 720px;
}
.hero-logo {
  width: 360px;
  height: auto;
  margin: 0 auto 36px;
  display: block;
  animation: logo-stamp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.5));
}

@keyframes logo-stamp {
  0%   { opacity: 0; transform: scale(0.65) rotate(-4deg); filter: blur(16px) drop-shadow(0 0 0px #df3400); }
  55%  { opacity: 1; transform: scale(1.07) rotate(0.5deg); filter: blur(0px) drop-shadow(0 0 28px rgba(223,52,0,0.7)) drop-shadow(0 8px 32px rgba(0,0,0,0.8)); }
  75%  { transform: scale(0.96) rotate(0deg); filter: blur(0px) drop-shadow(0 0 14px rgba(223,52,0,0.35)) drop-shadow(0 8px 32px rgba(0,0,0,0.8)); }
  100% { transform: scale(1) rotate(0deg);   filter: blur(0px) drop-shadow(0 0 10px rgba(223,52,0,0.25)) drop-shadow(0 8px 32px rgba(0,0,0,0.8)); }
}
@keyframes logo-glow {
  0%, 100% { filter: drop-shadow(0 0 10px rgba(223,52,0,0.25)) drop-shadow(0 8px 32px rgba(0,0,0,0.8)); }
  50%       { filter: drop-shadow(0 0 22px rgba(223,52,0,0.55)) drop-shadow(0 8px 32px rgba(0,0,0,0.8)); }
}
.hero-logo-wrap {
  display: inline-block;
  perspective: 700px;
  margin: 0 auto 36px;
}
.hero-logo {
  margin: 0 !important;
}
@keyframes logo-warble {
  0%   { transform: rotateY(0deg)    rotateZ(0deg); }
  8%   { transform: rotateY(15deg)   rotateZ(3deg); }
  17%  { transform: rotateY(-11deg)  rotateZ(-2.2deg); }
  25%  { transform: rotateY(8deg)    rotateZ(1.6deg); }
  33%  { transform: rotateY(-5.5deg) rotateZ(-1.1deg); }
  41%  { transform: rotateY(3.5deg)  rotateZ(0.7deg); }
  50%  { transform: rotateY(-2.2deg) rotateZ(-0.44deg); }
  58%  { transform: rotateY(1.4deg)  rotateZ(0.28deg); }
  66%  { transform: rotateY(-0.8deg) rotateZ(-0.16deg); }
  74%  { transform: rotateY(0.45deg) rotateZ(0.09deg); }
  82%  { transform: rotateY(-0.2deg) rotateZ(-0.04deg); }
  91%  { transform: rotateY(0.07deg) rotateZ(0.01deg); }
  100% { transform: rotateY(0deg)    rotateZ(0deg); }
}
.hero-logo.stamped {
  animation: logo-glow 3s ease-in-out infinite;
}
.hero-logo.warbling {
  animation: logo-warble 5.5s ease-in-out forwards !important;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-headline {
  animation: fade-up 0.6s ease both;
  animation-delay: 0.5s;
}
.hero-sub {
  animation: fade-up 0.6s ease both;
  animation-delay: 0.75s;
}
.hero-order {
  animation: fade-up 0.6s ease both;
  animation-delay: 0.95s;
}
.hero-headline {
  font-family: 'LHFBigTopREG', var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: normal;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 16px;
}
.hero-headline em {
  font-style: normal;
  color: var(--red);
}
.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--cream-70);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-order {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  min-width: 240px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
}
.hero-order-btn.primary {
  background: var(--red);
  color: #fff;
}
.hero-order-btn.primary:hover { background: var(--red-hover); transform: translateY(-1px); }
.hero-order-btn.secondary {
  background: rgba(239,233,216,0.15);
  color: var(--cream);
  border: 1.5px solid rgba(239,233,216,0.35);
}
.hero-order-btn.secondary:hover { border-color: var(--cream-40); background: rgba(239,233,216,0.22); }
.hero-order-btn.coming-soon {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
  cursor: default;
  pointer-events: none;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-40);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream-40), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* === BRAND STRIP === */
.brand-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px var(--pad-x);
}
.brand-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.brand-stat {
  text-align: center;
  padding: 0 32px;
}
.brand-stat + .brand-stat {
  border-left: 1px solid var(--border);
}
.brand-stat-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.brand-stat-label {
  font-size: 13px;
  color: var(--cream-70);
  letter-spacing: 0.04em;
}

/* === FEATURED DISHES === */
.featured { background: var(--bg); }
.featured-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.dish-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.dish-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  /* Placeholder style until real photos added */
  background: var(--card);
}
.dish-card:hover .dish-card-img { transform: scale(1.04); }
.dish-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--ease);
}
.dish-card:hover .dish-card-overlay { opacity: 1; }
.dish-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
}
.dish-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
}
.dish-card-placeholder span {
  font-size: 12px;
  color: var(--faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === LOCATIONS === */
.locations { background: var(--surface); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--ease);
}
.location-card:hover { border-color: var(--border-mid); }
.location-card.coming-soon {
  border-color: rgba(224, 120, 0, 0.4);
  background: linear-gradient(160deg, rgba(196, 82, 0, 0.12), rgba(224, 120, 0, 0.06));
}
.location-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--red-dim);
  color: var(--red);
  width: fit-content;
}
.location-badge.soon {
  background: rgba(224, 120, 0, 0.2);
  color: #e07800;
}
.location-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--cream);
  margin-top: 4px;
}
.location-address {
  font-size: 14px;
  color: var(--cream-70);
  line-height: 1.5;
}
.location-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.location-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
}
.location-hours-row span:first-child { color: var(--muted); }
.location-hours-row span:last-child  { color: var(--cream-70); }
.location-phone {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream-70);
  transition: color var(--ease);
}
.location-phone:hover { color: var(--cream); }
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

/* === ON TAP === */
.on-tap {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.on-tap::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194,51,29,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.on-tap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.on-tap-text .divider { margin: 20px 0 24px; }
.tap-preview {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tap-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.tap-row:last-child { border-bottom: none; }
.tap-row:hover { background: var(--card); }
.tap-row-name { font-size: 14px; font-weight: 500; color: var(--cream); }
.tap-row-style { font-size: 12px; color: var(--muted); margin-top: 2px; }
.tap-row-abv {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.04em;
}
.tap-see-all {
  display: block;
  text-align: center;
  padding: 14px;
  background: var(--card);
  font-size: 13px;
  font-weight: 600;
  color: var(--cream-70);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--ease);
  border-top: 1px solid var(--border);
}
.tap-see-all:hover { color: var(--cream); background: var(--card-hover); }

/* === PHOTO STRIP === */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--bg);
}
.photo-strip-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* === GEAR === */
.gear {
  background: var(--red);
  padding: 72px var(--pad-x);
}
.gear-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.gear-text .section-label { color: rgba(255,255,255,0.7); }
.gear-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-top: 8px;
}
.gear-sub { font-size: 16px; color: rgba(255,255,255,0.8); margin-top: 10px; }
.btn-gear {
  background: #fff;
  color: var(--red);
  padding: 15px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: all var(--ease);
}
.btn-gear:hover { background: var(--cream); transform: translateY(-1px); }

/* === FOOTER === */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 64px var(--pad-x) 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 200px 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo img { height: 160px; width: auto; }
.footer-logo-tagline {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.04em;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: var(--cream-70);
  transition: color var(--ease);
}
.footer-col ul a:hover { color: var(--cream); }
.footer-location-name { font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 4px; }
.footer-location-detail { font-size: 13px; color: var(--muted); line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--ease);
}
.footer-social a:hover { color: var(--cream); }

/* === ORDER MODAL === */
.order-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.order-modal-overlay.open { display: flex; }
.order-modal {
  background: var(--card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
}
.order-modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.order-modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 32px; }
.order-modal-locations { display: flex; flex-direction: column; gap: 12px; }
.order-modal-loc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
  text-decoration: none;
  color: var(--cream);
}
.order-modal-loc:hover { border-color: var(--red); background: var(--card-hover); }
.order-modal-loc.disabled { opacity: 0.4; cursor: default; pointer-events: none; }
.order-loc-name { font-size: 16px; font-weight: 600; }
.order-loc-addr { font-size: 13px; color: var(--muted); margin-top: 2px; }
.order-loc-arrow { color: var(--red); font-size: 20px; }
.order-modal-close {
  display: block;
  width: 100%;
  margin-top: 20px;
  padding: 12px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  transition: color var(--ease);
}
.order-modal-close:hover { color: var(--cream); }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .on-tap-inner { grid-template-columns: 1fr; gap: 48px; }
  .locations-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  :root { --section-y: 64px; --pad-x: 20px; }

  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-logo { width: 140px; }

  .brand-strip-inner { grid-template-columns: 1fr; gap: 32px; }
  .brand-stat + .brand-stat { border-left: none; border-top: 1px solid var(--border); padding-top: 32px; }

  .featured-grid { grid-template-columns: 1fr 1fr; }
  .featured-header { flex-direction: column; align-items: flex-start; gap: 16px; }

  .gear-inner { flex-direction: column; text-align: center; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .featured-grid { grid-template-columns: 1fr; }
  .hero-order { flex-direction: column; align-items: stretch; }
  .hero-order-btn { justify-content: center; }
}
