:root {
  --bg: #0a0a0b;
  --bg-2: #111114;
  --bg-3: #17171a;
  --panel: rgba(24, 24, 28, 0.8);
  --panel-solid: #18181c;
  --stroke: rgba(255,255,255,0.1);
  --text: #ffffff;
  --muted: #c2c2c8;
  --charcoal: #303030;
  --red: #ed2a26;
  --red-dark: #b70907;
  --cream: #ffd8b8;
  --silver: #b8bcc7;
  --shadow: 0 20px 60px rgba(0,0,0,0.35);
  --radius: 28px;
  --container: 1280px;
  --amnestia: 'Amnestia', 'Impact', 'Arial Black', sans-serif;
  --display: 'Gilroy', 'Inter', sans-serif;
  --body: 'Just Sans', 'Inter', sans-serif;
}

@font-face {
  font-family: 'Amnestia';
  src: url('../fonts/Amnestia.ttf') format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: 'Just Sans';
  src: url('../fonts/JUST Sans Regular.otf') format('opentype');
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: 'Just Sans';
  src: url('../fonts/JUST Sans Medium.otf') format('opentype');
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: 'Just Sans';
  src: url('../fonts/JUST Sans SemiBold.otf') format('opentype');
  font-display: swap;
  font-weight: 600;
}
@font-face {
  font-family: "YoungRomance";
  src: url("../fonts/Young Romance.otf") format("opentype");
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
    /* radial-gradient(circle at 15% 10%, rgba(255, 138, 42, 0.12), transparent 25%), */
    /* radial-gradient(circle at 85% 15%, rgba(255, 11, 8, 0.18), transparent 25%), */
    /* linear-gradient(180deg, #09090a 0%, #101013 55%, #0a0a0b 100%); */
  color: var(--text);
  font-family: var(--body);
  overflow-x: hidden;
}


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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.7) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.4) 0 1px, transparent 1px);
  background-size: 9px 9px, 13px 13px;
  mix-blend-mode: soft-light;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red-dark), var(--red));
  box-shadow: 0 0 0 6px rgba(255, 11, 8, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-weight: 700;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 14px 40px rgba(255, 11, 8, 0.28);
}
.btn-secondary,
.btn-ghost {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  color: #fff;
}
.btn-secondary:hover,
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-lg { min-height: 58px; padding: 0 28px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
}

.ticker {
  overflow: hidden;
  background: #ed2a26;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.ticker-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 12px 0;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: ticker 30s linear infinite;
  color: #ffffff;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
}

.ticker-track span:not(:last-child)::after {
  content: "";
  margin-left: 18px;
  opacity: 0.7;
}

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); }}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15,15,15,0.72);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}
.brand img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #ffffff;
}
.brand span {
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-weight: 600;
}
.nav-links a {
  position: relative;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  text-decoration: none;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.is-current::after { width: 100%; }
.nav-links a.is-current { color: #ffffff; }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-ghost {
  border-color: rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.07);
  color: #ffffff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-toggle span { width: 18px; height: 2px; background: #ffffff; display: block; }
.mobile-panel {
  display: none;
  margin: 8px auto 0;
  width: min(calc(100% - 32px), var(--container));
  border-radius: 20px;
  padding: 12px;
  background: rgba(15,15,15,0.92);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.mobile-panel a {
  display: block;
  padding: 12px 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: background 0.15s;
}
.mobile-panel a:hover { background: rgba(255,255,255,0.06); }

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
  padding: 64px 0 72px;
}
.hero-copy h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  font-family: var(--display);
  text-transform: uppercase;
}
.hero-copy h1 .accent {
  font-family: var(--amnestia);
  color: var(--red);
  font-size: 1.1em;
  text-shadow: 0 10px 40px rgba(255,11,8,0.18);
}
.hero-copy p {
  max-width: 650px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 20px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.trust-pill {
  border-radius: 999px;
  padding: 12px 16px;
  color: #f1f1f4;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}
/* .hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  animation: float 7s ease-in-out infinite;
} */

.hero-stamp {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
  transform-origin: center;
}

.hero-stamp img {
  display: block;
  width: 90%;
  height: auto;
}

.hero-stamp-a {
  width: 230px;
  left: -40px;
  top: 260px;
  opacity: 0.6;
  transform: rotate(-25deg);
}


.orb-a {
  width: 180px;
  height: 180px;
  right: 50px;
  top: 24px;
  background: radial-gradient(circle, rgba(255,138,42,0.7), rgba(255,138,42,0));
}
.orb-b {
  width: 260px;
  height: 260px;
  left: 0;
  bottom: 100px;
  background: radial-gradient(circle, rgba(255,11,8,0.38), rgba(255,11,8,0));
  animation-delay: -2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}
.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}
.hero-card img { height: 100%; object-fit: cover; }
.hero-card-main {
  inset: 30px 24px 90px 70px;
  background: #121316;
}
.hero-card-main::after,
.location-card::after,
.social-card::after,
.stack-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.56));
}
.overlay-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}
.overlay-copy strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}
.overlay-copy span {
  display: block;
  color: #dfdfe2;
  margin-top: 10px;
}
.hero-card-side {
  width: 230px;
  height: 290px;
  left: 0;
  top: 0;
  transform: rotate(-8deg);
}
.hero-card-bottom {
  width: 260px;
  height: 210px;
  right: 0;
  bottom: 0;
  transform: rotate(7deg);
}
.heat-meter {
  position: absolute;
  left: 36px;
  bottom: 20px;
  z-index: 3;
  padding: 16px 18px;
  border-radius: 20px;
  width: 210px;
}
.heat-meter span { color: var(--cream); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }
.bars { display: flex; gap: 6px; margin: 10px 0; }
.bars i {
  flex: 1;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.bars i:nth-child(1) { background: #ffffff; }
.bars i:nth-child(2) { background: #f9b3b1; }
.bars i:nth-child(3) { background: #f26a64; }
.bars i:nth-child(4) { background: #ed2a26; }
.bars i.hot { background: #b70907; }

/* .divider svg { display: block; width: 100%; height: 110px; }
.divider-flame path:first-child { fill: rgba(255, 11, 8, 0.15); }
.divider-flame .light { fill: rgba(255, 138, 42, 0.15); }
.divider-zigzag path { fill: rgba(255,255,255,0.05); } */

.divider-bird {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  margin: -10px auto 20px;
  line-height: 0;
}

.divider-bird::before,
.divider-bird::after {
  content: "";
  flex: 1;
  max-width: 420px;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.divider-bird::before {
  margin-right: 20px;
}

.divider-bird::after {
  margin-left: 20px;
}

.divider-bird img {
  display: block;
  width: min(260px, 28vw);
  height: auto;
}

/* .feature-belt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -10px;
}
.feature-card {
  border-radius: 24px;
  padding: 24px;
}
.feature-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,138,42,0.26), rgba(255,11,8,0.26));
  color: var(--cream);
  font-weight: 900;
  margin-bottom: 14px;
}
.feature-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.feature-card p { margin: 0; color: var(--muted); line-height: 1.7; } */

.feature-belt {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -10px;
}

.feature-card {
  position: relative;
  border-radius: 26px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.22);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  color: #ffffff;
}

.feature-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}

.feature-number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  margin-bottom: 14px;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.14);
}

/* 1. Red sticker glass */
.feature-card--sticker {
  background:
    linear-gradient(180deg, rgba(237,42,38,0.18), rgba(35,31,32,0.42)),
    rgba(255,255,255,0.05);
}

.feature-card--sticker::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), transparent 30%);
  pointer-events: none;
}

.feature-card--sticker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #ed2a26;
}

.feature-card--sticker .feature-number {
  background: #ed2a26;
} 


/* 2. Checker frost glass
.feature-card--checker {
  position: relative;
  background: rgba(35,31,32,0.58);
}

.feature-card--checker::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background:
    url("../images/Asset 1.svg") center/180px auto repeat,
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  mix-blend-mode: soft-light;
}

.feature-card--checker::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: #ed2a26;
}

3. Signage glass
.feature-card--signage {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
    rgba(35,31,32,0.72);
}

.feature-card--signage .feature-number {
  background: #ed2a26;
}  */

.story-band,
.locations-section,
.social-section,
.final-cta { padding: 96px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.menu-showcase {
  position: relative;
  width: 100%;
  padding: 96px 0;
  overflow: hidden;
}

.menu-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: url("../images/Bird.svg") right center / contain no-repeat;
  opacity: 0.25;
}

.menu-showcase-inner {
  position: relative;
  z-index: 1;
}

.section-head h2,
.heat-copy h2,
.story-copy h2,
.social-copy h2,
.final-cta h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  font-family: var(--display);
}
.section-head p,
.heat-copy p,
.story-copy p,
.social-copy p,
.final-cta p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.slider-shell {
  position: relative;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(16,16,19,0.86);
  color: white;
  cursor: pointer;
}
.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }
.menu-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  overflow-x: auto;
  padding: 10px 12px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.menu-slider::-webkit-scrollbar { display: none; }
.menu-card {
  scroll-snap-align: start;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.menu-media {
  height: 350px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.menu-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.menu-media video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 60%;
  background: transparent;
  transform: scale(1);
  transform-origin: center center;
}
.menu-body { padding: 24px; }
.chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,138,42,0.16);
  color: var(--cream);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.menu-body h3 { font-size: 1.5rem; margin: 14px 0 10px; text-transform: uppercase; }
.menu-body p { margin: 0 0 14px; color: var(--muted); line-height: 1.8; }
.meta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.meta-row span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  font-size: 0.82rem;
}

