/* ThaiRiffic by the Sea — Black & Gold Luxury Theme */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;600;700&display=swap");

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #141414;
  --bg-card: #1a1a1a;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #8b7355;
  --text-primary: #f5f5f0;
  --text-secondary: #a8a8a8;
  --text-muted: #666666;
  --border-gold: rgba(201, 169, 98, 0.3);
  --glow-gold: 0 0 20px rgba(201, 169, 98, 0.15);
  --header-height: 104px;
  --header-height-mobile: 72px;
  --transition: 0.3s ease;
  --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-title-sm {
  font-size: clamp(1.5rem, 3vw, 1.75rem);
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-secondary);
  max-width: 600px;
}

.section-subtitle-center {
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.5rem auto;
}

.gold-line.animate {
  animation: expandLine 0.8s ease forwards 0.5s;
  width: 0;
  opacity: 0;
}

/* ── Animations ── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes expandLine {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.hero-animate {
  opacity: 0;
  animation: fadeInUp 0.85s var(--transition-slow) forwards;
}

.hero-animate:nth-child(1) {
  animation-delay: 0.15s;
}
.hero-animate:nth-child(2) {
  animation-delay: 0.3s;
}
.hero-animate:nth-child(3) {
  animation-delay: 0.45s;
}
.hero-animate:nth-child(4) {
  animation-delay: 0.55s;
}
.hero-animate:nth-child(5) {
  animation-delay: 0.65s;
}
.hero-animate:nth-child(6) {
  animation-delay: 0.75s;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-slow),
    transform var(--transition-slow);
}

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

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

.values-grid .reveal:nth-child(2) {
  transition-delay: 0.12s;
}
.values-grid .reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.hours-grid .reveal:nth-child(2) {
  transition-delay: 0.15s;
}

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

  .hero-animate {
    opacity: 1;
    animation: none;
  }

  .hero-video {
    display: none;
  }

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

  .menu-card:hover,
  .value-card:hover,
  .btn-gold:hover {
    transform: none;
  }

  .media-placeholder::after {
    animation: none;
  }
}

.gold-line-left {
  margin-left: 0;
  margin-right: auto;
}

/* ── Header ── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.logo img {
  display: block;
  height: 92px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: capitalize;
  color: var(--text-secondary);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.05rem;
  border: 1px solid var(--border-gold);
  padding: 0.1rem;
  flex-shrink: 0;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0.4rem 0.55rem;
  min-width: 36px;
  min-height: 36px;
  transition:
    color var(--transition),
    background var(--transition);
}

.lang-btn:hover {
  color: var(--gold-light);
}

.lang-btn[aria-pressed="true"] {
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.lang-switch-sep {
  color: var(--text-muted);
  font-size: 0.65rem;
  padding: 0 0.05rem;
}

.lang-switch-mobile {
  margin: 1.25rem 0 0;
  width: fit-content;
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.7rem;
}

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

.nav-reserve-desktop {
  display: inline-flex;
}

.nav-mobile-cta.nav-reserve {
  margin-top: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  transition: all var(--transition);
}

.btn.nav-order-mobile {
  display: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--bg-primary);
}

.btn-gold:hover {
  box-shadow: var(--glow-gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: rgba(201, 169, 98, 0.1);
}

.nav-link-secondary {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.nav-link-secondary:hover {
  color: var(--gold);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile navigation overlay */
.nav-mobile-overlay {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  width: min(1200px, 90%);
  margin: 0 auto;
  padding: 0.5rem 0 2rem;
}

.nav-mobile a:not(.btn) {
  font-size: 1.05rem;
  color: var(--text-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 48px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.nav-mobile a:not(.btn):hover,
.nav-mobile a:not(.btn).active {
  color: var(--gold);
}

.nav-mobile-cta {
  margin-top: 1.25rem;
  width: 100%;
  min-height: 48px;
  justify-content: center;
  border-bottom: none !important;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--bg-primary);
  z-index: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) brightness(0.62);
  transform: scale(1.04);
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 10, 10, 0.42) 0%,
      rgba(10, 10, 10, 0.55) 42%,
      rgba(10, 10, 10, 0.82) 100%
    ),
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 10, 10, 0.35) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(201, 169, 98, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 169, 98, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}

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

