:root {
  --ink: #171311;
  --muted: #6e625b;
  --paper: #fffaf3;
  --cream: #f6efe2;
  --charcoal: #201b18;
  --tomato: #d9412f;
  --saffron: #f6b545;
  --mint: #2f9d7e;
  --line: rgba(32, 27, 24, 0.12);
  --shadow: 0 22px 70px rgba(39, 27, 19, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(23, 19, 17, 0.5);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 16px 50px rgba(23, 19, 17, 0.12);
}

.brand,
.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img,
.site-footer img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: currentColor;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .nav-links a:hover {
  background: rgba(217, 65, 47, 0.08);
}

.mobile-quick-nav {
  display: none;
}

.header-cta,
.button,
.add-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--saffron);
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  overflow: hidden;
  align-items: end;
  padding: 140px max(24px, calc((100vw - 1120px) / 2)) 80px;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 10, 8, 0.86), rgba(14, 10, 8, 0.36) 54%, rgba(14, 10, 8, 0.58)),
    linear-gradient(0deg, rgba(14, 10, 8, 0.88), transparent 46%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker,
.menu-type {
  margin: 0 0 12px;
  color: var(--tomato);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--saffron);
}

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

h1 {
  margin-bottom: 14px;
  font-size: clamp(72px, 13vw, 176px);
  line-height: 0.82;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.1;
}

.hero-copy {
  width: min(620px, 100%);
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 3vw, 25px);
}

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

.button {
  padding: 0 22px;
}

.button.primary {
  color: #fff;
  background: var(--tomato);
  box-shadow: 0 14px 30px rgba(217, 65, 47, 0.32);
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.button.secondary.light {
  color: var(--ink);
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line);
}

.button.dark {
  color: #fff;
  background: var(--charcoal);
}

.button.full {
  width: 100%;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.hero-stats span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-stats strong {
  color: var(--saffron);
}

.intro-section,
.section,
.order-section,
.location-section,
.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: 40px;
  padding: 78px 0 36px;
}

.intro-section p:last-child,
.section-heading p,
.order-copy p,
.location-card p,
.site-footer p {
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(39, 27, 19, 0.08);
}

.feature-band article {
  min-height: 180px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.feature-band article:last-child {
  border-right: 0;
}

.feature-band span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.section {
  padding: 64px 0;
}

.experience-section,
.trust-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 34px 0 72px;
}

.experience-copy {
  display: flex;
  min-height: 500px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(32, 27, 24, 0.08), rgba(32, 27, 24, 0.9)),
    url("assets/gallery/prem-profile.jpg") center / cover;
}

.experience-copy .section-kicker,
.experience-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.service-list span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.experience-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
}

.experience-media video,
.experience-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.experience-media img {
  min-height: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.menu-tools {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.menu-search {
  width: min(340px, 100%);
}

.menu-search span {
  color: var(--muted);
}

.filter-buttons,
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button,
.gallery-filter {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--muted);
  background: #fff;
  cursor: pointer;
  font-weight: 850;
}

.filter-button.is-active,
.gallery-filter.is-active {
  border-color: transparent;
  color: #fff;
  background: var(--charcoal);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.menu-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(39, 27, 19, 0.08);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-card div {
  padding: 20px;
}

.menu-card p:not(.menu-type) {
  min-height: 48px;
  color: var(--muted);
}

.add-button {
  width: 100%;
  padding: 0 18px;
  color: var(--ink);
  background: var(--cream);
}

.add-button:hover {
  background: var(--saffron);
}

.gallery-section {
  position: relative;
  padding-top: 34px;
}

.gallery-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 18px;
}

.gallery-summary span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: #fff;
  box-shadow: 0 10px 26px rgba(39, 27, 19, 0.06);
}

.gallery-summary strong {
  color: var(--tomato);
  font-size: 18px;
}

.gallery-filters {
  margin-bottom: 20px;
}

.gallery-stage {
  position: relative;
}

.gallery-stage::before {
  position: absolute;
  top: -10px;
  right: 7%;
  left: 7%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(246, 181, 69, 0.86), rgba(217, 65, 47, 0.78), transparent);
  content: "";
  animation: spice-line 4.8s ease-in-out infinite;
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 150px;
  gap: 16px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.gallery-item {
  position: relative;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  animation: card-rise 520ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--delay, 0ms);
  isolation: isolate;
}

.gallery-item.feature {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-media-wrap,
.gallery-item img,
.gallery-item video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-media-wrap {
  position: absolute;
  inset: 0;
}

.gallery-item img,
.gallery-item video {
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.gallery-item::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(15, 12, 10, 0.72)),
    linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  background-size: 100% 100%, 240% 100%;
  content: "";
  opacity: 0.84;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.gallery-item::after {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  display: none;
  padding: 6px 9px;
  border-radius: 999px;
  color: #fff;
  background: rgba(217, 65, 47, 0.9);
  content: "Play";
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gallery-item.has-video::after {
  display: block;
}

.gallery-item:hover,
.gallery-item:focus-visible {
  transform: translateY(-4px) scale(1.01);
}

.gallery-item:hover img,
.gallery-item:hover video,
.gallery-item:focus-visible img,
.gallery-item:focus-visible video {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.065);
}

.gallery-item:hover::before,
.gallery-item:focus-visible::before {
  background-position: 0 0, -120% 0;
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: #fff;
  background: rgba(23, 19, 17, 0.66);
  backdrop-filter: blur(10px);
}

.gallery-caption strong {
  font-size: 13px;
  line-height: 1.1;
  text-align: left;
}

.gallery-caption small {
  color: var(--saffron);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-more {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 22px auto 0;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  background: var(--charcoal);
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 14px 36px rgba(39, 27, 19, 0.18);
}

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

.gallery-item.is-hidden,
.menu-card.is-hidden {
  display: none;
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 28px;
  align-items: end;
  padding: 40px 0 54px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.trust-grid article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(39, 27, 19, 0.08);
}

.trust-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--tomato);
  font-size: 28px;
  line-height: 1;
}

