:root {
  --red: #d71920;
  --red-deep: #a80008;
  --black: #111111;
  --ink: #1d1b19;
  --cream: #fff2d8;
  --warm: #fff9ee;
  --white: #ffffff;
  --blue: #0f63bd;
  --muted: #6e6257;
  --line: rgba(17, 17, 17, 0.14);
  --shadow: 0 22px 60px rgba(17, 17, 17, 0.18);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--warm);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  min-height: 86px;
  padding: 12px clamp(16px, 4vw, 44px);
  color: var(--white);
  background: var(--black);
  border-bottom: 5px solid var(--red);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
}

.language-switch button {
  min-width: 34px;
  min-height: 34px;
  padding: 8px 9px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.language-switch button.is-active {
  color: var(--white);
  background: var(--red);
}

.brand {
  display: inline-grid;
  line-height: 0.9;
  color: var(--white);
  text-transform: uppercase;
}

.brand-top {
  font-family: "Anton", "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  letter-spacing: 0;
}

.brand-script {
  display: inline-block;
  margin-top: 1px;
  color: var(--red);
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-transform: none;
  text-shadow: 0 1px 0 var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 26px);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.86);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
  outline: none;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta,
.btn-red {
  color: var(--white);
  background: var(--red);
}

.link-icon {
  flex: 0 0 auto;
  width: 22px;
  max-width: 22px;
  height: 22px;
  max-height: 22px;
  object-fit: contain;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.btn-light {
  color: var(--black);
  background: var(--white);
  border-color: rgba(17, 17, 17, 0.16);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
}

.btn-green {
  color: var(--white);
  background: #128c4a;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 10px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(44px, 8vw, 92px) clamp(18px, 5vw, 64px) clamp(34px, 6vw, 70px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(15, 99, 189, 0.24), transparent 22%),
    linear-gradient(135deg, var(--red) 0%, var(--red-deep) 47%, var(--black) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--blue) 0 33%, var(--white) 33% 66%, var(--blue) 66%);
}

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

.hero-brand {
  display: inline-grid;
  margin-bottom: 20px;
  padding: 12px 16px 10px;
  color: var(--black);
  background: var(--white);
  border: 4px solid var(--black);
  border-radius: var(--radius);
  transform: rotate(-1.5deg);
  box-shadow: 8px 8px 0 var(--black);
}

.hero-brand span {
  font-family: "Anton", "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(1.5rem, 4vw, 3rem);
  line-height: 0.85;
  text-transform: uppercase;
}

.hero-brand strong {
  color: var(--red);
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: clamp(1.4rem, 4vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 2px 0 var(--black);
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
  font-size: clamp(3.25rem, 8vw, 7.6rem);
  line-height: 0.9;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-media {
  aspect-ratio: 1 / 1;
  padding: clamp(10px, 2vw, 18px);
  background: var(--cream);
  border: 5px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 16px 16px 0 rgba(17, 17, 17, 0.62);
  transform: rotate(1.5deg);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
}

.hero-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 520ms ease, transform 680ms ease;
}

.hero-slides img.is-active {
  opacity: 1;
  transform: scale(1);
}

.carousel-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.carousel-arrow,
.scroll-arrow {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  color: var(--white);
  background: rgba(17, 17, 17, 0.78);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
  pointer-events: auto;
}

.carousel-arrow svg,
.scroll-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:hover,
.scroll-arrow:hover,
.carousel-arrow:focus-visible,
.scroll-arrow:focus-visible {
  background: var(--red);
  outline: none;
  transform: translateY(-2px);
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.7);
  pointer-events: auto;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
}

.carousel-dots button.is-active {
  width: 24px;
  background: var(--white);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 64px);
}

.section > * {
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
}

.intro {
  position: relative;
  display: block;
  background: var(--white);
}

.section-copy {
  max-width: var(--container);
}

.script-title {
  margin: 0 0 4px;
  color: var(--red);
  font-family: "Pacifico", "Brush Script MT", cursive;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.1;
}

.section h2 {
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 0.95;
}

.section-copy p:last-child,
.menu-intro p,
.section-heading p,
.contact-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
}

