:root {
  --yellow: #ffd100;
  --yellow-deep: #e6b800;
  --red: #e31b23;
  --red-deep: #b01016;
  --blue: #4aa3d8;
  --night: #141414;
  --ink: #1a1408;
  --cream: #fff8e4;
  --foam: #fffdf6;
  --line: rgba(20, 20, 20, 0.12);
  --shadow: 0 24px 50px -28px rgba(20, 20, 20, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video { max-width: 100%; display: block; }
a { color: inherit; }

body {
  font-family: "Nunito", system-ui, sans-serif;
  color: var(--ink);
  background: var(--foam);
  line-height: 1.55;
  padding-top: 68px;
  padding-bottom: calc(84px + env(safe-area-inset-bottom, 0px));
}

h1, h2, .brand strong, .hero-stamp, .price-num {
  font-family: "Bangers", Impact, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 400;
}

.skip { position: absolute; left: -999px; top: 0; }
.skip:focus { left: 12px; top: 12px; background: #fff; padding: 8px 12px; z-index: 40; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--yellow);
  color: var(--night);
  border-bottom: 4px solid var(--night);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  width: 52px;
  height: 43px;
  object-fit: contain;
}
.brand small {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}
.brand strong { font-size: 1.45rem; line-height: 1; }
.nav-links {
  display: none;
  gap: 16px;
  margin-left: auto;
  font-weight: 800;
}
.nav-links a { text-decoration: none; }
.nav-call {
  margin-left: auto;
  background: var(--night);
  color: var(--yellow);
  text-decoration: none;
  font-weight: 800;
  padding: 8px 14px;
  border-radius: 999px;
}
@media (min-width: 820px) {
  .nav-links { display: flex; }
  .nav-call { margin-left: 8px; }
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  color: #fff;
  background: var(--night);
}
.hero-media { position: absolute; inset: 0; will-change: transform; }
.hero-video, .hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.hero-play {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  background: var(--yellow);
  color: var(--night);
  border: 3px solid var(--night);
  font: inherit;
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
}
.hero-photo { display: none; }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,20,20,0.15) 0%, rgba(20,20,20,0.45) 50%, rgba(20,20,20,0.88) 100%),
    linear-gradient(90deg, rgba(20,20,20,0.55), transparent 58%);
}
.hero-copy {
  position: relative;
  z-index: 2;
  padding: min(16vh, 120px) 22px 48px;
  max-width: 720px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 12px;
}
.eyebrow.dark { color: var(--red); }
h1 {
  font-size: clamp(3.4rem, 12vw, 6.6rem);
  line-height: 0.88;
  margin-bottom: 14px;
  text-shadow: 3px 3px 0 #000;
}
.lede { font-size: 1.08rem; max-width: 34rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 14px;
}
.hero-meta { font-size: 0.9rem; opacity: 0.88; }
.hero-stamp {
  position: absolute;
  right: -1vw;
  bottom: 4vh;
  font-size: clamp(4rem, 18vw, 11rem);
  color: rgba(255, 209, 0, 0.18);
  pointer-events: none;
  transform: rotate(-8deg);
  z-index: 2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  border: 3px solid transparent;
}
.btn-wa { background: #128c4a; color: #fff; }
.btn-ghost { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-red { background: var(--red); color: #fff; }
.btn-dark { background: var(--night); color: var(--yellow); }
.btn-mustard { background: var(--yellow); color: var(--night); border-color: var(--night); }

.strip {
  display: flex;
  gap: 26px;
  overflow: auto;
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  white-space: nowrap;
  border-top: 4px solid var(--night);
  border-bottom: 4px solid var(--night);
}

.about, .menu, .visit {
  padding: 72px 22px;
  max-width: 1120px;
  margin: 0 auto;
}
.about { display: grid; gap: 32px; }
@media (min-width: 880px) {
  .about { grid-template-columns: 0.95fr 1.05fr; align-items: center; }
}
.about h2, .menu h2, .visit h2, .reviews h2 {
  font-size: clamp(2.3rem, 6vw, 3.8rem);
  line-height: 0.95;
  margin-bottom: 14px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin-top: 18px;
}
.pills li {
  background: var(--yellow);
  border: 2px solid var(--night);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}
.about-visual {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 12px;
  align-items: start;
}
.shot-main { grid-row: span 2; }
.shot-main img,
.shot-clip video {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 3px solid var(--night);
}
.shot-side {
  background: var(--yellow);
  border: 3px solid var(--night);
  border-radius: 18px;
  padding: 12px;
}
.shot-side img { width: 100%; height: auto; }

.clip-block {
  padding: 24px 22px 72px;
  max-width: 720px;
  margin: 0 auto;
}
.clip-frame video {
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 3px solid var(--night);
  background: #000;
}
.section-head { margin-bottom: 28px; max-width: 36rem; }
.menu-lead { opacity: 0.8; }
.menu-lead.light { color: #fff; opacity: 0.85; }

.prices {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
@media (min-width: 760px) {
  .prices { grid-template-columns: repeat(3, 1fr); }
}
.price {
  background: #fff;
  border: 3px solid var(--night);
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.price.featured { background: var(--yellow); }
.price-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 6px;
}
.price-num { font-size: 2.1rem; line-height: 1; margin-bottom: 8px; }

.menu-grid { display: grid; gap: 16px; }
@media (min-width: 760px) {
  .menu-grid { grid-template-columns: 1fr 1fr; }
}
.flyer img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 3px solid var(--night);
}
.flyer figcaption {
  font-size: 0.88rem;
  margin-top: 8px;
  font-weight: 700;
}
.order-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.reviews {
  background: var(--night);
  color: #fff;
  padding: 72px 22px;
}
.reviews .section-head { margin: 0 auto 28px; text-align: center; }
.review-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.visit { display: grid; gap: 22px; }
@media (min-width: 880px) {
  .visit { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.visit-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  border: 3px solid var(--night);
}
.facts { margin: 18px 0; }
.facts div { padding: 10px 0; border-top: 1px solid var(--line); }
.facts dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0.55;
}
.facts dd a { text-decoration: none; }
.map-link {
  position: relative;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 3px solid var(--night);
}
.map-link img { width: 100%; height: auto; }
.map-link span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: var(--yellow);
  color: var(--night);
  border: 2px solid var(--night);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.86rem;
}

.foot {
  background: var(--night);
  color: #fff;
  padding: 28px 22px 40px;
}
.foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.foot-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  font-weight: 700;
}
.fine { font-size: 0.78rem; opacity: 0.65; }

.dock {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 8px;
}
.dock a {
  text-align: center;
  text-decoration: none;
  padding: 14px 10px;
  border-radius: 14px;
  background: var(--night);
  color: var(--yellow);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.dock .wa { background: #128c4a; color: #fff; }
@media (min-width: 820px) {
  .dock { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
@media (max-width: 720px) {
  .hero { min-height: 92vh; }
  .hero-copy { padding-top: 16vh; }
  .about-visual { grid-template-columns: 1fr; }
  .shot-main { grid-row: auto; }
}
