/* Kanok Thai Bistro — Brand Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  /* OKLCH brand palette */
  --color-gold: oklch(0.78 0.11 78);
  --color-gold-deep: oklch(0.62 0.13 68);
  --color-chili: oklch(0.52 0.17 28);
  --color-dark: oklch(0.19 0.01 55);
  --color-dark-soft: oklch(0.28 0.015 55);
  --color-ivory: oklch(0.96 0.018 75);
  --color-ivory-deep: oklch(0.92 0.025 72);
  --color-text: oklch(0.22 0.01 55);
  --color-text-muted: oklch(0.48 0.02 55);
  --color-white: oklch(0.99 0 0);

  /* Semantic aliases */
  --color-primary: var(--color-gold-deep);
  --color-primary-dark: oklch(0.52 0.12 65);
  --color-cream: var(--color-ivory);

  --font-body: 'Outfit', system-ui, sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --header-height: calc(var(--logo-height) + 34px);
  --logo-height: 96px;
  --max-width: 1140px;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 4px 24px oklch(0 0 0 / 0.12);
  --shadow-sm: 0 2px 8px oklch(0 0 0 / 0.08);
  --transition: 0.22s ease;

  --z-skip: 100;
  --z-header: 50;
  --z-menu-nav: 40;
  --z-back-top: 30;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + 3.5rem);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-white);
}

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

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

a:hover,
a:focus-visible {
  color: var(--color-chili);
  text-decoration: underline;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: var(--z-skip);
  padding: 0.75rem 1.25rem;
  background: var(--color-dark);
  color: var(--color-white);
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  background: var(--color-dark);
  border-bottom: 2px solid var(--color-gold-deep);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo-link {
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  z-index: 2;
}

.logo-link img {
  width: auto;
  height: var(--logo-height);
  object-fit: contain;
  filter: drop-shadow(0 4px 12px oklch(0 0 0 / 0.35));
}

/* Navigation */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius);
  color: var(--color-white);
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .icon-close {
  display: block;
}

.main-nav>ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.main-nav a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: oklch(0.62 0.13 68 / 0.2);
  color: var(--color-gold);
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--color-gold);
  box-shadow: inset 0 -2px 0 var(--color-gold);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown>button {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  background: none;
  border: none;
  color: var(--color-white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border-radius: var(--radius);
}

.has-dropdown>button:hover,
.has-dropdown>button:focus-visible {
  background: oklch(0.62 0.13 68 / 0.2);
  color: var(--color-gold);
}

.has-dropdown>button svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform var(--transition);
}

.has-dropdown.is-open>button svg {
  transform: rotate(180deg);
}

@media (min-width: 769px) {

  .has-dropdown:hover>button svg,
  .has-dropdown:focus-within>button svg {
    transform: rotate(180deg);
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    display: block;
  }
}

.dropdown-menu {
  list-style: none;
  margin: 0;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--color-dark-soft);
  border: 1px solid oklch(0.62 0.13 68 / 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.4rem 0;
  z-index: 10;
}

.has-dropdown.is-open .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  padding: 0.6rem 1.1rem;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:hover,
.btn:focus-visible {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-gold-deep);
  color: var(--color-dark);
  border-color: var(--color-gold-deep);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-dark);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background: var(--color-white);
  color: var(--color-dark);
}

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

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: var(--color-primary);
  color: var(--color-white);
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 75vh;
  padding: 4rem 1.5rem;
  background-size: cover;
  background-position: center;
  color: var(--color-white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      oklch(0.15 0.01 55 / 0.7) 0%,
      oklch(0.15 0.01 55 / 0.45) 50%,
      oklch(0.15 0.01 55 / 0.75) 100%);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    repeating-linear-gradient(60deg,
      transparent,
      transparent 20px,
      var(--color-gold) 20px,
      var(--color-gold) 21px),
    repeating-linear-gradient(-60deg,
      transparent,
      transparent 20px,
      var(--color-gold) 20px,
      var(--color-gold) 21px);
  pointer-events: none;
}

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

.hero--home {
  background-image: url('../images/hero-home.jpg');
  min-height: 88vh;
}

.hero--menu {
  background-image: url('../images/hero-menu.webp');
}

.hero--contact {
  background-image: url('../images/hero-contact.webp');
}

.separator {
  width: 56px;
  margin: 0.75rem auto 1rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.25rem);
  color: var(--color-gold);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  color: var(--color-primary);
  letter-spacing: 0.01em;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--color-dark);
}

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 2px 16px oklch(0 0 0 / 0.5);
}

.hero .subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--color-gold);
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}

.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-chili);
  margin: 0.25rem 0 1.25rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}

/* Layout */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
  position: relative;
}

.section--ivory {
  background: var(--color-ivory);
  background-image:
    linear-gradient(var(--color-ivory-deep) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-ivory-deep) 1px, transparent 1px);
  background-size: 40px 40px;
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
}

.section--dark h2 {
  color: var(--color-gold);
}

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-chili);
  margin-bottom: 0.5rem;
}

/* Two column layout */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grid-2--about {
  align-items: center;
}

/* Landscape carousel — section 2 */
.carousel--landscape {
  box-shadow: var(--shadow);
}

.carousel--landscape .carousel-slide img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.carousel--landscape .carousel-controls {
  margin-top: 0.65rem;
}

/* Photo grid */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-grid img:hover {
  transform: scale(1.04);
}

.photo-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

/* Carousel */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

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

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.carousel-btn {
  background: var(--color-white);
  border: 2px solid var(--color-ivory-deep);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--color-ivory);
  border-color: var(--color-gold);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--color-dark);
}

