/* Pho Ngon — dark + gold */
:root {
  --bg: #000000;
  --surface: #1a1a1a;
  --red: #c52024;
  --red-dim: #a01a1d;
  --gold: #c4a747;
  --gold-dim: #a88f3c;
  --text: #ffffff;
  --muted: #a8a8a8;
  --topbar-bg: #c52024;
  --topbar-fg: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius: 2px;
  /* Top bar ~1 line + padding; used as fallback before JS sets mobile nav top */
  --topbar-h: 40px;
  --header-h: 72px;

  /* Consistent spacing */
  --spacing-desktop: 80px;
  --spacing-tablet: 48px;
  --spacing-mobile: 32px;
  --spacing-mobile-small: 24px;
  /* Home page mobile (index) */
  --home-mobile-gutter: 40px;
  --home-mobile-hero-top: 130px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  /* Use 100% not 100vw — vw includes scrollbar width and can cause horizontal overflow + extra scrollbars */
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

main {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

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

/* Image zoom effect */
.dish-card__img,
.split__img img,
.gallery-grid img {
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-card__img,
.split__img:hover img,
.gallery-grid img:hover {
  transform: scale(1.08);
}

/* Scroll animations — clear, smooth GPU-friendly reveal */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translate3d(0, 80px, 0) scale(0.94);
  transition:
    opacity 1.05s cubic-bezier(0.22, 0.99, 0.26, 1),
    transform 1.2s cubic-bezier(0.22, 0.99, 0.26, 1);
  backface-visibility: hidden;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.animate-fade {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.22, 0.99, 0.26, 1);
}

.animate-fade.visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-fade {
    transition-duration: 0.01ms;
    transform: none;
  }
}

/* Stagger when multiple items reveal together */
.dish-grid--animated .dish-carousel__page:nth-child(1) .animate-on-scroll:nth-child(1) { transition-delay: 0.08s; }
.dish-grid--animated .dish-carousel__page:nth-child(1) .animate-on-scroll:nth-child(2) { transition-delay: 0.16s; }
.dish-grid--animated .dish-carousel__page:nth-child(2) .animate-on-scroll:nth-child(1) { transition-delay: 0.24s; }
.dish-grid--animated .dish-carousel__page:nth-child(2) .animate-on-scroll:nth-child(2) { transition-delay: 0.32s; }

.cards--animated .animate-on-scroll:nth-child(1) { transition-delay: 0.08s; }
.cards--animated .animate-on-scroll:nth-child(2) { transition-delay: 0.16s; }
.cards--animated .animate-on-scroll:nth-child(3) { transition-delay: 0.24s; }

.gallery-grid-page .animate-on-scroll:nth-child(1) { transition-delay: 0.05s; }
.gallery-grid-page .animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.gallery-grid-page .animate-on-scroll:nth-child(3) { transition-delay: 0.15s; }
.gallery-grid-page .animate-on-scroll:nth-child(4) { transition-delay: 0.2s; }
.gallery-grid-page .animate-on-scroll:nth-child(5) { transition-delay: 0.25s; }
.gallery-grid-page .animate-on-scroll:nth-child(6) { transition-delay: 0.3s; }
.gallery-grid-page .animate-on-scroll:nth-child(7) { transition-delay: 0.35s; }
.gallery-grid-page .animate-on-scroll:nth-child(8) { transition-delay: 0.4s; }
.gallery-grid-page .animate-on-scroll:nth-child(9) { transition-delay: 0.45s; }
.gallery-grid-page .animate-on-scroll:nth-child(10) { transition-delay: 0.5s; }
.gallery-grid-page .animate-on-scroll:nth-child(11) { transition-delay: 0.55s; }
.gallery-grid-page .animate-on-scroll:nth-child(12) { transition-delay: 0.6s; }

/* Gallery page — exaggerated slow scroll-in; odd from left, even from right */
.page-gallery .gallery-grid-page .animate-on-scroll {
  transition:
    opacity 2.1s cubic-bezier(0.12, 0.82, 0.22, 1),
    transform 2.55s cubic-bezier(0.1, 0.75, 0.18, 1);
}

.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(odd):not(.visible) {
  transform: translate3d(-72px, 168px, 0) scale(0.78);
}

.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(even):not(.visible) {
  transform: translate3d(72px, 168px, 0) scale(0.78);
}

.page-gallery .gallery-grid-page .animate-on-scroll.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(1) { transition-delay: 0s; }
.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(2) { transition-delay: 0.14s; }
.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(3) { transition-delay: 0.28s; }
.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(4) { transition-delay: 0.42s; }
.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(5) { transition-delay: 0.56s; }
.page-gallery .gallery-grid-page .animate-on-scroll:nth-child(n + 6) { transition-delay: 0.7s; }

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Top bar */
.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--topbar-bg);
  color: var(--topbar-fg);
  font-size: 12px;
  padding: 8px 24px;
  font-weight: 500;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
}

