:root {
  --charcoal: #171514;
  --ink: #0d0c0b;
  --ash: #282320;
  --paper: #fff8ed;
  --cream: #f8ead4;
  --red: #d92731;
  --red-dark: #9f1724;
  --teal: #04a49c;
  --gold: #f1b844;
  --green: #84a828;
  --white: #fff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 15% 8%, rgba(217, 39, 49, 0.22), transparent 30rem),
    radial-gradient(circle at 92% 34%, rgba(4, 164, 156, 0.18), transparent 24rem),
    linear-gradient(180deg, #110f0e 0%, #211c18 42%, #fff8ed 42%, #fff8ed 100%);
  color: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 25%, transparent 25%);
  background-size: 34px 34px;
  pointer-events: none;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 248, 237, 0.18);
  border-radius: 8px;
  background: rgba(23, 21, 20, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  aspect-ratio: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 248, 237, 0.78);
  font-size: 0.88rem;
  font-weight: 800;
}

.nav-links a,
.header-call {
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav-links a:hover {
  color: var(--white);
}

.header-call {
  justify-self: end;
  padding: 12px 18px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(217, 39, 49, 0.26);
}

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

.section-band {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 28px;
  min-height: calc(100svh - 190px);
  padding: clamp(26px, 3.4vw, 44px) 0 clamp(24px, 3.4vw, 40px);
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0;
  line-height: 0.92;
}

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(4.4rem, 8.2vw, 7.8rem);
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

h2 {
  color: var(--ink);
  font-size: clamp(3.3rem, 7vw, 6.4rem);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 248, 237, 0.84);
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 700;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(217, 39, 49, 0.3);
}

.btn-secondary {
  border: 1px solid rgba(255, 248, 237, 0.32);
  background: rgba(255, 248, 237, 0.08);
  color: var(--paper);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 720px;
  margin: 24px 0 0;
}

.quick-info div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: 8px;
  background: rgba(255, 248, 237, 0.07);
}

.quick-info dt {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info dd {
  margin: 4px 0 0;
  color: var(--paper);
  font-weight: 900;
}

.hero-stage {
  position: relative;
  overflow: clip;
  min-height: clamp(390px, 39vw, 540px);
  isolation: isolate;
}

.stamp-ring {
  position: absolute;
  inset: 6% 1% 10% 4%;
  z-index: -2;
  border: 18px solid rgba(193, 151, 89, 0.66);
  border-radius: 50%;
  opacity: 0.72;
  background:
    repeating-conic-gradient(from 8deg, rgba(217, 39, 49, 0.82) 0 6deg, transparent 6deg 11deg),
    radial-gradient(circle, rgba(4, 164, 156, 0.17), transparent 58%);
  mask: radial-gradient(circle, transparent 55%, #000 56%);
}

.hero-logo {
  position: absolute;
  top: 0;
  right: 4%;
  z-index: 2;
  width: clamp(112px, 17vw, 210px);
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.46));
}

.hero-chicken {
  position: absolute;
  top: 11%;
  left: -2%;
  z-index: 1;
  width: 96%;
  transform: rotate(-7deg);
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.58));
}

.hero-tacos {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 72%;
  transform: rotate(5deg);
  filter: drop-shadow(0 24px 44px rgba(0, 0, 0, 0.5));
}

.ticker {
  overflow: hidden;
  contain: layout paint;
  width: 100%;
  padding: 18px 0;
  border-block: 1px solid rgba(255, 248, 237, 0.15);
  background: var(--red);
  color: var(--white);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: ticker 26s linear infinite;
}

.ticker span {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
}

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

.signature,
.menu,
.catering,
.visit {
  padding-block: clamp(64px, 8vw, 112px);
  color: var(--ink);
}

.signature {
  color: var(--paper);
}

.signature h2 {
  color: var(--white);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.section-heading {
  max-width: 740px;
}

.section-heading p:not(.eyebrow),
.catering-copy p,
.visit-card address,
.visit-card p {
  color: rgba(13, 12, 11, 0.72);
  font-size: 1.04rem;
  font-weight: 700;
}

.signature .section-heading p:not(.eyebrow) {
  color: rgba(255, 248, 237, 0.78);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  margin-top: 34px;
}

.feature-card {
  position: relative;
  display: grid;
  min-height: 365px;
  align-items: end;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(145deg, #1c1917, #30251e);
  box-shadow: var(--shadow);
}

.feature-card-large {
  grid-row: span 2;
  min-height: 746px;
}

.feature-card img {
  position: absolute;
  inset: auto -12% 30% -10%;
  width: 120%;
  max-width: none;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.54));
  transition: transform 300ms ease;
}

.feature-card-large img {
  inset: 5% -22% auto -22%;
  width: 142%;
}

.feature-card:hover img {
  transform: scale(1.04) rotate(-1deg);
}

.feature-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.9) 22%);
  color: var(--paper);
}

.item-tag {
  width: max-content;
  margin-bottom: 10px;
  padding: 7px 9px;
  border-radius: 5px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
}

