:root {
  --bg-0: #080707;
  --bg-1: #0f0c0c;
  --bg-2: #171212;
  --bg-flat: #100c0c;
  --surface-1: rgba(24, 18, 18, 0.86);
  --surface-2: rgba(37, 28, 28, 0.92);
  --line: rgba(255, 255, 255, 0.15);
  --text: #f5f1e8;
  --text-dim: #d4c8b3;
  --red: #f2312c;
  --gold: #f4b443;
  --lime: #b8d03c;
  --accent-gradient: rgba(244, 180, 67, 0.82);
  --edge-shadow: 0 14px 28px rgba(0, 0, 0, 0.38);
  --container: min(1160px, calc(100% - 2rem));
  --header-height: 86px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
}

:focus-visible {
  outline: 2px solid #ffd68b;
  outline-offset: 2px;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Work Sans", "Segoe UI", sans-serif;
  background: var(--bg-flat);
  min-height: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.14;
  background-image: repeating-linear-gradient(
    35deg,
    rgba(255, 255, 255, 0.05) 0,
    rgba(255, 255, 255, 0.05) 1px,
    transparent 1px,
    transparent 4px
  );
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: #fff;
  color: #000;
  border-radius: 0;
  padding: 0.5rem 0.75rem;
}

.top-bar {
  position: relative;
  z-index: 50;
  background: rgba(0, 0, 0, 0.58);
}

.top-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 224, 161, 0.42);
  opacity: 1;
}

.top-bar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  color: var(--text-dim);
  font-size: 0.85rem;
}

.top-contact {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.top-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 0;
  padding: 0.2rem 0.55rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #f4e8d0;
  background: rgba(255, 214, 139, 0.12);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.24);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: #848484;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08);
}

.top-status.is-open .status-dot {
  background: #5fdb6a;
}

.top-status.is-closing-soon .status-dot {
  background: #ffd35f;
}

.top-status.is-closed .status-dot {
  background: #f5625d;
}

.top-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.top-links a {
  text-decoration: none;
  color: #f7e6bf;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 7, 7, 0.45);
  transition: border-color 220ms ease, background-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 7, 7, 0.92);
  backdrop-filter: blur(9px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
}

.brand-text {
  display: grid;
  gap: 0.05rem;
}

.brand-text strong {
  font-family: "Bungee", "Impact", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #fff2db;
}

