:root {
  --ink: #0f172a;
  --muted: #64748b;
  --surface: #ffffff;
  --surface-soft: #eff6ff;
  --surface-tint: #f8fafc;
  --tomato: #2563eb;
  --tomato-dark: #1d4ed8;
  --leaf: #1e40af;
  --gold: #60a5fa;
  --navy: #0b2244;
  --navy-soft: #14315d;
  --line: #e2e8f0;
  --line-soft: #eef2f7;
  --shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.05);
  --radius: 12px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 86px;
}

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

::selection {
  background: var(--gold);
  color: var(--ink);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #ffffff;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0));
  transition:
    padding 260ms ease,
    background 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--tomato), var(--gold));
  opacity: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition:
    opacity 220ms ease,
    transform 80ms linear;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(23, 23, 23, 0.14);
  background: rgba(246, 244, 238, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  line-height: 1.05;
}

.brand span:last-child {
  overflow-wrap: normal;
  word-break: normal;
}

.brand-mark {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a:focus-visible {
  color: var(--tomato);
  border-color: var(--tomato);
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--tomato);
  color: #ffffff;
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: inherit;
  cursor: pointer;
  place-items: center;
  backdrop-filter: blur(10px);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled .nav-toggle {
  background: rgba(15, 23, 42, 0.04);
  border-color: rgba(15, 23, 42, 0.12);
}

.nav-toggle-icon {
  position: relative;
  display: block;
  width: 20px;
  height: 14px;
}

.nav-toggle-icon > span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    top 220ms ease,
    transform 220ms ease,
    opacity 160ms ease;
}

.nav-toggle-icon > span:nth-child(1) { top: 0; }
.nav-toggle-icon > span:nth-child(2) { top: 6px; }
.nav-toggle-icon > span:nth-child(3) { top: 12px; }

.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon > span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 17;
  background: rgba(7, 22, 45, 0.55);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

body.nav-open .nav-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: clamp(460px, 72vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
  background: var(--navy);
}

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

.hero-media {
  background: url("assets/hari-hero.png") center / cover;
  transform: scale(1.02);
  animation: heroZoom 1400ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(11, 34, 68, 0.55) 0%, rgba(11, 34, 68, 0.15) 55%, transparent 80%);
}

@keyframes heroZoom {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

.hero-content {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 86px;
  display: grid;
  justify-items: center;
  text-align: center;
  text-shadow: 0 2px 20px rgba(7, 22, 45, 0.7);
}

.hero .eyebrow,
.hero h1 span,
.hero-copy,
.hero-actions,
.hero-highlights {
  animation: heroRise 760ms cubic-bezier(0.18, 0.84, 0.28, 1) both;
}

.hero h1 span:first-child {
  animation-delay: 110ms;
}

.hero h1 span:last-child {
  animation-delay: 220ms;
}

.hero-copy {
  animation-delay: 330ms;
}

.hero-actions {
  animation-delay: 440ms;
}

.hero-highlights {
  animation-delay: 540ms;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--tomato);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.92;
  font-weight: 900;
}

h1 span {
  display: block;
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 590px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2.6vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.hero-highlights span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.primary-action,
.secondary-action,
.filter-button,
.icon-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.primary-action,
.secondary-action {
  padding: 0 18px;
}

.primary-action {
  background: var(--tomato);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.28);
}