.feature-card h3,
.menu-item h3,
.order-panel h3,
.visit-card h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.feature-card p:last-child,
.menu-item p,
.order-panel p {
  margin-bottom: 0;
  color: rgba(255, 248, 237, 0.74);
  font-weight: 700;
}

.menu-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.menu-tab {
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(13, 12, 11, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.menu-tab.active {
  border-color: var(--red);
  background: var(--red);
  color: var(--white);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  margin-top: 30px;
}

.menu-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.menu-item {
  display: flex;
  min-height: 126px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(13, 12, 11, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 36px rgba(70, 43, 23, 0.08);
}

.menu-item[hidden] {
  display: none;
}

.menu-item p {
  color: rgba(13, 12, 11, 0.62);
}

.menu-item strong {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 1rem;
  white-space: nowrap;
}

.order-panel {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 18px;
  border-radius: 8px;
  background: #181412;
  color: var(--paper);
  box-shadow: var(--shadow);
}

.order-panel img {
  width: 100%;
  margin: -38px auto 2px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.38));
}

.order-panel .btn {
  width: 100%;
  margin-top: 18px;
}

.order-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.order-links .btn {
  margin-top: 0;
}

.catering {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1.18fr);
  gap: 22px;
  align-items: center;
}

.catering-copy {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.catering-copy h2 {
  color: var(--white);
}

.catering-copy p {
  color: rgba(255, 248, 237, 0.78);
}

.catering-collage {
  position: relative;
  overflow: clip;
  min-height: 520px;
}

.catering-collage img {
  position: absolute;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.3));
}

.catering-collage img:nth-child(1) {
  top: 0;
  left: 6%;
  width: 52%;
  transform: rotate(-8deg);
}

.catering-collage img:nth-child(2) {
  right: 0;
  top: 16%;
  width: 58%;
  transform: rotate(7deg);
}

.catering-collage img:nth-child(3) {
  left: 24%;
  bottom: 0;
  width: 48%;
  transform: rotate(-2deg);
}

.gallery {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr;
  gap: 12px;
  padding-bottom: clamp(64px, 8vw, 112px);
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: contain;
  padding: 18px;
  border-radius: 8px;
  background: #171412;
}

.gallery img:first-child {
  grid-row: span 2;
  min-height: 472px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 16px;
  padding-top: 0;
}

.visit-card,
.map-card {
  min-height: 360px;
  border-radius: 8px;
}

.visit-card {
  padding: clamp(26px, 5vw, 48px);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(70, 43, 23, 0.09);
}

.visit-card h2 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.visit-card address {
  margin: 0 0 24px;
  font-style: normal;
}

.visit-card .btn-secondary {
  border-color: rgba(13, 12, 11, 0.16);
  color: var(--ink);
  background: var(--cream);
}

.map-card {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.site-footer {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 16px;
  background: var(--ink);
  color: rgba(255, 248, 237, 0.74);
  text-align: center;
}

.site-footer img {
  width: 54px;
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer a {
  color: var(--teal);
  font-weight: 900;
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .feature-grid,
  .menu-layout,
  .catering,
  .visit {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero-stage {
    min-height: 540px;
  }

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

  .feature-card-large {
    min-height: 500px;
  }

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

  .menu-tabs {
    justify-content: flex-start;
  }

  .order-panel {
    position: static;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gallery img:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 20px);
    margin-top: 10px;
    gap: 10px;
  }

  .brand span {
    display: none;
  }

  .header-call {
    padding-inline: 14px;
  }

  .section-band {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: clamp(3.95rem, 18vw, 5.1rem);
  }

  h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .hero-stage {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    min-height: 240px;
    pointer-events: none;
  }

  .hero {
    position: relative;
    min-height: calc(100svh - 92px);
    padding-bottom: 252px;
  }

  .quick-info {
    display: none;
  }

  .hero-chicken {
    top: 4%;
    left: -12%;
    width: 105%;
  }

  .hero-tacos {
    right: -8%;
    bottom: 0;
    width: 66%;
  }

  .hero-logo {
    display: none;
  }

  .menu-board,
  .gallery {
    grid-template-columns: 1fr;
  }

  .menu-item {
    min-height: 0;
    padding: 18px;
  }

  .feature-card,
  .feature-card-large {
    min-height: 420px;
  }

  .feature-card img,
  .feature-card-large img {
    top: 4%;
    right: -30%;
    bottom: auto;
    left: -30%;
    width: 160%;
  }

  .catering-collage {
    min-height: 430px;
  }

  .catering-collage img:nth-child(1) {
    left: -8%;
    width: 66%;
  }

  .catering-collage img:nth-child(2) {
    right: -14%;
    width: 76%;
  }

  .catering-collage img:nth-child(3) {
    left: 10%;
    width: 70%;
  }

  .visit-card,
  .map-card {
    min-height: 310px;
  }

  .map-card {
    padding: 26px;
  }

  .map-card strong {
    font-size: clamp(4.1rem, 19vw, 6rem);
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
