/* Enzo's Pizzeria — v4 reimagined
   Print-menu motif: red / white / black, outlined headers, circular thumbs */

:root {
  --red: #e10600;
  --red-deep: #9e0400;
  --red-hot: #ff1a0a;
  --red-outline: #b80500;
  --red-glow: rgba(225, 6, 0, 0.45);
  --red-glow-soft: rgba(225, 6, 0, 0.22);
  --black: #070708;
  --ink: #121214;
  --muted: #3a3a40;
  --line: #c8c4bc;
  --white: #fff;
  --cream: #ffffff;
  --panel: #ffffff;
  --charcoal: #0e0e12;
  --charcoal-2: #16161c;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-dark: rgba(18, 18, 24, 0.62);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.28);
  --shadow-red: 0 10px 28px rgba(225, 6, 0, 0.28);
  --shadow-glow: 0 0 32px var(--red-glow), 0 12px 36px rgba(0, 0, 0, 0.35);
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --display: "Archivo Black", "Impact", sans-serif;
  --marker: "Permanent Marker", cursive;
  --max: 1120px;
  --near-black: #070708;
  --surface-dark: #0c0c0f;
  --cream-rich: #ffffff;
  --metal: #c8c4bc;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.18s var(--ease-out);
  --t-med: 0.28s var(--ease-out);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream-rich, #f3efe7);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

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

a {
  color: var(--red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ——— Header (nav only — no Order button) ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 1rem;
}

.logo img {
  width: 120px;
  height: auto;
  /* Match outlined titles: hard black offset shadow */
  filter:
    drop-shadow(2px 2px 0 #0a0a0a)
    drop-shadow(1px 1px 0 #0a0a0a);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--black);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--red);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--black);
  border-radius: 1px;
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 1.25rem;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: clamp(420px, 72vh, 640px);
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("hero-spread.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.58) 40%,
    rgba(0, 0, 0, 0.82) 78%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1.25rem 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-logo {
  width: min(220px, 55vw);
  height: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
}

.slogan {
  margin: 0;
  font-family: var(--marker);
  font-size: clamp(1.35rem, 4vw, 2rem);
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
}

.slogan--sm {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

/* THE single primary Order CTA */
.btn-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.35rem;
  min-width: 168px;
  padding: 0.95rem 2.4rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 3px solid var(--white);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-order:hover {
  background: var(--red-deep);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-order:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.hero-sub {
  margin: 0.25rem 0 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

/* ——— Sections ——— */
.section {
  padding: 3.5rem 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head--center {
  text-align: center;
}

.lede {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.price-note {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Outlined all-caps headers (print menu) */
.outline-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 5vw, 2.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  -webkit-text-stroke: 2.5px var(--red-outline);
  paint-order: stroke fill;
  text-shadow:
    2px 0 0 var(--red-outline),
    -2px 0 0 var(--red-outline),
    0 2px 0 var(--red-outline),
    0 -2px 0 var(--red-outline),
    1.5px 1.5px 0 var(--red-outline),
    -1.5px -1.5px 0 var(--red-outline),
    1.5px -1.5px 0 var(--red-outline),
    -1.5px 1.5px 0 var(--red-outline);
}

.outline-title--lg {
  font-size: clamp(1.85rem, 5.5vw, 2.75rem);
}

.outline-title--sm {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
}

@supports (-webkit-text-stroke: 2.5px red) {
  .outline-title {
    text-shadow: none;
    color: var(--white);
    -webkit-text-stroke: 2.75px var(--red);
  }
}

.rule-red {
  border: 0;
  height: 3px;
  width: 72px;
  background: var(--red);
  margin: 0.85rem 0 0;
  border-radius: 2px;
}

.section-head--center .rule-red {
  margin-inline: auto;
}

/* ——— Pick your shop ——— */
.order-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 560px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .shop-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem;
  }
}

/* Store name IS the action — not a second "Order" label */
.shop-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  background: var(--white);
  border: 2px solid var(--red);
  border-radius: var(--radius);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.shop-card:hover {
  background: #fff5f5;
  border-color: var(--red-deep);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
}

.shop-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.shop-name {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
}

.shop-city {
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— Specialty board (print menu look) ——— */
.menu-section {
  background: var(--white);
}

.specialty-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem 2rem;
}

@media (min-width: 800px) {
  .specialty-board {
    grid-template-columns: 1fr 1fr;
  }
}

.specialty-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.specialty-row:hover {
  border-color: rgba(225, 6, 0, 0.35);
  background: #fffafa;
}

.specialty-thumb {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--red);
  background: #eee;
}

.specialty-body h3 {
  margin: 0 0 0.2rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.01em;
}

.specialty-body p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
}

/* ——— Also on the menu ——— */
.also-section {
  background: var(--cream);
  border-block: 1px solid var(--line);
}

.also-list {
  list-style: none;
  margin: 1.25rem 0 0.75rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

@media (min-width: 640px) {
  .also-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem 2rem;
  }
}

@media (min-width: 900px) {
  .also-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.also-list li {
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  border: 1.5px solid rgba(225, 6, 0, 0.45);
  border-radius: 10px;
  background: var(--white);
}

.also-list strong {
  color: var(--black);
  font-weight: 700;
}

.also-hint {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ——— Locations ——— */
.locations-section {
  background: var(--white);
}

.loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .loc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.loc-card {
  padding: 1.1rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.loc-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.loc-card address {
  font-style: normal;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.45rem;
  line-height: 1.4;
}

.loc-card .phone {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand img {
  width: 130px;
  margin-bottom: 0.5rem;
}

.footer-meta {
  text-align: right;
  font-size: 0.92rem;
}

.footer-meta p {
  margin: 0 0 0.35rem;
}

.footer-meta a {
  color: var(--white);
  font-weight: 600;
}

.footer-meta a:hover {
  color: #ffb3b0;
}

.socials {
  opacity: 0.9;
}

.footer-copy {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

@media (max-width: 520px) {
  .footer-meta {
    text-align: left;
    width: 100%;
  }
}

/* ——— Subpage nav Order link (single CTA; homepage uses hero only) ——— */
.site-nav a.nav-order {
  color: var(--white);
  background: var(--red);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-nav a.nav-order:hover {
  background: var(--red-deep);
  color: var(--white);
  text-decoration: none;
}

.site-nav a[aria-current="page"] {
  color: var(--red);
}

.footer-nav {
  margin-bottom: 0.5rem !important;
}

.footer-nav a {
  font-weight: 600;
}

/* ——— Page hero (Contact / Careers / Apply) ——— */
.page-hero {
  padding: 2.75rem 0 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.page-hero .lede {
  max-width: 38rem;
}

.slogan--page {
  margin: 0.85rem 0 0.35rem;
  font-family: var(--marker);
  font-size: clamp(1.15rem, 3vw, 1.5rem);
  color: var(--black);
  letter-spacing: 0.04em;
}

.breadcrumb {
  margin: 0 0 0.75rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.breadcrumb a {
  font-weight: 600;
}

.panel-title {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.aside-lede {
  margin: -0.35rem 0 1.1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— Contact layout ——— */
.contact-section {
  padding-top: 2.5rem;
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2.75rem;
    align-items: start;
  }
}

.contact-form-panel,
.apply-wrap {
  background: var(--white);
}

.store-info-list {
  display: grid;
  gap: 0.85rem;
}

.store-info-card {
  padding: 1rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream);
}

.store-info-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.store-info-card address {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.4;
  margin-bottom: 0.35rem;
}

.store-info-card .phone {
  font-weight: 600;
  font-size: 0.95rem;
}

.store-info-card .hours {
  margin: 0.45rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

/* ——— Forms ——— */
.enzo-form {
  display: grid;
  gap: 1rem;
  max-width: 640px;
}

.enzo-form--wide {
  max-width: 720px;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .form-row--2 {
    grid-template-columns: 1fr 1fr;
  }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

.field span .optional,
.field .optional {
  font-weight: 500;
  color: var(--muted);
}

.field abbr {
  color: var(--red);
  text-decoration: none;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="file"],
.field select,
.field textarea {
  font: inherit;
  font-weight: 500;
  color: var(--ink);
  padding: 0.7rem 0.85rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18);
}

.field--choice,
.field--days {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.field--choice legend,
.field--days legend {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.choice {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  cursor: pointer;
}

.day-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  margin-top: 0.35rem;
  padding: 0.85rem 1.75rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.15s ease;
}

.btn-submit:hover {
  background: var(--red-deep);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-submit:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

.btn-submit--ghost {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
  margin-left: 0.5rem;
}

.btn-submit--ghost:hover {
  background: #fff5f5;
  color: var(--red-deep);
}

.form-note {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.4;
}

.form-success {
  padding: 1.5rem 0;
  max-width: 560px;
}

.form-success p {
  color: var(--muted);
  line-height: 1.5;
}

.form-success .btn-submit {
  margin-top: 1rem;
}

/* ——— Careers ——— */
.careers-section {
  background: var(--white);
}

.role-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .role-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.role-card {
  padding: 1.25rem 1.3rem;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  background: var(--cream);
}

.role-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
}

.role-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.45;
}

.careers-cta {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.careers-cta .btn-order {
  margin-top: 0;
  border-color: var(--black);
}

.apply-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
  .site-nav a.nav-order {
    margin: 0.5rem 1.25rem 0.85rem;
    text-align: center;
  }

  .btn-submit--ghost {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .form-success .btn-submit {
    display: inline-flex;
  }
}


/* ——— Contrast pass: break up white-on-white ——— */
body {
  background: var(--cream);
  color: var(--ink);
}

.site-header {
  background: var(--white);
  border-bottom: 3px solid var(--black);
}

.site-nav a {
  color: var(--black);
}

.order-section {
  background: var(--white);
  border-block: 4px solid var(--black);
}

.menu-section {
  background: var(--panel);
  border-bottom: 4px solid var(--red);
}

.also-section,
.also-menu,
.section.also {
  background: var(--charcoal);
  color: var(--white);
}

.also-section .lede,
.also-section .section-head p,
.also-menu .lede,
.also-menu p {
  color: #d0d0d0;
}

.locations-section,
#locations {
  background: var(--white);
  border-top: 4px solid var(--black);
}

.site-footer {
  background: var(--black) !important;
  color: var(--white) !important;
}

.site-footer a {
  color: #ffb3b0;
}

.shop-card,
.loc-card,
.role-card {
  background: var(--white) !important;
  border: 2.5px solid var(--black) !important;
  box-shadow: 4px 4px 0 var(--red) !important;
}

.shop-card:hover,
.loc-card:hover,
.role-card:hover {
  box-shadow: 6px 6px 0 var(--red) !important;
  transform: translate(-1px, -1px);
}

.menu-row,
.specialty-row,
.menu-card {
  background: var(--white) !important;
  border: 2px solid var(--black) !important;
  box-shadow: 3px 3px 0 rgba(225, 6, 0, 0.85);
}

.menu-row .desc,
.specialty-row .desc,
.menu-card .desc,
.desc {
  color: var(--muted) !important;
}

.outline-title {
  color: var(--white);
  -webkit-text-stroke: 3px var(--red);
  paint-order: stroke fill;
  text-shadow: 2px 2px 0 var(--black);
}

.btn-order,
button.btn-order,
a.btn-order,
.btn.btn-order {
  background: var(--red) !important;
  color: var(--white) !important;
  border: 3px solid var(--black) !important;
  box-shadow: 3px 3px 0 var(--black);
}

.btn-order:hover {
  background: var(--red-deep) !important;
}

.page-hero,
.subpage-hero {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  border-bottom: 4px solid var(--red);
}

.form-card,
.contact-form,
form.enzo-form,
.application-form {
  background: var(--white) !important;
  border: 2.5px solid var(--black) !important;
  box-shadow: 5px 5px 0 var(--red);
}

input, select, textarea {
  border: 2px solid var(--black) !important;
  background: #fff !important;
}

input:focus, select:focus, textarea:focus {
  outline: 3px solid var(--red) !important;
  border-color: var(--red) !important;
}

.store-hours-card,
.contact-store,
.hours-card {
  background: var(--panel) !important;
  border: 2px solid var(--black) !important;
}

.rule-red {
  border: none;
  height: 4px;
  background: var(--red);
}

.also-list li,
.also-strip span {
  border-color: rgba(255,255,255,0.35) !important;
  color: var(--white) !important;
}

/* ——— v5 multipage: intro, quick links, carousel, store locator ——— */
.intro-section {
  background: var(--white);
  border-bottom: 4px solid var(--black);
  padding-top: 2.75rem;
  padding-bottom: 2.5rem;
}

.intro-inner {
  max-width: 40rem;
  text-align: center;
  margin-inline: auto;
}

.intro-inner .rule-red {
  margin-inline: auto;
}

.intro-blurb {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

.quick-section {
  background: var(--panel);
  border-bottom: 4px solid var(--red);
}

.quick-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .quick-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 1.25rem 1.2rem;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--red);
  color: var(--ink);
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.quick-card:hover {
  text-decoration: none;
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--red);
}

.quick-label {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.quick-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
  text-align: center;
}

.quick-section .section-head,
.quick-label {
  text-align: center;
}

/* Testimonials carousel (Home only) */
.testimonials-section {
  background: var(--charcoal);
  color: var(--white);
  border-top: 4px solid var(--black);
}

.testimonials-section .lede {
  color: #d0d0d0;
}

.testimonial-carousel {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial-viewport {
  position: relative;
  min-height: 11rem;
}

.testimonial-track {
  position: relative;
}

.testimonial-slide {
  margin: 0;
  padding: 1.5rem 1.4rem;
  background: var(--panel);
  color: var(--ink);
  border: 2.5px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red);
  display: none;
}

.testimonial-slide.is-active {
  display: block;
  animation: testimonialIn 0.35s ease;
}

@keyframes testimonialIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide.is-active {
    animation: none;
  }
}

.testimonial-slide p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2.5px solid var(--black);
  background: var(--red);
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 3px 3px 0 var(--black);
  transition: background 0.15s ease, transform 0.15s ease;
}

.carousel-btn:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}

.carousel-btn:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
}

.carousel-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  cursor: pointer;
}

.carousel-dot.is-active {
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--white);
}

.carousel-dot:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}

/* Store locator page */
.stores-section {
  background: var(--panel);
}

.store-locator-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .store-locator-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .store-locator-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.store-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.2rem 1.35rem;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--red);
}

.store-card-name {
  margin: 0;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
}

.store-card address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.store-card .phone {
  font-weight: 700;
  font-size: 0.98rem;
}

.store-card .hours {
  margin: 0.15rem 0 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.btn-order--store {
  align-self: flex-start;
  min-width: 0;
  padding: 0.65rem 1.4rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.btn-order--page {
  margin-top: 1rem;
  min-width: 0;
  padding: 0.75rem 1.75rem;
  font-size: 1.1rem;
}

.menu-order-cta {
  margin: 0.5rem 0 0;
}

.menu-order-cta--also {
  margin-top: 1.25rem;
}

.page-hero .slogan--page {
  color: var(--white);
}

.page-hero .lede {
  color: #d8d8d8;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: #ffb3b0;
}

/* Fix also-list readability on charcoal strip */
.also-section .also-list li {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.35) !important;
  color: var(--white) !important;
}

.also-section .also-list strong {
  color: var(--white);
}

.also-section .also-hint {
  color: #c8c8c8;
}

.careers-section .also-hint {
  color: var(--muted);
}

.store-info-card {
  background: var(--panel) !important;
  border: 2px solid var(--black) !important;
  box-shadow: 3px 3px 0 var(--red);
}

/* ——— v5.1: full menu + site-wide centered / symmetrical ——— */

.outline-title--xs {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
}

/* Page heroes: always centered */
.page-hero .container {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero .rule-red {
  margin-inline: auto;
}

.page-hero .lede {
  max-width: 38rem;
  margin-inline: auto;
}

.page-hero .breadcrumb {
  width: 100%;
  text-align: center;
}

.page-hero .menu-order-cta {
  display: flex;
  justify-content: center;
}

/* Section heads default centered site-wide */
.section-head {
  text-align: center;
}

.section-head .rule-red,
.section-head--center .rule-red {
  margin-inline: auto;
}

.section-head .lede {
  max-width: 40rem;
  margin-inline: auto;
}

/* Header / nav: balanced desktop, centered mobile drawer */
.header-inner {
  justify-content: space-between;
}

@media (min-width: 641px) {
  .site-nav {
    gap: 1.75rem;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
  }

  .logo {
    margin-inline: auto;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .site-nav {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .site-nav a {
    text-align: center;
    width: 100%;
  }
}

/* Footer: more symmetrical */
.footer-inner {
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-meta {
  text-align: center !important;
  width: 100%;
}

@media (min-width: 720px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-meta {
    text-align: right !important;
    width: auto;
  }
}

/* Store cards: equal width, centered order button */
.store-card {
  text-align: center;
  align-items: center;
}

.store-card address,
.store-card .hours {
  text-align: center;
}

.btn-order--store {
  align-self: center;
}

/* Contact: centered form column + balanced store grid */
.contact-layout {
  display: grid;
  gap: 2.5rem;
  justify-items: center;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-inline: auto;
  }
}

.contact-form-panel,
.contact-info-panel {
  width: 100%;
  max-width: 720px;
}

.contact-form-panel {
  padding: 1.5rem 1.35rem 1.75rem;
  border-radius: var(--radius);
}

.contact-form-panel .panel-title,
.contact-info-panel .panel-title {
  text-align: center;
}

.contact-info-panel .aside-lede {
  text-align: center;
}

.store-info-list {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .store-info-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.enzo-form {
  margin-inline: auto;
  width: 100%;
}

.enzo-form .btn-submit,
.form-actions {
  justify-self: center;
  text-align: center;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form-actions--inline {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.form-note {
  text-align: center;
}

/* Careers centered CTA */
.careers-cta {
  align-items: center;
  text-align: center;
}

.careers-section .section-head {
  text-align: center;
}

/* Apply form: motif card + grouped blocks */
.apply-section {
  background: var(--panel);
}

.apply-wrap {
  max-width: 720px;
  margin-inline: auto;
}

.enzo-form.form-card,
.form-success.form-card {
  max-width: 720px;
  margin-inline: auto;
  padding: 1.75rem 1.5rem 2rem;
  border-radius: var(--radius);
  background: var(--white) !important;
  border: 2.5px solid var(--black) !important;
  box-shadow: 5px 5px 0 var(--red);
}

.form-block {
  display: grid;
  gap: 1rem;
  padding: 1.25rem 0 1.5rem;
  border-bottom: 2px solid var(--line);
  margin-bottom: 0.35rem;
}

.form-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0.5rem;
}

.form-block-head {
  text-align: center;
  margin-bottom: 0.35rem;
}

.form-block-head .rule-red {
  margin-inline: auto;
  width: 56px;
}

.form-success.form-card {
  text-align: center;
}

.form-success .rule-red {
  margin-inline: auto;
}

.form-success .lede {
  margin-inline: auto;
}

.day-grid {
  justify-content: center;
}

.field--choice {
  text-align: center;
}

.field--choice legend,
.field--days legend {
  text-align: center;
  width: 100%;
}

.field--choice .choice {
  margin-right: 0.65rem;
  margin-left: 0.65rem;
}

/* Menu jump nav */
.menu-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  padding: 1rem 0 0.25rem;
}

.menu-jump a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 999px;
  box-shadow: 2px 2px 0 var(--red);
  text-decoration: none;
}

.menu-jump a:hover {
  background: #fff5f5;
  text-decoration: none;
  color: var(--red-deep);
}

/* Menu category sections */
.menu-cat {
  background: var(--panel);
  border-bottom: 3px solid var(--black);
}

.menu-cat--alt {
  background: var(--cream);
}

.menu-cat--dark {
  background: var(--charcoal);
  color: var(--white);
}

.menu-cat .specialty-board {
  margin-top: 0.25rem;
}

.specialty-board--compact {
  max-width: 820px;
  margin-inline: auto;
}

.menu-item-card .specialty-thumb--empty,
.specialty-thumb--empty {
  display: inline-block;
  background: linear-gradient(135deg, #eee, #ddd);
}

.menu-footer-cta {
  background: var(--charcoal);
  text-align: center;
  border-top: 4px solid var(--red);
}

.menu-footer-cta .menu-order-cta {
  display: flex;
  justify-content: center;
  margin: 0;
}

/* BYO — menu-motif tiles (sizes → crust → toppings); no pills */
.byo-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 920px;
  margin-inline: auto;
}

.byo-card {
  padding: 1.35rem 1.4rem 1.5rem;
  background: var(--white);
  border: 2.5px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--red);
  text-align: center;
}

.byo-card--sizes {
  /* match other byo-cards */
}

.byo-label {
  margin: 0 0 1rem;
  display: inline-block;
}

.byo-tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
  text-align: center;
  justify-items: center;
}

@media (min-width: 560px) {
  .byo-tiles--cols {
    grid-template-columns: 1fr 1fr;
  }
  .byo-tiles--sizes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .byo-tiles--sizes {
    grid-template-columns: repeat(4, 1fr);
  }
}

.byo-tiles li {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: 10px;
  box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.85);
  text-align: center;
}

.byo-tiles li::before {
  display: none;
}

.byo-tiles--sizes li {
  text-align: center;
  padding-left: 0.9rem;
  font-family: var(--display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  background: var(--white);
}

.byo-tiles--sizes li::before {
  display: none;
}

.byo-note {
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  text-align: center;
  padding: 0.65rem 0.85rem;
  border-top: 3px solid var(--red);
}

/* legacy class hooks */
.byo-grid { display: contents; }
.byo-list { display: contents; }

/* Kill leftover “Also on the menu” UI if present */
.also-section,
.also-menu,
.section.also,
.also-strip {
  display: none !important;
}

/* Forms: thicker borders + red focus already; ensure submit matches Order */
.enzo-form .btn-order {
  border-color: var(--black);
}

@media (max-width: 560px) {
  .enzo-form.form-card,
  .form-success.form-card,
  .contact-form-panel {
    padding-inline: 1.1rem;
  }

  .menu-jump {
    gap: 0.35rem;
  }

  .menu-jump a {
    font-size: 0.75rem;
    padding: 0.35rem 0.7rem;
  }
}


/* Motif card on contact panel (class on wrapper, not only form) */
.contact-form-panel.form-card,
.form-card:not(form):not(.form-success) {
  background: var(--white) !important;
  border: 2.5px solid var(--black) !important;
  box-shadow: 5px 5px 0 var(--red);
  border-radius: var(--radius);
}





/* Small 10" cell with GF / Cauliflower mini boxes underneath */
.byo-tiles--sizes > .byo-size-with-extras {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-transform: none;
  font-family: inherit;
  letter-spacing: normal;
}

.byo-size-with-extras .byo-size-label {
  display: block;
  padding: 0.7rem 0.9rem;
  font-family: var(--display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 10px;
  box-shadow: 2px 2px 0 rgba(10, 10, 10, 0.85);
  text-align: center;
}

.byo-tiles--size-extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.byo-tiles--size-extras li {
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 0.35rem 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.25;
  font-family: var(--display);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 1.5px 1.5px 0 rgba(10, 10, 10, 0.85);
  text-align: center !important;
}

/* Menu text centered — all menu page copy */
body.page-menu #main,
body.page-menu .page-hero,
body.page-menu .menu-jump,
body.page-menu .menu-cat,
body.page-menu .menu-footer-cta {
  text-align: center;
}

.menu-cat .section-head,
.menu-cat .lede,
.page-hero,
.menu-jump,
.menu-order-cta,
.menu-footer-cta {
  text-align: center;
}

.menu-item-card .specialty-body,
.specialty-row .specialty-body,
.menu-item-card h3,
.specialty-row h3,
.menu-item-desc,
.specialty-body p {
  text-align: center;
}

.menu-item-desc strong {
  font-weight: 800;
  color: var(--black);
}

.byo-stack,
.byo-card,
.byo-label,
.byo-tiles,
.byo-tiles li,
.byo-note {
  text-align: center !important;
}


.store-card .hours-list,
.hours-list {
  list-style: none;
  margin: 0.35rem 0 0.85rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  text-align: center;
}

.store-card .hours-list li,
.hours-list li {
  margin: 0;
  padding: 0;
  line-height: 1.35;
  font-size: 0.9rem;
  color: var(--muted);
}


/* ============================================================
   v6 futuristic / cinematic pass — keep brand, lift polish
   ============================================================ */

html {
  color-scheme: light;
}

body {
  background:
    radial-gradient(1200px 600px at 12% -10%, rgba(225, 6, 0, 0.07), transparent 55%),
    radial-gradient(900px 500px at 100% 8%, rgba(225, 6, 0, 0.05), transparent 50%),
    linear-gradient(180deg, #f4f1eb 0%, var(--cream) 40%, #ebe7e0 100%);
  background-attachment: fixed;
}

/* Sticky frosted header + slim neon edge */
.site-header {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  border-bottom: 1px solid rgba(225, 6, 0, 0.35) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.65) inset,
    0 8px 28px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(10, 10, 10, 0.04);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--red) 18%, #ff4d3a 50%, var(--red) 82%, transparent 100%);
  opacity: 0.9;
  pointer-events: none;
}

.site-header {
  position: sticky;
}

.logo img {
  filter:
    drop-shadow(2px 2px 0 #0a0a0a)
    drop-shadow(1px 1px 0 #0a0a0a)
    drop-shadow(0 0 10px rgba(225, 6, 0, 0.15));
  transition: transform var(--t-fast), filter var(--t-fast);
}

.logo:hover img {
  transform: scale(1.03);
  text-decoration: none;
}

.site-nav a {
  position: relative;
  transition: color var(--t-fast);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-fast);
  box-shadow: 0 0 8px var(--red-glow);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

@media (max-width: 640px) {
  .site-nav {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(225, 6, 0, 0.28);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  }
  .site-nav a::after {
    display: none;
  }
}

/* Hero — deeper cinematic scrim + subtle grid / scanline */
.hero {
  isolation: isolate;
}

.hero-media {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.hero-scrim {
  background:
    radial-gradient(ellipse 80% 60% at 50% 35%, rgba(225, 6, 0, 0.18), transparent 60%),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.62) 35%,
      rgba(7, 7, 10, 0.88) 78%,
      rgba(7, 7, 10, 0.95) 100%
    ) !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, #000 20%, transparent 75%);
  opacity: 0.55;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent 0,
    transparent 3px,
    rgba(0, 0, 0, 0.035) 3px,
    rgba(0, 0, 0, 0.035) 4px
  );
  opacity: 0.5;
  mix-blend-mode: multiply;
}

.hero-content {
  z-index: 2;
  gap: 1.1rem;
}

.hero-logo {
  filter:
    drop-shadow(2px 2px 0 #0a0a0a)
    drop-shadow(0 0 28px rgba(225, 6, 0, 0.35))
    drop-shadow(0 8px 24px rgba(0, 0, 0, 0.45));
}

.slogan {
  text-shadow:
    0 0 24px rgba(225, 6, 0, 0.35),
    0 2px 16px rgba(0, 0, 0, 0.55);
  letter-spacing: 0.06em;
}

.hero-sub {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

/* CTAs — glow + scale, keep hard black edge */
.btn-order,
button.btn-order,
a.btn-order,
.btn.btn-order {
  position: relative;
  overflow: hidden;
  border: 3px solid var(--black) !important;
  box-shadow:
    3px 3px 0 var(--black),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 0 28px var(--red-glow-soft) !important;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast), filter var(--t-fast) !important;
}

.btn-order::before,
a.btn-order::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease-out);
  pointer-events: none;
}

.btn-order:hover,
a.btn-order:hover {
  background: var(--red-hot) !important;
  transform: translateY(-2px) scale(1.03) !important;
  box-shadow:
    4px 4px 0 var(--black),
    0 0 36px var(--red-glow),
    0 12px 28px rgba(0, 0, 0, 0.35) !important;
  text-decoration: none;
  filter: brightness(1.05);
}

.btn-order:hover::before,
a.btn-order:hover::before {
  transform: translateX(120%);
}

.btn-submit {
  box-shadow:
    3px 3px 0 var(--black),
    0 0 20px var(--red-glow-soft);
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.btn-submit:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    4px 4px 0 var(--black),
    0 0 28px var(--red-glow);
}

/* Outline titles — sharper neon edge */
.outline-title {
  letter-spacing: 0.055em;
  text-shadow:
    2px 2px 0 var(--black),
    0 0 18px rgba(225, 6, 0, 0.28) !important;
}

@supports (-webkit-text-stroke: 2.5px red) {
  .outline-title {
    -webkit-text-stroke: 2.75px var(--red);
    text-shadow:
      2px 2px 0 var(--black),
      0 0 18px rgba(225, 6, 0, 0.28);
  }
}

.rule-red {
  height: 3px !important;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--red), #ff4d3a, var(--red), transparent) !important;
  box-shadow: 0 0 12px var(--red-glow);
  border-radius: 999px;
}

/* Intro / cream panels stay readable; soft mesh */
.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.88)),
    radial-gradient(600px 240px at 50% 0%, rgba(225, 6, 0, 0.06), transparent 70%) !important;
  border-bottom: 1px solid rgba(10, 10, 10, 0.12) !important;
  position: relative;
}

.intro-blurb {
  color: var(--muted);
}

/* Explore cards — glass + glow hover */
.quick-section {
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(225, 6, 0, 0.08), transparent 60%),
    var(--panel) !important;
  border-bottom: 1px solid rgba(225, 6, 0, 0.35) !important;
}

.quick-card {
  background: var(--glass) !important;
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  border: 2px solid rgba(10, 10, 10, 0.88) !important;
  box-shadow:
    4px 4px 0 var(--red),
    0 10px 28px rgba(0, 0, 0, 0.08) !important;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-fast), background var(--t-fast) !important;
}

.quick-card:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow:
    5px 5px 0 var(--red),
    0 0 28px var(--red-glow-soft),
    0 16px 36px rgba(0, 0, 0, 0.14) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-color: var(--black) !important;
}