.top-bar a:hover {
  text-decoration: underline;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 20px;
}

.top-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar__item--static {
  cursor: default;
  color: var(--topbar-fg);
}

.top-bar__hours {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.top-bar__icon {
  display: flex;
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .top-bar {
    justify-content: center;
  }

  .top-bar__contact {
    display: none;
  }

  .top-bar__hours {
    margin-left: 0;
    justify-content: center;
  }
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(197, 32, 36, 0.4);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 24px;
}

@media (max-width: 1024px) {
  .header__inner {
    padding: 0 48px;
  }
}

@media (max-width: 768px) {
  .header__inner {
    padding: 0 var(--spacing-mobile);
  }
}

@media (max-width: 480px) {
  .header__inner {
    padding: 0 var(--spacing-mobile-small);
  }

  .header__logo {
    font-size: 1.25rem;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header__logo:hover {
  opacity: 0.85;
}

.header__logo-img {
  height: 48px;
  width: auto;
  background: transparent;
  mix-blend-mode: normal;
}

@media (max-width: 768px) {
  .header__logo-img {
    height: 40px;
  }
}

@media (max-width: 480px) {
  .header__logo-img {
    height: 36px;
  }
}

.nav--desktop {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav__link {
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.nav__link:hover,
.nav__link--active {
  color: var(--red);
  text-decoration: none;
}

.header__cta {
  flex-shrink: 0;
}

.header__menu-btn {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.header__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
}

.nav--mobile {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 52px 0 0;
  border-top: 1px solid #222;
  background: rgba(0, 0, 0, 0.98);
  position: fixed;
  top: calc(var(--topbar-h) + var(--header-h));
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  overflow: hidden;
  box-shadow: 0 12px 60px rgba(0, 0, 0, 0.55);
}

.nav--mobile__inner {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

.nav--mobile__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.nav--mobile__close:hover {
  background: rgba(197, 32, 36, 0.35);
  color: #fff;
}

.nav--mobile__close-x {
  position: relative;
  width: 18px;
  height: 18px;
  display: block;
}

.nav--mobile__close-x::before,
.nav--mobile__close-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav--mobile__close-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav--mobile__close-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav--mobile .nav__link {
  padding: 18px 24px;
  font-size: 16px;
  border-bottom: none;
  display: block;
  text-align: center;
  color: var(--text);
  font-weight: 600;
}

.nav--mobile__cta {
  margin: 16px 24px 20px;
  text-align: center;
  display: block;
}

.nav--mobile__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  align-items: center;
}

.nav--mobile__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav--mobile__contact-item:hover {
  color: var(--gold);
  text-decoration: none;
}

.nav--mobile__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.nav--mobile__contact-item--address {
  color: var(--gold);
}

.nav--mobile__contact-item--address:hover {
  color: var(--gold);
}

.nav--mobile__social {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 16px 24px 24px;
}

.nav--mobile__social a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.nav--mobile__social a:hover {
  color: var(--gold);
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav--desktop,
  .header .header__cta:not(.nav--mobile__cta) {
    display: none;
  }

  .header__menu-btn {
    display: flex;
  }

  .nav--mobile:not([hidden]) {
    display: flex;
    animation: navMobIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .nav--mobile.nav--mobile--closing {
    animation: navMobOut 0.42s cubic-bezier(0.55, 0.06, 0.35, 0.98) forwards;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 97;
    background: rgba(0, 0, 0, 0);
    animation: navBackdropIn 0.45s ease forwards;
    pointer-events: none;
  }

  body.nav-open .home-section-nav {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes navBackdropIn {
  to {
    background: rgba(0, 0, 0, 0.42);
  }
}

@keyframes navMobIn {
  0% {
    opacity: 0;
    transform: translateY(-28px) scale(0.9);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  55% {
    opacity: 1;
    transform: translateY(4px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  }
}

@keyframes navMobOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  40% {
    opacity: 0.85;
    transform: translateY(10px) scale(0.97);
  }
  100% {
    opacity: 0;
    transform: translateY(-24px) scale(0.88);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav--mobile:not([hidden]),
  .nav--mobile.nav--mobile--closing {
    animation-duration: 0.01ms;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 44px;
}

@media (max-width: 480px) {
  .btn {
    padding: 14px 20px;
    font-size: 10px;
  }
}

.btn--primary {
  background: var(--red);
  color: #ffffff;
  border-color: var(--red);
}

.btn--primary:hover {
  background: var(--red-dim);
  border-color: var(--red-dim);
  color: #ffffff;
  text-decoration: none;
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn--ghost:hover {
  background: rgba(212, 175, 55, 0.12);
  text-decoration: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* Sections */
.section {
  padding: 120px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.section--tight {
  padding-top: 100px;
}

.section--dishes {
  background: var(--surface);
  padding: 96px 80px;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .section {
    padding: 100px 48px;
  }

  .section--dishes {
    padding: 80px 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px var(--spacing-mobile);
  }

  .section--tight {
    padding-top: 60px;
  }

  .section--dishes {
    padding: 84px var(--spacing-mobile);
  }
}

@media (max-width: 480px) {
  .section {
    padding: 60px var(--spacing-mobile-small);
  }

  .section--tight {
    padding-top: 48px;
  }

  .section--dishes {
    padding: 48px var(--spacing-mobile-small);
  }

  .section__subtitle {
    font-size: 14px;
    margin-bottom: 32px;
  }
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 0 0 12px;
  font-weight: 600;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
  margin: 0 0 16px;
  color: var(--text);
  position: relative;
  padding-bottom: 20px;
}

.section__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--red);
}

.section__subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 15px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 80px 100px;
}

@media (max-width: 1024px) {
  .hero {
    padding: 60px 48px 100px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 48px var(--spacing-mobile) 80px;
    min-height: min(70vh, 600px);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px var(--spacing-mobile-small) 60px;
    min-height: min(60vh, 500px);
  }

  .hero__text {
    font-size: 0.95rem;
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* Home page — mobile layout & in-page section nav */
.page-home #section-home,
.page-home #section-about,
.page-home #section-specialties,
.page-home #section-visit {
  scroll-margin-top: min(120px, 22vh);
}

.home-section-nav {
  display: none;
}

@media (max-width: 900px) {
  .page-home main {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }

  .home-section-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    gap: 0;
    /* Tight bottom; home-indicator devices still get env(safe-area-inset-bottom) */
    padding: 0 0 max(3px, env(safe-area-inset-bottom, 0px));
    background: rgba(0, 0, 0, 0.94);
    border-top: 1px solid #2a2a2a;
    backdrop-filter: blur(12px);
    transition: opacity 0.25s ease;
    box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  }

  .home-section-nav__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-bottom: 1px solid #2a2a2a;
  }

  .home-section-nav__pin {
    flex-shrink: 0;
    color: var(--red);
    display: flex;
  }

  .home-section-nav__meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
  }

  .home-section-nav__address {
    font-size: 11px;
    line-height: 1.35;
    font-weight: 600;
    color: var(--gold);
  }

  .home-section-nav__dir-btn {
    flex-shrink: 0;
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid rgba(197, 32, 36, 0.45);
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }

  .home-section-nav__dir-btn:hover,
  .home-section-nav__dir-btn:focus-visible {
    background: rgba(197, 32, 36, 0.2);
    color: var(--text);
    border-color: var(--red);
    outline: none;
  }

  .home-section-nav__phone-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 14px 6px;
    text-decoration: none;
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
  }

  .home-section-nav__phone-row:hover,
  .home-section-nav__phone-row:focus-visible {
    background: rgba(197, 32, 36, 0.15);
    color: var(--gold);
    outline: none;
  }

  .home-section-nav__phone-icon {
    flex-shrink: 0;
    color: var(--red);
    display: flex;
    align-items: center;
    line-height: 0;
  }

  .home-section-nav__phone-text {
    line-height: 1;
  }

  .page-home .hero {
    padding-left: var(--home-mobile-gutter);
    padding-right: var(--home-mobile-gutter);
    padding-top: var(--home-mobile-hero-top);
    padding-bottom: 80px;
  }

  .page-home .split {
    padding-left: var(--home-mobile-gutter);
    padding-right: var(--home-mobile-gutter);
  }

  .page-home .section.section--dishes,
  .page-home .section.section--contact {
    padding-left: var(--home-mobile-gutter);
    padding-right: var(--home-mobile-gutter);
  }

  .page-home .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 100%;
  }

  .page-home .hero__actions .btn {
    width: auto;
    min-width: 0;
    max-width: min(260px, 46vw);
    padding: 10px 18px;
    min-height: 42px;
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .page-home .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .page-home .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    padding: 9px 16px;
    min-height: 40px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

/* Home hero on phones/tablets: show more of the photo (bowl, chopsticks) — cover crops too tight */
@media (max-width: 768px) {
  .page-home .hero__bg {
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0a0a0a;
    filter: brightness(0.5);
  }
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__tag {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
  font-weight: 600;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin: 0 0 20px;
  line-height: 1.1;
  position: relative;
  padding-bottom: 24px;
}

.hero__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--red);
}

.hero__text {
  color: #b0b0b0;
  font-size: 1.05rem;
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Dish grid */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Page wrappers: flatten into parent grid on tablet+ (not used on mobile carousel) */
.dish-carousel__page {
  display: contents;
}

@media (max-width: 1024px) {
  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile: horizontal carousel — 2 dishes per view, swipe / scroll-snap */
@media (max-width: 540px) {
  .section--dishes .dish-carousel__wrap {
    margin-top: 32px;
  }

  .dish-carousel__btn {
    display: flex;
  }

  .section--dishes .dish-grid.dish-carousel {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    padding-bottom: 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .section--dishes .dish-grid.dish-carousel::-webkit-scrollbar {
    display: none;
  }

  .section--dishes .dish-carousel .dish-carousel__page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}

@media (max-width: 480px) {
  .dish-card__body {
    padding: 16px;
  }

  .dish-card__title {
    font-size: 1.15rem;
  }

  .dish-card__desc {
    font-size: 13px;
  }
}

.dish-card {
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.2s;
}

.dish-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.dish-card__img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.dish-card__body {
  padding: 20px;
}

.dish-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 10px;
  color: var(--text);
}

.dish-card__desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* Signature dishes — slightly more compact cards */
.section--dishes .dish-carousel__wrap {
  position: relative;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}

.section--dishes .dish-carousel__wrap .dish-grid {
  margin-top: 0;
}

.section--dishes .dish-grid {
  gap: 20px;
}

.section--dishes .dish-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.section--dishes .dish-card__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #141414;
  flex-shrink: 0;
}

.section--dishes .dish-card__img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: unset;
  object-fit: cover;
  object-position: center;
  display: block;
}

.dish-carousel__btn {
  display: none;
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.92);
  color: #f5f5f5;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}

.dish-carousel__btn:hover:not(:disabled) {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.dish-carousel__btn:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.dish-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.dish-carousel__btn--prev {
  left: 6px;
}

.dish-carousel__btn--next {
  right: 6px;
}

.section--dishes .dish-card__body {
  padding: 16px 18px;
}

.section--dishes .dish-card__title {
  font-size: 1.1rem;
  margin: 0 0 8px;
}

.section--dishes .dish-card__desc {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .section--dishes .dish-card__body {
    padding: 14px 16px;
  }

  .section--dishes .dish-card__title {
    font-size: 1.05rem;
  }

  .section--dishes .dish-card__desc {
    font-size: 12px;
  }
}

/* About split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 120px 80px;
}

@media (max-width: 1024px) {
  .split {
    gap: 64px;
    padding: 100px 48px;
  }
}

@media (max-width: 768px) {
  .split {
    padding: 100px var(--spacing-mobile);
    gap: 48px;
  }
}

@media (max-width: 480px) {
  .split {
    padding: 60px var(--spacing-mobile-small);
    gap: 36px;
  }

  .split__body {
    font-size: 14px;
  }

  .stats {
    flex-direction: column;
    gap: 24px;
  }

  .stat__num {
    font-size: 2.25rem;
  }
}

.split__img {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  cursor: pointer;
}

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

.split__text .section__title {
  text-align: left;
  margin-bottom: 20px;
}

.split__text .eyebrow {
  text-align: left;
  margin-bottom: 14px;
}

.split__body {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.split__body p + p {
  margin-top: 1.15rem;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid #2a2a2a;
}

.stat {
  text-align: left;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat__lbl {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0;
  font-weight: 600;
}

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

  .split__text .section__title,
  .split__text .eyebrow {
    text-align: center;
  }

  .stats {
    justify-content: center;
  }

  .stat {
    text-align: center;
  }
}

/* Contact cards */
.section--contact {
  padding-bottom: 120px;
}

@media (max-width: 768px) {
  .section--contact {
    padding: 80px calc(var(--spacing-mobile) * 1.3) 0;
  }

  .section--contact .eyebrow {
    font-size: 10px;
  }

  .section--contact .section__title {
    font-size: 1.75rem;
  }

  .info-card__title {
    font-size: 11px;
    margin-bottom: 10px;
  }

  .info-card__body {
    font-size: 10px;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
  margin-top: 56px;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .info-card__body {
    font-size: 14px;
  }

  .map-wrap {
    min-height: 320px;
  }

  .map-wrap iframe {
    height: 360px;
  }

  .map-locate {
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .map-locate__action {
    width: 100%;
    text-align: center;
    margin-top: 4px;
  }
}

.info-card {
  text-align: center;
}

.info-card__title {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0 0 14px;
  font-weight: 700;
}

.info-card__body {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  white-space: pre-line;
  line-height: 1.65;
}

.info-card__body a {
  color: var(--text);
}

.info-card__body a:hover {
  color: var(--gold);
}

.info-card__body--address {
  color: var(--text);
}

/* Edge-to-edge map inside contact section (break out of section padding) */
.section--contact .map-wrap {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-radius: 0;
  border-left: none;
  border-right: none;
}

.map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  min-height: 420px;
  background: #111;
}

.map-wrap iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
}

/* High-contrast overlay — full width, edge to edge with map */
.map-locate {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  max-width: none;
  width: 100%;
  box-sizing: border-box;
  background: rgba(26, 26, 26, 0.97);
  border: none;
  border-bottom: 1px solid #2f2f2f;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.map-locate:hover {
  border-bottom-color: #3d3d3d;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  text-decoration: none;
}

.map-locate__pin {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #252525;
  border: 1px solid #3a3a3a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.map-locate__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  flex: 1;
  text-align: left;
}

.map-locate__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.map-locate__address {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gold);
  font-weight: 600;
}

.map-locate__action {
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  padding: 10px 14px;
  background: transparent;
  border: 1px solid #4a4a4a;
  border-radius: 2px;
  align-self: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.map-locate:hover .map-locate__action {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: #666;
}

.review-btn-wrap {
  text-align: center;
  margin: 48px 0 24px;
}

.review-btn-wrap .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* About / split — under star rating & years stats */
.review-btn-wrap--split {
  margin: 24px 0 0;
  text-align: left;
}

@media (max-width: 900px) {
  .review-btn-wrap--split {
    text-align: center;
  }
}

/* Full menu page — background photo + readable overlay */
.page-full-menu #top-bar-root {
  position: relative;
  z-index: 50;
}

.page-full-menu #site-header {
  position: relative;
  z-index: 100;
}

.page-full-menu main {
  position: relative;
  z-index: 1;
}

.page-full-menu #site-footer {
  position: relative;
  z-index: 1;
}

.page-full-menu .full-menu-page__bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #0a0a0a;
  background-image: url("../images/pho_ngon_hero_image2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55);
}

.page-full-menu .full-menu-page__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.72) 45%,
    rgba(0, 0, 0, 0.84) 100%
  );
}

.page-full-menu .full-menu-page__section {
  position: relative;
  z-index: 1;
}

/* Menu */
.menu-category {
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  border: none;
  border-bottom: 1px solid #2a2a2a;
  border-radius: 0;
  overflow: visible;
}

.menu-category:last-of-type {
  border-bottom: none;
}

.menu-category__header {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: opacity 0.2s;
}

.menu-category__header:hover {
  opacity: 0.8;
}

.menu-category__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0;
  color: var(--text);
  text-align: left;
  font-weight: 500;
}

.menu-category__icon {
  flex-shrink: 0;
  color: var(--red);
  transition: all 0.3s ease;
  stroke-width: 2.5;
}

.menu-category__icon-horizontal {
  transition: opacity 0.3s ease;
}

.menu-category__header[aria-expanded="true"] .menu-category__icon-horizontal {
  opacity: 0;
}

.menu-category__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.menu-category__content.open {
  max-height: 5000px;
  padding: 0 0 24px 0;
}

.menu-category__rule {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 32px;
  display: none;
}

.menu-item {
  margin-bottom: 32px;
}

.menu-item__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}

.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--muted);
  font-weight: 400;
}