.brand-text span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.main-nav a {
  text-decoration: none;
  color: #f3ebdd;
  text-transform: uppercase;
  letter-spacing: 0.055em;
  font-size: 0.82rem;
  font-weight: 700;
  position: relative;
  padding: 0.25rem 0.06rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.2rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 190ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: #ffe6ac;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  appearance: none;
  border: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0.72rem 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 0.82rem;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.btn::before {
  content: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover::before {
  content: none;
}

.btn-primary {
  background: #c93024;
  color: #fff;
  box-shadow:
    0 10px 18px rgba(120, 18, 17, 0.32),
    inset 0 -2px 0 rgba(255, 230, 181, 0.22);
}

.btn-primary:hover {
  box-shadow:
    0 12px 21px rgba(242, 49, 44, 0.32),
    inset 0 -2px 0 rgba(255, 230, 181, 0.34);
}

.btn-ghost {
  color: #f3e3c3;
  background: rgba(0, 0, 0, 0.36);
  box-shadow: inset 0 -2px 0 rgba(255, 230, 181, 0.36);
}

.btn-ghost:hover {
  color: #fff1cf;
  box-shadow: inset 0 -2px 0 rgba(255, 230, 181, 0.56);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: rgba(255, 224, 161, 0.12);
  color: #f5ead7;
  border-radius: 0;
  width: 44px;
  height: 42px;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 0;
  line-height: 1;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(3, 2, 2, 0.83);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  width: min(420px, calc(100% - 1.4rem));
  border: 0;
  border-radius: 0;
  background-color: rgba(13, 10, 10, 0.95);
  background-image: url("../images/common/bricks.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  padding: 1rem 1rem 1.1rem;
  position: relative;
  box-shadow: var(--shadow);
}

.mobile-nav-panel::before {
  content: "";
  position: absolute;
  inset: 0.55rem auto 0.55rem 0.55rem;
  width: 3px;
  background: var(--gold);
}

.mobile-nav-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 0.85rem 0.7rem;
}

.mobile-nav-head strong {
  font-family: "Bungee", sans-serif;
  font-size: 0.95rem;
}

.mobile-close {
  appearance: none;
  border: 0;
  background: rgba(255, 214, 139, 0.14);
  border-radius: 0;
  width: 42px;
  height: 38px;
  padding: 0;
  color: #ffe6b5;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

.mobile-nav-list {
  display: grid;
  gap: 0.18rem;
  margin-left: 0.7rem;
}

.mobile-nav-list a {
  text-decoration: none;
  border: 0;
  border-radius: 0;
  padding: 0.72rem 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #f3e8d1;
  background: transparent;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.22);
  transition: color 180ms ease, box-shadow 180ms ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a.is-active {
  color: #ffe4a0;
  box-shadow: inset 0 -2px 0 rgba(244, 180, 67, 0.9);
}

.site-main {
  position: relative;
  z-index: 2;
}

.hero-slider {
  position: relative;
  min-height: clamp(580px, 82vh, 860px);
  overflow: clip;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 700ms ease, transform 900ms ease;
}

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

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 6, 0.68);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: clamp(4rem, 10vw, 7rem) 0 3rem;
  max-width: 760px;
}

.hero-content::before {
  content: none;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f5c76e;
  font-size: 0.78rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bungee", "Impact", sans-serif;
  line-height: 1.03;
}

h1 {
  margin-top: 0.8rem;
  font-size: clamp(2.1rem, 7vw, 4.5rem);
  text-wrap: balance;
}

.hero-content h1 {
  color: #ffe9bf;
  text-shadow:
    0 3px 0 rgba(0, 0, 0, 0.55),
    0 12px 24px rgba(0, 0, 0, 0.55);
}

.hero-content p {
  margin: 1rem 0 0;
  max-width: 62ch;
  color: #efe5d3;
}

.hero-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.spray-tag {
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 0;
  padding: 0.3rem 0.62rem;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #f5ead7;
  background: rgba(0, 0, 0, 0.44);
  box-shadow: inset 0 -1px 0 rgba(255, 230, 181, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.hero-dots {
  margin-top: 1.3rem;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
}

.hero-dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(244, 180, 67, 0.7);
}

.quick-strip {
  margin-top: -38px;
  position: relative;
  overflow: clip;
}

.quick-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(12, 8, 8, 0.9);
  background-image: url("../images/common/bricks.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  opacity: 0.95;
  pointer-events: none;
}

.scene-marquee {
  background: rgba(15, 11, 11, 0.97);
  overflow: clip;
  position: relative;
  z-index: 3;
}

.scene-marquee::before,
.scene-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 230, 181, 0.45);
}

.scene-marquee::before {
  top: 0;
}

.scene-marquee::after {
  bottom: 0;
}

.scene-marquee-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  padding: 0.45rem 0;
  animation: marquee-slide 24s linear infinite;
}

.scene-marquee-track span {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #ffe7bf;
  white-space: nowrap;
}

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

.quick-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.quick-strip-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.95rem 0.9rem 1.05rem 1.6rem;
  text-decoration: none;
  min-height: 0;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.quick-strip-card::before {
  content: attr(data-step);
  position: absolute;
  left: 0.55rem;
  top: 0.72rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: rgba(255, 222, 165, 0.8);
}

.quick-strip-card::after {
  content: "";
  position: absolute;
  left: 1.45rem;
  right: 0.6rem;
  bottom: 0;
  height: 2px;
  background: rgba(244, 180, 67, 0.62);
  opacity: 0.65;
}

.quick-strip-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.quick-strip-card strong {
  color: #ffe0a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
}

.quick-strip-card p {
  margin: 0.5rem 0 0;
  color: var(--text-dim);
  font-size: 0.93rem;
}

.scene-section {
  position: relative;
  background-color: rgba(10, 7, 7, 0.85);
  background-image: url("../images/gallery/girls.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.scene-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 7, 7, 0.46);
  pointer-events: none;
}

.scene-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: rgba(8, 7, 7, 0.78);
  pointer-events: none;
}