.quick-card--order {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 244, 0.88)) !important;
  border-color: var(--red) !important;
}

.quick-label {
  letter-spacing: 0.06em;
}

/* Testimonials — darker cinematic band */
.testimonials-section {
  background:
    radial-gradient(800px 360px at 50% 0%, rgba(225, 6, 0, 0.18), transparent 55%),
    linear-gradient(180deg, #121218 0%, var(--charcoal) 55%, #0a0a0e 100%) !important;
  border-top: 1px solid rgba(225, 6, 0, 0.4) !important;
  border-bottom: 1px solid rgba(225, 6, 0, 0.25);
}

.testimonial-slide {
  background: rgba(243, 240, 235, 0.94) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(10, 10, 10, 0.9) !important;
  box-shadow:
    5px 5px 0 var(--red),
    0 0 32px rgba(225, 6, 0, 0.18) !important;
}

.carousel-btn {
  box-shadow:
    3px 3px 0 var(--black),
    0 0 18px var(--red-glow-soft) !important;
  transition: background var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}

.carousel-btn:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    3px 3px 0 var(--black),
    0 0 26px var(--red-glow) !important;
}

.carousel-dot.is-active {
  box-shadow: 0 0 0 2px var(--white), 0 0 12px var(--red-glow);
}

/* Page heroes */
.page-hero,
.subpage-hero {
  background:
    radial-gradient(900px 320px at 50% -20%, rgba(225, 6, 0, 0.28), transparent 55%),
    linear-gradient(180deg, #16161e 0%, var(--charcoal) 70%, #0c0c10 100%) !important;
  border-bottom: 2px solid rgba(225, 6, 0, 0.55) !important;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.45;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

/* Cards — glass / frosted with brand offset shadow */
.shop-card,
.loc-card,
.role-card,
.store-card,
.store-info-card {
  background: rgba(255, 255, 255, 0.86) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(10, 10, 10, 0.9) !important;
  box-shadow:
    4px 4px 0 var(--red),
    0 10px 28px rgba(0, 0, 0, 0.08) !important;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-fast) !important;
}

.shop-card:hover,
.loc-card:hover,
.role-card:hover,
.store-card:hover {
  transform: translateY(-3px) scale(1.015) !important;
  box-shadow:
    5px 5px 0 var(--red),
    0 0 24px var(--red-glow-soft),
    0 16px 36px rgba(0, 0, 0, 0.12) !important;
}

/* Specialty / menu item cards — tighter modern grid */
.specialty-board {
  gap: 1rem 1.25rem;
}

.specialty-row,
.menu-item-card,
.menu-row,
.menu-card {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(10, 10, 10, 0.88) !important;
  box-shadow:
    3px 3px 0 rgba(225, 6, 0, 0.9),
    0 8px 22px rgba(0, 0, 0, 0.06) !important;
  border-radius: var(--radius) !important;
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-fast), background var(--t-fast) !important;
}