.carousel-btn--pause {
  width: auto;
  border-radius: var(--radius);
  padding: 0 0.85rem;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--color-gold-deep);
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.carousel-dot[aria-current="true"] {
  background: var(--color-gold-deep);
}

/* CTA link */
.cta-link {
  display: inline-block;
  margin-top: 1.5rem;
}

/* Hours block */
.hours-block {
  max-width: 480px;
  margin: 0 auto;
}

.hours-block p {
  margin: 0.3rem 0;
  font-size: 1.05rem;
}

.hours-block .phone {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 1.25rem;
}

.hours-block .phone a {
  color: var(--color-gold);
  text-decoration: none;
}

.hours-block .phone a:hover {
  text-decoration: underline;
}

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Menu page — sticky category nav */
.menu-sticky-wrap {
  position: sticky;
  top: var(--header-height);
  z-index: var(--z-menu-nav);
  background: var(--color-white);
  border-bottom: 1px solid var(--color-ivory-deep);
  box-shadow: var(--shadow-sm);
}

.menu-nav {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1.25rem;
}

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

.menu-nav-link {
  flex-shrink: 0;
  scroll-snap-align: start;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.menu-nav-link:hover,
.menu-nav-link:focus-visible {
  color: var(--color-primary);
  background: var(--color-ivory);
  text-decoration: none;
}

.menu-nav-link.is-active {
  color: var(--color-dark);
  background: var(--color-gold);
  border-color: var(--color-gold-deep);
}

.menu-body {
  padding-bottom: 3rem;
}

.menu-intro {
  text-align: center;
  padding: 2rem 0 1.5rem;
}

.menu-intro-lead {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.menu-section {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid oklch(0.62 0.13 68 / 0.2);
  scroll-margin-top: calc(var(--header-height) + 3.5rem);
}

.menu-section:last-child {
  border-bottom: none;
}

.menu-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--color-gold-deep);
}

.menu-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.menu-section-notes {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.menu-section-notes li {
  margin-bottom: 0.3rem;
}

.menu-section-notes--fine {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.menu-promo {
  text-align: center;
  font-weight: 700;
  color: var(--color-chili);
  margin: 0 0 0.5rem;
}

.menu-subheading {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-primary);
  margin: 0.75rem 0;
}

.menu-item--protein .menu-item-name {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
}

.menu-item--protein .menu-item-header {
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}

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

.menu-item {
  padding: 0.9rem 0;
  border-bottom: 1px dotted oklch(0 0 0 / 0.12);
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.25rem;
}

.menu-item-name {
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex: 1;
  line-height: 1.4;
}

.menu-item-price {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
  text-align: right;
  line-height: 1.4;
  flex-shrink: 0;
}

.menu-item-price .price-val {
  font-variant-numeric: tabular-nums;
}

.menu-item-desc {
  margin: 0.4rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 65ch;
}

.spicy-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 4px;
}

.menu-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.menu-images img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

.menu-lunch-info {
  text-align: center;
  background: var(--color-ivory);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  border: none;
  margin-bottom: 2rem;
}

.menu-lunch-when {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
}

.menu-lunch-notes {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.menu-lunch-notes li {
  margin-bottom: 0.35rem;
}

.menu-subsection {
  margin-top: 2rem;
  scroll-margin-top: calc(var(--header-height) + 3.5rem);
}

.menu-subsection h3 {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.spicy-legend {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
}

.spicy-legend img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.25rem;
}

.feature-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

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

.contact-info h2,
.contact-grid h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

.contact-list li {
  margin-bottom: 0.75rem;
}

.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--color-primary);
}

.contact-list svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary);
  flex-shrink: 0;
}

.map-container {
  margin: 2rem 0 3rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* Footer */
.site-footer {
  background: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 2.25rem 1.25rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

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

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-contact address {
  font-style: normal;
}

.footer-divider {
  color: var(--color-gold-deep);
}

.footer-copy {
  font-size: 0.85rem;
  color: oklch(0.75 0.02 75);
}

.footer-copy .brand {
  color: var(--color-gold);
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid var(--color-ivory-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: var(--z-back-top);
  box-shadow: var(--shadow);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--color-dark);
}

/* Responsive */
@media (max-width: 900px) {

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

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .site-header {
    position: sticky;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark-soft);
    border-top: 1px solid oklch(0.62 0.13 68 / 0.2);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-0.5rem);
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  }

  .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: var(--shadow);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav>ul {
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0;
  }

  .main-nav a,
  .has-dropdown>button {
    padding: 0.85rem 1.25rem;
    width: 100%;
    text-align: left;
  }

  .has-dropdown {
    position: static;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: oklch(0 0 0 / 0.25);
    border: none;
    border-radius: 0;
    padding: 0;
    display: none;
  }

  .has-dropdown.is-open .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding-left: 2rem;
  }

  .hero {
    min-height: 60vh;
    padding: 3rem 1rem;
  }

  .hero--home {
    min-height: 75vh;
  }

  .section {
    padding: 2.75rem 0;
  }

  .menu-item-header {
    flex-direction: column;
    gap: 0.3rem;
  }

  .menu-item-price {
    text-align: left;
  }

  .footer-contact {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-divider {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --logo-height: 80px;
  }

  h1 {
    font-size: 2.25rem;
  }

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

  .photo-grid img:first-child {
    grid-column: span 1;
  }
}

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

  .carousel-track,
  .main-nav,
  .photo-grid img,
  .btn {
    transition: none;
  }
}