.scene-grid {
  position: relative;
  display: grid;
  gap: 1rem 1.1rem;
  grid-template-columns: 1.22fr 0.78fr;
  grid-template-areas:
    "primary secondary"
    "primary tertiary";
}

.scene-grid::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -0.4rem;
  height: 2px;
  background: rgba(244, 180, 67, 0.62);
  opacity: 1;
}

.scene-grid::after {
  content: none;
}

.scene-block {
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem;
  backdrop-filter: blur(1px);
  position: relative;
  overflow: hidden;
}

.scene-block--primary {
  grid-area: primary;
  align-self: center;
}

.scene-block--secondary {
  grid-area: secondary;
}

.scene-block--tertiary {
  grid-area: tertiary;
}

.scene-block::before {
  content: none;
}

.scene-block--primary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  bottom: 0.45rem;
  width: 3px;
  background: rgba(244, 180, 67, 0.82);
  opacity: 0.8;
}

.scene-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0.7rem;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.scene-block h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.75rem, 4.5vw, 2.4rem);
}

.scene-block h3 {
  margin-top: 0.7rem;
  font-size: 1.3rem;
}

.scene-block p {
  margin: 0.6rem 0 0;
  color: #e5d8c2;
}

.scene-block .hero-actions {
  margin-top: 1rem;
}

.scene-block--primary .hero-actions .btn-primary {
  transform: none;
}

.scene-block--primary .hero-actions .btn-primary:hover {
  transform: translateY(-1px);
}

.story-section {
  position: relative;
  background: rgba(10, 8, 8, 0.35);
}

.story-layout {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.story-title h2 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #ffe8bd;
}

.story-copy {
  position: relative;
  padding-left: 0.8rem;
}

.story-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 0.2rem;
  width: 2px;
  background: rgba(244, 180, 67, 0.78);
}

.story-copy p {
  margin: 0 0 0.9rem;
  color: #ebdfcb;
}

.story-copy p:last-of-type {
  margin-bottom: 0.5rem;
}

.reel-section {
  padding-top: 0.9rem;
  padding-bottom: 1.7rem;
}

.reel-shell {
  overflow: clip;
}

.reel-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: reel-slide 36s linear infinite;
}

.reel-track img {
  width: clamp(240px, 24vw, 340px);
  height: clamp(170px, 18vw, 220px);
  object-fit: cover;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
}

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

.proof-section {
  position: relative;
  background: rgba(9, 8, 8, 0.42);
}

.proof-head {
  max-width: 740px;
}

.proof-head h2 {
  margin-top: 0.7rem;
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: #ffe3b3;
}

.testimonial-slider {
  margin-top: 1rem;
  position: relative;
  min-height: 215px;
}

.testimonial-quote {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 380ms ease, transform 380ms ease;
  padding: 0.45rem 0.15rem 2.1rem 0.8rem;
}

.testimonial-quote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  bottom: 2.4rem;
  width: 2px;
  background: rgba(255, 255, 255, 0.34);
}

.testimonial-quote.is-active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote p {
  margin: 0;
  max-width: 76ch;
  color: #efe3cf;
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.testimonial-quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd893;
  font-weight: 700;
  font-size: 0.76rem;
}

.testimonial-dots {
  position: absolute;
  left: 0.8rem;
  bottom: 0;
  display: flex;
  gap: 0.45rem;
}

.testimonial-dot {
  width: 11px;
  height: 11px;
  border: 0;
  background: rgba(255, 255, 255, 0.38);
}

.testimonial-dot.is-active {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(244, 180, 67, 0.7);
}

.event-list {
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.event-list li {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.58rem 0.5rem 0.62rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  box-shadow: none;
}

.event-list li::before {
  content: none;
}

.event-list li::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.26);
}

.event-day {
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #ffe2a3;
  font-size: 0.76rem;
  font-weight: 700;
}

.event-name {
  font-size: 0.9rem;
  color: #f3e9d8;
  text-align: right;
}