.trust-grid span {
  color: var(--muted);
  font-weight: 750;
}

.order-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
  padding: 72px 0;
}

.order-copy {
  position: sticky;
  top: 110px;
  padding: 36px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(217, 65, 47, 0.9), rgba(47, 157, 126, 0.72)),
    url("assets/gallery/pizza.jpg") center / cover;
}

.order-copy .section-kicker,
.order-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.order-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.order-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0;
  border: 0;
  padding: 0;
}

.order-type legend {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.order-type label {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fffaf5;
}

.order-type input {
  width: auto;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf5;
}

textarea {
  resize: vertical;
}

.cart-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  background: var(--cream);
}

.cart-head h3 {
  margin: 0;
  font-size: 17px;
}

.cart-head button {
  border: 0;
  color: var(--tomato);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-items {
  min-height: 80px;
  margin: 0;
  padding: 10px 16px 16px;
  list-style: none;
}

.cart-items li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.cart-items li:last-child {
  border-bottom: 0;
}

.cart-items button {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--charcoal);
  cursor: pointer;
}

.empty-cart {
  color: var(--muted);
}

.location-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 16px;
  padding: 40px 0 80px;
}

.location-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(32, 27, 24, 0.15), rgba(32, 27, 24, 0.92)),
    url("assets/gallery/prem-profile.jpg") center / cover;
}

.location-card .section-kicker,
.location-card p {
  color: rgba(255, 255, 255, 0.82);
}

.location-section iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.92) contrast(1.05);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 580px;
  margin: 0;
  text-align: right;
  font-size: 14px;
}

.lightbox {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  place-items: center;
  padding: 28px;
  background: rgba(15, 12, 10, 0.86);
}

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

.lightbox-frame {
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox-media {
  display: grid;
  place-items: center;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: min(760px, 86vh);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.lightbox-media video {
  width: min(980px, 100%);
  background: #000;
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
  color: #fff;
  font-weight: 900;
}

.lightbox figcaption span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 22px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  font-weight: 900;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@keyframes card-rise {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes spice-line {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

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

@media (max-width: 900px) {
  .site-header {
    top: 10px;
    right: 12px;
    left: 12px;
    width: auto;
    transform: none;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
    padding-bottom: 54px;
  }

  .hero-content,
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .intro-section,
  .experience-section,
  .section-heading,
  .order-section,
  .location-section,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .feature-band,
  .menu-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .menu-tools {
    align-items: stretch;
    flex-direction: column;
  }

  .experience-copy,
  .experience-media video {
    min-height: 420px;
  }

  .experience-media {
    grid-template-columns: 1fr 1fr;
  }

  .feature-band article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-band article:last-child {
    border-bottom: 0;
  }

  .gallery-layout {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 190px;
  }

  .gallery-item.feature,
  .gallery-item.wide {
    grid-column: span 2;
  }

  .order-copy {
    position: static;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .site-footer {
    padding-bottom: 92px;
  }
}

@media (max-width: 560px) {
  .site-header {
    border-radius: 24px;
    right: auto;
    width: 58px;
    min-height: 58px;
    padding: 10px;
  }

  .header-cta {
    display: none;
  }

  .brand span {
    display: none;
  }

  .mobile-quick-nav {
    position: fixed;
    z-index: 30;
    bottom: 12px;
    left: 50%;
    width: min(312px, calc(100vw - 24px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    overflow: hidden;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    background: rgba(23, 19, 17, 0.82);
    box-shadow: 0 18px 50px rgba(23, 19, 17, 0.26);
    backdrop-filter: blur(18px);
    transform: translateX(-50%);
  }

  .mobile-quick-nav a {
    display: inline-flex;
    min-width: 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 850;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-quick-nav a:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .hero-stats span,
  .button {
    width: 100%;
  }

  .hero-content,
  .hero-copy,
  .hero-actions,
  .hero-stats {
    width: min(330px, 100%);
    max-width: 330px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .intro-section,
  .experience-section,
  .section,
  .order-section,
  .location-section,
  .trust-section {
    width: calc(100% - 24px);
  }

  .feature-band {
    width: calc(100% - 24px);
  }

  .gallery-layout {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .experience-media {
    grid-template-columns: 1fr;
  }

  .experience-copy,
  .experience-media video,
  .experience-media img {
    min-height: 360px;
  }

  .order-type {
    grid-template-columns: 1fr;
  }

  .gallery-item.feature,
  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: span 1;
  }

  .gallery-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .lightbox {
    padding: 72px 14px 24px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav.prev {
    left: 14px;
  }

  .lightbox-nav.next {
    right: 14px;
  }

  .location-card,
  .location-section iframe {
    min-height: 360px;
    height: 360px;
  }
}