.specialties {
  position: relative;
  background: var(--cream);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading p {
  max-width: 360px;
  margin: 0;
}

.specialty-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  max-width: calc(var(--container) + 92px);
}

.specialty-track {
  display: grid;
  grid-auto-columns: minmax(290px, 36%);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.specialty-track::-webkit-scrollbar {
  height: 9px;
}

.specialty-track::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.32);
  border-radius: 999px;
}

.specialty-track:focus-visible {
  outline: 3px solid rgba(215, 25, 32, 0.28);
  outline-offset: 4px;
}

.food-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(80, 42, 26, 0.18);
  scroll-snap-align: start;
  isolation: isolate;
}

.food-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(17, 17, 17, 0.74));
  z-index: 1;
}

.food-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.food-card div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  padding: 14px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.food-card:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.food-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.menu-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 20% 10%, rgba(15, 99, 189, 0.28), transparent 28%),
    linear-gradient(90deg, rgba(17, 17, 17, 0.88), rgba(17, 17, 17, 0.54));
}

.menu-section > *:not(.menu-video) {
  position: relative;
  z-index: 2;
}

.menu-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}

.menu-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: 22px;
  align-items: end;
  margin-bottom: 30px;
}

.menu-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.menu-redirect {
  display: flex;
  justify-content: center;
  padding: clamp(26px, 6vw, 54px);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.menu-link {
  min-width: min(100%, 320px);
  min-height: 58px;
  font-size: 1.28rem;
}

.info-location {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 22px;
  background: var(--cream);
}

.info-card,
.maps-stack,
.map-card,
.branch-card,
.contact-form {
  max-width: none;
}

.info-card,
.map-card,
.branch-card,
.contact-form {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card {
  padding: clamp(24px, 4vw, 42px);
  color: var(--white);
  background: var(--red);
}

.info-card .script-title {
  color: var(--white);
}

.info-card dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.info-card div {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.info-card div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-card dt {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-card dd {
  margin: 2px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 800;
}

.maps-stack {
  display: grid;
  gap: 18px;
}

.branch-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: stretch;
}

.branch-card {
  --branch-color: var(--red);
  --branch-ink: var(--white);
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  color: var(--black);
  background: var(--white);
  border: 4px solid var(--branch-color);
}

.branch-bovisa {
  --branch-color: #128c4a;
  --branch-ink: var(--white);
}

.branch-affori {
  --branch-color: #f4c430;
  --branch-ink: var(--black);
}

.branch-card img {
  width: 100%;
  height: auto;
  /* background: color-mix(in srgb, var(--branch-color) 10%, var(--cream)); */
  object-fit: contain;
}

.branch-content {
  display: grid;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--branch-color) 12%, white), var(--white));
  border-top: 8px solid var(--branch-color);
}

.branch-content .area-label {
  color: var(--branch-ink);
  background: var(--branch-color);
  border-left-color: var(--black);
}