.update-stack {
  margin: 0.9rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.update-card {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 0.58rem 0.5rem 0.65rem;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  display: block;
  transition: transform 180ms ease, background 180ms ease;
}

.update-card::before {
  content: none;
}

.update-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.update-card strong {
  display: block;
  color: #f6e6c2;
  font-size: 0.9rem;
}

.update-card span {
  margin-top: 0.3rem;
  display: block;
  color: var(--text-dim);
  font-size: 0.82rem;
}

.update-card:hover {
  transform: none;
  background: rgba(255, 255, 255, 0.09);
}

.section {
  padding: clamp(2.7rem, 7vw, 5rem) 0;
}

.status-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 0;
  border: 0;
  background: rgba(255, 230, 181, 0.12);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  box-shadow: inset 0 -2px 0 rgba(255, 230, 181, 0.45);
}

[data-open-status][data-state="open"] {
  color: #95f0a0;
}

[data-open-status][data-state="closing-soon"] {
  color: #ffe39a;
}

[data-open-status][data-state="closed"] {
  color: #ff9d96;
}

.section-head {
  max-width: 750px;
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 0.2rem;
}

.section-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: -0.35rem;
  width: 120px;
  height: 3px;
  background: rgba(244, 180, 67, 0.74);
  opacity: 0.72;
}

.section-head h2 {
  margin-top: 0.65rem;
  font-size: clamp(1.65rem, 5vw, 2.8rem);
  color: #ffe5b5;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.36);
}

.section-head p {
  margin: 0.75rem 0 0;
  color: var(--text-dim);
}

.card-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.food-card {
  border: 0;
  overflow: clip;
  background: #0f0b0b;
  box-shadow: var(--edge-shadow);
  transition: transform 200ms ease, box-shadow 200ms ease;
  position: relative;
}

.food-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 42%;
  height: 4px;
  background: var(--gold);
  z-index: 2;
}

.food-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 130px;
  background: rgba(0, 0, 0, 0.82);
  pointer-events: none;
}

.food-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.42);
}

.card-grid .food-card:nth-child(2n) {
  transform: none;
}

.card-grid .food-card:nth-child(3n) {
  transform: none;
}

.card-grid .food-card:nth-child(4n) {
  transform: none;
}

.card-grid .food-card:hover {
  transform: translateY(-5px) scale(1.01);
}

.food-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.food-card-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.95rem 0.75rem 0.95rem;
  background: rgba(0, 0, 0, 0.72);
  z-index: 2;
}

.food-card-body h3 {
  font-size: 1.08rem;
  color: #ffe5b2;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.52);
}

.food-card-body p {
  margin: 0.32rem 0 0;
  color: #eadcc5;
  font-size: 0.88rem;
  line-height: 1.3;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.split-media {
  position: relative;
  min-height: 400px;
}

.split-media img:first-child {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  box-shadow: var(--edge-shadow);
  transform: none;
}

.split-media img:last-child {
  position: absolute;
  right: -0.7rem;
  bottom: -0.7rem;
  width: 44%;
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.43);
  transform: none;
}

.split-copy p {
  margin: 0.8rem 0 0;
  color: var(--text-dim);
}

.chip-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip-list li {
  border: 0;
  background: transparent;
  border-radius: 0;
  padding: 0.2rem 0.35rem 0.28rem 0.45rem;
  position: relative;
  font-size: 0.82rem;
  color: #f2e7d4;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.22);
}

.chip-list li::before {
  content: none;
}

.cta-banner {
  border: 0;
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  background-color: rgba(16, 13, 13, 0.94);
  background-image: url("../images/common/bricks.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.cta-banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 44%;
  height: 3px;
  background: var(--gold);
}

.cta-banner::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.cta-banner h2 {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

.cta-banner p {
  margin: 0.5rem 0 0;
  color: #f3e8d7;
}

.cta-banner .btn {
  font-size: 0.82rem;
}

.page-hero {
  position: relative;
  padding: 4.2rem 0 3rem;
  overflow: clip;
  isolation: isolate;
  background: #0d0a0a;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 6, 6, 0.8);
}

.page-hero::after {
  content: none;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) saturate(0.48) contrast(0.82) brightness(0.42) blur(1px);
  transform: scale(1.02);
}

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

.page-hero h1 {
  margin-top: 0.65rem;
  font-size: clamp(2rem, 6vw, 3.5rem);
  color: #fff0ce;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.65);
}

.page-hero p {
  margin: 0.8rem 0 0;
  max-width: 62ch;
  color: #f0e6d3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.menu-board {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
}

.menu-board a {
  border: 0;
  border-radius: 0;
  overflow: clip;
  background: #110d0d;
  box-shadow: var(--edge-shadow);
  text-decoration: none;
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.menu-board a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.menu-board a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 3px;
  background: var(--gold);
}

.menu-board a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.32);
}