.heat-experience {
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,11,8,0.07), rgba(255,255,255,0.02));
}
.heat-grid-layout {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 26px;
  align-items: center;
}
.heat-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 18px;
}
.heat-pill {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;
  border-radius: 999px;
  min-height: 48px;
  padding: 0 16px;
  cursor: pointer;
  transition: 0.25s ease;
}
.heat-pill.active,
.heat-pill:hover { background: linear-gradient(135deg, rgba(255,138,42,0.25), rgba(255,11,8,0.25)); }
.heat-info {
  border-radius: 26px;
  padding: 22px;
}
.heat-info strong { display: block; font-size: 1.25rem; margin-bottom: 8px; }
.heat-info p { margin: 0; }
.poster-stack {
  position: relative;
  min-height: 560px;
}
.poster {
  position: absolute;
  width: 58%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}
.poster span {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-family: var(--display);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.06em;
}
.poster img { height: 100%; object-fit: cover; }
.poster-red {
  background: linear-gradient(180deg, var(--red), var(--red-dark));
  height: 500px;
  left: 4%;
  top: 0;
  transform: rotate(-6deg);
}
.poster-dark {
  background: linear-gradient(180deg, #191919, #090909);
  height: 420px;
  right: 4%;
  bottom: 0;
  transform: rotate(8deg);
}

.story-band {
  position: relative;
  width: 100%;
  padding: 120px 0;
  background:
    linear-gradient(rgba(35, 31, 32, 0.72), rgba(35, 31, 32, 0.72)),
    url("../images/final-localtion-bg.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.story-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.story-copy {
  padding: 34px;
  border-radius: 30px;
}
.palette-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.palette-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}
.palette-row span::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--swatch);
  border: 1px solid rgba(255,255,255,0.14);
}
.image-stack {
  position: relative;
  min-height: 560px;
}
.stack-card {
  position: absolute;
  inset: 0 50px 60px 20px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.stack-card img { height: 100%; object-fit: cover; }
.floating-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  inset: auto 0 0 auto;
  width: 290px;
  border-radius: 28px;
  padding: 24px;
}
.floating-badge strong { display: block; font-size: 1.2rem; margin-bottom: 10px; }
.floating-badge span { color: var(--muted); line-height: 1.7; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.location-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.08);
}
.location-card img { height: 100%; object-fit: cover; }
.location-overlay,
.location-info-only {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
}
.location-overlay h3,
.location-info-only h3 {
  margin: 0 0 8px;
  font-size: 1.8rem;
  text-transform: uppercase;
}
.location-overlay p,
.location-info-only p { color: #ededf0; margin: 0 0 16px; line-height: 1.6; }
.location-card.alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,138,42,0.06), rgba(255,11,8,0.38));
  z-index: 1;
}
.location-card.dark {
  background: radial-gradient(circle at top right, rgba(255,11,8,0.2), transparent 35%), linear-gradient(180deg, #17171b, #0d0d0f);
}
.location-card.dark::after { display: none; }

/* .social-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
} */

.social-section {
  position: relative;
  width: 100%;
  padding: 96px 0;
  overflow: hidden;
  background: #ffffff;
}

.social-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    linear-gradient(rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.42)),
    url("../images/Asset 1.svg") center / 280px auto repeat;
  background-attachment: fixed;
  opacity: 1;
}

.social-section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 32px;
  align-items: center;
}

.social-section > * {
  position: relative;
  z-index: 1;
}

/* move images left and text right */
.social-grid {
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 260px;
  gap: 18px;
}

.social-copy {
  order: 2;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(20,20,22,0.72), rgba(20,20,22,0.56));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* black text in this section */
.social-section .social-copy,
.social-section .social-copy h2,
.social-section .social-copy p,
.social-section .social-copy .eyebrow {
  color: #ffffff;
}

.social-section .social-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.social-section .social-copy .eyebrow {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.social-section .social-copy .eyebrow-dot {
  box-shadow: 0 0 0 6px rgba(237, 42, 38, 0.14);
}

.social-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.social-card img,
.social-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-card::after,
.social-card span {
  pointer-events: none;
}

.social-card video {
  position: relative;
  z-index: 1;
}

.social-card span {
  z-index: 2;
}

.social-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.social-tall {
  grid-row: span 2;
}

/* .cta-panel {
  padding: 32px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,11,8,0.85), rgba(255,138,42,0.85));
  box-shadow: 0 24px 70px rgba(255,11,8,0.22);
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
}
.cta-panel .eyebrow { background: rgba(0,0,0,0.16); color: white; }
.cta-panel p { color: rgba(255,255,255,0.88); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cta-panel .btn-ghost { background: rgba(0,0,0,0.22); border-color: rgba(255,255,255,0.16); } */

.cta-panel {
  padding: 40px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(237,42,38,0.94), rgba(183,9,7,0.92));
  box-shadow: 0 24px 70px rgba(237,42,38,0.22);
}

.cta-panel-newsletter {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}

.cta-newsletter-copy {
  order: 1;
  align-self: center;
  justify-self: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
  height: 100%;
  padding-left: 8px;
}

.cta-newsletter-form {
  order: 2;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.cta-newsletter-copy h2 {
  margin: 0;
  font-family: "YoungRomance", cursive;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #ffffff;
}

.cta-panel .eyebrow {
  background: rgba(0,0,0,0.16);
  color: #ffffff;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
  width: 100%;
  max-width: 560px;
}

.newsletter-form p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  max-width: 100%;
}

.newsletter-form input {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.42);
  outline: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.34), rgba(255,255,255,0.18));
  color: #ffffff;
  font: inherit;
  box-shadow:
    0 10px 30px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.88);
}

.newsletter-form input:focus {
  border-color: rgba(255,255,255,0.6);
  box-shadow:
    0 0 0 4px rgba(255,255,255,0.10),
    0 10px 30px rgba(0,0,0,0.10),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

.newsletter-form .btn {
  width: 100%;
  min-height: 58px;
  padding: 0 26px;
}

.newsletter-form .btn.btn-primary {
  color: #ffffff;
  background: linear-gradient(180deg, rgba(18,18,20,0.82), rgba(8,8,10,0.72));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 14px 30px rgba(0,0,0,0.24),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.newsletter-form .btn.btn-primary:hover {
  background: linear-gradient(180deg, rgba(24,24,26,0.9), rgba(10,10,12,0.8));
  transform: translateY(-2px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.tilt-card {
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  backface-visibility: hidden;
}

.hero-card,
.menu-card,
.social-card,
.location-card,
.poster,
.stack-card {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(18,18,20,0.78), rgba(10,10,12,0.68));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(28,28,30,0.9), rgba(12,12,14,0.82));
  border-color: rgba(255,255,255,0.2);
  box-shadow:
    0 16px 34px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.social-btn span:last-child {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.social-btn-instagram:hover {
  box-shadow:
    0 16px 34px rgba(237, 42, 38, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.social-btn-facebook:hover {
  box-shadow:
    0 16px 34px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.social-btn-tiktok:hover {
  box-shadow:
    0 16px 34px rgba(237, 42, 38, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

@media (max-width: 560px) {
  .social-links {
    gap: 10px;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .hero-stamp-a {
    width: 150px;
    left: -18px;
    top: 210px;
    opacity: 0.52;
    transform: rotate(-18deg);
  }

  .hero-stamp img {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .hero-stamp-a {
    width: 110px;
    left: -8px;
    top: 185px;
    opacity: 0.45;
    transform: rotate(-12deg);
  }
}

@media (max-width: 860px) {
  .tilt-card,
  .hero-card,
  .menu-card,
  .social-card,
  .location-card,
  .poster,
  .stack-card {
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
  }
}
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .tilt-card,
  .hero-card,
  .menu-card,
  .social-card,
  .location-card,
  .poster,
  .stack-card,
  .menu-showcase-item {
    transform: none !important;
    transition: box-shadow 0.25s ease !important;
  }
}

@media (max-width: 1120px) {
  .hero,
  .heat-grid-layout,
  .story-band-inner { grid-template-columns: 1fr; }
  .social-section { grid-template-columns: 1fr; }
  .feature-belt,
  .locations-grid { grid-template-columns: 1fr 1fr; }
  .hero-visual { min-height: 640px; }
  .section-head { flex-direction: column; align-items: start; }
  .menu-slider { grid-auto-columns: calc(50% - 12px); }
}

@media (max-width: 860px) {
  .story-band {
    padding: 72px 0;
    background-attachment: scroll;
    background-position: center center;
  }
}

@media (max-width: 560px) {
  .story-band {
    padding: 56px 0;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel.open { display: block; }
  .hero { padding-top: 40px; }
  .hero-visual { min-height: 560px; }
  .hero-card-main { inset: 40px 0 88px 0; }
  .hero-card-side { width: 170px; height: 210px; }
  .hero-card-bottom { width: 170px; height: 140px; }
  .feature-belt,
  .locations-grid,
  .social-grid { grid-template-columns: 1fr; }
  .social-grid { grid-auto-rows: 220px; }
  .social-tall { grid-row: span 1; }
  .menu-slider { grid-auto-columns: 80%; }
  .slider-btn { display: none; }
  .poster { position: relative; width: 100%; transform: none !important; }
  .poster-stack,
  .image-stack { min-height: auto; display: grid; gap: 18px; }
  .stack-card,
  .floating-badge { position: relative; inset: auto; width: 100%; }
  .cta-panel { flex-direction: column; align-items: start; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 20px), var(--container)); }
  .hero-copy h1 { font-size: 3.2rem; }
  .story-copy, .feature-card, .heat-info, .cta-panel { padding: 22px; }
  .menu-body { padding: 18px; }
  .menu-slider { grid-auto-columns: 88%; }
}

@media (max-width: 860px) {
  .menu-showcase::after {
    width: 520px;
    height: 520px;
    top: 40px;
    right: -120px;
    opacity: 0.25;
    background-size: contain;
  }
}

@media (max-width: 560px) {
  .menu-showcase::after {
    width: 300px;
    height: 300px;
    top: 100px;
    right: -90px;
    opacity: 0.09;
  }
}

@media (max-width: 860px) {
  .social-section {
    padding: 72px 0;
  }

  .social-section::before {
    background:
      linear-gradient(rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.36)),
      url("../images/Asset 1.svg") center top / 180px auto repeat;
    background-attachment: scroll;
  }

  .social-section-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .social-grid {
    order: 1;
  }

  .social-copy {
    order: 2;
    max-width: 100%;
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .social-section {
    padding: 56px 0;
  }

  .social-section::before {
    background:
      linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
      url("../images/Asset 1.svg") center top / 130px auto repeat;
    background-attachment: scroll;
  }

  .social-section-inner {
    gap: 16px;
  }

  .social-copy {
    padding: 20px;
    border-radius: 24px;
  }
}

/* =========================
   BRIGHT PREMIUM MENU PAGE
========================= */

.menu-page-body {
  background:
    radial-gradient(circle at 85% 10%, rgba(237,42,38,0.08), transparent 24%),
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.75), transparent 18%),
    linear-gradient(180deg, #f7f3ef 0%, #f2ece6 42%, #efe8e1 100%);
  color: #231f20;
}

.menu-page-body .topbar {
  backdrop-filter: blur(16px);
}

.menu-page-body .eyebrow {
  background: rgba(35,31,32,0.08);
  border: 1px solid rgba(35,31,32,0.10);
  color: #231f20;
}

.menu-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.menu-page-main {
  padding-bottom: 80px;
}

.menu-hero {
  position: relative;
  padding: 56px 38px 52px;
  margin-top: 26px;
  margin-bottom: 18px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 20, 22, 0.58), rgba(20, 20, 22, 0.58)),
    url("../images/background-mural.png") center center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 30px 80px rgba(0,0,0,0.16);
  text-align: center;
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.10), rgba(0,0,0,0.22)),
    radial-gradient(circle at 20% 24%, rgba(237,42,38,0.10), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.06), transparent 18%);
}

.menu-hero::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  pointer-events: none;
}

.menu-hero .btn-secondary {
  background: rgba(12,12,14,0.56);
  border: 1px solid rgba(255,255,255,0.18);
  color: #ffffff;
  box-shadow:
    0 12px 30px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-hero .btn-secondary:hover {
  background: rgba(12,12,14,0.72);
  border-color: rgba(255,255,255,0.24);
  color: #ffffff;
}

.menu-hero > * {
  position: relative;
  z-index: 1;
}

.menu-hero .eyebrow {
  margin-bottom: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #ffffff;
}

.menu-hero h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.menu-hero p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.86);
  line-height: 1.8;
  font-size: 1.04rem;
}

.menu-hero .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

.menu-hero-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.menu-gallery-card {
  position: relative;
  min-height: 240px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  background: #ffffff;
}

.menu-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.04), rgba(0,0,0,0.46));
}