.primary-action:hover,
.primary-action:focus-visible,
.icon-button:hover,
.icon-button:focus-visible {
  background: var(--tomato-dark);
  transform: translateY(-2px);
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.primary-action svg,
.secondary-action svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.quick-info {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 32px));
  margin: -56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-item {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.info-item:last-child {
  border-right: 0;
}

.info-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.info-item a,
.info-item span:last-child {
  font-weight: 800;
}

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

.intro-section,
.popular-section,
.menu-section,
.gallery-section,
.contact-section,
.directions-section {
  padding: clamp(72px, 10vw, 128px) 0;
}

.intro-section {
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.08), transparent 42%),
    linear-gradient(180deg, var(--surface-soft), #dbeafe);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.split-layout p:not(.eyebrow),
.directions-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.intro-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
  color: var(--tomato-dark);
  font-weight: 850;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.intro-actions a:hover,
.intro-actions a:focus-visible {
  border-color: var(--tomato);
  background: #dbeafe;
  color: var(--tomato-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.feature-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, var(--tomato-dark), var(--navy));
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(30, 64, 175, 0.2);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.feature-tile:hover,
.feature-tile:focus-within {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.55);
  box-shadow: 0 20px 48px rgba(37, 99, 235, 0.3);
}

.feature-tile > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.feature-tile:hover > img,
.feature-tile:focus-within > img {
  transform: scale(1.05);
}

.feature-tile-body {
  padding: 22px 24px 24px;
}

.feature-tile h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.feature-tile p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.popular-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.28), transparent 45%),
    radial-gradient(circle at 95% 90%, rgba(96, 165, 250, 0.18), transparent 42%),
    var(--navy);
  color: #ffffff;
}

.popular-section .eyebrow {
  color: var(--gold);
}

.popular-section .price-note {
  color: rgba(255, 255, 255, 0.72);
}

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

.popular-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(37, 99, 235, 0.18), rgba(255, 255, 255, 0.03));
  box-shadow: 0 12px 36px rgba(11, 34, 68, 0.35);
  transition:
    transform 260ms ease,
    background 260ms ease,
    border-color 260ms ease;
}

.popular-card:hover,
.popular-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.55);
  background:
    linear-gradient(155deg, rgba(37, 99, 235, 0.28), rgba(255, 255, 255, 0.05));
}

.popular-card > img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.popular-card:hover > img,
.popular-card:focus-within > img {
  transform: scale(1.05);
}

.popular-card-body {
  padding: 22px 24px 24px;
}

.image-disclaimer {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  font-style: italic;
  text-align: right;
}

.image-disclaimer--light {
  color: var(--muted);
  text-align: left;
}

.popular-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.popular-card h3 {
  font-size: 1.3rem;
}

.popular-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.75);
}

.popular-price {
  margin-top: 18px !important;
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 900;
}

.marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: clamp(40px, 6vw, 72px);
  padding: 8px 0;
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 0 7px;
  animation: marquee-scroll 70s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 300px);
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.25);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 32px rgba(11, 34, 68, 0.35);
  will-change: transform;
  transform: translateZ(0);
}

@media (max-width: 720px) {
  .marquee {
    margin-top: clamp(32px, 8vw, 48px);
    mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
  }

  .marquee-track {
    gap: 10px;
    padding: 0 5px;
    animation-duration: 55s;
  }

  .marquee-item {
    width: clamp(150px, 44vw, 220px);
    aspect-ratio: 4 / 3;
    box-shadow: 0 8px 20px rgba(11, 34, 68, 0.3);
  }
}

@media (max-width: 420px) {
  .marquee-track {
    animation-duration: 45s;
  }

  .marquee-item {
    width: clamp(140px, 48vw, 180px);
  }
}