.menu-board img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.note-card {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  padding: 0.95rem 0.8rem 0.95rem;
  position: relative;
}

.note-card::before {
  content: none;
}

.note-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.note-card h3 {
  font-size: 1.12rem;
}

.note-card p {
  margin: 0.55rem 0 0;
  color: var(--text-dim);
}

.menu-highlights {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.menu-highlight {
  border: 0;
  border-radius: 0;
  padding: 0.82rem 0.65rem 0.92rem;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  position: relative;
}

.menu-highlight::before {
  content: none;
}

.menu-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.menu-highlight h3 {
  font-size: 1rem;
}

.menu-highlight p {
  margin: 0.45rem 0 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

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

.drinks-grid figure {
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: clip;
  background: #110d0d;
  box-shadow: var(--edge-shadow);
  position: relative;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.drinks-grid figure::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 36%;
  height: 3px;
  background: var(--gold);
}

.drinks-grid figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.32);
}

.drinks-grid figcaption {
  padding: 0.8rem 0.8rem 0.9rem;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.26);
}

.color-row {
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.color-card {
  border: 0;
  border-radius: 0;
  padding: 0.85rem;
  box-shadow:
    0 12px 22px rgba(0, 0, 0, 0.24),
    inset 0 -2px 0 rgba(255, 255, 255, 0.18);
}

.color-card h3 {
  font-size: 0.95rem;
}

.color-card p {
  margin: 0.45rem 0 0;
  font-size: 0.87rem;
}

.color-red {
  background: rgba(180, 40, 36, 0.42);
}

.color-orange {
  background: rgba(170, 98, 30, 0.42);
}

.color-yellow {
  background: rgba(166, 141, 42, 0.4);
}

.color-green {
  background: rgba(58, 128, 64, 0.42);
}

.color-blue {
  background: rgba(49, 86, 139, 0.44);
}

.color-pink {
  background: rgba(138, 63, 111, 0.44);
}

.gallery-stage {
  position: relative;
  background-color: rgba(12, 9, 9, 0.92);
  background-image: url("../images/common/bricks.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.gallery-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(242, 49, 44, 0.2), transparent 45%),
    radial-gradient(circle at 82% 24%, rgba(29, 137, 218, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(7, 5, 5, 0.46), rgba(7, 5, 5, 0.66));
}

.gallery-stage .container {
  position: relative;
  z-index: 2;
}

body[data-page="gallery"] .page-hero {
  padding: clamp(3.9rem, 9vw, 5.4rem) 0 clamp(2.3rem, 6vw, 3.4rem);
}

body[data-page="gallery"] .page-hero::before {
  background:
    radial-gradient(circle at 14% 26%, rgba(242, 49, 44, 0.28), transparent 42%),
    linear-gradient(180deg, rgba(9, 7, 7, 0.68), rgba(9, 7, 7, 0.84));
}

body[data-page="gallery"] .page-hero h1 {
  font-size: clamp(2.6rem, 9vw, 5.4rem);
  letter-spacing: 0.03em;
}

body[data-page="gallery"] .page-hero p {
  max-width: 56ch;
  font-size: 0.96rem;
}

.gallery-tools {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  flex-wrap: wrap;
  margin: 0 0 1.05rem;
}

.gallery-tools::before {
  content: "SHOW";
  font-family: "Bungee", "Impact", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: #f2dcc1;
  opacity: 0.78;
}

.filter-btn {
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.44);
  color: #f5ead4;
  padding: 0.52rem 0.82rem 0.46rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: "Bungee", "Impact", sans-serif;
  font-size: 0.69rem;
  font-weight: 400;
  position: relative;
  box-shadow:
    inset 0 -2px 0 rgba(255, 230, 181, 0.3),
    0 8px 14px rgba(0, 0, 0, 0.24);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.filter-btn::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  right: 0.45rem;
  bottom: 0.3rem;
  height: 2px;
  background: rgba(255, 255, 255, 0.28);
  transition: background 180ms ease, transform 180ms ease;
}

.filter-btn.is-active,
.filter-btn:hover {
  color: #fff5dc;
  background: rgba(242, 49, 44, 0.24);
  transform: translateY(-1px);
  box-shadow:
    inset 0 -2px 0 rgba(255, 230, 181, 0.45),
    0 10px 18px rgba(0, 0, 0, 0.28);
}

.filter-btn.is-active::after,
.filter-btn:hover::after {
  background: var(--gold);
  transform: scaleX(1.03);
}

.gallery-grid {
  columns: 4 236px;
  column-gap: 0.95rem;
}

.gallery-item {
  --tile-accent: #f4b443;
  break-inside: avoid;
  margin: 0 0 0.95rem;
  border: 0;
  border-radius: 0;
  overflow: clip;
  background: transparent;
  position: relative;
  isolation: isolate;
  cursor: zoom-in;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-item:nth-child(5n + 2) {
  --tile-accent: #f2312c;
}

.gallery-item:nth-child(5n + 3) {
  --tile-accent: #7bcf63;
}

.gallery-item:nth-child(5n + 4) {
  --tile-accent: #49a9ef;
}

.gallery-item:nth-child(5n + 5) {
  --tile-accent: #f18d36;
}

.gallery-item::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--tile-accent);
  z-index: 3;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.42);
}

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