.menu-item__price {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.menu-item__desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-category__header {
    padding: 20px 0;
  }

  .menu-category__title {
    font-size: 1.25rem;
  }

  .menu-category__content.open {
    padding: 0 0 20px 0;
  }

  .menu-item {
    margin-bottom: 24px;
  }

  .menu-item__name {
    font-size: 1.05rem;
  }

  .menu-category__icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .menu-category__title {
    font-size: 1.1rem;
  }

  .menu-item__name {
    font-size: 0.95rem;
  }

  .menu-item__price {
    font-size: 1rem;
  }

  .menu-item {
    margin-bottom: 20px;
  }
}

/* Gallery */
.page-gallery .section.section--tight {
  padding-left: 40px;
  padding-right: 40px;
}

@media (max-width: 900px) {
  /* Tighter top stack (header + title); extra bottom so content clears footer */
  .page-gallery .section.section--tight {
    padding-top: 24px;
    padding-bottom: 56px;
    padding-left: 60px;
    padding-right: 60px;
  }

  .page-gallery .section__subtitle {
    margin-bottom: 28px;
  }
}

@media (min-width: 901px) {
  .page-gallery .section.section--tight {
    padding-left: 56px;
    padding-right: 56px;
  }
}

.gallery-grid-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.gallery-grid-page__item {
  margin: 0;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.4),
    0 14px 32px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid-page__item:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.45),
    0 22px 48px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(196, 167, 71, 0.12);
}