.specialty-row:hover,
.menu-item-card:hover,
.menu-row:hover {
  border-color: var(--red) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  transform: translateY(-3px) scale(1.012);
  box-shadow:
    4px 4px 0 var(--red),
    0 0 22px var(--red-glow-soft),
    0 14px 30px rgba(0, 0, 0, 0.1) !important;
}

body.page-menu .specialty-row,
body.page-menu .menu-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.1rem 1rem 1.2rem;
  grid-template-columns: none;
}

body.page-menu .specialty-thumb,
body.page-menu .menu-item-card .specialty-thumb {
  width: 84px;
  height: 84px;
  border: 2.5px solid var(--red);
  box-shadow:
    0 0 0 3px rgba(225, 6, 0, 0.12),
    0 0 18px rgba(225, 6, 0, 0.22);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

body.page-menu .specialty-row:hover .specialty-thumb,
body.page-menu .menu-item-card:hover .specialty-thumb {
  transform: scale(1.06);
  box-shadow:
    0 0 0 3px rgba(225, 6, 0, 0.2),
    0 0 26px rgba(225, 6, 0, 0.4);
}

.specialty-thumb {
  border: 2.5px solid var(--red);
  box-shadow: 0 0 14px rgba(225, 6, 0, 0.18);
}

.menu-cat {
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(225, 6, 0, 0.05), transparent 60%),
    var(--panel) !important;
  border-bottom: 1px solid rgba(10, 10, 10, 0.14) !important;
}

.menu-cat--alt {
  background:
    radial-gradient(700px 240px at 20% 0%, rgba(225, 6, 0, 0.05), transparent 60%),
    var(--cream) !important;
}

.menu-cat--dark {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(225, 6, 0, 0.16), transparent 55%),
    linear-gradient(180deg, #14141a, var(--charcoal)) !important;
  border-bottom: 1px solid rgba(225, 6, 0, 0.35) !important;
}

.menu-footer-cta {
  background:
    radial-gradient(700px 260px at 50% 100%, rgba(225, 6, 0, 0.22), transparent 55%),
    linear-gradient(180deg, #121218, #0a0a0e) !important;
  border-top: 2px solid rgba(225, 6, 0, 0.5) !important;
}

/* BYO tiles — sleeker, still centered */
.byo-card {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(10, 10, 10, 0.9) !important;
  box-shadow:
    5px 5px 0 var(--red),
    0 12px 30px rgba(0, 0, 0, 0.08) !important;
  border-radius: calc(var(--radius) + 2px);
}

.byo-card--sizes {
  background: inherit !important;
}

.byo-tiles li,
.byo-size-with-extras .byo-size-label,
.byo-tiles--size-extras li {
  border-radius: var(--radius-sm) !important;
  border: 1.5px solid rgba(10, 10, 10, 0.88) !important;
  box-shadow:
    2px 2px 0 rgba(10, 10, 10, 0.85),
    0 0 0 1px rgba(225, 6, 0, 0.04) !important;
  transition: transform var(--t-fast), box-shadow var(--t-fast), border-color var(--t-fast);
}

.byo-tiles li:hover,
.byo-size-with-extras .byo-size-label:hover {
  transform: translateY(-1px);
  border-color: var(--red) !important;
  box-shadow:
    2px 2px 0 var(--red),
    0 0 14px var(--red-glow-soft) !important;
}

.byo-tiles--size-extras li {
  background: rgba(255, 255, 255, 0.92) !important;
  font-size: 0.66rem;
}

.byo-note {
  border-top: 2px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--red), transparent) 1;
  background: rgba(225, 6, 0, 0.04);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* Forms */
.enzo-form.form-card,
.form-success.form-card,
.contact-form-panel.form-card,
.form-card:not(form):not(.form-success),
form.enzo-form,
.application-form {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgba(10, 10, 10, 0.9) !important;
  box-shadow:
    5px 5px 0 var(--red),
    0 14px 36px rgba(0, 0, 0, 0.1) !important;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="file"],
.field select,
.field textarea,
input, select, textarea {
  border-radius: var(--radius-sm) !important;
  transition: border-color var(--t-fast), box-shadow var(--t-fast) !important;
}

input:focus, select:focus, textarea:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.2), 0 0 18px var(--red-glow-soft) !important;
}

/* Stores section */
.stores-section,
.apply-section {
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(225, 6, 0, 0.06), transparent 60%),
    var(--panel) !important;
}

.careers-section {
  background:
    radial-gradient(700px 280px at 30% 0%, rgba(225, 6, 0, 0.05), transparent 55%),
    var(--cream) !important;
}

/* Footer — darker futuristic band */
.site-footer {
  background:
    radial-gradient(900px 280px at 50% 0%, rgba(225, 6, 0, 0.2), transparent 50%),
    linear-gradient(180deg, #101016 0%, #07070a 100%) !important;
  border-top: 2px solid rgba(225, 6, 0, 0.45);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.25);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 58, 0.7), transparent);
  pointer-events: none;
}