.hero-brand {
  margin: 0 auto 0.35rem;
  line-height: 0;
  max-width: min(22rem, 72vw);
}

.hero-logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.45));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Sections ── */

section {
  padding: 6rem 0;
}

section:nth-child(even) {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Menu Cards ── */

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 0;
  overflow: hidden;
  text-align: center;
  border-radius: 0;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  cursor: pointer;
  display: block;
}

.menu-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.menu-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
}

.menu-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}

.menu-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.card-accent {
  display: block;
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 1.25rem;
  transition: width var(--transition);
}

.menu-card:hover .card-accent {
  width: 48px;
}

.menu-card--text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 7.5rem;
  background: var(--bg-card);
}

.menu-card--text .menu-card-body {
  position: static;
  padding: 1.35rem 1.1rem;
  background: none;
}

.menu-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.menu-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── About ── */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

.about-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-badge span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.about-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 0.5rem;
}

.about-image {
  align-self: stretch;
  min-height: 320px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
}

.about-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

/* ── Values ── */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-card {
  position: relative;
  text-align: left;
  padding: 2.25rem 1.75rem 2rem;
  background:
    linear-gradient(165deg, rgba(201, 169, 98, 0.08) 0%, transparent 42%),
    var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

.value-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 169, 98, 0.22);
  margin-bottom: 1.1rem;
  letter-spacing: 0.04em;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin: 0 0 1.15rem;
  border: 1px solid var(--border-gold);
  border-radius: 0;
  background: rgba(201, 169, 98, 0.08);
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.value-icon .icon {
  width: 1.35rem;
  height: 1.35rem;
  color: var(--gold);
  display: block;
}

.value-card:hover .value-icon {
  border-color: var(--gold);
  background: rgba(201, 169, 98, 0.16);
  box-shadow: 0 0 16px rgba(201, 169, 98, 0.15);
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.value-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 18rem;
}

/* ── Hours & Location ── */

.hours-section {
  text-align: center;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
}

.hours-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 2.5rem;
}

.hours-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hours-card-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-card-header h3 {
  margin-bottom: 0.25rem;
}

.hours-card-header .hours-note {
  margin-bottom: 0;
}

.hours-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hours-title-row h3 {
  margin-bottom: 0;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 0;
  border: 1px solid transparent;
}

.hours-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.hours-status-open {
  color: #7dcea0;
  background: rgba(125, 206, 160, 0.1);
  border-color: rgba(125, 206, 160, 0.35);
}

.hours-status-open::before {
  background: #7dcea0;
  box-shadow: 0 0 6px rgba(125, 206, 160, 0.6);
}

.hours-status-closed {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.hours-status-closed::before {
  background: var(--text-muted);
}

.hours-schedule {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(201, 169, 98, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.hours-row:last-child {
  border-bottom: 1px solid rgba(201, 169, 98, 0.18);
  padding-bottom: 1rem;
}

.hours-row:first-child {
  padding-top: 1rem;
}

.hours-row-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.hours-meal {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.hours-days {
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.3;
}

.hours-time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
  text-align: right;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  border-left: 1px solid rgba(201, 169, 98, 0.28);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.hours-list li span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}

/* Icons */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--gold);
}

.icon-lg {
  width: 1.5rem;
  height: 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  gap: 1rem;
  align-items: start;
}

.info-item > .icon,
.info-item > .icon-lg {
  justify-self: center;
  margin-top: 0.15rem;
}

.info-item-body {
  flex: 1;
  min-width: 0;
}

.info-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.info-item p,
.info-item a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
}

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

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

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
}

.directions-link:hover {
  color: var(--gold-light);
}

.footer-link {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: center;
  gap: 0.625rem;
}

.footer-link .icon {
  width: 1rem;
  height: 1rem;
  justify-self: center;
  display: block;
  opacity: 0.9;
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

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

.contact-card-spaced {
  margin-bottom: 2rem;
}

.contact-detail {
  margin-top: 1.5rem;
}

.contact-detail + .contact-detail {
  margin-top: 1rem;
}

.hours-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.map-embed-spaced {
  margin-top: 3rem;
}

.gallery-item-empty {
  cursor: default;
  pointer-events: none;
}

.gallery-empty-state {
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--bg-card);
  border: 1px dashed var(--border-gold);
}