.menu-gallery-card span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-family: var(--display);
  font-size: 1rem;
  text-transform: uppercase;
}

.menu-hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
  padding: 28px;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,255,255,0.76)),
    linear-gradient(180deg, rgba(237,42,38,0.06), rgba(35,31,32,0.02));
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.10);
  overflow: hidden;
}

.menu-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 24%, rgba(237,42,38,0.18), transparent 18%),
    radial-gradient(circle at 18% 84%, rgba(35,31,32,0.06), transparent 20%);
}

.menu-hero-copy,
.menu-hero-stage {
  position: relative;
  z-index: 1;
}

.menu-hero-copy {
  padding: 18px 8px 18px 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-hero-copy h1 {
  margin: 14px 0 18px;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-family: var(--display);
  text-transform: uppercase;
  color: #231f20;
}

.menu-hero-copy h1 .accent {
  display: block;
  color: var(--red);
  font-family: var(--amnestia);
  font-size: 1.06em;
}

.menu-hero-copy p {
  margin: 0 0 24px;
  max-width: 620px;
  color: rgba(35,31,32,0.78);
  line-height: 1.8;
  font-size: 1.05rem;
}

.menu-quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.menu-quick-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-hero-stage {
  position: relative;
  min-height: 680px;
}

.menu-stage-main,
.menu-float-card {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 60px rgba(0,0,0,0.12);
  background: #ffffff;
}

.menu-stage-main {
  inset: 20px 18px 0 110px;
}

.menu-stage-main img,
.menu-float-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-stage-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0,0,0,0.46));
}

.menu-stage-overlay {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  color: #ffffff;
}

.menu-stage-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(237,42,38,0.92);
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 12px;
}

.menu-stage-overlay strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.menu-stage-overlay p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.86);
  line-height: 1.6;
}

.menu-float-card-a {
  width: 210px;
  height: 250px;
  left: 0;
  top: 0;
  transform: rotate(-7deg);
}

.menu-float-card-b {
  width: 230px;
  height: 190px;
  right: 0;
  bottom: 40px;
  transform: rotate(8deg);
}

.menu-float-card-c {
  width: 170px;
  height: 210px;
  left: 54px;
  bottom: -10px;
  transform: rotate(6deg);
}

.menu-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 14px;
  position: sticky;
  top: 92px;
  z-index: 20;
  border-radius: 22px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid transparent;
  color: rgba(35,31,32,0.72);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  transition:transform 0.25s ease, background 0.25s ease, 
  border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.menu-chip:hover {
  transform: translateY(-1px);
  background: rgba(35,31,32,0.08);
  color: #231f20;
}

.menu-chip.is-active {
  background: linear-gradient(135deg, #ed2a26, #c91916);
  border-color: rgba(237,42,38,0.28);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(237,42,38,0.22);
}

.menu-span-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(237,42,38,0.20);
}

.menu-featured {
  padding: 34px 0 24px;
}

.menu-page-body .section-head h2,
.menu-page-body .section-head p {
  color: #231f20;
}

.menu-page-body .section-head p {
  color: rgba(35,31,32,0.72);
}

.menu-showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-showcase-slider-wrap {
  position: relative;
}

.menu-showcase-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 12px);
  gap: 18px;
  overflow-x: auto;
  padding: 8px 10px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.menu-showcase-slider::-webkit-scrollbar {
  display: none;
}

.menu-showcase-item {
  position: relative;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  background: #ffffff;
  scroll-snap-align: start;
}

.menu-showcase-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(35,31,32,0.12);
  background: rgba(255,255,255,0.88);
  color: #231f20;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.menu-showcase-btn.prev {
  left: -10px;
}

.menu-showcase-btn.next {
  right: -10px;
}

.menu-showcase-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06), rgba(0,0,0,0.58));
}

.menu-showcase-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #ffffff;
}

.menu-showcase-tag {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(35,31,32,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.menu-showcase-overlay h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #ffffff;
}

.menu-showcase-overlay p {
  margin: 0;
  color: rgba(255,255,255,0.88);
  line-height: 1.65;
  max-width: 420px;
}

.menu-showcase-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.menu-showcase-price-row strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-sections {
  padding-top: 24px;
}

.menu-sections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.menu-section-card {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.84)),
    rgba(255,255,255,0.94);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.menu-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.menu-section-title-wrap h2 {
  margin: 12px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-family: var(--display);
  color: #231f20;
}

.menu-section-note {
  color: var(--red);
  font-weight: 700;
}

.menu-section-subhead {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 16px;
  color: rgba(35,31,32,0.56);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.menu-list {
  display: grid;
  gap: 18px;
}

.compact-list {
  gap: 12px;
}

.menu-list-item p {
  margin: 8px 0 0;
  color: rgba(35,31,32,0.74);
  line-height: 1.6;
}

.menu-list-top {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.menu-list-top h3 {
  margin: 0;
  flex-shrink: 0;
  font-size: 1.18rem;
  text-transform: uppercase;
  font-family: var(--display);
  color: #231f20;
}

.menu-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(35,31,32,0.24);
  transform: translateY(-3px);
}

.menu-prices,
.menu-single-price {
  flex-shrink: 0;
  color: var(--red);
  font-family: var(--display);
  font-weight: 900;
  white-space: nowrap;
}

.menu-prices {
  display: flex;
  gap: 14px;
}

.menu-list-subline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  color: rgba(35,31,32,0.7);
  font-size: 0.95rem;
}

.menu-list-subline strong {
  color: var(--red);
  font-family: var(--display);
}

.menu-block + .menu-block {
  margin-top: 22px;
}

.menu-block h4 {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.menu-combo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.combo-pill {
  padding: 18px;
  border-radius: 24px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.08);
}