.gallery-grid-page__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .gallery-grid-page {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  /*
    Shorter travel on narrow viewports — keeps the long duration but stops
    the reveal from painting into the footer (transform does not affect flow).
  */
  .page-gallery .gallery-grid-page .animate-on-scroll:nth-child(odd):not(.visible) {
    transform: translate3d(-44px, 104px, 0) scale(0.84);
  }

  .page-gallery .gallery-grid-page .animate-on-scroll:nth-child(even):not(.visible) {
    transform: translate3d(44px, 104px, 0) scale(0.84);
  }
}

@media (max-width: 540px) {
  .gallery-grid-page {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.gallery-masonry__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.gallery-masonry img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #2a2a2a;
  transition: transform 0.4s ease;
  cursor: pointer;
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.35),
    0 12px 28px rgba(0, 0, 0, 0.4);
}

.gallery-masonry img:hover {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-masonry__col {
    gap: 12px;
  }

  .gallery-masonry__col:last-child {
    display: none;
  }
}

@media (max-width: 540px) {
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .gallery-masonry__col:nth-child(2) {
    display: none;
  }
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-top: 1px solid #222;
  padding: 64px 80px 32px;
  max-width: 100%;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .footer {
    padding: 64px 48px 32px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 48px var(--spacing-mobile) 24px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px var(--spacing-mobile-small) 20px;
  }

  .footer__grid {
    gap: 0;
    margin-bottom: 28px;
  }
}