.gallery-empty-state .media-placeholder-label {
  margin-bottom: 1.25rem;
}

.gallery-empty-state p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.7;
}

.gallery-empty-cta {
  margin-top: 1.75rem;
}

.gallery-empty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 280px;
  margin: 0 auto 1.5rem;
  opacity: 0.35;
}

.gallery-empty-cell {
  aspect-ratio: 1;
  background: var(--bg-secondary);
  border: 1px dashed var(--border-gold);
  border-radius: 2px;
}

.about-image:empty,
.featured-image:empty {
  min-height: 100%;
}

/* ── Media Placeholders (no assets yet) ── */

.media-placeholder {
  position: relative;
  overflow: hidden;
}

.media-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(201, 169, 98, 0.05) 50%,
    transparent 65%
  );
  background-size: 220% 220%;
  animation: placeholderShimmer 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes placeholderShimmer {
  0%,
  100% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 0% 50%;
  }
}

.media-placeholder-label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 1rem;
}

.media-placeholder-label .icon {
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0.45;
}

.map-placeholder,
.map-embed {
  margin-top: 3rem;
  aspect-ratio: 21 / 9;
  min-height: 280px;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
}

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

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-style: dashed;
}

/* ── Page Hero (subpages) ── */

.page-hero {
  padding: calc(var(--header-height) + 1.35rem) 0 1.15rem;
  text-align: center;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-gold);
}

.page-hero .section-title {
  margin-bottom: 0.5rem;
}

.page-hero-compact {
  padding-bottom: 0.85rem;
}

.page-hero-compact .section-title {
  margin-bottom: 0.35rem;
}

.page-hero-compact .gold-line {
  margin: 0.65rem auto 0;
}

/* ── Section CTA ── */

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ── Featured Dishes ── */

.featured-section {
  background: var(--bg-secondary);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.featured-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.featured-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-4px);
}

.featured-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-gold);
}

.featured-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.featured-card:hover .featured-image img {
  transform: scale(1.05);
}

.featured-image--massaman img,
.featured-image--khao img {
  object-position: center;
}

.featured-card:hover .featured-image--massaman img,
.featured-card:hover .featured-image--khao img,
.featured-card:hover .featured-image--pad img {
  transform: scale(1.05);
}

.featured-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.featured-body h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--gold);
  margin: 0 0 0.65rem;
}

.featured-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0;
}

.featured-link {
  display: none;
}

.featured-link:hover {
  color: var(--gold-light);
}

.featured-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 0.2rem 0.5rem;
  margin-bottom: 0.5rem;
}

.featured-price {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--gold-light);
}

/* ── Reviews ── */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

.review-quote-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--gold);
  opacity: 0.7;
}

.review-stars {
  display: flex;
  gap: 0.15rem;
  color: var(--gold);
}

.review-stars .icon {
  width: 0.85rem;
  height: 0.85rem;
}

.review-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--text-primary);
  flex-grow: 1;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-author {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.review-source {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

/* ── Facebook ── */

.facebook-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 500px;
  margin: 0 auto;
}

.facebook-embed {
  background: #fff;
  border: 1px solid var(--border-gold);
  min-height: 720px;
  overflow: hidden;
}

.facebook-embed iframe {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #fff;
}

.facebook-loading {
  margin: 0;
  padding: 3rem 1.5rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  background: var(--bg-card);
}

.facebook-embed-fallback {
  display: none;
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: center;
  background: var(--bg-card);
}

.facebook-embed-fallback a {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.facebook-embed-fallback a:hover {
  color: var(--gold-light);
}

.facebook-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── CTA Strip ── */

.cta-strip {
  background: linear-gradient(
    135deg,
    var(--bg-card) 0%,
    rgba(201, 169, 98, 0.08) 100%
  );
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 3.5rem 0;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-top: 0.25rem;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Menu Page — Category Nav ── */

.menu-category-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
}

.menu-category-nav-inner {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.6rem 0;
  scrollbar-width: none;
}

.menu-category-nav-inner::-webkit-scrollbar {
  display: none;
}

.menu-cat-link {
  flex-shrink: 0;
  padding: 0.5rem 1.05rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border: 1px solid rgba(201, 169, 98, 0.22);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0;
  transition: all var(--transition);
  min-height: 40px;
  display: flex;
  align-items: center;
}

.menu-cat-link:hover {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(201, 169, 98, 0.08);
}

.menu-cat-link.active {
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  font-weight: 600;
}

.menu-page {
  padding: 1.5rem 0 3rem;
}

.menu-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-gold);
}