.footer-brand img {
  filter:
    drop-shadow(2px 2px 0 #0a0a0a)
    drop-shadow(0 0 16px rgba(225, 6, 0, 0.25));
}

.footer-copy {
  border-top: 1px solid rgba(225, 6, 0, 0.18);
  color: rgba(255, 255, 255, 0.42);
}

.site-footer a {
  transition: color var(--t-fast), text-shadow var(--t-fast);
}

.site-footer a:hover {
  color: #fff !important;
  text-shadow: 0 0 12px var(--red-glow);
  text-decoration: none;
}

/* Order section / misc panels */
.order-section {
  border-block: 1px solid rgba(10, 10, 10, 0.12) !important;
}

.menu-section {
  border-bottom: 2px solid rgba(225, 6, 0, 0.4) !important;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .btn-order::before,
  a.btn-order::before,
  .hero::before,
  .hero::after,
  .page-hero::before {
    display: none !important;
  }

  .btn-order:hover,
  a.btn-order:hover,
  .quick-card:hover,
  .shop-card:hover,
  .store-card:hover,
  .specialty-row:hover,
  .menu-item-card:hover {
    transform: none !important;
  }
}


/* ——— v6.1 cinematic boost ——— */
.site-header {
  background: rgba(252, 251, 248, 0.72) !important;
  backdrop-filter: blur(18px) saturate(1.45);
  -webkit-backdrop-filter: blur(18px) saturate(1.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.75) inset,
    0 10px 36px rgba(0, 0, 0, 0.1),
    0 0 24px rgba(225, 6, 0, 0.08) !important;
}

.hero-scrim {
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(225, 6, 0, 0.28), transparent 58%),
    linear-gradient(
      185deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.68) 38%,
      rgba(5, 5, 8, 0.9) 76%,
      rgba(5, 5, 8, 0.96) 100%
    ) !important;
}

.hero::before {
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
}

.btn-order,
button.btn-order,
a.btn-order {
  box-shadow:
    3px 3px 0 var(--black),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset,
    0 0 40px rgba(225, 6, 0, 0.55) !important;
}

.quick-card {
  background: linear-gradient(165deg, rgba(255,255,255,0.88), rgba(255,255,255,0.7)) !important;
}

.testimonials-section .outline-title {
  filter: drop-shadow(0 0 16px rgba(225, 6, 0, 0.35));
}

.page-hero .outline-title {
  filter: drop-shadow(0 0 18px rgba(225, 6, 0, 0.4));
}

.specialty-thumb,
body.page-menu .specialty-thumb {
  border-color: var(--red) !important;
}

.stores-section .store-card .btn-order--store {
  box-shadow:
    3px 3px 0 var(--black),
    0 0 22px rgba(225, 6, 0, 0.35) !important;
}



/* ============================================================
   v7 AMP — premium 2025 brand language (hard transform)
   Near-black / cream / electric red. Glass, glow, big type.
   ============================================================ */

:root {
  --red: #e10600;
  --red-deep: #b30500;
  --red-hot: #ff2a14;
  --red-glow: rgba(225, 6, 0, 0.55);
  --red-glow-soft: rgba(225, 6, 0, 0.28);
  --black: #070708;
  --ink: #101014;
  --muted: #4a4a52;
  --line: rgba(16, 16, 20, 0.12);
  --white: #ffffff;
  --cream: #f3efe7;
  --panel: #ebe6dc;
  --charcoal: #0c0c0f;
  --charcoal-2: #14141a;
  --glass: rgba(255, 255, 255, 0.55);
  --glass-dark: rgba(12, 12, 16, 0.72);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Archivo Black", Impact, sans-serif;
}

/* ——— Page canvas ——— */
html {
  color-scheme: light;
}

body {
  background:
    radial-gradient(1100px 520px at 8% -8%, rgba(225, 6, 0, 0.12), transparent 55%),
    radial-gradient(900px 480px at 100% 0%, rgba(225, 6, 0, 0.07), transparent 50%),
    linear-gradient(180deg, #0c0c0f 0px, #0c0c0f 72px, #f3efe7 72px, #ebe6dc 100%) !important;
  color: var(--ink);
}

/* Fade-up reveals */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ——— Floating glass header pill ——— */
.site-header {
  position: sticky !important;
  top: 0.65rem !important;
  z-index: 50 !important;
  width: min(100% - 1.25rem, calc(var(--max) + 2rem));
  margin: 0.65rem auto 0 !important;
  background: rgba(12, 12, 16, 0.72) !important;
  backdrop-filter: blur(22px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(22px) saturate(1.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 999px !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 16px 40px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(225, 6, 0, 0.18),
    0 0 40px rgba(225, 6, 0, 0.12) !important;
  overflow: visible !important;
}

.site-header::after {
  display: none !important;
}

.header-inner {
  min-height: 58px !important;
  width: min(100% - 1.25rem, var(--max)) !important;
  gap: 0.75rem !important;
}

.logo img {
  width: 108px !important;
  filter:
    drop-shadow(0 0 14px rgba(225, 6, 0, 0.4))
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45)) !important;
}

.site-nav {
  gap: 0.35rem 1.1rem !important;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82) !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  padding: 0.35rem 0.15rem !important;
}

.site-nav a::after {
  bottom: -4px !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--red), transparent) !important;
  box-shadow: 0 0 10px var(--red-glow) !important;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff !important;
}

.site-nav a.nav-order {
  color: #fff !important;
  background: linear-gradient(135deg, var(--red-hot), var(--red-deep)) !important;
  padding: 0.55rem 1.05rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.4),
    0 0 28px rgba(225, 6, 0, 0.55),
    0 8px 20px rgba(0, 0, 0, 0.35) !important;
  letter-spacing: 0.1em !important;
  margin-left: 0.35rem !important;
}

.site-nav a.nav-order::after {
  display: none !important;
}

.site-nav a.nav-order:hover {
  background: linear-gradient(135deg, #ff3d28, #c90500) !important;
  transform: translateY(-1px);
  color: #fff !important;
  filter: brightness(1.06);
}

.nav-toggle span {
  background: #fff !important;
}

@media (max-width: 640px) {
  .site-header {
    top: 0.4rem !important;
    border-radius: 22px !important;
    width: min(100% - 0.85rem, 100%) !important;
  }
  .site-nav {
    top: calc(100% + 0.35rem) !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 18px !important;
    background: rgba(12, 12, 16, 0.96) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5) !important;
    padding: 0.65rem !important;
  }
  .site-nav a {
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: 12px !important;
  }
  .site-nav a.nav-order {
    margin: 0.35rem 0.5rem 0.5rem !important;
    text-align: center !important;
    width: auto !important;
  }
}

/* ——— Hero: cinematic full-bleed ——— */
.hero {
  min-height: clamp(520px, 88vh, 780px) !important;
  margin-top: -4.5rem;
  padding-top: 4.5rem;
  isolation: isolate;
}

.hero-media {
  transform: scale(1.06) !important;
  filter: saturate(1.12) contrast(1.08) brightness(0.82) !important;
}

.hero-scrim {
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(225, 6, 0, 0.38), transparent 62%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(7, 7, 8, 0.95), transparent 55%),
    linear-gradient(
      185deg,
      rgba(7, 7, 8, 0.55) 0%,
      rgba(7, 7, 8, 0.45) 28%,
      rgba(7, 7, 8, 0.72) 62%,
      rgba(7, 7, 8, 0.96) 100%
    ) !important;
}

/* Animated mesh + noise (CSS only) */
.hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  opacity: 0.85 !important;
  background-image:
    linear-gradient(rgba(225, 6, 0, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(225, 6, 0, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(255, 42, 20, 0.18), transparent 28%),
    radial-gradient(circle at 80% 60%, rgba(225, 6, 0, 0.14), transparent 32%) !important;
  background-size: 64px 64px, 64px 64px, 100% 100%, 100% 100% !important;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 15%, transparent 78%) !important;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 15%, transparent 78%) !important;
  animation: heroMesh 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  opacity: 0.35 !important;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

@keyframes heroMesh {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, -12px, 0) scale(1.04); }
}

.hero-content {
  z-index: 2 !important;
  gap: 1.25rem !important;
  max-width: 42rem;
  padding: 2rem 1.25rem !important;
}

.hero-logo {
  width: clamp(160px, 28vw, 240px) !important;
  filter:
    drop-shadow(0 0 28px rgba(225, 6, 0, 0.45))
    drop-shadow(0 12px 32px rgba(0, 0, 0, 0.55)) !important;
}

.slogan {
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 7vw, 3.75rem) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  text-shadow:
    0 0 40px rgba(225, 6, 0, 0.55),
    0 4px 24px rgba(0, 0, 0, 0.65) !important;
  margin: 0.15rem 0 0.35rem !important;
}

.hero-sub {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  padding: 0.45rem 1rem !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.15);
}

/* ——— Buttons: neon pills ——— */
.btn-order,
button.btn-order,
a.btn-order,
.btn.btn-order,
.btn-submit {
  position: relative !important;
  overflow: hidden !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem;
  font-family: var(--font) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  background: linear-gradient(135deg, var(--red-hot) 0%, var(--red) 45%, var(--red-deep) 100%) !important;
  color: #fff !important;
  padding: 0.95rem 1.85rem !important;
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.35),
    0 0 36px rgba(225, 6, 0, 0.55),
    0 14px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.25) inset !important;
  text-decoration: none !important;
  transition: transform 0.22s cubic-bezier(0.22,1,0.36,1), box-shadow 0.22s ease, filter 0.22s ease !important;
}

.btn-order::before,
a.btn-order::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,0.28) 48%, transparent 68%) !important;
  transform: translateX(-130%) !important;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1) !important;
}

.btn-order:hover,
a.btn-order:hover,
.btn-submit:hover {
  transform: translateY(-3px) scale(1.03) !important;
  filter: brightness(1.08) !important;
  box-shadow:
    0 0 0 1px rgba(255, 80, 60, 0.5),
    0 0 48px rgba(225, 6, 0, 0.7),
    0 18px 40px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.3) inset !important;
  text-decoration: none !important;
  color: #fff !important;
}

.btn-order:hover::before,
a.btn-order:hover::before {
  transform: translateX(130%) !important;
}

.btn-order--page,
.btn-order--store {
  padding: 0.85rem 1.55rem !important;
  font-size: 0.74rem !important;
}

.btn-submit--ghost {
  background: transparent !important;
  color: var(--ink) !important;
  border: 1px solid rgba(16, 16, 20, 0.25) !important;
  box-shadow: none !important;
}
.btn-submit--ghost:hover {
  background: rgba(16, 16, 20, 0.06) !important;
  color: var(--ink) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

/* ——— Typography hierarchy ——— */
.outline-title {
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: clamp(2rem, 5.5vw, 3.15rem) !important;
  letter-spacing: -0.035em !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  -webkit-text-stroke: 0 !important;
  paint-order: normal !important;
  text-shadow: none !important;
  filter: none !important;
  line-height: 0.95 !important;
  position: relative;
}

.outline-title--lg {
  font-size: clamp(2.35rem, 6.5vw, 3.75rem) !important;
}
.outline-title--sm {
  font-size: clamp(1.55rem, 4vw, 2.25rem) !important;
}
.outline-title--xs {
  font-size: clamp(1.15rem, 3vw, 1.45rem) !important;
  letter-spacing: -0.02em !important;
}

.menu-cat--dark .outline-title,
.testimonials-section .outline-title,
.page-hero .outline-title {
  color: #fff !important;
  text-shadow: 0 0 32px rgba(225, 6, 0, 0.35) !important;
}

.rule-red {
  height: 3px !important;
  width: 72px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, var(--red-hot), var(--red), transparent) !important;
  box-shadow: 0 0 18px var(--red-glow) !important;
  margin-block: 0.85rem 1.1rem !important;
}

.lede {
  font-size: 1.08rem !important;
  line-height: 1.65 !important;
  color: var(--muted) !important;
  letter-spacing: -0.01em !important;
}

.page-hero .lede,
.testimonials-section .lede {
  color: rgba(255, 255, 255, 0.72) !important;
}

/* ——— Sections ——— */
.intro-section {
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(225, 6, 0, 0.08), transparent 65%),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 100%) !important;
  border-bottom: 1px solid rgba(16, 16, 20, 0.08) !important;
  padding-block: 3.5rem !important;
}

.intro-blurb {
  font-size: 1.15rem !important;
  max-width: 38rem;
  margin-inline: auto;
}

.quick-section {
  background:
    radial-gradient(900px 360px at 15% -10%, rgba(225, 6, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #121218 0%, #0c0c0f 100%) !important;
  border-bottom: 0 !important;
  padding-block: 3.75rem !important;
  color: #fff;
}

.quick-section .outline-title {
  color: #fff !important;
  text-shadow: 0 0 28px rgba(225, 6, 0, 0.4) !important;
}

.quick-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.1rem !important;
  counter-reset: explore;
}

@media (min-width: 900px) {
  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
  }
}

/* Glass cards with gradient border trick */
.quick-card {
  counter-increment: explore;
  position: relative !important;
  isolation: isolate;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  gap: 0.55rem !important;
  min-height: 168px !important;
  padding: 1.35rem 1.25rem 1.3rem !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 18px !important;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03)) !important;
  backdrop-filter: blur(18px) saturate(1.35) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.35) !important;
  border: 1px solid transparent !important;
  background-clip: padding-box !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 18px 40px rgba(0, 0, 0, 0.35) !important;
  overflow: hidden !important;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease, border-color 0.2s ease !important;
}