/* Home: fixed bottom bar (address + phone) sits above footer — keep copyright scroll-clear */
@media (max-width: 900px) {
  .page-home .footer {
    padding-bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  }
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__col--brand {
    padding-bottom: 20px;
    border-bottom: 1px solid #2a2a2a;
  }
}

/* Footer — accordion (same pattern as full menu) on small screens */
.footer .footer__accordion.menu-category {
  margin-bottom: 0;
  border-bottom: 1px solid #2a2a2a;
}

.footer .footer-accordion__title {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text);
}

.footer .footer__accordion .menu-category__header {
  padding: 16px 0;
}

@media (min-width: 541px) {
  .footer .footer__accordion .menu-category__header {
    pointer-events: none;
    cursor: default;
    padding: 0 0 12px;
  }

  .footer .footer__accordion .menu-category__icon {
    display: none;
  }

  .footer .footer__accordion .menu-category__content {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 0 4px 0 !important;
  }

  .footer .footer__accordion .menu-category__header[aria-expanded] {
    opacity: 1;
  }
}

@media (max-width: 540px) {
  .footer .footer__accordion .menu-category__header {
    padding: 18px 0;
  }

  .footer .footer__accordion .menu-category__icon {
    color: var(--text);
  }

  .footer .footer__accordion .menu-category__content.open {
    padding: 0 0 12px 0 !important;
  }
}