.combo-pill span {
  display: block;
  margin-bottom: 8px;
  color: rgba(35,31,32,0.58);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.combo-pill strong {
  font-size: 1.2rem;
  font-family: var(--display);
  color: #231f20;
}

.combo-pill-hot {
  background: linear-gradient(135deg, rgba(237,42,38,0.16), rgba(255,255,255,0.4));
}

.menu-addon-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.menu-addon-note strong {
  color: #231f20;
}

.menu-size-note {
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  margin-top: 6px;
  color: rgba(35,31,32,0.56);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.menu-served-note {
  margin-bottom: 14px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.menu-bites-box {
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(237,42,38,0.10), rgba(35,31,32,0.02));
  border: 1px solid rgba(35,31,32,0.08);
}

.menu-bites-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.menu-bites-prices {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.menu-bites-prices span {
  color: #231f20;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.menu-bites-prices strong {
  color: var(--red);
  font-family: var(--display);
}

.menu-bites-box p {
  margin: 0;
  color: rgba(35,31,32,0.74);
  line-height: 1.7;
}

.menu-sauce-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.menu-sauce-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  color: #231f20;
}

.menu-sauce-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}

.menu-sauce-prices div {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  color: #231f20;
}

.menu-heat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.menu-heat-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(35,31,32,0.08);
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(237,42,38,0.10));
  color: #231f20;
}

.menu-page-body .topbar {
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.menu-page-body.hide-main-header .topbar {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.menu-page-body .menu-categories {
  transition: top 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.menu-page-body.hide-main-header .menu-categories {
  top: 0;
  z-index: 60;
  padding: 10px 14px 12px;
  background: rgba(247,243,239,0.82);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

@media (max-width: 1120px) {
  .menu-sections-grid {
  grid-template-columns: 1fr;
}

.menu-categories {
  top: 84px;
}

.menu-showcase-slider {
  grid-auto-columns: calc(50% - 12px);
}
}

@media (max-width: 860px) {
  .menu-hero {
    padding: 40px 22px 38px;
    border-radius: 28px;
    margin-top: 18px;
  }

  .menu-hero::after {
    width: 170px;
    height: 170px;
    right: -24px;
    bottom: -24px;
    opacity: 0.06;
  }

  .menu-showcase-btn {
  display: none;
}

.menu-showcase-slider {
  grid-auto-columns: 80%;
}

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

  .menu-section-card {
    padding: 22px;
  }
}

@media (max-width: 560px) {
  .menu-hero-copy h1 {
    font-size: 3rem;
  }

  .menu-categories {
    top: 78px;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
  }

  .menu-chip {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.86rem;
  }

  .menu-section-head {
    flex-direction: column;
    align-items: start;
  }

  .menu-list-top {
    align-items: start;
    flex-wrap: wrap;
  }

  .menu-dots {
    display: none;
  }

  .menu-prices,
  .menu-single-price {
    width: 100%;
  }

  .menu-size-note {
    justify-content: start;
    gap: 18px;
  }

  .menu-bites-top {
    align-items: start;
  }

  .menu-hero-stage {
    min-height: 480px;
  }

  .menu-showcase-item {
  min-height: 260px;
}

.menu-showcase-slider {
  grid-auto-columns: 88%;
}

.menu-showcase-item {
  min-height: 360px;
}

.menu-showcase-overlay {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.menu-showcase-overlay h3 {
  font-size: 1.2rem;
}

.menu-showcase-overlay {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.menu-showcase-overlay h3 {
  font-size: 1.2rem;
}
}
/* =========================
   LOCATIONS PAGE
========================= */

.locations-page-body {
  background:
    radial-gradient(circle at 84% 10%, rgba(237,42,38,0.14), transparent 24%),
    radial-gradient(circle at 14% 18%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(180deg, #09090a 0%, #101013 46%, #0a0a0b 100%);
  color: #ffffff;
}

.locations-page-body .eyebrow {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
}

.locations-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.14);
}

.locations-page-main {
  padding-bottom: 80px;
}

.locations-hero {
  padding: 56px 0 36px;
}

.locations-hero-shell {
  position: relative;
  padding: 56px 38px 52px;
  border-radius: 38px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(35, 31, 32, 0.72), rgba(35, 31, 32, 0.72)),
    url("../images/final-localtion-bg.jpg") center center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.locations-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(237,42,38,0.14), transparent 18%),
    radial-gradient(circle at 84% 22%, rgba(255,255,255,0.04), transparent 22%);
}

.locations-hero-shell::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 240px;
  height: 240px;
  pointer-events: none;
  opacity: 0.08;
  background: url("../images/Bird.svg") center / contain no-repeat;
}

.locations-hero-shell > * {
  position: relative;
  z-index: 1;
}

.locations-hero-shell .eyebrow {
  margin-bottom: 18px;
}

.locations-hero-shell h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.locations-hero-shell p {
  max-width: 760px;
  margin: 0 auto 26px;
  color: rgba(255,255,255,0.74);
  line-height: 1.8;
  font-size: 1.04rem;
}

.locations-hero-shell .hero-cta {
  justify-content: center;
  margin-bottom: 18px;
}

.locations-hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.locations-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.92rem;
}

.locations-cubes-section {
  padding: 12px 0 0;
}

.locations-page-body .section-head h2,
.locations-page-body .section-head p {
  color: #ffffff;
}

.locations-page-body .section-head p {
  color: rgba(255,255,255,0.72);
}

.locations-cubes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-cube {
  position: relative;
  padding: 24px;
  cursor: pointer;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(237,42,38,0.08), rgba(0,0,0,0));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 40px rgba(0,0,0,0.20);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.location-cube:hover {
  transform: translateY(-4px);
  border-color: rgba(237,42,38,0.32);
  box-shadow: 0 22px 44px rgba(0,0,0,0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    linear-gradient(180deg, rgba(237,42,38,0.14), rgba(0,0,0,0));
}

.location-cube-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.location-cube h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
  font-family: var(--display);
  color: #ffffff;
}

.location-cube-phone {
  margin: 0 0 10px;
  color: #ffffff;
  font-weight: 700;
}

.location-cube p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.74);
  line-height: 1.65;
}

/* Stretched overlay — makes entire card clickable */
/* Invisible stretched anchor — makes entire card a link */
.cube-card-link {
  position: absolute;
  inset: 0;
  border-radius: 28px;
  z-index: 1;        /* sits above static text, below buttons */
}

.location-cube-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
  z-index: 2;        /* buttons above overlay */
}

.location-cube-actions .btn {
  min-height: 46px;
  padding: 0 16px;
}

/* Phone links inside card also above overlay */
.location-cube p a {
  position: relative;
  z-index: 2;
}

@media (max-width: 1120px) {
  .locations-cubes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .locations-hero {
    padding: 40px 0 28px;
  }

  .locations-hero-shell {
    padding: 40px 22px 38px;
    border-radius: 28px;
  }
}

@media (max-width: 560px) {
  .locations-hero-shell h1 {
    font-size: 3rem;
  }

  .locations-cubes-grid {
    grid-template-columns: 1fr;
  }

  .location-cube {
    padding: 18px;
  }

  .location-cube h3 {
    font-size: 1.3rem;
  }
}

/* =========================
   OUR STORY PAGE
========================= */

.story-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.10), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.85), transparent 18%),
    linear-gradient(180deg, #f6f1eb 0%, #efe7df 40%, #f7f2ed 100%);
  color: #231f20;
}

.story-page-body .eyebrow {
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
}

.story-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.story-page-main {
  padding-bottom: 90px;
}

.story-hero {
  padding: 52px 0 28px;
}

.story-hero-shell {
  position: relative;
  padding: 68px 42px 64px;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.62)),
    url("../images/final-localtion-bg.jpg") center center / cover no-repeat;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
}

.story-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 26%, rgba(237,42,38,0.18), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(35,31,32,0.06), transparent 18%);
}

.story-hero-shell::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  background: url("../images/Bird.svg") center / contain no-repeat;
}

.story-hero-shell > * {
  position: relative;
  z-index: 1;
}

.story-hero-shell .eyebrow {
  margin-bottom: 18px;
}

.story-hero-shell h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6.6rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #231f20;
}

.story-hero-shell p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(35,31,32,0.74);
  line-height: 1.9;
  font-size: 1.08rem;
}

.story-flow {
  display: grid;
  gap: 26px;
  padding-top: 10px;
}

.story-chapter {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84), rgba(255,255,255,0.70)),
    rgba(255,255,255,0.82);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.story-chapter-accent {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72)),
    linear-gradient(180deg, rgba(237,42,38,0.08), rgba(255,255,255,0));
  border-color: rgba(237,42,38,0.12);
}

.story-chapter-highlight {
  background:
    linear-gradient(180deg, rgba(35,31,32,0.92), rgba(35,31,32,0.86)),
    linear-gradient(180deg, rgba(237,42,38,0.20), rgba(0,0,0,0));
  border-color: rgba(237,42,38,0.18);
}

.story-chapter-highlight .story-chapter-content h2,
.story-chapter-highlight .story-chapter-content p,
.story-chapter-highlight .eyebrow {
  color: #ffffff;
}

.story-chapter-highlight .eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
}

.story-chapter-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  border-radius: 26px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(237,42,38,0.20);
}

.story-chapter-content .eyebrow {
  margin-bottom: 16px;
}

.story-chapter-content h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.story-chapter-content p {
  margin: 0 0 14px;
  color: rgba(35,31,32,0.76);
  line-height: 1.9;
  font-size: 1.02rem;
  max-width: 900px;
}

.story-inline-cta {
  margin-top: 12px;
}

.story-page-cta {
  padding-top: 36px;
}

.story-page-cta-shell {
  padding: 42px;
  border-radius: 36px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(237,42,38,0.14), rgba(255,255,255,0.70)),
    rgba(255,255,255,0.80);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.08);
}

.story-page-cta-shell .eyebrow {
  margin-bottom: 16px;
}

.story-page-cta-shell h2 {
  margin: 0 auto 22px;
  max-width: 860px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  font-family: var(--display);
  color: #231f20;
}