.branch-content h3 {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.branch-content p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.branch-phone {
  color: var(--black) !important;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 800 !important;
}

.branch-content > span {
  width: fit-content;
  padding: 7px 10px;
  color: var(--branch-ink);
  background: var(--branch-color);
  border-radius: var(--radius);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.branch-hours {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid color-mix(in srgb, var(--branch-color) 44%, transparent);
  border-radius: var(--radius);
}

.branch-hours strong {
  color: var(--black);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.2rem;
  line-height: 1;
  text-transform: uppercase;
}

.branch-hours dl {
  display: grid;
  gap: 5px;
  margin: 0;
}

.branch-hours div {
  display: grid;
  grid-template-columns: minmax(76px, 0.35fr) minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.branch-hours dt,
.branch-hours dd {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.15;
}

.branch-hours dt {
  color: var(--black);
  font-weight: 800;
}

.branch-hours dd {
  color: var(--muted);
  font-weight: 700;
}

.branch-hours p {
  color: var(--black);
  font-size: 0.88rem;
  line-height: 1.25;
}

.branch-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.branch-actions .branch-map {
  grid-column: 1 / -1;
}

.branch-call {
  color: var(--branch-ink);
  background: var(--branch-color);
  border-color: var(--branch-color);
}

.branch-map {
  color: var(--black);
  background: var(--white);
  border-color: var(--branch-color);
}

.branch-actions .btn {
  min-width: 0;
  min-height: 48px;
  padding: 10px 12px;
  overflow: hidden;
  font-size: 0.98rem;
  line-height: 1.05;
  text-align: center;
}

.branch-actions .btn span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.branch-actions .branch-map .link-icon {
  width: 26px;
  max-width: 26px;
  height: 26px;
  max-height: 26px;
}

.map-card {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--white);
}

.area-label {
  width: fit-content;
  margin: 0;
  padding: 6px 10px;
  color: var(--white);
  background: var(--black);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.map-card h3 {
  margin: 0;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.map-card iframe {
  width: 100%;
  min-height: 260px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  background: var(--white);
}

.delivery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.52fr) minmax(300px, 0.82fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.94), rgba(168, 0, 8, 0.9)),
    url("https://commons.wikimedia.org/wiki/Special:FilePath/Pupusas%20en%20comal.JPG?width=1600") center / cover;
}

.intro::after,
.specialties::after,
.menu-section::after,
.info-location::after,
.delivery::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  height: 8px;
  background: linear-gradient(90deg, var(--blue) 0 32%, var(--white) 32% 68%, var(--blue) 68%);
  box-shadow: 0 -1px 0 rgba(17, 17, 17, 0.1);
  pointer-events: none;
}

.delivery-copy,
.delivery-media {
  max-width: none;
}

.delivery-copy .script-title {
  color: var(--white);
}

.delivery-call {
  width: min(100%, 280px);
  min-height: 62px;
  margin-top: 24px;
  font-size: 1.35rem;
}

.delivery-media {
  padding: clamp(10px, 2vw, 16px);
  background: var(--cream);
  border: 5px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.55);
  transform: rotate(1.2deg);
  animation: delivery-hop 2.6s ease-in-out infinite;
  transform-origin: 50% 85%;
}

.delivery-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

@keyframes delivery-hop {
  0%,
  100% {
    transform: translateY(0) rotate(1.2deg);
    box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.55);
  }

  42% {
    transform: translateY(-12px) rotate(0.4deg);
    box-shadow: 14px 24px 0 rgba(0, 0, 0, 0.38);
  }

  58% {
    transform: translateY(2px) rotate(1.6deg);
    box-shadow: 14px 10px 0 rgba(0, 0, 0, 0.58);
  }
}

.contact-copy,
.contact-form {
  max-width: none;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--warm);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid rgba(17, 17, 17, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  outline: 3px solid rgba(215, 25, 32, 0.16);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 18px;
  color: var(--white);
  text-align: center;
  background: var(--black);
  border-top: 8px solid var(--red);
}

.footer-brand {
  margin-bottom: 4px;
}

.site-footer p,
.site-footer strong {
  margin: 0;
}

.footer-contact-row,
.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 800;
}