.footer__col--brand {
  text-align: center;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--red);
  text-decoration: none;
  display: block;
  margin: 0 auto 14px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  max-width: 20ch;
}

.footer__brand-name:hover {
  color: var(--red-dim);
  text-decoration: none;
}

.footer__col--brand .footer__muted {
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

.footer__grid > .footer__col--brand,
.footer__grid > .footer__accordion {
  text-align: center;
}

.footer .footer__accordion .menu-category__header {
  justify-content: center;
}

.footer .footer__list {
  margin-left: auto;
  margin-right: auto;
  max-width: 220px;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.footer__muted {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 16px;
}

.footer p {
  color: var(--muted);
}

.footer__tagline {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 auto 16px;
  max-width: 28ch;
  font-style: italic;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--gold);
}

.footer__heading {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0 0 16px;
  color: var(--text);
  font-weight: 600;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__list li {
  margin-bottom: 10px;
}

.footer__list a {
  color: var(--muted);
  font-size: 12px;
  transition: color 0.2s;
}

.footer__list a:hover {
  color: var(--gold);
}

.footer .footer__copy {
  text-align: center;
  color: #dfc98a;
  font-size: 12px;
  font-weight: 500;
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid #222;
  text-shadow: 0 0 24px rgba(196, 167, 71, 0.2);
}

/* Order page — horizontal padding matches gallery */
.section--order {
  max-width: 1200px;
  padding: 100px 32px;
}

.page-order .section--order {
  padding-left: 40px;
  padding-right: 40px;
}

@media (min-width: 901px) {
  .page-order .section--order {
    padding-left: 56px;
    padding-right: 56px;
  }
}

@media (max-width: 768px) {
  .section--order {
    padding: 80px var(--spacing-mobile);
  }

  .page-order .section--order {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 480px) {
  .section--order {
    padding: 60px var(--spacing-mobile-small);
  }

  .page-order .section--order {
    padding-left: 60px;
    padding-right: 60px;
  }

  .order-card {
    padding: 32px 24px;
  }

  .order-card--featured {
    padding: 36px 24px;
  }

  .order-card__title {
    font-size: 1.25rem;
  }

  .order-section-title {
    font-size: 1.5rem;
  }
}

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  margin-bottom: 64px;
}

.order-grid--featured {
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .order-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

.order-section-header {
  text-align: center;
  margin-bottom: 32px;
}

.order-section-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 8px;
  color: var(--text);
}

.order-section-subtitle {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.order-card {
  background: var(--surface);
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  transition: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.order-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.order-card--featured {
  padding: 48px 32px;
  border: 1px solid #2a2a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.order-card--featured:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.order-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.order-card--phone .order-card__icon {
  background: transparent;
  color: var(--gold);
  border: none;
}

.order-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.order-card--uber .order-card__icon {
  background: #06c167;
}

.order-card--doordash .order-card__icon {
  background: #ff3008;
}

.order-card--grubhub .order-card__icon {
  background: #ff8000;
}

.order-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--text);
}

.order-card__desc {
  margin: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.btn--order {
  width: 100%;
  background: transparent;
  color: var(--gold);
  font-size: 12px;
  border: none;
}

.btn--order:hover {
  background: rgba(212, 175, 55, 0.12);
}

.btn--large {
  padding: 16px 32px;
  font-size: 12px;
}

.order-divider {
  height: 1px;
  background: #2a2a2a;
  margin: 48px 0;
}

.order-call {
  text-align: center;
  padding: 32px 0;
}

.order-call__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 0 0 12px;
  color: var(--text);
}

.order-call__desc {
  margin: 0 0 28px;
  font-size: 15px;
  color: var(--muted);
}

.order-footer {
  text-align: center;
  margin-top: 48px;
}

.order-footer__link {
  color: var(--gold);
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.order-footer__link:hover {
  text-decoration: underline;
}
