@font-face {
  font-family: "PlaneCrash";
  src: url("../fonts/plane-crash.ttf") format("truetype");
  font-display: swap;
}

:root {
  --bg: #040706;
  --bg-soft: #09110d;
  --surface: rgba(8, 14, 11, 0.92);
  --surface-strong: #0d1712;
  --card: rgba(255, 255, 255, 0.035);
  --line: rgba(255, 128, 92, 0.16);
  --text: #f7fff9;
  --muted: #b6c8bc;
  --brand: #ff7a1a;
  --brand-2: #ff4b2b;
  --brand-dark: #a32016;
  --accent: #ffe8dc;
  --success: #ff9f7a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1160px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 122, 26, 0.16), transparent 30%),
    radial-gradient(circle at left center, rgba(255, 75, 43, 0.12), transparent 24%),
    linear-gradient(180deg, #060908 0%, #020303 100%);
  line-height: 1.55;
  position: relative;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 85%);
  opacity: 0.35;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.contact-layout-wide {
  width: min(1520px, calc(100% - 48px));
  margin: 0 auto;
}

.contact-header {
  width: min(1520px, calc(100% - 48px));
  text-align: center;
}

.contact-header .section-title,
.contact-header .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 72px 0;
  position: relative;
}

.seo-intro {
  padding: 46px 0 58px;
}

.seo-intro-inner {
  text-align: center;
}

.seo-intro .section-title,
.seo-intro .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.local-proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.local-proof-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 128, 92, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--accent);
  font-size: 0.96rem;
  font-weight: 800;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-bottom: 18px;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #effff4;
  text-align: center;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 420px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 122, 26, 0) 0%,
    rgba(255, 122, 26, 0.5) 22%,
    rgba(255, 255, 255, 0.95) 100%
  );
  box-shadow: 0 0 14px rgba(255, 122, 26, 0.18);
}

.eyebrow::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 75, 43, 0.5) 78%,
    rgba(255, 75, 43, 0) 100%
  );
}

.display {
  font-family: "Arial Black", "Avenir Next Condensed", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.section-title,
.hero-title,
.page-title {
  margin: 16px 0 14px;
  line-height: 1;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.hero-title,
.page-title {
  font-size: clamp(2.4rem, 8vw, 5.4rem);
}

.section-lead,
.hero-copy,
.page-lead {
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.08rem);
  max-width: 64ch;
}

.grid {
  display: grid;
  gap: 24px;
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff7f2;
  box-shadow: 0 18px 34px rgba(255, 75, 43, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff5a1f 0%, #c81d25 100%);
  box-shadow: 0 20px 36px rgba(200, 40, 22, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 128, 92, 0.2);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 128, 92, 0.2);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.header-actions,
.nav-list,
.hero-actions,
.quick-stats,
.sticky-cta-bar,
.filter-row,
.menu-size-list,
.footer-meta,
.breadcrumb,
.tag-row,
.social-links,
.order-steps,
.contact-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header-shell {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(4, 8, 6, 0.84);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 128, 92, 0.10);
}

.site-header-inner {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.brand-name {
  font-family: "Arial Black", "Avenir Next Condensed", "Segoe UI", sans-serif;
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-toggle {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 128, 92, 0.12);
  border-radius: 14px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  position: relative;
  content: "";
}

.nav-toggle span::before {
  top: -6px;
  position: absolute;
}

.nav-toggle span::after {
  top: 6px;
  position: absolute;
}

.site-nav {
  display: none;
  width: 100%;
}

.site-nav.open {
  display: block;
  padding: 14px 0 0;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-direction: column;
  gap: 10px;
}

.nav-list a {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  color: var(--muted);
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
  line-height: 1;
  border-radius: 0;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.nav-list a.active,
.nav-list a:hover {
  color: #fff;
}

.nav-list a::after {
  content: "";
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  transition: width 0.18s ease;
}

.nav-list a {
  position: relative;
}

.nav-list a.active::after,
.nav-list a:hover::after {
  width: calc(100% - 12px);
}

.desktop-only {
  display: none;
}

.hero {
  padding: 0 0 28px;
}

.content-split,
.cta-panel,
.contact-layout,
.about-layout,
.policy-layout,
.blog-post-layout {
  display: grid;
  gap: 28px;
}

.hero-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(200, 40, 22, 0.08)),
    rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 128, 92, 0.12);
  border-radius: 32px;
  padding: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-panel:first-child {
  background:
    radial-gradient(circle at top left, rgba(255, 75, 43, 0.14), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(200, 40, 22, 0.10)),
    rgba(255, 255, 255, 0.02);
}

.order-panel-main,
.order-panel-steps {
  padding: 34px;
}

.order-actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.order-panel-steps {
  background: rgba(255, 255, 255, 0.02);
}

.order-steps-list {
  display: grid;
  gap: 22px;
}

.order-step-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 128, 92, 0.12);
}