.story-page-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1120px) {
  .story-chapter {
    grid-template-columns: 1fr;
  }

  .story-chapter-mark {
    width: 74px;
    height: 74px;
    border-radius: 22px;
  }
}

@media (max-width: 860px) {
  .story-hero {
    padding: 40px 0 24px;
  }

  .story-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .story-chapter {
    padding: 24px;
    border-radius: 26px;
  }
}

@media (max-width: 560px) {
  .story-hero-shell h1 {
    font-size: 3rem;
  }

  .story-chapter {
    padding: 18px;
  }

  .story-chapter-mark {
    width: 62px;
    height: 62px;
    font-size: 1.1rem;
    border-radius: 18px;
  }

  .story-page-cta-shell {
    padding: 24px 18px;
  }
}

 /* =========================
   HALAL PROMISE PAGE - DARK UNIQUE
========================= */

.halal-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.12), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.04), transparent 18%),
    linear-gradient(180deg, #080809 0%, #101013 46%, #09090a 100%);
  color: #ffffff;
}

.halal-page-body .eyebrow {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
}

.halal-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.14);
}

.halal-page-main {
  position: relative;
  padding-bottom: 90px;
}

.halal-page-main::after {
  content: "";
  position: absolute;
  top: 350px;
  right: 200px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  z-index: 3;
  opacity: 0.75;
  background: url("../images/Halal.svg") center / contain no-repeat;
}

.halal-hero {
  padding: 54px 0 30px;
}

.halal-hero-shell {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 74px 42px 68px;
  text-align: center;
  background:
    linear-gradient(rgba(8,8,10,0.58), rgba(8,8,10,0.64)),
    url("../images/red-mural.png") center center / cover no-repeat;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.halal-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 28%, rgba(237,42,38,0.12), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(255,255,255,0.03), transparent 18%);
}

.halal-hero-shell::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
}

.halal-hero-shell > * {
  position: relative;
  z-index: 1;
}

.halal-hero-shell .eyebrow {
  margin-bottom: 18px;
}

.halal-hero-shell h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 7vw, 6.2rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  font-family: var(--display);
  color: #ffffff;
}

.halal-hero-shell p {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  font-size: 1.08rem;
}

.halal-hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.halal-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.92rem;
}

/* path layout */

.halal-path {
  position: relative;
  display: grid;
  gap: 24px;
  padding-top: 10px;
}

.halal-path::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(237,42,38,0),
    rgba(237,42,38,0.30),
    rgba(255,255,255,0.10),
    rgba(237,42,38,0.30),
    rgba(237,42,38,0)
  );
  pointer-events: none;
}

.halal-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 96px 1fr;
  align-items: start;
}

.halal-panel-right .halal-panel-copy {
  grid-column: 3;
}

.halal-panel:not(.halal-panel-right) .halal-panel-copy {
  grid-column: 1;
}

.halal-panel-badge {
  grid-column: 2;
  justify-self: center;
  width: 78px;
  height: 78px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(237,42,38,0.22);
  position: relative;
  z-index: 2;
}

.halal-panel-copy {
  position: relative;
  padding: 34px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(237,42,38,0.06), rgba(0,0,0,0));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.18);
}

.halal-panel-copy::before {
  content: "";
  position: absolute;
  top: 38px;
  width: 24px;
  height: 2px;
  background: rgba(237,42,38,0.30);
}

.halal-panel-right .halal-panel-copy::before {
  left: -24px;
}

.halal-panel:not(.halal-panel-right) .halal-panel-copy::before {
  right: -24px;
}

.halal-panel-copy-accent {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(237,42,38,0.12), rgba(0,0,0,0));
  border-color: rgba(237,42,38,0.16);
}

.halal-panel-copy-dark {
  background:
    linear-gradient(180deg, rgba(24,24,28,0.94), rgba(12,12,14,0.92)),
    linear-gradient(180deg, rgba(237,42,38,0.14), rgba(0,0,0,0));
  border-color: rgba(237,42,38,0.18);
}

.halal-panel-copy .eyebrow {
  margin-bottom: 16px;
}

.halal-panel-copy-dark .eyebrow {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.10);
  color: #ffffff;
}

.halal-panel-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-family: var(--display);
  color: #ffffff;
}

.halal-panel-copy p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.76);
  line-height: 1.9;
  font-size: 1.02rem;
  max-width: 860px;
}

/* CTA */

.halal-cta {
  padding-top: 18px;
}

.halal-cta-shell {
  text-align: center;
  padding: 44px 28px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(237,42,38,0.16), rgba(255,255,255,0.04)),
    rgba(14,14,16,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

.halal-cta-shell .eyebrow {
  margin-bottom: 16px;
}

.halal-cta-shell h2 {
  margin: 0 auto 22px;
  max-width: 900px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-family: var(--display);
  color: #ffffff;
}

.halal-cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* responsive */

@media (max-width: 1120px) {
  .halal-path::before {
    left: 36px;
    transform: none;
  }

  .halal-panel {
    grid-template-columns: 76px 1fr;
    gap: 18px;
  }

  .halal-panel-badge {
    grid-column: 1;
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .halal-panel-right .halal-panel-copy,
  .halal-panel:not(.halal-panel-right) .halal-panel-copy {
    grid-column: 2;
  }

  .halal-panel-copy::before {
    left: -18px;
    right: auto;
    width: 18px;
  }
}

@media (max-width: 860px) {
  .halal-page-main::after {
    width: 140px;
    height: 140px;
    top: 90px;
    right: 10px;
  }
}

@media (max-width: 560px) {
  .halal-page-main::after {
    width: 96px;
    height: 96px;
    top: 84px;
    right: 8px;
  }
}

@media (max-width: 860px) {
  .halal-hero {
    padding: 40px 0 24px;
  }

  .halal-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .halal-panel-copy {
    padding: 22px;
    border-radius: 24px;
  }
}

@media (max-width: 560px) {
  .halal-hero-shell h1 {
    font-size: 3rem;
  }

  .halal-panel-badge {
    width: 56px;
    height: 56px;
    font-size: 1rem;
    border-radius: 18px;
  }

  .halal-panel-copy h2 {
    font-size: 1.9rem;
  }

  .halal-cta-shell {
    padding: 26px 18px;
  }
}

/* =========================
   CONTACT PAGE
========================= */

.contact-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.10), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.85), transparent 18%),
    linear-gradient(180deg, #f6f1eb 0%, #efe7df 40%, #f7f2ed 100%);
  color: #231f20;
}

.contact-page-body .eyebrow {
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
}

.contact-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.contact-page-main {
  padding-bottom: 90px;
}

.contact-hero {
  padding: 52px 0 28px;
}

.contact-hero-shell {
  position: relative;
  padding: 68px 42px 64px;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.78), rgba(255,255,255,0.70)),
    url("../images/final-localtion-bg.jpg") center center / cover no-repeat;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
}

.contact-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 26%, rgba(237,42,38,0.16), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(35,31,32,0.06), transparent 18%);
}

.contact-hero-shell::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  background: url("../images/Bird.svg") center / contain no-repeat;
}

.contact-hero-shell > * {
  position: relative;
  z-index: 1;
}

.contact-hero-shell .eyebrow {
  margin-bottom: 18px;
}

.contact-hero-shell h1 {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #231f20;
}

.contact-hero-shell p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(35,31,32,0.74);
  line-height: 1.9;
  font-size: 1.08rem;
}

.contact-main {
  padding-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 18px;
}

.contact-card {
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.74)),
    rgba(255,255,255,0.82);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.contact-card h2,
.contact-card h3 {
  margin: 14px 0 12px;
  font-family: var(--display);
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.contact-card h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

.contact-card p {
  margin: 0;
  color: rgba(35,31,32,0.76);
  line-height: 1.8;
}

.contact-form {
  margin-top: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #231f20;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(35,31,32,0.10);
  background: rgba(255,255,255,0.82);
  color: #231f20;
  border-radius: 18px;
  padding: 16px 16px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
  border-radius: 22px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(35,31,32,0.46);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(237,42,38,0.28);
  box-shadow:
    0 0 0 4px rgba(237,42,38,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.contact-note {
  color: rgba(35,31,32,0.62);
  font-size: 0.95rem;
}

.contact-email-link {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 800;
}

.contact-link-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.contact-link-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  padding: 18px 18px;
  border-radius: 24px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-link-item:hover {
  transform: translateY(-2px);
  border-color: rgba(237,42,38,0.16);
  box-shadow: 0 12px 26px rgba(0,0,0,0.06);
}

.contact-link-item strong {
  display: block;
  margin-bottom: 6px;
  color: #231f20;
  font-size: 1rem;
}

.contact-link-item span {
  display: block;
  color: rgba(35,31,32,0.70);
  line-height: 1.65;
}

.contact-link-item em {
  font-style: normal;
  white-space: nowrap;
  color: var(--red);
  font-weight: 700;
  margin-top: 2px;
}

.contact-link-btn {
  align-self: center;
  white-space: nowrap;
  flex-shrink: 0;
  pointer-events: none; /* card <a> handles the click */
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.contact-page-body .social-btn {
  color: #231f20;
  background: rgba(35,31,32,0.05);
  border: 1px solid rgba(35,31,32,0.10);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
}

.contact-page-body .social-btn:hover {
  background: rgba(35,31,32,0.08);
  border-color: rgba(35,31,32,0.14);
}

@media (max-width: 1120px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .contact-hero {
    padding: 40px 0 24px;
  }

  .contact-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .contact-card {
    padding: 24px;
    border-radius: 26px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-hero-shell h1 {
    font-size: 3rem;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-link-item {
    flex-direction: column;
  }

  .contact-social-links {
    gap: 10px;
  }

  .contact-page-body .social-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =========================
   PRIVACY POLICY PAGE
========================= */

.privacy-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.08), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.90), transparent 18%),
    linear-gradient(180deg, #f8f3ee 0%, #efe7df 42%, #f7f2ed 100%);
  color: #231f20;
}

.privacy-page-body .eyebrow {
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
}

.privacy-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.privacy-page-main {
  padding-bottom: 90px;
}

.privacy-hero {
  padding: 52px 0 28px;
}

.privacy-hero-shell {
  position: relative;
  padding: 64px 42px 56px;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.72)),
    url("../images/final-localtion-bg.jpg") center center / cover no-repeat;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
}

.privacy-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 26%, rgba(237,42,38,0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(35,31,32,0.05), transparent 18%);
}

.privacy-hero-shell::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  background: url("../images/Bird.svg") center / contain no-repeat;
}