.gallery-item img {
  width: 100%;
  height: auto;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.01);
  transition: transform 330ms ease, filter 330ms ease;
}

.gallery-item:hover img {
  transform: scale(1.065);
  filter: saturate(1.15) contrast(1.1);
}

.gallery-item figcaption {
  position: absolute;
  left: 0.72rem;
  right: 0.72rem;
  bottom: 0.56rem;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #fff4d8;
  font-family: "Bungee", "Impact", sans-serif;
  font-size: clamp(0.76rem, 1.4vw, 0.98rem);
  letter-spacing: 0.05em;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.88);
  box-shadow: none;
  pointer-events: none;
}

.gallery-item figcaption::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 0 0 0.42rem;
  background: var(--tile-accent);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.87);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: min(1200px, calc(100vw - 2rem));
  max-height: calc(100vh - 3rem);
  border-radius: 0;
  border: 0;
  box-shadow: 0 24px 36px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 44px;
  height: 40px;
  border-radius: 0;
  border: 0;
  background: rgba(255, 214, 139, 0.18);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 0;
  line-height: 1;
}

.contact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.95fr 1.05fr;
}

.info-stack {
  display: grid;
  gap: 0.75rem;
}

.info-card {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  padding: 0.85rem 0.75rem 0.95rem;
  position: relative;
}

.info-card::before {
  content: none;
}

.info-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.info-card h3 {
  font-size: 1rem;
}

.info-card p,
.info-card a {
  margin: 0.45rem 0 0;
  color: var(--text-dim);
  text-decoration: none;
}

.map-wrap iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 0;
}

.contact-form {
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
  padding: 1rem 0.95rem 1.05rem;
  display: grid;
  gap: 0.75rem;
  position: relative;
}

.contact-form::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 38%;
  height: 3px;
  background: var(--gold);
}

.contact-form::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f4dfb2;
  font-weight: 700;
}

.field input,
.field textarea {
  border: 0;
  background: rgba(0, 0, 0, 0.24);
  color: #fff;
  border-radius: 0;
  font: inherit;
  padding: 0.65rem 0.65rem 0.62rem;
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.35);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.field input:focus,
.field textarea:focus {
  background: rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 -2px 0 rgba(255, 230, 181, 0.8);
  outline: none;
}

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

.site-footer {
  margin-top: 2rem;
  background-color: rgba(10, 7, 7, 0.96);
  background-image: url("../images/common/footer-bg.jpg");
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.footer-inner {
  padding: 1.4rem 0 1.2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 0.9fr 1.1fr 0.9fr;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.45rem;
}

.footer-brand img {
  width: 66px;
  height: 66px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-dim);
}