.order-step-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.order-step-number {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff7f2;
  font-size: 1.25rem;
  font-weight: 900;
}

.order-step-item strong,
.order-step-item p {
  margin: 0;
}

.order-step-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.order-step-item p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: 320px;
}

.hero-visual-full {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-single {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 9;
  padding: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  background: transparent;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: none;
  opacity: 0;
  transition: opacity 0.65s ease;
}

.hero-background.is-active {
  opacity: 1;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 8, 5, 0.34);
  color: #ffffff;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.hero-arrow:hover {
  background: rgba(255, 75, 43, 0.34);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-arrow span {
  font-size: 1.4rem;
  line-height: 1;
}

.hero-arrow-left {
  left: 18px;
}

.hero-arrow-right {
  right: 18px;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
}

.hero-overlay-inner {
  width: 100%;
  padding-top: 32px;
  padding-bottom: 36px;
  align-self: center;
}

.hero-overlay-inner > .eyebrow,
.hero-overlay-inner > .hero-title,
.hero-overlay-inner > .hero-copy,
.hero-overlay-inner > .hero-actions {
  max-width: fit-content;
  background: rgba(3, 8, 5, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 18px;
  padding-left: 18px;
  padding-right: 18px;
}

.hero-overlay-inner > .eyebrow {
  padding-top: 8px;
  padding-bottom: 8px;
}

.hero-overlay-inner > .hero-title {
  padding-top: 14px;
  padding-bottom: 14px;
}

.hero-overlay-inner > .hero-copy {
  padding-top: 14px;
  padding-bottom: 14px;
}

.hero-overlay-inner > .hero-actions {
  padding-top: 14px;
  padding-bottom: 14px;
}

.hero-slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(4, 10, 7, 0.76);
  border: 1px solid rgba(255, 128, 92, 0.12);
  backdrop-filter: blur(12px);
}

.hero-full-caption {
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.hero-slide-caption strong {
  font-size: 1rem;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  z-index: -1;
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  background: rgba(70, 219, 123, 0.22);
  top: 0;
  right: 10%;
}

.hero-visual::after {
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.1);
  bottom: 12%;
  left: 4%;
}

.hero-product {
  margin: 0 auto;
  max-width: 520px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
}

.hero-product-full {
  width: 100%;
  max-width: 620px;
  height: auto;
}

.stat-card,
.feature-card,
.menu-card,
.promo-card,
.review-card,
.info-card,
.faq-card,
.blog-card,
.policy-card,
.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.stat-card strong,
.price-strong,
.info-title,
.menu-card h3,
.promo-card h3,
.blog-card h3,
.review-card h3 {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.feature-grid,
.menu-grid,
.promo-grid,
.review-grid,
.blog-grid,
.info-grid,
.story-grid,
.about-highlights {
  display: grid;
  gap: 16px;
}

.menu-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.feature-icon {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: inherit;
  font-size: 2.9rem;
  line-height: 1;
}

.feature-icon img,
.feature-icon svg {
  width: 72px;
  height: 72px;
  display: block;
}

.feature-card h3,
.feature-card p {
  margin: 0;
}

.promo-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.promo-image-wrap {
  min-height: 180px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-image-wrap img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.about-highlights {
  grid-template-columns: 1fr;
  align-content: stretch;
}

.about-highlights-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 128, 92, 0.12);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.about-highlight-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.about-highlight-item h3 {
  margin: 0;
  font-size: 1.15rem;
}

.about-highlight-item p {
  margin: 0;
  color: var(--muted);
}

.about-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(200, 40, 22, 0.18));
  border: 1px solid rgba(255, 128, 92, 0.16);
  font-size: 1.5rem;
}

.faq-card {
  padding: 0;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-card.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
}

.menu-card-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.menu-card-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 108px;
}

.menu-card-copy p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.menu-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.menu-card:hover,
.feature-card:hover,
.promo-card:hover,
.review-card:hover,
.info-card:hover,
.story-card:hover,
.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 75, 43, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.menu-image-wrap {
  min-height: 180px;
  border-radius: 0;
  background: transparent;
  padding: 0;
  overflow: hidden;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-image-wrap img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

.menu-size-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.size-pill {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  min-height: 30px;
  padding: 0 0 6px;
  border-radius: 0;
  background: transparent;
  color: #effff4;
  border-bottom: 1px solid rgba(255, 128, 92, 0.10);
}

.menu-card .btn,
.promo-card .btn {
  min-height: 44px;
  padding: 0 14px;
  font-size: 0.94rem;
}

.menu-card h3,
.promo-card h3 {
  margin-bottom: 4px;
}

.promo-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.45;
}