.footer-link-icon {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.social-links {
  margin: 4px 0 6px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.social-link img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.site-footer small {
  max-width: 680px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
}

.admin-login-overlay[hidden] {
  display: none;
}

.admin-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: rgba(17, 17, 17, 0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.admin-login {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 120;
  width: min(calc(100% - 32px), 420px);
  padding: 26px;
  color: var(--ink);
  background: var(--warm);
  border: 4px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 12px 12px 0 rgba(17, 17, 17, 0.48);
  transform: translate(-50%, -44%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.admin-login.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.admin-login-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--black);
  border: 0;
  border-radius: 999px;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.admin-login h2 {
  margin: 0;
  font-family: "Anton", "Barlow Condensed", Impact, sans-serif;
  font-size: 2.6rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.admin-login p {
  margin: 10px 48px 18px 0;
  color: var(--muted);
  font-weight: 700;
}

.admin-login form,
.admin-login label {
  display: grid;
  gap: 8px;
}

.admin-login label {
  color: var(--black);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-login input {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid rgba(17, 17, 17, 0.2);
  border-radius: var(--radius);
}

.admin-login-error {
  min-height: 22px;
  color: var(--red);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto auto 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .menu-intro,
  .info-location,
  .delivery,
  .contact {
    grid-template-columns: 1fr;
  }

  .branch-stack {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    max-width: 620px;
    margin: 0 auto;
  }

  .specialty-track {
    grid-auto-columns: minmax(270px, 48%);
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 74px;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .brand-top {
    font-size: 1.35rem;
  }

  .brand-script {
    font-size: 1.25rem;
  }

  .header-cta {
    grid-column: 1 / -1;
    width: 100%;
    min-height: 44px;
  }

  .nav-toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .language-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .hero {
    gap: 26px;
    padding: 30px 16px 42px;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 15vw, 4.2rem);
  }

  .hero p {
    margin-top: 18px;
    font-size: 1.05rem;
  }

  .hero-media {
    width: min(100%, 430px);
    padding: 9px;
    border-width: 4px;
    box-shadow: 9px 9px 0 rgba(17, 17, 17, 0.62);
    transform: rotate(0.8deg);
  }

  .section {
    padding: 48px 16px;
  }

  .hero-actions,
  .quick-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .specialties {
    overflow: hidden;
  }

  .specialty-carousel {
    grid-template-columns: 1fr;
    margin-right: -16px;
  }

  .specialty-track {
    grid-auto-columns: minmax(258px, 86%);
    gap: 14px;
    padding: 4px 16px 24px 0;
    scroll-padding-left: 0;
  }

  .scroll-arrow {
    display: none;
  }

  .food-card {
    min-height: clamp(330px, 72vw, 420px);
    box-shadow: 0 14px 30px rgba(80, 42, 26, 0.2);
  }

  .food-card div {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px 14px;
  }

  .carousel-controls {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
  }

  .carousel-arrow svg {
    width: 21px;
    height: 21px;
  }

  .menu-section {
    min-height: 430px;
  }

  .menu-section::before {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.74), rgba(17, 17, 17, 0.58)),
      radial-gradient(circle at 20% 0%, rgba(15, 99, 189, 0.26), transparent 34%);
  }

  .intro::after,
  .specialties::after,
  .menu-section::after,
  .info-location::after,
  .delivery::after {
    height: 7px;
  }

  .menu-redirect {
    padding: 24px 14px;
    background: rgba(255, 255, 255, 0.025);
  }

  .info-card dl {
    gap: 14px;
  }

  .info-card dd {
    font-size: 1.05rem;
  }

  .branch-actions {
    grid-template-columns: 1fr;
  }

  .branch-actions .branch-map {
    grid-column: auto;
  }

  .branch-actions .btn {
    justify-content: flex-start;
    text-align: left;
  }

  .branch-content {
    padding: 16px;
  }

  .branch-content h3 {
    font-size: 2.25rem;
  }

  .branch-hours div {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .map-card iframe {
    min-height: 300px;
  }

  .delivery-media {
    width: min(100%, 390px);
    margin: 0 auto;
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.55);
    animation-name: delivery-hop-mobile;
  }
}

@keyframes delivery-hop-mobile {
  0%,
  100% {
    transform: translateY(0) rotate(0.7deg);
    box-shadow: 9px 9px 0 rgba(0, 0, 0, 0.55);
  }

  42% {
    transform: translateY(-9px) rotate(0deg);
    box-shadow: 9px 18px 0 rgba(0, 0, 0, 0.38);
  }

  58% {
    transform: translateY(2px) rotate(1.1deg);
    box-shadow: 9px 7px 0 rgba(0, 0, 0, 0.58);
  }
}

@media (max-width: 430px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand-top {
    font-size: 1.18rem;
  }

  .brand-script {
    font-size: 1.08rem;
  }

  .hero-brand {
    padding: 10px 12px 8px;
    box-shadow: 5px 5px 0 var(--black);
  }

  .hero-brand span {
    font-size: 1.35rem;
  }

  .hero-brand strong {
    font-size: 1.28rem;
  }

  .section h2 {
    font-size: clamp(2.1rem, 13vw, 3.1rem);
  }

  .specialty-track {
    grid-auto-columns: minmax(246px, 88%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