.footer-lists {
  display: grid;
  gap: 0.65rem;
}

.footer-list {
  display: grid;
  gap: 0.2rem;
}

.footer-list strong {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffdf98;
  font-size: 0.75rem;
}

.footer-list span,
.footer-list a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.93rem;
}

.footer-pay {
  justify-self: end;
  text-align: right;
}

.footer-pay strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffdf98;
  font-size: 0.75rem;
  margin-bottom: 0.45rem;
}

.footer-pay img {
  width: min(180px, 100%);
  margin-left: auto;
}

.footer-bottom {
  padding: 0.8rem 0 1rem;
  color: #cbbba2;
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.floating-order {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  text-decoration: none;
}

.section.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.section.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .quick-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "primary primary"
      "secondary tertiary";
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-grid .food-card:nth-child(2n),
  .card-grid .food-card:nth-child(3n),
  .card-grid .food-card:nth-child(4n) {
    transform: none;
  }

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

  .split-media {
    min-height: 320px;
  }

  .split-media img:first-child {
    min-height: 320px;
  }

  .menu-highlights,
  .color-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="gallery"] .gallery-grid {
    columns: 3 220px;
  }

  .testimonial-slider {
    min-height: 245px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-pay {
    justify-self: start;
    text-align: left;
  }

  .footer-pay img {
    margin-left: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 78px;
  }

  .brand img {
    width: 54px;
    height: 54px;
  }

  .brand-text strong {
    font-size: 0.85rem;
  }

  .top-contact {
    gap: 0.45rem;
  }

  .top-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .top-status {
    font-size: 0.68rem;
  }

  .hero-content::before {
    display: none;
  }

  .reel-track img {
    width: 78vw;
    height: 45vw;
    max-height: 230px;
  }

  .quick-strip-grid,
  .scene-grid,
  .card-grid,
  .menu-board,
  .menu-highlights,
  .drinks-grid,
  .color-row {
    grid-template-columns: 1fr;
  }

  .scene-grid {
    grid-template-areas:
      "primary"
      "secondary"
      "tertiary";
  }

  .card-grid .food-card:nth-child(2n),
  .card-grid .food-card:nth-child(3n),
  .card-grid .food-card:nth-child(4n) {
    transform: none;
  }

  .split-media img:last-child {
    width: 50%;
    right: 0.4rem;
    bottom: 0.4rem;
  }

  body[data-page="gallery"] .gallery-grid {
    columns: 2 170px;
    column-gap: 0.72rem;
  }

  body[data-page="gallery"] .gallery-item {
    margin-bottom: 0.72rem;
  }

  body[data-page="gallery"] .gallery-tools {
    gap: 0.5rem;
  }

  body[data-page="gallery"] .gallery-tools::before {
    width: 100%;
    margin-bottom: 0.1rem;
  }

  body[data-page="gallery"] .filter-btn {
    padding: 0.48rem 0.72rem 0.42rem;
  }

  .scene-marquee-track {
    animation-duration: 18s;
  }

  .reel-track {
    animation-duration: 28s;
  }

  .testimonial-slider {
    min-height: 285px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 0.8rem);
  }

  .top-bar-inner {
    min-height: 32px;
    gap: 0.35rem;
  }

  .top-contact {
    font-size: 0.7rem;
    gap: 0.34rem;
  }

  .top-contact span:first-child {
    display: none;
  }

  .top-meta {
    font-size: 0.68rem;
    gap: 0.38rem;
  }

  .brand-text span {
    display: none;
  }

  .brand-text strong {
    font-size: 0.79rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 15vw, 2.55rem);
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .scene-grid {
    gap: 0.7rem;
  }

  .event-list li {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .event-day {
    font-size: 0.66rem;
  }

  .event-name {
    font-size: 0.8rem;
  }

  body[data-page="gallery"] .gallery-grid {
    columns: 1 180px;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .section.reveal {
    opacity: 1;
    transform: none;
  }

  .reel-track {
    animation: none;
  }
}