.quick-card::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  padding: 1px !important;
  background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(225,6,0,0.55), rgba(255,255,255,0.08)) !important;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none !important;
  z-index: 0;
}

.quick-card::after {
  content: counter(explore, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  z-index: 1;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.quick-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 0 36px rgba(225, 6, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.45) !important;
  text-decoration: none !important;
  color: #fff !important;
}

.quick-card:hover::after {
  color: rgba(255, 80, 60, 0.85);
  text-shadow: 0 0 18px rgba(225, 6, 0, 0.65);
}

.quick-card--order {
  background:
    linear-gradient(155deg, rgba(225, 6, 0, 0.35), rgba(255,255,255,0.06) 55%, rgba(12,12,16,0.4)) !important;
}

.quick-label {
  position: relative;
  z-index: 1;
  font-family: var(--display) !important;
  font-weight: 800 !important;
  font-size: 1.35rem !important;
  letter-spacing: -0.03em !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

.quick-desc {
  position: relative;
  z-index: 1;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.68) !important;
  letter-spacing: 0.01em !important;
}

/* Testimonials */
.testimonials-section {
  background:
    radial-gradient(900px 420px at 50% -10%, rgba(225, 6, 0, 0.22), transparent 55%),
    linear-gradient(180deg, #101016 0%, #070708 100%) !important;
  padding-block: 4rem !important;
  border: 0 !important;
}

.testimonial-slide {
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 0 40px rgba(225, 6, 0, 0.12),
    0 20px 48px rgba(0, 0, 0, 0.35) !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.testimonial-slide p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.carousel-btn {
  background: linear-gradient(135deg, var(--red-hot), var(--red-deep)) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 999px !important;
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.45) !important;
  color: #fff !important;
}

.carousel-dot {
  background: rgba(255,255,255,0.25) !important;
}
.carousel-dot.is-active {
  background: var(--red) !important;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.35), 0 0 14px var(--red-glow) !important;
}

/* ——— Page heroes ——— */
.page-hero {
  margin-top: -3.5rem;
  padding: 6.5rem 0 2.75rem !important;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(225, 6, 0, 0.28), transparent 55%),
    linear-gradient(180deg, #0c0c0f 0%, #14141a 70%, #1a1a22 100%) !important;
  border-bottom: 1px solid rgba(225, 6, 0, 0.35) !important;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent 75%);
  pointer-events: none;
  opacity: 0.7;
}

.page-hero .breadcrumb,
.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.55) !important;
}
.page-hero .breadcrumb a:hover {
  color: #fff !important;
}

.slogan--page {
  color: rgba(255,255,255,0.85) !important;
}

/* ——— Menu: app-like product cards ——— */
.menu-cat {
  background:
    radial-gradient(800px 280px at 50% 0%, rgba(225, 6, 0, 0.05), transparent 60%),
    var(--panel) !important;
  border-bottom: 1px solid rgba(16, 16, 20, 0.08) !important;
  padding-block: 3rem !important;
}

.menu-cat--alt {
  background:
    radial-gradient(800px 280px at 50% 0%, rgba(225, 6, 0, 0.04), transparent 60%),
    var(--cream) !important;
}

.menu-cat--dark {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(225, 6, 0, 0.2), transparent 55%),
    linear-gradient(180deg, #121218, #0c0c0f) !important;
  color: #fff !important;
}

.specialty-board {
  display: grid !important;
  gap: 0.9rem !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
}

@media (min-width: 720px) {
  .specialty-board {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .specialty-board--compact {
    grid-template-columns: 1fr !important;
    max-width: 640px !important;
  }
}

.specialty-row,
.menu-item-card,
.specialty-row.menu-item-card {
  display: flex !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 1rem 1.1rem !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(16, 16, 20, 0.08) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 12px 28px rgba(0, 0, 0, 0.08) !important;
  text-align: left !important;
  transition: transform 0.25s cubic-bezier(0.22,1,0.36,1), box-shadow 0.25s ease, border-color 0.2s ease !important;
  position: relative;
  overflow: hidden;
}

.specialty-row::before,
.menu-item-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(225,6,0,0.35), rgba(255,255,255,0.15), rgba(16,16,20,0.08));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.specialty-row:hover,
.menu-item-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 0 28px rgba(225, 6, 0, 0.18),
    0 18px 40px rgba(0, 0, 0, 0.14) !important;
  border-color: rgba(225, 6, 0, 0.25) !important;
}

.specialty-row:hover::before,
.menu-item-card:hover::before {
  opacity: 1;
}

.menu-cat--dark .specialty-row,
.menu-cat--dark .menu-item-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25) !important;
}

.menu-cat--dark .specialty-body h3,
.menu-cat--dark .menu-item-desc {
  color: rgba(255,255,255,0.92) !important;
}

.specialty-thumb,
body.page-menu .specialty-thumb {
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  border: 2px solid rgba(225, 6, 0, 0.85) !important;
  box-shadow:
    0 0 0 3px rgba(225, 6, 0, 0.15),
    0 8px 20px rgba(0, 0, 0, 0.18) !important;
  object-fit: cover !important;
  flex-shrink: 0;
}

.specialty-body {
  text-align: left !important;
  flex: 1;
  min-width: 0;
}

.specialty-body h3 {
  font-family: var(--display) !important;
  font-weight: 750 !important;
  font-size: 1.05rem !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
  margin: 0 0 0.25rem !important;
  color: var(--black) !important;
}

.menu-item-desc,
.specialty-body p {
  font-size: 0.9rem !important;
  color: var(--muted) !important;
  margin: 0 !important;
  line-height: 1.45 !important;
}

/* Centered menu text still — but cards themselves left-aligned internally;
   section heads stay centered; board centered via container */
body.page-menu .specialty-body,
body.page-menu .menu-item-desc {
  text-align: center !important;
}
body.page-menu .specialty-row,
body.page-menu .menu-item-card {
  flex-direction: column !important;
  text-align: center !important;
  align-items: center !important;
  padding: 1.25rem 1.15rem 1.35rem !important;
}

/* BYO cards */
.byo-card {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(16, 16, 20, 0.08) !important;
  border-radius: 18px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.75) inset,
    0 16px 36px rgba(0, 0, 0, 0.1) !important;
  position: relative;
}

.byo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(225,6,0,0.4), rgba(255,255,255,0.2), rgba(16,16,20,0.1));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.byo-tiles li,
.byo-tiles--size-extras li {
  border-radius: 999px !important;
  background: rgba(12, 12, 16, 0.04) !important;
  border: 1px solid rgba(16, 16, 20, 0.1) !important;
  box-shadow: none !important;
}

.byo-tiles--size-extras {
  margin-top: 0.5rem;
}

.menu-footer-cta {
  background:
    radial-gradient(700px 240px at 50% 0%, rgba(225, 6, 0, 0.25), transparent 60%),
    #070708 !important;
  border-top: 1px solid rgba(225, 6, 0, 0.4) !important;
  padding-block: 2.5rem !important;
}

/* ——— Stores ——— */
.stores-section,
.apply-section {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(225, 6, 0, 0.06), transparent 60%),
    var(--panel) !important;
}

.store-card,
.store-info-card {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(14px) !important;
  border: 1px solid rgba(16, 16, 20, 0.08) !important;
  border-radius: 18px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.7) inset,
    0 16px 36px rgba(0, 0, 0, 0.1) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease !important;
  position: relative;
}

.store-card:hover,
.store-info-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 0 28px rgba(225, 6, 0, 0.16),
    0 22px 44px rgba(0, 0, 0, 0.14) !important;
}

.store-card-name,
.store-info-card h3 {
  font-family: var(--display) !important;
  letter-spacing: -0.02em !important;
  text-transform: uppercase !important;
}

.hours-list,
.store-card .hours-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
}

/* ——— Forms ——— */
.enzo-form.form-card,
.form-success.form-card,
.contact-form-panel.form-card,
.form-card,
form.enzo-form {
  background: rgba(255, 255, 255, 0.82) !important;
  backdrop-filter: blur(18px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;
  border: 1px solid rgba(16, 16, 20, 0.1) !important;
  border-radius: 20px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.8) inset,
    0 0 0 1px rgba(225, 6, 0, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.12) !important;
}

.field input,
.field select,
.field textarea,
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field input[type="date"],
.field input[type="file"] {
  border-radius: 12px !important;
  border: 1px solid rgba(16, 16, 20, 0.14) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  padding: 0.85rem 1rem !important;
  font-family: var(--font) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none !important;
  border-color: rgba(225, 6, 0, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.18), 0 0 22px rgba(225, 6, 0, 0.15) !important;
}

.field > span,
.field legend {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--muted) !important;
}

.choice {
  border-radius: 999px !important;
  border: 1px solid rgba(16, 16, 20, 0.12) !important;
  background: rgba(255,255,255,0.7) !important;
  padding: 0.4rem 0.75rem !important;
}

.careers-section {
  background:
    radial-gradient(800px 300px at 40% 0%, rgba(225, 6, 0, 0.06), transparent 55%),
    var(--cream) !important;
}

.careers-cta,
.shop-card {
  border-radius: 18px !important;
  background: rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(16,16,20,0.08) !important;
  box-shadow: 0 16px 36px rgba(0,0,0,0.1) !important;
}

/* ——— Footer ——— */
.site-footer {
  background:
    radial-gradient(900px 320px at 50% 0%, rgba(225, 6, 0, 0.28), transparent 50%),
    linear-gradient(180deg, #101016 0%, #070708 100%) !important;
  border-top: 0 !important;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.35) !important;
  position: relative !important;
  padding-top: 3rem !important;
}

.site-footer::before {
  content: "" !important;
  position: absolute !important;
  left: 10% !important;
  right: 10% !important;
  top: 0 !important;
  height: 2px !important;
  background: linear-gradient(90deg, transparent, var(--red-hot), var(--red), var(--red-hot), transparent) !important;
  box-shadow: 0 0 24px rgba(225, 6, 0, 0.65) !important;
  pointer-events: none !important;
}

.footer-brand img {
  filter:
    drop-shadow(0 0 18px rgba(225, 6, 0, 0.35))
    drop-shadow(0 8px 16px rgba(0,0,0,0.4)) !important;
}

.slogan--sm {
  font-family: var(--display) !important;
  letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.75) !important;
}

.site-footer a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  letter-spacing: 0.04em !important;
  font-size: 0.85rem !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}
.site-footer a:hover {
  color: #fff !important;
  text-shadow: 0 0 14px var(--red-glow) !important;
}

.footer-copy {
  border-top: 1px solid rgba(225, 6, 0, 0.2) !important;
  color: rgba(255,255,255,0.38) !important;
  letter-spacing: 0.04em !important;
  font-size: 0.75rem !important;
}

/* Hide legacy menu jump if present */
.menu-jump { display: none !important; }

/* Hover lift utility */
.store-card,
.byo-card,
.careers-cta,
.shop-card,
.quick-card,
.specialty-row,
.menu-item-card {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after,
  .page-hero::before {
    animation: none !important;
  }
  .btn-order:hover,
  a.btn-order:hover,
  .quick-card:hover,
  .store-card:hover,
  .specialty-row:hover,
  .menu-item-card:hover {
    transform: none !important;
  }
}

/* Amp contrast fix — testimonials readable on dark glass */
.testimonials-section .lede {
  color: rgba(255, 255, 255, 0.78) !important;
}
.testimonial-slide,
.testimonial-slide.is-active {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
}
.testimonial-slide p,
.testimonial-slide.is-active p,
.testimonials-section .testimonial-slide p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.15rem !important;
  line-height: 1.55 !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}
.quick-card {
  border-color: rgba(225, 6, 0, 0.35) !important;
}


/* Review cards — attributed Google-style */
.testimonial-slide {
  text-align: center;
}
.testimonial-stars {
  display: block;
  margin: 0 0 0.75rem;
  color: #f5b301;
  letter-spacing: 0.12em;
  font-size: 1rem;
  line-height: 1;
}
.testimonial-slide p {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 38rem;
  margin: 0 auto;
}
.testimonial-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.testimonial-source {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255,255,255,0.4);
}


/* Footer slogan — match printed-menu / outline-title look */
.site-footer .slogan,
.site-footer .slogan--sm,
.slogan.slogan--sm {
  margin: 0.35rem 0 0 !important;
  font-family: var(--display) !important;
  font-weight: 400 !important;
  font-size: clamp(1.15rem, 3.2vw, 1.55rem) !important;
  line-height: 1.1 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  -webkit-text-stroke: 2.5px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow:
    2px 0 0 var(--red),
    -2px 0 0 var(--red),
    0 2px 0 var(--red),
    0 -2px 0 var(--red),
    1.5px 1.5px 0 var(--red),
    -1.5px -1.5px 0 var(--red),
    1.5px -1.5px 0 var(--red),
    -1.5px 1.5px 0 var(--red),
    3px 3px 0 #000 !important;
}