.privacy-hero-shell > * {
  position: relative;
  z-index: 1;
}

.privacy-hero-shell .eyebrow {
  margin-bottom: 18px;
}

.privacy-hero-shell h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #231f20;
}

.privacy-hero-shell p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: rgba(35,31,32,0.72);
  line-height: 1.8;
  font-size: 1.06rem;
}

.privacy-updated {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid rgba(35,31,32,0.08);
  color: rgba(35,31,32,0.72);
  font-weight: 700;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

.privacy-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.privacy-side-card,
.privacy-content {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.78)),
    rgba(255,255,255,0.84);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.privacy-side-card {
  padding: 24px;
}

.privacy-side-card p {
  margin: 14px 0 0;
  color: rgba(35,31,32,0.72);
  line-height: 1.75;
}

.privacy-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
}

.privacy-toc {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.privacy-toc a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.06);
  color: #231f20;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.privacy-toc a:hover {
  background: rgba(237,42,38,0.08);
  border-color: rgba(237,42,38,0.12);
  transform: translateY(-1px);
}

.privacy-content {
  padding: 34px;
}

.privacy-section + .privacy-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(35,31,32,0.08);
}

.privacy-section h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.privacy-section p {
  margin: 0 0 14px;
  color: rgba(35,31,32,0.76);
  line-height: 1.85;
}

.privacy-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: rgba(35,31,32,0.76);
}

.privacy-section li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.privacy-section a {
  color: var(--red);
}

.privacy-last-line {
  display: inline-flex;
  margin-top: 6px;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid rgba(35,31,32,0.08);
  color: rgba(35,31,32,0.72);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-side {
    position: static;
  }
}

@media (max-width: 860px) {
  .privacy-hero {
    padding: 40px 0 24px;
  }

  .privacy-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .privacy-side-card,
  .privacy-content {
    border-radius: 26px;
  }

  .privacy-content {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .privacy-hero-shell h1 {
    font-size: 3rem;
  }

  .privacy-side-card,
  .privacy-content {
    padding: 18px;
  }
}

/* =========================
   TERMS OF SERVICE PAGE
========================= */

.terms-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.08), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.90), transparent 18%),
    linear-gradient(180deg, #f8f3ee 0%, #efe7df 42%, #f7f2ed 100%);
  color: #231f20;
}

.terms-page-body .eyebrow {
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
}

.terms-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.terms-page-main {
  padding-bottom: 90px;
}

.terms-hero {
  padding: 52px 0 28px;
}

.terms-hero-shell {
  position: relative;
  padding: 64px 42px 56px;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.82), rgba(255,255,255,0.72)),
    url("../images/final-localtion-bg.jpg") center center / cover no-repeat;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
}

.terms-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 26%, rgba(237,42,38,0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(35,31,32,0.05), transparent 18%);
}

.terms-hero-shell::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 220px;
  height: 220px;
  opacity: 0.08;
  pointer-events: none;
  background: url("../images/Bird.svg") center / contain no-repeat;
}

.terms-hero-shell > * {
  position: relative;
  z-index: 1;
}

.terms-hero-shell .eyebrow {
  margin-bottom: 18px;
}

.terms-hero-shell h1 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #231f20;
}

.terms-hero-shell p {
  max-width: 760px;
  margin: 0 auto 18px;
  color: rgba(35,31,32,0.72);
  line-height: 1.8;
  font-size: 1.06rem;
}

.terms-updated {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid rgba(35,31,32,0.08);
  color: rgba(35,31,32,0.72);
  font-weight: 700;
}

.terms-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 22px;
  align-items: start;
}

.terms-side {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.terms-side-card,
.terms-content {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.78)),
    rgba(255,255,255,0.84);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.terms-side-card {
  padding: 24px;
}

.terms-side-card p {
  margin: 14px 0 0;
  color: rgba(35,31,32,0.72);
  line-height: 1.75;
}

.terms-email {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 800;
}

.terms-toc {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.terms-toc a {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.06);
  color: #231f20;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.terms-toc a:hover {
  background: rgba(237,42,38,0.08);
  border-color: rgba(237,42,38,0.12);
  transform: translateY(-1px);
}

.terms-content {
  padding: 34px;
}

.terms-section + .terms-section {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid rgba(35,31,32,0.08);
}

.terms-section h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.terms-section p {
  margin: 0 0 14px;
  color: rgba(35,31,32,0.76);
  line-height: 1.85;
}

.terms-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: rgba(35,31,32,0.76);
}

.terms-section li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.terms-section a {
  color: var(--red);
}

.terms-last-line {
  display: inline-flex;
  margin-top: 6px;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid rgba(35,31,32,0.08);
  color: rgba(35,31,32,0.72);
  font-weight: 700;
}

@media (max-width: 1120px) {
  .terms-layout {
    grid-template-columns: 1fr;
  }

  .terms-side {
    position: static;
  }
}

@media (max-width: 860px) {
  .terms-hero {
    padding: 40px 0 24px;
  }

  .terms-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .terms-side-card,
  .terms-content {
    border-radius: 26px;
  }

  .terms-content {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  .terms-hero-shell h1 {
    font-size: 3rem;
  }

  .terms-side-card,
  .terms-content {
    padding: 18px;
  }
}

/* =========================
   CATERING PAGE
========================= */

.catering-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.08), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.90), transparent 18%),
    linear-gradient(180deg, #f8f3ee 0%, #efe7df 42%, #f7f2ed 100%);
  color: #231f20;
}

.catering-page-body .eyebrow {
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
}

.catering-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.catering-page-main {
  padding-bottom: 90px;
}

.catering-hero {
  padding: 52px 0 28px;
}

.catering-hero-shell {
  position: relative;
  padding: 68px 42px 60px;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.74), rgba(255,255,255,0.66)),
    url("../images/red-mural.png") center center / cover no-repeat;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
}

.catering-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 26%, rgba(237,42,38,0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(35,31,32,0.05), transparent 18%);
}

.catering-hero-shell > * {
  position: relative;
  z-index: 1;
}

.catering-hero-shell h1 {
  margin: 14px 0 14px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #231f20;
}

.catering-hero-shell p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(35,31,32,0.74);
  line-height: 1.85;
  font-size: 1.06rem;
}

.catering-hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.catering-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
  font-weight: 700;
}

.catering-intro,
.catering-steps,
.catering-info,
.catering-menu,
.catering-benefits,
.catering-quote {
  padding-top: 18px;
}

.catering-intro-grid,
.catering-quote-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.catering-form-card,
.catering-side {
  height: 100%;
}

.catering-panel,
.catering-highlight-card,
.catering-step-card,
.catering-info-card,
.catering-menu-section,
.catering-benefit-card,
.catering-form-card,
.catering-side-card {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.78)),
    rgba(255,255,255,0.84);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.catering-panel,
.catering-highlight-card,
.catering-form-card,
.catering-side-card {
  padding: 30px;
}

.catering-panel h2,
.catering-form-card h2 {
  margin: 14px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.catering-panel p,
.catering-form-card p,
.catering-side-card p,
.catering-step-card p,
.catering-info-card p,
.catering-menu-section p,
.catering-benefit-card p {
  margin: 0 0 14px;
  color: rgba(35,31,32,0.76);
  line-height: 1.8;
}

.catering-highlight-list {
  display: grid;
  gap: 14px;
}

.catering-highlight-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.06);
}

.catering-highlight-item strong {
  display: block;
  margin-bottom: 6px;
  color: #231f20;
}

.catering-highlight-item span {
  color: rgba(35,31,32,0.70);
  line-height: 1.65;
}

.catering-steps-grid,
.catering-info-grid,
.catering-benefits-grid {
  display: grid;
  gap: 18px;
}

.catering-steps-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catering-info-grid,
.catering-benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.catering-step-card,
.catering-info-card,
.catering-benefit-card {
  padding: 24px;
}

.catering-step-number {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(237,42,38,0.18);
  margin-bottom: 14px;
}

.catering-step-card h3,
.catering-side-card h3,
.catering-menu-section h3 {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.catering-info-card strong,
.catering-benefit-card strong {
  display: block;
  margin-bottom: 10px;
  color: #231f20;
  font-size: 1.02rem;
}

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

.catering-menu-section {
  padding: 26px;
}

.catering-menu-section-accent {
  background:
    linear-gradient(180deg, rgba(237,42,38,0.10), rgba(255,255,255,0.78)),
    rgba(255,255,255,0.86);
}

.catering-menu-section h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 2rem;
}

.catering-menu-section h3 + .catering-price-note {
  margin-bottom: 14px;
}

.catering-menu-section ul {
  margin: 0 0 22px;
  padding-left: 18px;
}