.menu-legend-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-right: 0.5rem;
}

/* ── Menu Sections ── */

.menu-section {
  margin-bottom: 2rem;
  scroll-margin-top: calc(var(--header-height) + 52px);
}

.menu-section:last-child {
  margin-bottom: 0;
}

.menu-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-section-photo {
  flex-shrink: 0;
  width: 88px;
  height: 88px;
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--bg-secondary);
}

.menu-section-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-section-heading {
  min-width: 0;
  flex: 1;
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.menu-section-heading .section-label {
  margin-bottom: 0.3rem;
}

.menu-section-heading .gold-line {
  margin: 0.35rem 0 0;
}

.menu-section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
  margin-top: 0.45rem;
}

.menu-sample-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  margin-bottom: 3rem;
  padding: 0.75rem 1rem;
  border: 1px dashed var(--border-gold);
  background: rgba(201, 169, 98, 0.04);
}

.menu-list,
.menu-list-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  background: transparent;
  border: none;
}

.menu-dish {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: 0;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.menu-list-split .menu-dish:nth-child(odd) {
  border-right: 1px solid rgba(201, 169, 98, 0.22);
}

.menu-dish-image {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 132px;
  height: 100%;
  background:
    linear-gradient(160deg, rgba(201, 169, 98, 0.08), rgba(20, 20, 20, 0.9)),
    var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.menu-dish-image--placeholder::before {
  content: "";
  width: 28px;
  height: 22px;
  border: 1.5px solid rgba(201, 169, 98, 0.45);
  border-radius: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 8px));
  box-shadow: 0 0 0 1px rgba(201, 169, 98, 0.08);
}

.menu-dish-image--placeholder::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 1.5px solid rgba(201, 169, 98, 0.45);
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% + 4px);
}

.menu-dish-image span {
  position: relative;
  z-index: 1;
  margin-top: 1.6rem;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.menu-dish-body {
  min-width: 0;
  padding: 0.85rem 1rem 0.9rem 0;
}

.menu-dish--text {
  grid-template-columns: 1fr;
}

.menu-dish--text .menu-dish-body {
  padding: 0.85rem 1.1rem;
}

.menu-dish-name {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  flex-shrink: 1;
  min-width: 0;
}

.menu-dish:last-child {
  border-bottom: 1px solid rgba(201, 169, 98, 0.22);
}

.menu-dish:hover {
  background: rgba(201, 169, 98, 0.05);
  border-color: var(--gold);
}

.menu-dish-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.menu-dish-leader {
  flex: 1;
  border-bottom: 1px dotted rgba(201, 169, 98, 0.25);
  min-width: 1rem;
  margin-bottom: 0.25rem;
}

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

.menu-dish-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 0.4rem;
}

.menu-dish-options {
  font-size: 0.8rem;
  color: var(--gold);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

.menu-dish-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

@media (max-width: 1100px) {
  .menu-list,
  .menu-list-split {
    grid-template-columns: 1fr;
  }
}

/* ── Tags ── */

.tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border: 1px solid;
}

.tag-signature {
  color: var(--gold-light);
  border-color: rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.08);
}

.tag-spicy {
  color: #d4846a;
  border-color: rgba(212, 132, 106, 0.4);
  background: rgba(212, 132, 106, 0.08);
}

.tag-veg {
  color: #7aab7a;
  border-color: rgba(122, 171, 122, 0.4);
  background: rgba(122, 171, 122, 0.08);
}

/* ── Menu Page (legacy tabs — kept for compat) ── */

.menu-tabs-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 3rem;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}