@supports (-webkit-text-stroke: 2.5px red) {
  .site-footer .slogan,
  .site-footer .slogan--sm,
  .slogan.slogan--sm {
    text-shadow: 3px 3px 0 #000 !important;
    -webkit-text-stroke: 2.75px var(--red) !important;
    color: #fff !important;
  }
}


/* === v8 cleanup: no cream, centered boxes, no explore numbers, modern forms === */
:root {
  --cream: #ffffff !important;
  --cream-rich: #ffffff !important;
  --panel: #ffffff !important;
  --bg: #ffffff !important;
}

body {
  background: #ffffff !important;
  color: #111 !important;
}

/* (removed v8 white section backgrounds — pages stay black) */

.page-hero,
.testimonials-section,
.site-footer {
  background: #0c0c0f !important;
}

/* Explore: no numbers */
.quick-grid {
  counter-reset: none !important;
}
.quick-card::before,
.quick-card::after {
  content: none !important;
  display: none !important;
}

.quick-card-v8-spacer { display: none !important; }

.quick-label,
.quick-desc {
  text-align: center !important;
  width: 100%;
}

/* All buttons / box texts centered */
.btn-order,
.btn-submit,
.btn-order--page,
.btn-order--store,
.quick-card,
.store-card,
.byo-card,
.byo-tiles,
.byo-tiles li,
.specialty-body,
.menu-item-card,
.form-card,
.enzo-form,
.field,
.panel-title,
.form-actions,
.careers-cta,
.menu-order-cta {
  text-align: center !important;
}

.form-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.65rem !important;
}