.marquee-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.menu-section {
  background:
    linear-gradient(180deg, var(--surface-soft), var(--surface-tint));
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.price-note {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  text-align: right;
}

.menu-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.filter-button {
  min-width: 96px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  border-color: var(--tomato);
  background: var(--tomato);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.2);
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.price-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.price-table th,
.price-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.price-table tbody tr {
  transition: background-color 180ms ease;
}

.price-table tbody tr:hover {
  background: var(--surface-soft);
}

.price-table th {
  background: var(--navy);
  color: #ffffff;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table td:first-child,
.price-table td:last-child {
  font-weight: 850;
}

.price-table td:nth-child(2) {
  color: var(--muted);
}

.price-table td:last-child {
  width: 190px;
  color: var(--tomato);
  white-space: nowrap;
}

.price-table tr.is-hidden {
  display: none;
}

.price-table tr.category-header {
  display: none;
}

.gallery-section {
  background:
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  grid-auto-rows: 400px;
  gap: 16px;
}

.gallery-wide {
  grid-column: auto;
}

.gallery-item {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: var(--radius);
  background: var(--navy);
  box-shadow: 0 14px 40px rgba(30, 64, 175, 0.15);
}

.gallery-wide {
  grid-column: auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 620ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  transform: scale(1.06);
}

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(11, 34, 68, 0.7);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.scroll-reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 780ms cubic-bezier(0.2, 0.72, 0.2, 1),
    transform 780ms cubic-bezier(0.2, 0.72, 0.2, 1),
    filter 780ms cubic-bezier(0.2, 0.72, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.scroll-reveal[data-reveal="left"] {
  transform: translate3d(-34px, 20px, 0) scale(0.985);
}

.scroll-reveal[data-reveal="right"] {
  transform: translate3d(34px, 20px, 0) scale(0.985);
}

.scroll-reveal[data-reveal="pop"] {
  transform: translate3d(0, 26px, 0) scale(0.94);
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 720px) {
  .scroll-reveal {
    filter: none;
    transform: translate3d(0, 16px, 0);
    transition:
      opacity 360ms cubic-bezier(0.2, 0.72, 0.2, 1),
      transform 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
    transition-delay: 0ms;
  }

  .scroll-reveal[data-reveal="left"],
  .scroll-reveal[data-reveal="right"] {
    transform: translate3d(0, 16px, 0);
  }

  .scroll-reveal[data-reveal="pop"] {
    transform: translate3d(0, 14px, 0) scale(0.97);
  }
}

.site-header.is-scrolled::after {
  opacity: 1;
}

.feature-tile.scroll-reveal.is-visible:hover,
.feature-tile.scroll-reveal.is-visible:focus-within,
.popular-card.scroll-reveal.is-visible:hover,
.popular-card.scroll-reveal.is-visible:focus-within {
  transform: translateY(-6px);
}

.contact-section {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
}

.contact-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  fill: var(--tomato);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.order-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.order-card p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea,
.directions-panel input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  outline: none;
}

.contact-form input,
.directions-panel input {
  min-height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.directions-panel input:focus {
  border-color: var(--tomato);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
}

.form-submit {
  justify-self: start;
}

.directions-section {
  background:
    radial-gradient(circle at 85% 10%, rgba(37, 99, 235, 0.25), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(96, 165, 250, 0.16), transparent 42%),
    var(--navy);
  color: #ffffff;
}

.directions-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: stretch;
}

.directions-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.directions-panel {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.directions-panel label {
  font-size: 0.88rem;
  font-weight: 850;
  color: rgba(255, 255, 255, 0.74);
}

.directions-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 52px 52px;
  gap: 8px;
}

.icon-action {
  width: 52px;
  padding: 0;
  background: var(--tomato);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.icon-action:hover,
.icon-action:focus-visible {
  background: var(--tomato-dark);
  transform: translateY(-2px);
}

.icon-action svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--navy-soft);
  box-shadow: 0 16px 48px rgba(11, 34, 68, 0.4);
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 48px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 800;
}

.mobile-action-bar {
  display: none;
}

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

  .nav-toggle {
    display: inline-grid;
  }

  .main-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(320px, 82vw);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 92px 28px 32px;
    overflow-y: auto;
    background:
      radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.3), transparent 55%),
      var(--navy);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    transform: translateX(105%);
    transition: transform 300ms cubic-bezier(0.2, 0.72, 0.2, 1);
    z-index: 18;
    color: #ffffff;
  }

  body.nav-open .main-nav {
    transform: translateX(0);
  }

  .main-nav a {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 6px 0;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--gold);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .site-header.is-scrolled .main-nav a:hover,
  .site-header.is-scrolled .main-nav a:focus-visible {
    color: var(--gold);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .quick-info,
  .split-layout,
  .popular-grid,
  .contact-layout,
  .directions-layout {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .info-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-item:last-child {
    border-bottom: 0;
  }

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

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

  .section-heading {
    display: block;
  }

  .price-note {
    max-width: none;
    margin-top: 12px;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .intro-section,
  .popular-section,
  .menu-section,
  .gallery-section,
  .contact-section,
  .directions-section {
    padding: clamp(56px, 12vw, 96px) 0;
  }

  .price-table-wrap {
    overflow: visible;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .price-table {
    min-width: 0;
    border-collapse: separate;
    border-spacing: 0;
  }

  .price-table thead {
    display: none;
  }

  .price-table,
  .price-table tbody {
    display: block;
  }

  .price-table tr {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 16px;
    row-gap: 6px;
    align-items: baseline;
    margin-bottom: 10px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .price-table tbody tr:hover {
    background: var(--surface);
    transform: none;
  }

  .price-table td {
    display: block;
    padding: 0;
    border: 0;
    vertical-align: baseline;
  }

  .price-table td:first-child {
    grid-column: 1;
    grid-row: 1;
    font-size: 1.02rem;
    font-weight: 900;
    color: var(--ink);
  }

  .price-table td:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .price-table td:last-child {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    padding: 4px 12px;
    background: var(--surface-soft);
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    color: var(--tomato-dark);
    font-size: 0.95rem;
    font-weight: 900;
    white-space: nowrap;
    align-self: start;
    justify-self: end;
  }

  .price-table tr.category-header,
  .price-table tr.category-header:hover {
    display: block;
    padding: 22px 4px 6px;
    margin: 14px 0 8px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .price-table tbody tr.category-header:first-child {
    margin-top: 0;
    padding-top: 4px;
  }

  .price-table tr.category-header.is-hidden {
    display: none;
  }

  .price-table tr.category-header td {
    display: block;
    padding: 0;
    color: var(--tomato-dark);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 0;
  }

  .menu-controls {
    gap: 6px;
  }

  .filter-button {
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.9rem;
  }

  .popular-card > img,
  .feature-tile > img {
    aspect-ratio: 16 / 11;
  }

  .gallery-item {
    min-height: 280px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 10px;
    padding: 12px 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    min-height: clamp(440px, 70vh, 620px);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding-top: 76px;
  }

  h1 {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero-copy {
    margin-top: 16px;
  }

  .hero-actions {
    align-items: stretch;
    width: 100%;
  }

  .menu-controls {
    align-items: stretch;
  }

  .primary-action,
  .secondary-action {
    flex: 1 1 140px;
  }

  .filter-button {
    flex: 1 1 120px;
  }

  .hero-highlights span {
    font-size: 0.8rem;
    padding: 0 11px;
    min-height: 32px;
  }

  .quick-info .info-item {
    padding: 18px 20px;
  }

  .popular-card-body,
  .feature-tile-body {
    padding: 18px 20px 20px;
  }

  .contact-form {
    padding: 18px;
  }

  .directions-row {
    grid-template-columns: minmax(0, 1fr) 48px 48px;
  }

  body {
    padding-bottom: 74px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(16px);
  }

  .mobile-action-bar a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius);
    background: var(--navy);
    color: #ffffff;
    font-weight: 900;
  }

  .mobile-action-bar a:first-child {
    background: var(--tomato);
  }

  .mobile-action-bar svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
  }

  .site-footer {
    padding: 24px 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero .eyebrow,
  .hero h1 span,
  .hero-copy,
  .hero-actions,
  .hero-highlights {
    animation: none;
  }

  .site-header,
  .primary-action,
  .secondary-action,
  .filter-button,
  .icon-action,
  .feature-tile,
  .feature-tile > img,
  .popular-card,
  .popular-card > img,
  .gallery-item img,
  .price-table tbody tr,
  .main-nav,
  .nav-backdrop,
  .nav-toggle,
  .nav-toggle-icon > span {
    transition: none;
  }

  .marquee-track {
    animation: none;
  }

  .scroll-reveal {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