.menu-tabs-wrapper::-webkit-scrollbar {
  display: none;
}

.menu-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  justify-content: flex-start;
  min-width: min-content;
  padding: 0 0.25rem;
}

@media (min-width: 769px) {
  .menu-tabs-wrapper {
    overflow-x: visible;
  }

  .menu-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.menu-tab {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  white-space: nowrap;
  flex-shrink: 0;
  min-height: 44px;
}

.menu-tab:hover,
.menu-tab.active {
  background: rgba(201, 169, 98, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.menu-item {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 1.75rem;
  transition: all var(--transition);
}

.menu-item:hover {
  border-color: var(--gold);
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.menu-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--gold);
}

.menu-item .price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  white-space: nowrap;
}

.menu-item p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.menu-category {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-category.active {
  display: block;
}

/* ── Gallery ── */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  aspect-ratio: 1;
  background: var(--bg-card);
  border: 1px dashed var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  overflow: hidden;
}

.gallery-item:hover {
  border-color: var(--gold);
  border-style: solid;
  color: var(--gold);
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  padding: 3rem;
  text-align: center;
  color: var(--text-muted);
  animation: fadeInUp 0.4s ease;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── Contact Form ── */

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}


.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

/* ── Footer ── */

.footer {
  background: var(--bg-primary);
  border-top: 1px solid;
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
  display: inline-flex;
}

.footer-brand .logo img {
  height: 104px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.footer-col a.footer-link {
  display: grid;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  color: var(--gold);
  transition: all var(--transition);
}

.footer-social a .icon {
  width: 1rem;
  height: 1rem;
}

.footer-social a:hover {
  background: rgba(201, 169, 98, 0.1);
  border-color: var(--gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Responsive ── */

@media (max-width: 992px) {
  .about-grid,
  .hours-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-image {
    order: -1;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    width: 100%;
  }

  .about-image img {
    position: static;
    width: 100%;
    height: auto;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 28%;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    max-width: 100%;
    margin: 0;
  }

  .value-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "num icon"
      "title title"
      "body body";
    column-gap: 0.85rem;
    row-gap: 0.35rem;
    text-align: left;
    padding: 1.35rem 1.2rem 1.3rem;
    align-items: center;
  }

  .value-num {
    grid-area: num;
    font-size: 1.85rem;
    margin-bottom: 0;
    color: rgba(201, 169, 98, 0.35);
  }

  .value-icon {
    grid-area: icon;
    justify-self: start;
    margin: 0;
    width: 2.6rem;
    height: 2.6rem;
  }

  .value-card h3 {
    grid-area: title;
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
  }

  .value-card p {
    grid-area: body;
    font-size: 0.86rem;
    line-height: 1.55;
    max-width: none;
    margin: 0;
  }

  .featured-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
  }

  .featured-image {
    aspect-ratio: 16 / 10;
    width: 100%;
    min-height: 0;
    border-bottom: 1px solid var(--border-gold);
    border-right: none;
  }

  .featured-card .media-placeholder-label {
    padding: 0.35rem;
    gap: 0;
    font-size: 0.5rem;
  }

  .featured-card .media-placeholder-label span {
    display: none;
  }

  .featured-body {
    padding: 1.15rem 1.15rem 1.25rem;
  }

  .featured-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.45rem;
  }

  .featured-body p {
    font-size: 0.88rem;
    margin-bottom: 0;
    line-height: 1.55;
    display: block;
    overflow: visible;
  }

  .featured-tag {
    margin-bottom: 0.45rem;
  }

  .reviews-grid {
    gap: 1rem;
  }

  .review-card blockquote {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cta-strip-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-strip-actions {
    justify-content: center;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  section {
    padding: 5rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: var(--header-height-mobile);
  }

  .container {
    width: min(1200px, calc(100% - 2.25rem));
  }

  .nav-desktop {
    display: none;
  }

  .nav-order-desktop,
  .nav-reserve-desktop {
    display: none;
  }

  .nav-order-mobile,
  .btn.nav-order-mobile {
    display: inline-flex;
  }

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

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  body.menu-open {
    padding-bottom: 0;
  }

  .back-to-top {
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
  }

  .nav-actions .lang-switch {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 40px;
    height: 40px;
  }

  .logo {
    max-width: none;
  }

  .logo img {
    height: 60px;
  }

  .footer-brand .logo img {
    height: 84px;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .nav-actions {
    gap: 0.35rem;
  }

  .lang-btn {
    min-width: 32px;
    min-height: 32px;
    padding: 0.3rem 0.4rem;
    font-size: 0.62rem;
  }

  .lang-switch-sep {
    display: none;
  }

  .menu-category-nav {
    top: var(--header-height);
  }

  .menu-category-nav-inner {
    gap: 0.55rem;
    padding: 0.75rem 0;
  }

  .menu-cat-link {
    padding: 0.55rem 1rem;
    font-size: 0.7rem;
    min-height: 42px;
  }

  section {
    padding: 3.25rem 0;
  }

  .section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    overflow-wrap: break-word;
  }

  .section-subtitle {
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .menu-page {
    padding: 2.35rem 0 4rem;
  }

  .menu-legend {
    margin-bottom: 2.25rem;
    padding-bottom: 1.25rem;
    gap: 0.75rem 1rem;
  }

  .gold-line {
    margin: 1rem auto;
  }

  .gold-line-left {
    margin-left: 0;
  }

  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 1.75rem) 0 3.25rem;
  }

  .hero-content {
    padding: 0.75rem 0.25rem 0;
  }

  .hero-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.7rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    margin-bottom: 0.2rem;
  }

  .hero-brand {
    max-width: min(15.5rem, 68vw);
    margin-bottom: 0.15rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
  }

  .hero-desc {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.5rem;
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: auto;
    max-width: 18.5rem;
    margin: 0 auto;
    gap: 0.55rem;
    row-gap: 0.6rem;
  }

  .hero-buttons .btn {
    width: auto;
    flex: 0 1 auto;
    min-height: 36px;
    padding: 0.4rem 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .hero-buttons .btn:last-child {
    flex: 0 1 auto;
  }

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

  .menu-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    position: relative;
    border-radius: 0;
    border: 1px solid rgba(201, 169, 98, 0.32);
    background: var(--bg-card);
    overflow: hidden;
  }

  .menu-card-image {
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    flex-shrink: 0;
  }

  .menu-card-body {
    position: static;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0.7rem 0.7rem 0.8rem;
    background: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.15rem;
    flex: 1;
  }

  .menu-card--text {
    grid-column: auto;
    min-height: 0;
    align-self: stretch;
    justify-content: center;
    background: linear-gradient(
      160deg,
      rgba(201, 169, 98, 0.12) 0%,
      var(--bg-card) 58%
    );
  }

  .menu-card--text .menu-card-body {
    position: static;
    padding: 1rem 0.75rem;
    background: none;
    text-align: center;
    justify-content: center;
  }

  .menu-card h3 {
    font-size: 0.92rem;
    line-height: 1.25;
    margin-bottom: 0;
    color: var(--gold);
    letter-spacing: 0.01em;
  }

  .menu-card p {
    display: block;
    font-size: 0.68rem;
    line-height: 1.35;
    color: var(--text-secondary);
  }

  .menu-card--text p {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
  }

  .menu-card::after {
    display: none;
  }

  .menu-card--text::after {
    display: none;
  }

  .menu-section-photo {
    width: 72px;
    height: 72px;
  }

  .about-badge {
    font-size: 2rem;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .value-card {
    padding: 1.2rem 1.05rem 1.15rem;
  }

  .value-num {
    font-size: 1.55rem;
  }

  .value-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .value-icon .icon {
    width: 1.1rem;
    height: 1.1rem;
  }

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

  .value-card p {
    display: block;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .reviews-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .review-card {
    padding: 0.75rem 0.7rem;
    gap: 0.3rem;
  }

  .review-quote-icon {
    display: none;
  }

  .review-stars .icon {
    width: 0.65rem;
    height: 0.65rem;
  }

  .review-card blockquote {
    font-size: 0.72rem;
    line-height: 1.35;
    -webkit-line-clamp: 3;
  }

  .review-author {
    font-size: 0.68rem;
  }

  .review-source {
    font-size: 0.52rem;
  }

  .review-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .reviews-cta {
    margin-top: 1.15rem;
    gap: 0.5rem;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
  }

  .featured-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .featured-body {
    padding: 1.05rem 1.05rem 1.15rem;
  }

  .featured-body p {
    display: block;
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 0;
    color: var(--text-secondary);
  }

  .featured-tag {
    display: inline-block;
  }

  .featured-body h3 {
    font-size: 1.18rem;
    margin-bottom: 0.4rem;
  }

  .featured-link {
    display: none;
  }

  .about-image {
    min-height: 200px;
    aspect-ratio: 4 / 3;
  }

  .about-image img {
    min-height: 200px;
  }

  .btn.nav-order-mobile {
    padding: 0.4rem 0.65rem;
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    flex-shrink: 0;
  }

  .hours-card {
    padding: 1.75rem;
  }

  .hours-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.75rem 0;
  }

  .hours-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.9rem 0.95rem;
  }

  .hours-time {
    text-align: left;
    font-size: 1.15rem;
    border-left: none;
    padding: 0;
  }

  .map-placeholder,
  .map-embed {
    aspect-ratio: 4 / 3;
    min-height: 260px;
    margin-top: 2rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 1.5rem) 0 1.35rem;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .menu-item {
    padding: 1.5rem;
  }

  .menu-item-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .menu-dish {
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 0.95rem;
  }

  .menu-dish--text {
    grid-template-columns: 1fr;
  }

  .menu-dish-image {
    min-height: 118px;
  }

  .menu-list,
  .menu-list-split {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .menu-list-split .menu-dish:nth-child(odd) {
    border-right: 1px solid rgba(201, 169, 98, 0.22);
  }

  .menu-dish-body {
    padding: 0.85rem 1rem 0.9rem 0;
  }

  .menu-dish--text .menu-dish-body {
    padding: 1rem 1.1rem;
  }

  .menu-dish-row {
    flex-wrap: wrap;
    gap: 0.35rem 0.75rem;
  }

  .menu-dish-leader {
    display: none;
  }

  .menu-dish-name,
  .menu-dish-price {
    width: auto;
  }

  .menu-dish-price {
    margin-top: 0;
  }

  .menu-section {
    margin-bottom: 2.75rem;
    scroll-margin-top: calc(var(--header-height) + 52px);
  }

  .cta-strip-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  .featured-grid {
    gap: 0.7rem;
  }

  .facebook-embed,
  .facebook-embed iframe {
    min-height: 640px;
    height: 640px;
  }

  .reviews-cta .btn {
    flex: 1;
    width: auto;
    min-width: 0;
    max-width: none;
    padding: 0.5rem 0.4rem;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .contact-grid {
    gap: 2.5rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-col h4 {
    margin-bottom: 0.75rem;
  }

  .lightbox-content {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
    min-width: 44px;
    min-height: 44px;
  }
}

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

  .logo img {
    height: 46px;
  }

  .featured-card {
    display: flex;
    flex-direction: column;
  }

  .featured-image {
    width: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .review-card blockquote {
    font-size: 0.74rem;
  }
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

/* ── Accessibility & UX ── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--gold);
  color: var(--bg-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.form-feedback {
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-gold);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gold-light);
  background: rgba(201, 169, 98, 0.08);
}

.form-feedback[hidden] {
  display: none;
}

.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  padding: 0.5rem 0.75rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-gold);
}

.mobile-action-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-height: 48px;
  padding: 0.35rem 0.25rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-radius: 0;
  transition:
    color var(--transition),
    background var(--transition);
}

.mobile-action-bar-item:hover {
  color: var(--gold);
}

.mobile-action-bar-item .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.mobile-action-bar-item-primary {
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.mobile-action-bar-item-primary:hover {
  color: var(--bg-primary);
  box-shadow: var(--glow-gold);
}

.mobile-action-bar-item-primary .icon {
  color: var(--bg-primary);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 850;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity var(--transition),
    visibility var(--transition),
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--gold);
  box-shadow: var(--glow-gold);
}

.back-to-top .icon {
  width: 1.125rem;
  height: 1.125rem;
}