.field {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.field > span,
.field legend {
  width: 100% !important;
  text-align: center !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  font-size: 0.72rem !important;
  color: #111 !important;
  margin-bottom: 0.35rem !important;
}

.field input,
.field select,
.field textarea {
  width: 100% !important;
  text-align: center !important;
  border-radius: 12px !important;
  border: 2px solid #111 !important;
  background: #fff !important;
  box-shadow: none !important;
  min-height: 2.75rem !important;
  font-size: 1rem !important;
}

.field textarea {
  text-align: left !important; /* message body still readable left */
  min-height: 8rem !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(225, 6, 0, 0.25) !important;
}

.contact-form-panel,
.contact-info-panel,
.enzo-form.form-card,
.form-success.form-card,
.apply-wrap .form-card {
  background: #fff !important;
  border: 2.5px solid #111 !important;
  border-radius: 18px !important;
  box-shadow: 6px 6px 0 var(--red) !important;
  backdrop-filter: none !important;
}

.panel-title {
  font-family: var(--display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  margin: 0 0 1.25rem !important;
}

.form-note {
  text-align: center !important;
  color: #666 !important;
  font-size: 0.8rem !important;
}

.field--choice,
.field--days {
  align-items: center !important;
  text-align: center !important;
}

.field--choice .choice,
.field--days label {
  justify-content: center !important;
  text-align: center !important;
}

/* BYO / menu tiles stay white not cream */
.byo-tiles li,
.byo-tiles--sizes li,
.byo-size-with-extras .byo-size-label {
  background: #fff !important;
}

.byo-card--sizes {
  /* no special treatment — inherits .byo-card */
}

/* kill leftover cream gradients */
.quick-section,
body.page-menu #main {
  background-image: none !important;
}


/* === v9: all titles = white fill + red outline (menu motif); hero slogan keeps glow === */
.outline-title,
.outline-title--lg,
.outline-title--sm,
.outline-title--xs,
.panel-title,
.byo-label,
.store-card-name,
.careers-cta .outline-title,
.quick-section .outline-title,
.menu-cat .outline-title,
.page-hero .outline-title,
.testimonials-section .outline-title,
.menu-cat--dark .outline-title {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  -webkit-text-stroke: 2.5px var(--red) !important;
  paint-order: stroke fill !important;
  filter: none !important;
  text-shadow:
    2px 0 0 var(--red),
    -2px 0 0 var(--red),
    0 2px 0 var(--red),
    0 -2px 0 var(--red),
    1.5px 1.5px 0 var(--red),
    -1.5px -1.5px 0 var(--red),
    1.5px -1.5px 0 var(--red),
    -1.5px 1.5px 0 var(--red),
    3px 3px 0 #000 !important;
}

@supports (-webkit-text-stroke: 2.5px red) {
  .outline-title,
  .outline-title--lg,
  .outline-title--sm,
  .outline-title--xs,
  .panel-title,
  .byo-label,
  .store-card-name {
    text-shadow: 3px 3px 0 #000 !important;
    -webkit-text-stroke: 2.75px var(--red) !important;
    color: #fff !important;
  }
}

/* Hero top slogan: same outline motif + keep the red glow */
.hero .slogan,
.hero-copy .slogan,
section.hero .slogan,
.slogan:not(.slogan--sm):not(.slogan--menu) {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  -webkit-text-stroke: 2.75px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow:
    3px 3px 0 #000,
    0 0 40px rgba(225, 6, 0, 0.55),
    0 0 72px rgba(225, 6, 0, 0.35),
    0 4px 24px rgba(0, 0, 0, 0.65) !important;
}


/* Menu item names — same display font; thinner red outline for readability */
.specialty-body h3,
.menu-item-card h3,
.specialty-row h3,
.menu-item-card .specialty-body h3 {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  -webkit-text-stroke: 1px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow: 1.5px 1.5px 0 #000 !important;
  font-size: clamp(0.95rem, 2.2vw, 1.15rem) !important;
  line-height: 1.15 !important;
}

@supports (-webkit-text-stroke: 1px red) {
  .specialty-body h3,
  .menu-item-card h3,
  .specialty-row h3 {
    text-shadow: 1.5px 1.5px 0 #000 !important;
    -webkit-text-stroke: 1px var(--red) !important;
    color: #fff !important;
  }
}


/* === v11: Explore — restore futuristic square glass cards; centered; no numbers === */
.quick-section {
  background:
    radial-gradient(900px 360px at 15% -10%, rgba(225, 6, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #121218 0%, #0c0c0f 100%) !important;
  background-image:
    radial-gradient(900px 360px at 15% -10%, rgba(225, 6, 0, 0.14), transparent 55%),
    linear-gradient(180deg, #121218 0%, #0c0c0f 100%) !important;
  color: #fff !important;
  border-bottom: 0 !important;
  padding-block: 3.75rem !important;
}

.quick-section .outline-title {
  /* keep global white/red outline titles */
}

.quick-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.1rem !important;
  counter-reset: none !important;
}

@media (min-width: 900px) {
  .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.25rem !important;
  }
}

.quick-card,
a.quick-card {
  position: relative !important;
  isolation: isolate !important;
  counter-increment: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  width: 100% !important;
  padding: 1.35rem 1.15rem !important;
  text-align: center !important;
  text-decoration: none !important;
  color: #fff !important;
  border-radius: 18px !important;
  background:
    linear-gradient(165deg, #1a1a22 0%, #101016 55%, #0a0a0e 100%) !important;
  background-image:
    linear-gradient(165deg, #1a1a22 0%, #101016 55%, #0a0a0e 100%) !important;
  backdrop-filter: blur(18px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background-clip: border-box !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 18px 40px rgba(0, 0, 0, 0.55) !important;
  overflow: hidden !important;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s ease !important;
}

.quick-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  padding: 1px !important;
  background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(225,6,0,0.55), rgba(255,255,255,0.08)) !important;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  mask-composite: exclude !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

/* no numbers */
.quick-card::after,
.quick-card:hover::after {
  content: none !important;
  display: none !important;
}

.quick-card:hover,
a.quick-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18) inset,
    0 0 36px rgba(225, 6, 0, 0.35),
    0 24px 48px rgba(0, 0, 0, 0.45) !important;
  text-decoration: none !important;
  color: #fff !important;
}

.quick-card--order,
a.quick-card--order {
  background:
    linear-gradient(155deg, #3a0a0c 0%, #1a1014 45%, #0c0c10 100%) !important;
  background-image:
    linear-gradient(155deg, #3a0a0c 0%, #1a1014 45%, #0c0c10 100%) !important;
  border-color: rgba(225, 6, 0, 0.45) !important;
  box-shadow:
    0 1px 0 rgba(255, 80, 60, 0.15) inset,
    0 0 28px rgba(225, 6, 0, 0.22),
    0 18px 40px rgba(0, 0, 0, 0.55) !important;
}

.quick-label {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  font-family: var(--display) !important;
  font-weight: 400 !important;
  font-size: clamp(1.1rem, 2.4vw, 1.35rem) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  color: #fff !important;
  -webkit-text-stroke: 2px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow: 2px 2px 0 #000 !important;
  line-height: 1.15 !important;
}

.quick-desc {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  font-family: var(--font) !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  text-align: center !important;
  color: rgba(255, 255, 255, 0.72) !important;
  opacity: 1 !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}


/* === v11b: Explore MUST stay dark (kill white wash) === */
.quick-section .quick-card,
.quick-section a.quick-card {
  background: #121218 !important;
  background-image: linear-gradient(165deg, #1c1c26, #0e0e14) !important;
  color: #fff !important;
}
.quick-section .quick-card--order,
.quick-section a.quick-card--order {
  background: #1a0c0e !important;
  background-image: linear-gradient(155deg, #4a0d12, #140a0c 60%, #0a0a0e) !important;
  color: #fff !important;
}
.quick-section .quick-label { color: #fff !important; }
.quick-section .quick-desc { color: rgba(255,255,255,0.72) !important; }


/* Explore section background — solid black */
.quick-section {
  background: #000000 !important;
  background-image: none !important;
  color: #fff !important;
}


/* === v13: every PAGE/SECTION background black; Contact/Careers match amp === */
html,
body {
  background: #000 !important;
  color: #fff !important;
}

main,
#main,
.section,
.page-hero,
.subpage-hero,
.hero,
.quick-section,
.testimonials-section,
.stores-section,
.contact-section,
.apply-section,
.careers-section,
.menu-cat,
.menu-cat--alt,
.menu-cat--dark,
.menu-footer-cta,
.site-footer,
.intro-section {
  background: #000000 !important;
  background-color: #000000 !important;
  background-image: none !important;
}

/* Contact + Careers + Apply — dark glass panels (not old cream forms) */
.contact-section,
.apply-section,
.careers-section {
  padding-block: 2.75rem !important;
}

.contact-layout {
  display: grid !important;
  gap: 1.25rem !important;
  align-items: start !important;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.2fr 0.8fr !important;
  }
}

.contact-form-panel,
.contact-info-panel,
.enzo-form.form-card,
.form-card,
.form-success.form-card,
.apply-wrap .form-card,
.role-card,
.careers-cta {
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  background-image: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 18px 40px rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(16px) !important;
  color: #fff !important;
}

.contact-form-panel,
.contact-info-panel,
.enzo-form.form-card,
.apply-wrap .form-card {
  padding: 1.5rem 1.35rem 1.65rem !important;
}

.panel-title,
.role-card h3 {
  font-family: var(--display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  color: #fff !important;
  -webkit-text-stroke: 2px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow: 2px 2px 0 #000 !important;
  text-align: center !important;
}

.role-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}

@media (min-width: 700px) {
  .role-list {
    grid-template-columns: 1fr 1fr !important;
  }
}

.role-card {
  padding: 1.35rem 1.2rem !important;
  text-align: center !important;
}

.role-card p,
.contact-info-panel,
.aside-lede,
.form-note,
.careers-section .lede,
.page-hero .lede {
  color: rgba(255,255,255,0.72) !important;
  text-align: center !important;
}

.field > span,
.field legend {
  color: rgba(255,255,255,0.85) !important;
}

.field input,
.field select,
.field textarea {
  background: #0a0a0e !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  border-radius: 12px !important;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(225,6,0,0.28) !important;
}

.field option {
  background: #111 !important;
  color: #fff !important;
}

.careers-cta {
  margin-top: 1.75rem !important;
  padding: 1.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.75rem !important;
  text-align: center !important;
}

.contact-info-panel .store-mini,
.contact-info-panel .hours-card,
.store-hours-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 12px !important;
  color: #fff !important;
}


/* menu item outline — keep thin */
.menu-cat .specialty-body h3,
.menu-cat .menu-item-card h3,
.menu-cat .specialty-row h3 {
  -webkit-text-stroke: 1px var(--red) !important;
  text-shadow: 1.5px 1.5px 0 #000 !important;
}



/* BYO: sizes above title; crust/toppings/premium as dropdowns */
.byo-main-head {
  margin: 0.35rem 0 0.15rem !important;
}

.byo-dropdown {
  padding: 0 !important;
  overflow: hidden !important;
}

.byo-dropdown-summary {
  list-style: none !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  padding: 1.15rem 1.25rem !important;
  text-align: center !important;
  position: relative !important;
  user-select: none !important;
}

.byo-dropdown-summary::-webkit-details-marker {
  display: none !important;
}

.byo-dropdown-summary .byo-label {
  margin: 0 !important;
}

.byo-dropdown-chevron {
  width: 0.55rem !important;
  height: 0.55rem !important;
  border-right: 2px solid rgba(255,255,255,0.85) !important;
  border-bottom: 2px solid rgba(255,255,255,0.85) !important;
  transform: rotate(45deg) !important;
  transition: transform 0.2s ease !important;
  flex-shrink: 0 !important;
}

.byo-dropdown[open] .byo-dropdown-chevron {
  transform: rotate(-135deg) !important;
}

.byo-dropdown-body {
  padding: 0 1.25rem 1.35rem !important;
}

.byo-dropdown-body .byo-tiles {
  margin-top: 0.15rem !important;
}


/* BYO cards — dark glass (pre light-recolor); flat size tiles; dropdowns kept */
.byo-stack .byo-card,
.byo-stack .byo-card--sizes,
.byo-stack details.byo-card,
.byo-stack .byo-dropdown {
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  background-image: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 18px 40px rgba(0,0,0,0.45) !important;
  backdrop-filter: blur(16px) !important;
}

.byo-stack .byo-tiles li,
.byo-stack .byo-tiles--sizes li {
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-size: 0.95rem !important;
}

.byo-stack .byo-note {
  color: rgba(255,255,255,0.65) !important;
  border-top-color: var(--red) !important;
}

.byo-stack .byo-dropdown-chevron {
  border-right-color: rgba(255,255,255,0.85) !important;
  border-bottom-color: rgba(255,255,255,0.85) !important;
}

/* Contact / Careers / Apply panels stay dark glass on black pages */
.contact-form-panel,
.contact-info-panel,
.enzo-form.form-card,
.form-card,
.form-success.form-card,
.role-card,
.careers-cta,
.store-info-card {
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 18px 40px rgba(0,0,0,0.45) !important;
}

.store-info-card {
  padding: 1rem 1.1rem !important;
  margin-bottom: 0.75rem !important;
  text-align: center !important;
}
.store-info-card h3,
.store-info-card address,
.store-info-card .phone,
.store-info-card .hours {
  color: rgba(255,255,255,0.85) !important;
  text-align: center !important;
}
.store-info-card .hours {
  white-space: pre-line !important;
}


/* === Fix choice / days toggles (stop looking like broken iOS switches) === */
.field input[type="checkbox"],
.field input[type="radio"],
.enzo-form input[type="checkbox"],
.enzo-form input[type="radio"] {
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: 1.05rem !important;
  width: 1.05rem !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0.25rem !important;
  border: 2px solid rgba(255,255,255,0.45) !important;
  background: #0a0a0e !important;
  box-shadow: none !important;
  appearance: auto !important;
  -webkit-appearance: checkbox !important;
  flex-shrink: 0 !important;
  accent-color: var(--red) !important;
}

.enzo-form input[type="radio"] {
  -webkit-appearance: radio !important;
  border-radius: 50% !important;
}

.field--days,
.field--choice {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.field--days legend,
.field--choice legend {
  width: 100% !important;
  text-align: center !important;
  color: rgba(255,255,255,0.85) !important;
  margin-bottom: 0.65rem !important;
}

.day-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0.5rem !important;
  justify-items: stretch !important;
  width: 100% !important;
}

@media (min-width: 560px) {
  .day-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  }
}

.choice,
.field--days .choice,
.field--choice .choice,
.day-grid .choice {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.55rem 0.45rem !important;
  border-radius: 10px !important;
  border: 1px solid rgba(255,255,255,0.18) !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

.choice:has(input:checked),
.field--days .choice:has(input:checked),
.field--choice .choice:has(input:checked) {
  background: rgba(225, 6, 0, 0.28) !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 1px rgba(225, 6, 0, 0.35) !important;
}

.field--choice {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 0.5rem !important;
}

.field--choice .choice {
  width: auto !important;
  min-width: 5.5rem !important;
  padding: 0.55rem 1rem !important;
}


/* === Contact page HARD FIX — mirror Apply form === */
.page-contact,
.page-contact main,
.page-contact .contact-section,
.page-contact .page-hero {
  background: #000 !important;
}

.page-contact .apply-wrap {
  max-width: 760px !important;
  margin-inline: auto !important;
  width: 100% !important;
}

.page-contact #contactForm.form-card,
.page-contact .form-success.form-card {
  display: grid !important;
  gap: 1rem !important;
  width: 100% !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 1.5rem 1.25rem 1.75rem !important;
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  border: 1px solid rgba(255,255,255,0.14) !important;
  border-radius: 18px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45) !important;
  color: #fff !important;
  box-sizing: border-box !important;
}

.page-contact .form-block {
  display: grid !important;
  gap: 1rem !important;
  width: 100% !important;
}

.page-contact .form-block-head {
  text-align: center !important;
  margin-bottom: 0.25rem !important;
}

.page-contact .form-row {
  display: grid !important;
  gap: 1rem !important;
  width: 100% !important;
}

@media (min-width: 560px) {
  .page-contact .form-row--2 {
    grid-template-columns: 1fr 1fr !important;
  }
}

.page-contact .field {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.4rem !important;
  width: 100% !important;
  margin: 0 !important;
  color: #fff !important;
  text-align: left !important;
}

.page-contact .field > span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

.page-contact .field input[type="text"],
.page-contact .field input[type="tel"],
.page-contact .field input[type="email"],
.page-contact .field select,
.page-contact .field textarea {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 2.75rem !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0.7rem 0.85rem !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.22) !important;
  background: #0a0a0e !important;
  color: #fff !important;
  text-align: left !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  box-shadow: none !important;
  appearance: auto !important;
}

.page-contact .field textarea {
  min-height: 8rem !important;
  resize: vertical !important;
}

.page-contact .field select {
  color-scheme: dark;
}

.page-contact .field option {
  background: #111 !important;
  color: #fff !important;
}

.page-contact .form-actions {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin-top: 0.5rem !important;
}

.page-contact .form-note {
  color: rgba(255,255,255,0.65) !important;
  text-align: center !important;
}

.page-contact .contact-shops-head {
  margin-top: 2.5rem !important;
}

.page-contact .store-info-list.role-list {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1rem !important;
}

@media (min-width: 700px) {
  .page-contact .store-info-list.role-list {
    grid-template-columns: 1fr 1fr !important;
  }
}

.page-contact .store-info-card {
  text-align: center !important;
  padding: 1.25rem 1.1rem !important;
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 18px !important;
  color: #fff !important;
}

.page-contact .store-info-card h3 {
  margin: 0 0 0.5rem !important;
}

.page-contact .store-info-card address,
.page-contact .store-info-card .phone,
.page-contact .store-info-card .hours-list,
.page-contact .store-info-card .hours-list li {
  color: rgba(255,255,255,0.75) !important;
  text-align: center !important;
}

.page-contact .store-info-card .phone {
  display: inline-block !important;
  margin: 0.35rem 0 !important;
  color: #fff !important;
  font-weight: 700 !important;
}

.page-contact #contactSuccess[hidden] {
  display: none !important;
}


/* === Thin red outline on ALL boxes/cards + menu matches site boxes === */
.quick-card,
.store-card,
.role-card,
.store-info-card,
.byo-card,
.byo-dropdown,
.byo-card--sizes,
.form-card,
.enzo-form.form-card,
.form-success.form-card,
.contact-form-panel,
.careers-cta,
.specialty-row,
.menu-item-card,
.byo-tiles li,
.choice,
.day-grid .choice,
.btn-order,
.btn-submit,
.btn-order--page,
.btn-order--store {
  border: 1.5px solid var(--red) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 12px 28px rgba(0,0,0,0.35) !important;
}

/* Menu item cards — same dark glass language as Explore / forms */
.menu-cat .specialty-row,
.menu-cat .menu-item-card,
.specialty-board .specialty-row,
.specialty-board .menu-item-card {
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  background-image: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  border: 1.5px solid var(--red) !important;
  border-radius: 16px !important;
  color: #fff !important;
  padding: 0.85rem 0.9rem !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 14px 32px rgba(0,0,0,0.4) !important;
}

.menu-cat .specialty-row:hover,
.menu-cat .menu-item-card:hover {
  background: linear-gradient(165deg, #221018, #0c0c10) !important;
  border-color: #ff2a24 !important;
  box-shadow:
    0 0 0 1px rgba(225,6,0,0.25),
    0 0 24px rgba(225,6,0,0.2),
    0 16px 36px rgba(0,0,0,0.45) !important;
}

.menu-cat .specialty-body,
.menu-cat .specialty-body p,
.menu-cat .menu-item-desc {
  color: rgba(255,255,255,0.72) !important;
  text-align: center !important;
}

.menu-cat .specialty-thumb,
.menu-cat .menu-item-thumb {
  border: 2px solid var(--red) !important;
  box-shadow: 0 0 14px rgba(225,6,0,0.25) !important;
}

/* BYO tiles share thin red outline */
.byo-stack .byo-tiles li {
  border: 1.5px solid var(--red) !important;
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
}

.byo-stack .byo-card,
.byo-stack .byo-dropdown,
.byo-stack .byo-card--sizes {
  border: 1.5px solid var(--red) !important;
}

/* Store / role cards */
.store-card,
.role-card,
.store-info-card {
  border: 1.5px solid var(--red) !important;
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  color: #fff !important;
}

/* Form cards */
.form-card,
.enzo-form.form-card,
.page-contact #contactForm.form-card,
.page-apply .enzo-form.form-card {
  border: 1.5px solid var(--red) !important;
}

/* Order buttons keep red fill but thin red/white edge already; reinforce outline */
.btn-order,
a.btn-order,
.btn-submit {
  border: 1.5px solid var(--red) !important;
}

/* Choice chips */
.choice,
.day-grid .choice {
  border: 1.5px solid var(--red) !important;
  background: rgba(255,255,255,0.05) !important;
  color: #fff !important;
}


/* === Menu category collapsible folds === */
.menu-cat-fold {
  border: 1.5px solid var(--red) !important;
  border-radius: 18px !important;
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 14px 32px rgba(0,0,0,0.4) !important;
  overflow: hidden !important;
}

.menu-cat-fold-summary {
  list-style: none !important;
  cursor: pointer !important;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;
  gap: 0.75rem !important;
  padding: 1.1rem 1.15rem 1rem !important;
  user-select: none !important;
}

.menu-cat-fold-summary::-webkit-details-marker {
  display: none !important;
}

.menu-cat-fold-summary .section-head {
  margin: 0 !important;
  padding: 0 !important;
}

.menu-cat-fold-summary .section-head .outline-title {
  margin-bottom: 0.35rem !important;
}

.menu-cat-fold-summary .rule-red {
  margin: 0.35rem auto 0 !important;
}

.menu-cat-fold-chevron {
  width: 0.65rem !important;
  height: 0.65rem !important;
  border-right: 2.5px solid rgba(255,255,255,0.9) !important;
  border-bottom: 2.5px solid rgba(255,255,255,0.9) !important;
  transform: rotate(45deg) !important;
  transition: transform 0.2s ease !important;
  margin-right: 0.35rem !important;
  flex-shrink: 0 !important;
}

.menu-cat-fold[open] .menu-cat-fold-chevron {
  transform: rotate(-135deg) !important;
}

.menu-cat-fold-body {
  padding: 0 1rem 1.25rem !important;
}

.menu-cat-fold-body .specialty-board {
  margin-top: 0.25rem !important;
}

.menu-cat-fold-body .byo-stack {
  margin-top: 0.35rem !important;
}

/* Nested BYO dropdowns stay slightly inset inside the fold */
.menu-cat-fold .byo-card,
.menu-cat-fold .byo-dropdown {
  border: 1.5px solid var(--red) !important;
}


/* === Kill scroll-reveal hide === */
.reveal,
.reveal.is-in,
.menu-cat.reveal,
.byo-card.reveal,
.page-hero .container.reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* === BYO sizes: dark glass colors + nested GF/Cauli under Small === */
.byo-stack .byo-tiles--sizes > .byo-size-with-extras {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 0.45rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  text-transform: none !important;
  font-family: inherit !important;
  letter-spacing: normal !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
}

.byo-stack .byo-size-with-extras .byo-size-label {
  display: block !important;
  padding: 0.7rem 0.9rem !important;
  text-align: center !important;
  background: rgba(255,255,255,0.06) !important;
  color: #fff !important;
  border: 1.5px solid var(--red) !important;
  border-radius: 12px !important;
  box-shadow: none !important;
  font-family: var(--font) !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  font-size: 0.95rem !important;
}

.byo-stack .byo-tiles--size-extras {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0.35rem !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.byo-stack .byo-tiles--size-extras li {
  margin: 0 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.4rem 0.35rem !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  font-family: var(--font) !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1.5px solid var(--red) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  text-align: center !important;
}

.byo-stack .byo-tiles--sizes > li:not(.byo-size-with-extras) {
  border: 1.5px solid var(--red) !important;
}


/* === Menu folds: closed by default + tight vertical spacing === */
body.page-menu .menu-cat.section,
body.page-menu section.menu-cat,
body.page-menu .menu-cat,
body.page-menu .menu-cat--alt,
body.page-menu .menu-cat--dark {
  padding: 0 !important;
  padding-block: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin: 0 !important;
  margin-block: 0 !important;
  min-height: 0 !important;
}

body.page-menu #fullMenu {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  padding: 0.35rem 0 1.25rem !important;
}

body.page-menu #fullMenu > .menu-cat > .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  max-width: var(--max) !important;
}

body.page-menu .menu-cat-fold {
  margin: 0 !important;
}

body.page-menu .menu-cat-fold-summary {
  padding: 0.8rem 1rem !important;
}

body.page-menu .menu-cat-fold-body {
  padding: 0 0.85rem 0.95rem !important;
}


/* === Menu fold titles: one consistent weight (no mixed bold look) === */
body.page-menu .menu-cat-fold-summary .outline-title,
body.page-menu .menu-cat-fold-summary h2.outline-title,
body.page-menu .menu-cat-fold-summary .outline-title--sm,
body.page-menu .menu-cat .menu-cat-fold .outline-title,
body.page-menu .menu-cat--alt .menu-cat-fold .outline-title,
body.page-menu .menu-cat--dark .menu-cat-fold .outline-title {
  font-family: var(--display) !important;
  font-weight: 400 !important;
  font-style: normal !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  color: #fff !important;
  -webkit-text-stroke: 1.5px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow: 2px 2px 0 #000 !important;
  filter: none !important;
  font-size: clamp(1.15rem, 4.2vw, 1.55rem) !important;
  line-height: 1.15 !important;
  margin: 0 !important;
}

@supports (-webkit-text-stroke: 1.5px red) {
  body.page-menu .menu-cat-fold-summary .outline-title,
  body.page-menu .menu-cat-fold-summary h2.outline-title,
  body.page-menu .menu-cat-fold-summary .outline-title--sm,
  body.page-menu .menu-cat .menu-cat-fold .outline-title,
  body.page-menu .menu-cat--alt .menu-cat-fold .outline-title,
  body.page-menu .menu-cat--dark .menu-cat-fold .outline-title {
    -webkit-text-stroke: 1.5px var(--red) !important;
    text-shadow: 2px 2px 0 #000 !important;
    color: #fff !important;
  }
}




/* === Hero: bigger logo, no red glow; smaller Order Now === */
.hero-logo {
  width: clamp(300px, 62vw, 520px) !important;
  max-width: 92vw !important;
  height: auto !important;
  filter:
    drop-shadow(0 10px 28px rgba(0, 0, 0, 0.55))
    drop-shadow(2px 2px 0 rgba(0, 0, 0, 0.85)) !important;
}

.hero .btn-order,
.hero a.btn-order {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem) !important;
  padding: 0.78rem 1.85rem !important;
  letter-spacing: 0.05em !important;
  min-width: 0 !important;
  box-shadow:
    0 0 0 1px rgba(225, 6, 0, 0.25),
    0 8px 22px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.2) inset !important;
}