.catering-menu-section li {
  margin-bottom: 12px;
  line-height: 1.65;
  color: rgba(35,31,32,0.80);
}

.catering-menu-section li strong {
  color: #231f20;
}

.catering-price-note {
  color: var(--red) !important;
  font-weight: 800;
  line-height: 1.5 !important;
}

.catering-small-note {
  color: rgba(35,31,32,0.62);
  font-size: 0.92rem;
}

.diet-tags {
  font-size: 0.78rem;
  color: rgba(35,31,32,0.45);
  font-weight: 500;
  letter-spacing: 0.01em;
}

.catering-alert {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  color: #fff;
  font-weight: 800;
  margin-top: 8px;
}

.catering-dual-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 8px;
}

.catering-dual-pills span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
  font-weight: 700;
}

.catering-served-note {
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.catering-bites-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0;
}

.catering-bites-prices span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  color: #231f20;
  gap: 8px;
}

.catering-bites-prices strong {
  color: var(--red);
}

.catering-shareable-list {
  list-style: none;
  padding-left: 0 !important;
}

.catering-shareable-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(35,31,32,0.08);
}

.catering-shareable-list li:last-child {
  border-bottom: 0;
}

.catering-shareable-list span {
  display: block;
  margin-top: 8px;
  color: rgba(35,31,32,0.70);
  line-height: 1.6;
}

.catering-spice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.catering-spice-pills span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(237,42,38,0.14);
}

/* form */
.catering-form {
  margin-top: 18px;
}

.catering-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.catering-form .form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.catering-form .form-field label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #231f20;
}

.catering-form .form-field input,
.catering-form .form-field select,
.catering-form .form-field textarea {
  width: 100%;
  border: 1px solid rgba(35,31,32,0.10);
  background: rgba(255,255,255,0.82);
  color: #231f20;
  border-radius: 18px;
  padding: 16px 16px;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.catering-form .form-field textarea {
  min-height: 180px;
  resize: vertical;
  border-radius: 22px;
}

.catering-form .form-field input::placeholder,
.catering-form .form-field textarea::placeholder {
  color: rgba(35,31,32,0.46);
}

.catering-form .form-field input:focus,
.catering-form .form-field select:focus,
.catering-form .form-field textarea:focus {
  border-color: rgba(237,42,38,0.28);
  box-shadow:
    0 0 0 4px rgba(237,42,38,0.08),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.catering-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 6px;
}

.catering-note {
  color: rgba(35,31,32,0.62);
  font-size: 0.95rem;
}

/* sidebar */
.catering-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.catering-side-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 260px;
}

.catering-side-card-compact {
  min-height: 220px;
}

.catering-side-card p {
  max-width: 780px;
  margin: 0;
  color: rgba(35,31,32,0.76);
  line-height: 1.75;
}

.catering-side-card a {
  color: var(--red);
}

.catering-side-actions {
  margin-top: 26px;
}

.catering-side-actions .btn {
  min-height: 58px;
  padding: 0 28px;
}

.catering-side-actions .btn-secondary {
  background: transparent !important;
  border-color: rgba(0,0,0,0.18) !important;
  color: #1a1a1a !important;
}
.catering-side-actions .btn-secondary:hover {
  background: rgba(0,0,0,0.05) !important;
}

.story-page-cta-actions .btn-secondary {
  background: transparent !important;
  border-color: rgba(0,0,0,0.22) !important;
  color: #1a1a1a !important;
}
.story-page-cta-actions .btn-secondary:hover {
  background: rgba(0,0,0,0.06) !important;
}

@media (max-width: 1120px) {
  .catering-intro-grid,
  .catering-quote-grid {
    grid-template-columns: 1fr;
  }

  .catering-steps-grid,
  .catering-info-grid,
  .catering-benefits-grid,
  .catering-menu-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .catering-hero {
    padding: 40px 0 24px;
  }

  .catering-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .catering-panel,
  .catering-highlight-card,
  .catering-form-card,
  .catering-side-card,
  .catering-step-card,
  .catering-info-card,
  .catering-menu-section,
  .catering-benefit-card {
    padding: 22px;
    border-radius: 26px;
  }

  .catering-form-grid {
    grid-template-columns: 1fr;
  }

  .catering-side-card {
    min-height: auto;
  }

  .catering-side-card h3 {
    font-size: 2rem;
  }
}

@media (max-width: 560px) {
  .catering-hero-shell h1 {
    font-size: 3rem;
  }

  .catering-steps-grid,
  .catering-info-grid,
  .catering-benefits-grid,
  .catering-menu-grid-3 {
    grid-template-columns: 1fr;
  }

  .catering-panel,
  .catering-highlight-card,
  .catering-form-card,
  .catering-side-card,
  .catering-step-card,
  .catering-info-card,
  .catering-menu-section,
  .catering-benefit-card {
    padding: 18px;
  }
}

/* =========================
   FRANCHISING PAGE
========================= */

.franchise-page-body {
  background:
    radial-gradient(circle at 84% 8%, rgba(237,42,38,0.08), transparent 22%),
    radial-gradient(circle at 14% 12%, rgba(255,255,255,0.90), transparent 18%),
    linear-gradient(180deg, #f8f3ee 0%, #efe7df 42%, #f7f2ed 100%);
  color: #231f20;
}

.franchise-page-body .eyebrow {
  background: rgba(35,31,32,0.06);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
}

.franchise-page-body .eyebrow-dot {
  background: linear-gradient(180deg, #ed2a26, #b70907);
  box-shadow: 0 0 0 6px rgba(237,42,38,0.12);
}

.franchise-page-main {
  padding-bottom: 90px;
}

.franchise-hero {
  padding: 52px 0 28px;
}

.franchise-hero-shell {
  position: relative;
  padding: 68px 42px 60px;
  border-radius: 40px;
  overflow: hidden;
  text-align: center;
  background:
    linear-gradient(rgba(255,255,255,0.76), rgba(255,255,255,0.68)),
    url("../images/red-mural.png") center center / cover no-repeat;
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 26px 70px rgba(0,0,0,0.10);
}

.franchise-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 26%, rgba(237,42,38,0.14), transparent 18%),
    radial-gradient(circle at 82% 18%, rgba(35,31,32,0.05), transparent 18%);
}

.franchise-hero-shell > * {
  position: relative;
  z-index: 1;
}

.franchise-hero-shell h1 {
  margin: 16px 0 14px;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  color: #231f20;
}

.franchise-hero-shell p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(35,31,32,0.74);
  line-height: 1.85;
  font-size: 1.06rem;
}

.franchise-hero-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.franchise-hero-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(35,31,32,0.08);
  color: #231f20;
  font-weight: 700;
}

.franchise-intro,
.franchise-benefits,
.franchise-fit,
.franchise-steps,
.franchise-application {
  padding-top: 18px;
}

.franchise-intro-grid,
.franchise-application-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.franchise-panel,
.franchise-side-stat-card,
.franchise-benefit-card,
.franchise-fit-shell,
.franchise-step-card,
.franchise-form-card,
.franchise-side-card {
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.78)),
    rgba(255,255,255,0.84);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 18px 42px rgba(0,0,0,0.07);
}

.franchise-panel,
.franchise-side-stat-card,
.franchise-fit-shell,
.franchise-form-card,
.franchise-side-card {
  padding: 30px;
}

.franchise-panel h2,
.franchise-fit-shell h2,
.franchise-form-card h2 {
  margin: 14px 0 14px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.franchise-panel p,
.franchise-fit-shell p,
.franchise-form-card p,
.franchise-side-card p,
.franchise-step-card p,
.franchise-benefit-card p {
  margin: 0 0 14px;
  color: rgba(35,31,32,0.76);
  line-height: 1.8;
}

.franchise-stat-list {
  display: grid;
  gap: 14px;
}

.franchise-stat-item {
  padding: 18px;
  border-radius: 22px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.06);
}

.franchise-stat-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.franchise-stat-item span {
  color: rgba(35,31,32,0.70);
  line-height: 1.65;
}

.franchise-benefits-grid,
.franchise-steps-grid {
  display: grid;
  gap: 18px;
}

.franchise-benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.franchise-steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.franchise-benefit-card,
.franchise-step-card {
  padding: 24px;
}

.franchise-benefit-card strong {
  display: block;
  margin-bottom: 10px;
  color: #231f20;
  font-size: 1.02rem;
}

.franchise-step-number {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
  color: #ffffff;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(237,42,38,0.18);
  margin-bottom: 14px;
}

.franchise-step-card h3,
.franchise-form-group h3,
.franchise-side-card h3 {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-size: 1.45rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: #231f20;
}

.franchise-form-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.franchise-form-group {
  padding: 20px;
  border-radius: 24px;
  background: rgba(35,31,32,0.04);
  border: 1px solid rgba(35,31,32,0.06);
}

.franchise-form-group ul {
  margin: 0;
  padding-left: 18px;
}

.franchise-form-group li {
  margin-bottom: 10px;
  color: rgba(35,31,32,0.76);
  line-height: 1.65;
}

/* Form sections */
.franchise-form-section {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(35,31,32,0.08);
}
.franchise-form-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.franchise-form-section h3 {
  margin: 0 0 20px;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(35,31,32,0.55);
}

/* Form rows & fields */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-field-full {
  flex: 1 1 100%;
}
.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(35,31,32,0.7);
  letter-spacing: 0.01em;
}
.req {
  color: var(--red);
}
.form-field input,
.form-field select,
.form-field textarea {
  background: #fff;
  border: 1.5px solid rgba(35,31,32,0.14);
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: var(--body);
  color: #231f20;
  transition: border-color 0.18s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237,42,38,0.1);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(35,31,32,0.3);
}
.form-field textarea {
  resize: vertical;
  min-height: 80px;
}
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23231f20' stroke-opacity='.4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