.highlight-strip {
  padding: 18px;
  border: 1px dashed rgba(150, 255, 198, 0.28);
  border-radius: 24px;
  background: rgba(200, 40, 22, 0.08);
}

.page-hero {
  padding: 40px 0 24px;
}

.breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 12px;
}

.breadcrumb li:last-child::after {
  display: none;
}

.filter-panel,
.sticky-panel,
.contact-form-shell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 128, 92, 0.12);
  border-radius: var(--radius);
  padding: 20px;
}

.contact-panel,
.contact-form-shell,
.map-shell {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 128, 92, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-shell {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-form-shell h3,
.contact-form-shell p {
  margin: 0;
}

.contact-info-list {
  display: grid;
  gap: 12px;
}

.contact-info-item {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 128, 92, 0.10);
}

.contact-info-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.contact-info-item strong {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-info-item p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.5;
}

.map-shell {
  height: 100%;
}

.map-address-bar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 128, 92, 0.12);
}

.map-address-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(200, 40, 22, 0.18));
  border: 1px solid rgba(255, 128, 92, 0.16);
  font-size: 1.35rem;
}

.map-address-bar strong,
.map-address-bar p {
  margin: 0;
}

.map-address-bar strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.search-input,
.textarea,
.input {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(255, 128, 92, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 0 16px;
  color: var(--text);
}

.textarea {
  min-height: 150px;
  padding: 14px 16px;
  resize: vertical;
}

.filter-chip {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  border: 1px solid rgba(255, 128, 92, 0.12);
}

.filter-chip.is-active {
  background: linear-gradient(135deg, rgba(200, 40, 22, 0.24), rgba(255, 255, 255, 0.12));
  color: #effff4;
  border-color: rgba(255, 128, 92, 0.32);
}

.sticky-panel {
  position: sticky;
  top: 142px;
}

.two-col {
  display: grid;
  gap: 24px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.footer {
  padding: 36px 0 110px;
  border-top: 1px solid rgba(255, 128, 92, 0.10);
  background: rgba(0, 0, 0, 0.24);
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-note {
  color: var(--muted);
  font-size: 0.94rem;
}

.sticky-cta-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 100;
  padding: 10px;
  border-radius: 20px;
  background: rgba(3, 8, 5, 0.94);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 128, 92, 0.12);
  justify-content: space-between;
}

.sticky-cta-bar a {
  flex: 1 1 0;
  min-width: 0;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 800;
  padding: 0 10px;
}

.sticky-cta-bar a.primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(200, 40, 22, 0.24);
}

.map-frame {
  width: 100%;
  min-height: 320px;
  height: 100%;
  border: 0;
  border-radius: var(--radius);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (min-width: 768px) {
  .hero-single {
    min-height: 520px;
    aspect-ratio: auto;
  }

  .content-split,
  .cta-panel,
  .contact-layout,
  .about-layout,
  .policy-layout,
  .blog-post-layout,
  .two-col,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .menu-grid,
  .promo-grid,
  .review-grid,
  .blog-grid,
  .info-grid,
  .story-grid,
  .about-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-image-wrap,
  .menu-image-wrap {
    min-height: 220px;
  }

  .promo-image-wrap img,
  .menu-image-wrap img {
    max-height: 260px;
  }
}

@media (max-width: 767px) {
  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow-left {
    left: 10px;
  }

  .hero-arrow-right {
    right: 10px;
  }
}

@media (min-width: 960px) {
  .desktop-only {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: block;
    justify-self: center;
    width: auto;
  }

  .site-nav.open {
    padding-bottom: 0;
  }

  .site-header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
  }

  .nav-list {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .content-split {
    grid-template-columns: 1.15fr 0.85fr;
  }

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

  .menu-showcase .menu-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-grid,
  .promo-grid,
  .review-grid,
  .info-grid,
  .story-grid,
  .blog-grid,
  .about-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1.15fr 1fr 1fr;
    align-items: stretch;
  }

  .two-col {
    grid-template-columns: 1.4fr 0.8fr;
  }

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

@media (max-width: 959px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 90;
  }

  .site-nav.open {
    padding: 0;
  }

  .nav-list {
    padding: 12px;
    border: 1px solid rgba(255, 128, 92, 0.16);
    border-radius: 20px;
    background: rgba(8, 14, 11, 0.98);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.36);
    backdrop-filter: blur(16px);
  }

  .nav-list a {
    min-height: 52px;
    justify-content: flex-start;
    padding: 0 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav-list a.active,
  .nav-list a:hover {
    background: rgba(255, 122, 26, 0.10);
  }

  .nav-list a::after {
    left: 16px;
    bottom: 8px;
    transform: none;
  }

  .nav-list a.active::after,
  .nav-list a:hover::after {
    width: 32px;
  }
}

@media (min-width: 1200px) {
  .promo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