/* === Explore: no subtitles; ALL cards = previous Order Now explore card === */
.quick-section .quick-desc {
  display: none !important;
}

.quick-section .quick-card,
.quick-section a.quick-card,
.quick-section .quick-card--order,
.quick-section a.quick-card--order {
  background: #1a0c0e !important;
  background-image: linear-gradient(155deg, #4a0d12, #140a0c 60%, #0a0a0e) !important;
  color: #fff !important;
  border: 1px solid rgba(225, 6, 0, 0.45) !important;
  box-shadow:
    0 1px 0 rgba(255, 80, 60, 0.15) inset,
    0 0 28px rgba(225, 6, 0, 0.22),
    0 18px 40px rgba(0, 0, 0, 0.55) !important;
  gap: 0 !important;
  filter: none !important;
}

/* restore glass edge gradient ring (not bright sheen wash) */
.quick-section .quick-card::before,
.quick-section a.quick-card::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  border-radius: inherit !important;
  padding: 1px !important;
  background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(225,6,0,0.55), rgba(255,255,255,0.08)) !important;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  -webkit-mask-composite: xor !important;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0) !important;
  mask-composite: exclude !important;
  transform: none !important;
  transition: none !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 1 !important;
}

.quick-section .quick-card:hover,
.quick-section a.quick-card:hover {
  transform: translateY(-6px) scale(1.015) !important;
  filter: none !important;
  box-shadow:
    0 1px 0 rgba(255, 80, 60, 0.22) inset,
    0 0 40px rgba(225, 6, 0, 0.4),
    0 24px 48px rgba(0, 0, 0, 0.5) !important;
}

.quick-section .quick-card:hover::before,
.quick-section a.quick-card:hover::before {
  transform: none !important;
}

.quick-section .quick-label {
  color: #fff !important;
  font-family: var(--display) !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  -webkit-text-stroke: 2px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow: 2px 2px 0 #000 !important;
  position: relative !important;
  z-index: 1 !important;
  margin: 0 !important;
}


/* === Apply days: centered symmetric chips === */
.page-apply .field--days,
.page-apply .day-grid {
  text-align: center !important;
}

.page-apply .day-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5rem !important;
  width: 100% !important;
  max-width: 36rem !important;
  margin-inline: auto !important;
  grid-template-columns: none !important;
}

.page-apply .day-grid .choice {
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 4.35rem !important;
  padding: 0.55rem 0.75rem !important;
}

@media (min-width: 560px) {
  .page-apply .day-grid .choice {
    min-width: 4.6rem !important;
  }
}


/* === Social icon buttons (Facebook / Instagram / TikTok) === */
.socials {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.85rem !important;
  margin: 0.85rem 0 0 !important;
}

.socials .social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 2.65rem !important;
  height: 2.65rem !important;
  border-radius: 999px !important;
  border: 1.5px solid var(--red) !important;
  background: linear-gradient(165deg, #1a1a22, #0c0c10) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 8px 18px rgba(0,0,0,0.35) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.socials .social-link:hover {
  transform: translateY(-2px) scale(1.05) !important;
  background: linear-gradient(135deg, var(--red-hot), var(--red)) !important;
  box-shadow:
    0 0 0 1px rgba(225,6,0,0.35),
    0 0 22px rgba(225,6,0,0.45),
    0 10px 22px rgba(0,0,0,0.4) !important;
  color: #fff !important;
  text-decoration: none !important;
}

.socials .social-icon {
  width: 1.55rem !important;
  height: 1.55rem !important;
  display: block !important;
}


/* === Explore: larger type + wider rectangles (not smaller squares) === */
.quick-section .quick-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
}

@media (min-width: 900px) {
  .quick-section .quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 1.15rem !important;
  }
}

.quick-section .quick-card,
.quick-section a.quick-card {
  aspect-ratio: 1.45 / 1 !important; /* wider rectangle */
  min-height: 7.5rem !important;
  width: 100% !important;
  padding: 1.35rem 1.25rem !important;
}

@media (min-width: 900px) {
  .quick-section .quick-card,
  .quick-section a.quick-card {
    min-height: 8.5rem !important;
  }
}

.quick-section .quick-label {
  font-size: clamp(1.5rem, 3.8vw, 2.05rem) !important;
  letter-spacing: 0.02em !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
  max-width: 100% !important;
}

.quick-section .quick-card--order .quick-label,
.quick-section a.quick-card[href="stores.html"] .quick-label {
  font-size: clamp(1.3rem, 3.3vw, 1.8rem) !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
}


/* === Home hero background video === */
.hero {
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: #000 !important;
  overflow: hidden !important;
}

.hero-media {
  z-index: 0 !important;
  inset: 0 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: #000 !important;
  overflow: hidden !important;
  transform: none !important;
  filter: none !important;
}

.hero-video {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 104% !important;
  height: 104% !important;
  min-width: 104% !important;
  min-height: 104% !important;
  max-width: none !important;
  transform: translate(-50%, -50%) !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  pointer-events: none !important;
  z-index: 0 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background: #000 !important;
  /* kill browser video chrome / gray frame */
  -webkit-mask-image: none !important;
  clip-path: inset(0) !important;
  filter: saturate(1.08) contrast(1.05) brightness(0.92) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-video::-webkit-media-controls {
  display: none !important;
}

.hero-scrim {
  z-index: 1 !important;
  border: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  background:
    radial-gradient(ellipse 55% 50% at 50% 42%, rgba(225, 6, 0, 0.22), transparent 62%),
    linear-gradient(
      185deg,
      rgba(7, 7, 8, 0.35) 0%,
      rgba(7, 7, 8, 0.28) 28%,
      rgba(7, 7, 8, 0.55) 62%,
      rgba(7, 7, 8, 0.88) 100%
    ) !important;
}

.hero::before,
.hero::after {
  z-index: 1 !important;
  opacity: 0.18 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.hero-content {
  z-index: 3 !important;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none !important;
  }
  .hero-media {
    background:
      url("video/hero-poster.jpg") center / cover no-repeat,
      #000 !important;
  }
}


/* === Explore: long skinny Employee Portal bar === */
.quick-section .quick-portal {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  margin-top: 1rem !important;
  min-height: 3.35rem !important;
  padding: 0.85rem 1.25rem !important;
  text-decoration: none !important;
  border-radius: 14px !important;
  border: 1px solid rgba(225, 6, 0, 0.45) !important;
  background: #1a0c0e !important;
  background-image: linear-gradient(155deg, #4a0d12, #140a0c 60%, #0a0a0e) !important;
  box-shadow:
    0 1px 0 rgba(255, 80, 60, 0.15) inset,
    0 0 28px rgba(225, 6, 0, 0.22),
    0 14px 32px rgba(0, 0, 0, 0.45) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease !important;
}

.quick-section .quick-portal:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 1px 0 rgba(255, 80, 60, 0.22) inset,
    0 0 40px rgba(225, 6, 0, 0.4),
    0 18px 36px rgba(0, 0, 0, 0.5) !important;
  text-decoration: none !important;
}

.quick-section .quick-portal .quick-label {
  margin: 0 !important;
  font-size: clamp(1.25rem, 3.2vw, 1.7rem) !important;
  white-space: nowrap !important;
  color: #fff !important;
  font-family: var(--display) !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  -webkit-text-stroke: 1.5px var(--red) !important;
  paint-order: stroke fill !important;
  text-shadow: 2px 2px 0 #000 !important;
}


/* === Hero logo bigger (final) === */
.hero-logo {
  width: clamp(360px, 72vw, 620px) !important;
  max-width: 94vw !important;
}


/* === Contact Our shops: solid black section === */
.page-contact .contact-shops-section,
body.page-contact .contact-shops-section {
  background: #000 !important;
  background-image: none !important;
  color: #fff !important;
  padding-block: 2.5rem 3rem !important;
  border: 0 !important;
}

.page-contact .contact-shops-section .container,
.page-contact .contact-shops-section .apply-wrap {
  background: transparent !important;
}

/* === Social logos fill the circle === */
.socials .social-link {
  width: 2.75rem !important;
  height: 2.75rem !important;
  padding: 0 !important;
}

.socials .social-icon {
  width: 1.9rem !important;
  height: 1.9rem !important;
}

.socials .social-link--instagram .social-icon {
  width: 2rem !important;
  height: 2rem !important;
}

.socials .social-link--facebook .social-icon,
.socials .social-link--tiktok .social-icon {
  width: 1.95rem !important;
  height: 1.95rem !important;
}


/* === Locations store cards: match Contact Our shops text colors === */
.stores-section .store-card,
.page-stores .store-card {
  color: #fff !important;
}

.stores-section .store-card-name,
.page-stores .store-card-name,
.stores-section .store-card h2,
.page-stores .store-card h2 {
  color: #fff !important;
}

.stores-section .store-card address,
.page-stores .store-card address,
.stores-section .store-card .hours,
.page-stores .store-card .hours,
.stores-section .store-card .hours-list,
.page-stores .store-card .hours-list,
.stores-section .store-card .hours-list li,
.page-stores .store-card .hours-list li {
  color: rgba(255, 255, 255, 0.75) !important;
}

.stores-section .store-card .phone,
.page-stores .store-card .phone,
.stores-section .store-card a.phone,
.page-stores .store-card a.phone {
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

.stores-section .store-card .phone:hover,
.page-stores .store-card .phone:hover {
  color: #fff !important;
  text-decoration: underline !important;
  text-underline-offset: 0.15em !important;
}