/* Radio groups */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 4px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.95rem;
  color: #231f20;
  cursor: pointer;
}
.radio-label input[type="radio"] {
  accent-color: var(--red);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Partner section */
.partner-section {
  background: rgba(237,42,38,0.03);
  border: 1px solid rgba(237,42,38,0.1);
  border-radius: 16px;
  padding: 20px;
  margin: 14px 0;
}
.partner-block {
  padding-top: 18px;
  margin-top: 14px;
  border-top: 1px solid rgba(35,31,32,0.08);
}
.partner-block h4 {
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(35,31,32,0.55);
  margin: 0 0 14px;
}

/* Small button */
.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: 10px;
  margin-top: 10px;
}

/* Partner section sits on a light background — override ghost to dark */
.partner-section .btn-ghost {
  background: transparent !important;
  border-color: rgba(0,0,0,0.18) !important;
  color: #1a1a1a !important;
}
.partner-section .btn-ghost:hover {
  background: rgba(0,0,0,0.05) !important;
}

.franchise-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.franchise-note {
  color: rgba(35,31,32,0.62);
  font-size: 0.95rem;
}

.franchise-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.franchise-side-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 240px;
}

.franchise-side-card-accent {
  background:
    linear-gradient(180deg, rgba(237,42,38,0.10), rgba(255,255,255,0.78)),
    rgba(255,255,255,0.86);
}

.franchise-side-card a {
  color: var(--red);
}

.franchise-side-actions {
  margin-top: 22px;
}

.franchise-form-preview-single {
  grid-template-columns: 1fr;
  max-width: 720px;
}

@media (max-width: 1120px) {
  .franchise-intro-grid,
  .franchise-application-grid {
    grid-template-columns: 1fr;
  }

  .franchise-benefits-grid,
  .franchise-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .franchise-hero {
    padding: 40px 0 24px;
  }

  .franchise-hero-shell {
    padding: 42px 22px 38px;
    border-radius: 28px;
  }

  .franchise-panel,
  .franchise-side-stat-card,
  .franchise-fit-shell,
  .franchise-form-card,
  .franchise-side-card,
  .franchise-benefit-card,
  .franchise-step-card {
    padding: 22px;
    border-radius: 26px;
  }

  .franchise-form-preview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .franchise-hero-shell h1 {
    font-size: 3rem;
  }

  .franchise-benefits-grid,
  .franchise-steps-grid {
    grid-template-columns: 1fr;
  }

  .franchise-panel,
  .franchise-side-stat-card,
  .franchise-fit-shell,
  .franchise-form-card,
  .franchise-side-card,
  .franchise-benefit-card,
  .franchise-step-card {
    padding: 18px;
  }
}

/* =========================
   GLOBAL FOOTER
========================= */

.site-footer {
  padding: 6px 20px 18px;
  background: linear-gradient(135deg, #ed2a26, #b70907);
}

.footer-shell {
  margin-top: 10px;
  width: min(100%, 1180px);
  border-radius: 20px;
  padding: 18px 28px;
  background: rgba(10, 10, 12, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.22);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Single row: logo | tagline | links | socials | copyright */
.footer-top {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-brand img {
  width: 38px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #ffffff;
  white-space: nowrap;
}

.footer-copy p {
  display: none;
}

.footer-grid {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin-left: auto;
  flex-wrap: wrap;
}

.footer-col h3 {
  display: none;
}

.footer-links,
.footer-socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
}

.footer-links a,
.footer-socials a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.footer-links a:last-child {
  border-right: 1px solid rgba(255,255,255,0.1);
}

.footer-socials a {
  border-right: none;
  padding-right: 10px;
}

.footer-socials a:first-child {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 12px;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* light pages using same footer */
.contact-page-body .site-footer,
.catering-page-body .site-footer,
.privacy-page-body .site-footer,
.terms-page-body .site-footer,
.franchise-page-body .site-footer {
  padding-bottom: 24px;
}

@media (max-width: 860px) {
  .footer-shell {
    padding: 16px 18px 14px;
    border-radius: 16px;
  }

  .footer-top {
    gap: 16px;
  }

  .footer-grid {
    margin-left: 0;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-footer {
    padding: 6px 12px 14px;
  }

  .footer-shell {
    padding: 14px 14px 12px;
    border-radius: 14px;
  }

  .footer-top {
    gap: 12px;
    padding-bottom: 12px;
  }

  .footer-links a,
  .footer-socials a {
    font-size: 0.78rem;
    padding: 4px 8px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
  }

  .footer-bottom p {
    font-size: 0.8rem;
  }
}
/* ============================================================
   MERCH PAGE
   ============================================================ */

.merch-page-body {
  background: #f5f3f0;
}

.merch-page-main {
  padding-bottom: 60px;
}

/* Hero */
.merch-hero {
  padding: 48px 0 32px;
}

.merch-hero-shell {
  background: linear-gradient(135deg, #ed2a26, #b70907);
  border-radius: 28px;
  padding: 72px 48px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.merch-hero-shell h1 {
  font-family: var(--amnestia);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0 18px;
}

.merch-hero-shell p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.merch-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.merch-hero-pills span {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Filter row */
.merch-grid-section {
  padding-top: 8px;
}

.merch-filter-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 10px 14px;
  border-radius: 22px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(35,31,32,0.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.merch-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(35,31,32,0.05);
  border: 1px solid transparent;
  color: rgba(35,31,32,0.72);
  font-size: 0.92rem;
  font-family: var(--body);
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease,
    border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.merch-filter-btn:hover {
  transform: translateY(-1px);
  background: rgba(35,31,32,0.08);
  color: #231f20;
}

.merch-filter-btn.is-active {
  background: linear-gradient(135deg, #ed2a26, #c91916);
  border-color: rgba(237,42,38,0.28);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(237,42,38,0.22);
}

/* Grid */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card */
.merch-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(35,31,32,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.merch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.merch-card-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #f0ece8;
}

.merch-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.merch-card:hover .merch-card-img-wrap img {
  transform: scale(1.04);
}

.merch-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #231f20;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
}

.merch-badge-hot {
  background: #ed2a26;
}

.merch-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.merch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.merch-card-top h3 {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #231f20;
  margin: 0;
  line-height: 1.15;
}

.merch-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(35,31,32,0.5);
  background: rgba(35,31,32,0.06);
  border-radius: 999px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.merch-card-body p {
  font-size: 0.86rem;
  color: rgba(35,31,32,0.62);
  line-height: 1.55;
  margin: 0;
}

.merch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.merch-price {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #231f20;
}

/* CTA banner */
.merch-cta {
  padding: 32px 0 0;
}

.merch-cta-shell {
  background: #231f20;
  border-radius: 24px;
  padding: 52px 48px;
  text-align: center;
}

.merch-cta-shell h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-transform: uppercase;
  color: #fff;
  margin: 12px 0 14px;
}

.merch-cta-shell p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1100px) {
  .merch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 780px) {
  .merch-hero-shell {
    padding: 36px 24px;
  }
  .merch-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .merch-cta-shell {
    padding: 36px 24px;
  }
}

@media (max-width: 480px) {
  .merch-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── Location Detail Pages ─────────────────────────────────────────────── */
.loc-page-main { padding-bottom: 80px; }

.loc-hero {
  padding: 56px 0 0;
}
.loc-hero-shell {
  background: linear-gradient(135deg, #ed2a26 0%, #b70907 100%);
  border-radius: 28px;
  padding: 60px 52px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  overflow: hidden;
}
.loc-hero-shell::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 340px; height: 340px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.loc-hero-shell::after {
  content: '';
  position: absolute;
  right: 60px; bottom: -80px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.loc-hero-shell .eyebrow { position: relative; z-index: 1; }
.loc-hero-shell .eyebrow-dot { background: rgba(255,255,255,0.6); }
.loc-hero-shell h1 {
  font-family: var(--amnestia);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.9;
  text-transform: uppercase;
  color: #fff;
  margin: 10px 0 16px;
  position: relative; z-index: 1;
}
.loc-hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  position: relative; z-index: 1;
}
.loc-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.loc-hero-actions .btn-ghost {
  border-color: rgba(255,255,255,0.35) !important;
  background: rgba(255,255,255,0.1) !important;
  color: #fff !important;
}
.loc-hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.18) !important;
}

.loc-details {
  padding: 48px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.loc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
}
.loc-card h2 {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.loc-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.loc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.loc-info-icon {
  width: 36px; height: 36px;
  background: rgba(237,42,38,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.loc-info-item a { color: var(--fg); text-decoration: none; }
.loc-info-item a:hover { color: var(--red); }
.loc-info-label {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 2px;
}
.loc-info-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
}

.loc-hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loc-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
}
.loc-hours-row:nth-child(odd) { background: rgba(255,255,255,0.03); }
.loc-hours-day { font-weight: 600; color: var(--fg); }
.loc-hours-time { color: var(--muted); font-size: 0.88rem; }
.loc-hours-row.is-late .loc-hours-time { color: var(--red); font-weight: 600; }

.loc-back-row {
  padding: 32px 0 0;
}
.loc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.loc-back-link:hover { color: var(--red); }
.loc-back-link svg { transition: transform 0.2s; }
.loc-back-link:hover svg { transform: translateX(-3px); }

@media (max-width: 768px) {
  .loc-hero-shell { padding: 44px 28px; }
  .loc-details { grid-template-columns: 1fr; }
}
