/* ===== Self-hosted fonts (replaces external Google Fonts request) =====
   Variable fonts: one file per subset covers the whole weight range used on this site,
   declared with a weight range per standard Google Fonts variable-font convention. */
@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bevietnampro-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/bevietnampro-400-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/bevietnampro-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Be Vietnam Pro';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/bevietnampro-700-vietnamese.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
@font-face {
  font-family: 'Noto Sans Lao';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/notosanslao-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Noto Sans Lao';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/notosanslao-lao.woff2') format('woff2');
  unicode-range: U+0E81-0EDF, U+200C-200D, U+25CC;
}
/* ===== Design Tokens =====
   Foreground (text/buttons/icons/headings) stays the original maroon/mustard/olive design.
   Backgrounds (sections, footer, cards, badges, hero overlay) use the new brand palette. */
:root {
  --red-900: #4a1110;
  --red-800: #641815;
  --red-700: #7a1b1a;
  --red-600: #8a1e1c;
  --red-500: #a1281f;
  --yellow-600: #d9a43a;
  --yellow-500: #f0b93d;
  --yellow-400: #f5c24d;
  --yellow-100: #fbe9c4;
  --olive-900: #2c3915;
  --olive-700: #45591f;
  --cream: #fef7e6;
  --cream-2: #eef6f3;
  --card-bg: #fef7e6;
  --ink: #2b1a10;
  --ink-soft: #5a4632;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(74, 17, 16, 0.12);
  --radius: 18px;
  --font-display: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Be Vietnam Pro', sans-serif;

  /* New brand palette — background surfaces only */
  --bg-yellow: #f9ab04;
  --bg-red: #f81224;
  --bg-green: #11815a;
  --bg-green-dark: #0d7450;
  --bg-green-light: #1a8b63;
}

/* Neither Baloo 2 nor Inter cover Lao script — swap in a modern Lao-native
   font whenever the site is switched to Lao, everywhere var(--font-*) is used. */
html[lang="lo"] {
  --font-display: 'Noto Sans Lao', sans-serif;
  --font-body: 'Noto Sans Lao', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--red-600);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Single viewport-fixed gradient layer behind the red sections — one continuous
   texture instead of per-section overlays, so there's no seam at section edges. */
.bg-glow {
  position: fixed;
  top: -20%; left: -20%;
  width: 140%; height: 140%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 20%, rgba(249,171,4,0.16), transparent 42%),
    radial-gradient(circle at 85% 75%, rgba(17,129,90,0.14), transparent 45%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,0.1), transparent 55%);
  animation: gradient-glide 22s ease-in-out infinite alternate;
  will-change: transform;
}
/* Transform-based (not background-position) so this runs on the compositor
   instead of repainting the full-viewport background every frame. */
@keyframes gradient-glide {
  0% { transform: translate(0, 0); }
  100% { transform: translate(6%, 6%); }
}

/* Scroll-reveal — opacity-only so it never fights the transforms already used
   for card tilts, hovers, or the decorative spinning rings. */
.reveal { opacity: 0; transition: opacity 0.7s ease; }
.reveal.in-view { opacity: 1; }

img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; color: var(--yellow-400); letter-spacing: 0.2px; }

.icon { width: 18px; height: 18px; flex-shrink: 0; }
.icon-whatsapp { width: 23px; height: 23px; }
.btn .icon-whatsapp { width: 18px; height: 18px; }

.dim { color: var(--ink-soft); font-weight: 400; font-size: 0.7em; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }

.btn-solid {
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
  color: var(--red-800);
  box-shadow: 0 8px 20px rgba(217, 164, 58, 0.4);
}
.btn-outline {
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(249, 171, 4, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122, 27, 26, 0.08);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.site-header.header-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 44px; width: auto; }
.footer-logo-img { height: 34px; }
.main-nav {
  display: flex;
  gap: 40px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--red-600);
  position: relative;
  padding: 4px 0;
}
.main-nav a .icon { display: none; }
/* Thin vertical separators between items — desktop only, a quiet premium detail
   rather than a heavy divider. Uses ::before since ::after already drives the
   hover underline below. */
.main-nav a:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(43, 26, 16, 0.4);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--yellow-500);
  transition: width 0.2s ease;
}
.main-nav a:hover::after { width: 100%; }

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

/* Language switch */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  background: var(--red-600);
  border: 1.5px solid var(--red-600);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: var(--font-body);
}
.lang-btn:hover { background: var(--red-700); border-color: var(--red-700); }
.icon-chevron { width: 14px; height: 14px; transition: transform 0.2s ease; }
.lang-switch.open .icon-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--red-600);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 150px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 50;
}
.lang-switch.open .lang-menu { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lang-menu li {
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--yellow-400);
  cursor: pointer;
}
/* This option's own label is Lao script — give it the Lao-native font regardless
   of the page's current language, since html[lang] hasn't switched yet here. */
.lang-menu li[data-lang="lo"] { font-family: 'Noto Sans Lao', sans-serif; }
.lang-menu li:hover { background: var(--red-700); color: var(--yellow-100); }
.lang-menu li.active { color: var(--white); font-weight: 700; background: var(--red-800); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span {
  height: 2px; width: 100%;
  background: var(--red-700);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(250, 186, 49, 0.28), transparent 45%),
    linear-gradient(120deg, rgba(79,6,12,0.92), rgba(149,11,22,0.85) 55%, rgba(248,18,36,0.65));
  z-index: -1;
}
.hero-inner {
  color: var(--white);
  padding: 60px 24px;
}
.hero-text { min-width: 0; }

/* ===== Hero photo carousel =====
   Fixed aspect-ratio on the container (not the images) is what prevents layout
   shift when slides change — the box never resizes, only its contents slide. */
.hero-carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 440px;
  aspect-ratio: 16 / 9;
  margin: 0 0 22px;
  background: var(--red-900);
  box-shadow: 0 14px 32px rgba(0,0,0,0.32);
  border: 2px solid rgba(255,255,255,0.3);
}
.hero-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-carousel-dots {
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.carousel-dot.active { background: var(--yellow-400); transform: scale(1.3); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}
.carousel-arrow svg { width: 14px; height: 14px; }
.carousel-arrow:hover { background: rgba(0,0,0,0.55); }
.carousel-arrow-prev { left: 8px; }
.carousel-arrow-next { right: 8px; }
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--font-body);
  border: 1px solid transparent;
}
.badge-rating { background: var(--bg-yellow); color: var(--red-800); }
.badge-link { cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease; }
.badge-link:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(217,164,58,0.4); }
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 7vw, 4rem);
  line-height: 1.1;
  max-width: 800px;
}
.hero h1 span { color: var(--yellow-400); }
.hero-sub {
  max-width: 560px;
  font-size: 1.1rem;
  margin-top: 18px;
  color: rgba(255,255,255,0.9);
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(249,171,4,0.18);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; align-items: center; }

/* ===== About ===== */
.about { padding: 110px 0 90px; position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plate-graphic {
  width: 100%;
  height: 338px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 2;
  border: 6px solid var(--yellow-500);
}
.plate-graphic img { width: 100%; height: 100%; object-fit: cover; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow-400);
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.about-copy h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 18px; color: var(--yellow-400); }
.about-copy p { color: rgba(255,255,255,0.9); font-size: 1.05rem; max-width: 560px; }
.about-stats { display: flex; gap: 34px; margin-top: 34px; flex-wrap: wrap; justify-content: center; transform: translateX(-8%); }
.stat strong { display: block; font-family: var(--font-body); font-size: 1.5rem; color: var(--yellow-400); }
.stat span { font-size: 0.85rem; color: rgba(255,255,255,0.85); }

/* ===== Section head shared ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 46px; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
.section-sub { color: rgba(255,255,255,0.85); margin-top: 10px; }

/* ===== Menu ===== */
.menu { padding: 90px 0; position: relative; overflow: hidden; }
.menu-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.menu-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(250, 186, 49, 0.28), transparent 45%),
    linear-gradient(120deg, rgba(79,6,12,0.92), rgba(149,11,22,0.85) 55%, rgba(248,18,36,0.65));
  z-index: -1;
}

.menu-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin: 0 auto 40px;
  max-width: fit-content;
  border-bottom: 2px solid rgba(74,17,16,0.12);
  padding-bottom: 2px;
}
.tab-indicator {
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--yellow-500);
  z-index: 0;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), width 0.35s cubic-bezier(0.65, 0, 0.35, 1);
}
.tab-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 2px 10px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  transition: color 0.3s ease;
}
.tab-btn .icon { width: 16px; height: 16px; }
.tab-btn:hover:not(.active) { color: var(--white); }
.tab-btn.active { color: var(--yellow-400); }
@keyframes tab-pop {
  0% { transform: scale(0.92); }
  60% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.menu-panels { max-width: 760px; margin: 0 auto; }
.menu-panel {
  display: none;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.menu-panel.active { display: flex; }
.menu-panel.panel-visible { opacity: 1; transform: translateY(0) scale(1); }
.menu-panel.panel-visible .menu-item {
  animation: item-rise 0.45s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.menu-panel.panel-visible .menu-item:nth-child(1) { animation-delay: 0.03s; }
.menu-panel.panel-visible .menu-item:nth-child(2) { animation-delay: 0.08s; }
.menu-panel.panel-visible .menu-item:nth-child(3) { animation-delay: 0.13s; }
.menu-panel.panel-visible .menu-item:nth-child(4) { animation-delay: 0.18s; }
@keyframes item-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--cream);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 3px 12px rgba(74,17,16,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(74,17,16,0.14); }
.menu-item-text { min-width: 0; }
.menu-item h3 { font-size: 1.15rem; color: var(--ink); font-family: var(--font-body); font-weight: 600; }
.menu-item p { font-size: 0.9rem; color: var(--ink-soft); margin-top: 4px; }
.menu-thumb {
  width: 72px; height: 72px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow-400), var(--yellow-600));
  display: flex; align-items: center; justify-content: center;
  color: var(--red-800);
  overflow: hidden;
}
.menu-thumb svg { width: 28px; height: 28px; }
.menu-thumb-photo picture, .menu-thumb-photo img { width: 100%; height: 100%; }
.menu-thumb-photo img { object-fit: cover; }

/* ===== Gallery ===== */
.gallery { padding: 90px 0; position: relative; }
.gallery .eyebrow, .gallery .section-head h2 { color: var(--yellow-400); }
.gallery-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.gallery-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--cream);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 3px 12px rgba(74,17,16,0.06);
}
.gallery-row picture, .gallery-row img {
  width: 96px; height: 96px;
  border-radius: 12px;
  flex-shrink: 0;
}
.gallery-row img { object-fit: cover; }
.gallery-row-text h3 { font-size: 1.1rem; color: var(--ink); }
.gallery-row-text p { color: var(--ink-soft); font-size: 0.9rem; margin-top: 4px; }

/* ===== Reviews ===== */
.reviews { padding: 90px 0; position: relative; overflow: hidden; }
.reviews .eyebrow, .reviews .section-head h2 { color: var(--yellow-400); }
.reviews .section-head .dim { color: rgba(255,255,255,0.75); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}
.review-card.tilt-left { transform: rotate(-1.6deg); }
.review-card.tilt-right { transform: rotate(1.6deg); }
.review-card:hover {
  transform: rotate(0deg) translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.review-card-top {
  background: linear-gradient(160deg, var(--yellow-400), var(--yellow-600));
  border-radius: 20px 20px 0 0;
  padding: 34px 24px 34px;
  text-align: center;
  position: relative;
}
.review-card-top p {
  color: var(--red-800);
  font-weight: 600;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.5;
}
.review-card-bottom {
  background: var(--cream);
  border-radius: 0 0 20px 20px;
  padding: 40px 20px 22px;
  text-align: center;
}
.quote-mark {
  position: absolute;
  width: 42px; height: 42px;
  color: var(--yellow-400);
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  z-index: 3;
}
.quote-mark-open { top: -16px; left: -10px; }
.quote-mark-close { bottom: -16px; right: -10px; transform: rotate(180deg); }
.stars {
  color: var(--red-700);
  font-size: 1.05rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.avatar {
  position: absolute;
  left: 50%; bottom: -18px;
  transform: translateX(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 2;
}
.review-card-bottom strong { display: block; color: var(--red-700); font-size: 0.92rem; font-family: var(--font-body); }
.review-card-bottom span { color: var(--ink-soft); font-size: 0.78rem; }
.reviews-note { text-align: center; margin-top: 20px; font-size: 0.8rem; color: rgba(255,255,255,0.75); }

.reserve-cta { display: flex; justify-content: center; margin-top: 44px; }

/* ===== Visit ===== */
.visit { padding: 90px 0; position: relative; }
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}
.info-list { margin: 26px 0; }
.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.info-list .icon { width: 20px; height: 20px; color: var(--yellow-400); margin-top: 2px; }
.info-list li > div { display: flex; flex-direction: column; gap: 2px; }
.info-list strong { color: var(--yellow-400); font-size: 0.95rem; }
.info-list span { color: rgba(255,255,255,0.85); }
.info-list a { color: var(--white); font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; }
.hours-table td { padding: 10px 0; border-bottom: 1px dashed rgba(255,255,255,0.2); }
.hours-table td:first-child { font-weight: 700; color: var(--white); }
.hours-table td:last-child { text-align: right; color: var(--yellow-400); font-weight: 600; }
.visit-map-wrap { display: flex; flex-direction: column; gap: 8px; height: 100%; }
.visit-map {
  flex: 1;
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--yellow-500);
}
.visit-map iframe { width: 100%; height: 100%; min-height: 360px; }
.visit-map-caption {
  font-size: 0.78rem;
  color: rgba(245, 194, 77, 0.7);
  letter-spacing: 0.3px;
  padding-left: 4px;
}

/* ===== Footer ===== */
.site-footer { background: var(--bg-yellow); color: var(--ink); padding: 26px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(122,27,26,0.15);
}
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-brand { gap: 6px; align-items: flex-start; }
.footer-brand p { font-size: 0.78rem; color: var(--ink-soft); }
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--red-600);
}
.footer-links, .footer-contact { display: flex; flex-direction: column; gap: 6px; }
.footer-links a, .footer-contact a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s ease;
}
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact .icon { color: var(--red-600); opacity: 0.9; }
.footer-links a:hover, .footer-contact a:hover { color: var(--red-700); }
.footer-hours { display: flex; align-items: flex-start; gap: 8px; }
.footer-hours .icon { color: var(--red-600); margin-top: 2px; }
.footer-hours div { display: flex; flex-direction: column; gap: 2px; }
.footer-hours strong { font-size: 0.82rem; color: var(--ink); }
.footer-hours span { font-size: 0.78rem; color: var(--ink-soft); }
.footer-bottom {
  padding: 10px 24px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
}

/* ===== Scroll-position dot nav ===== */
.scroll-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.scroll-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1.5px solid rgba(255,255,255,0.6);
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.scroll-dot:hover { border-color: var(--yellow-400); transform: scale(1.2); }
.scroll-dot.active {
  background: var(--yellow-400);
  border-color: var(--yellow-400);
  transform: scale(1.35);
}

/* Chapter-marker accent at the top of each red section — a designed transition,
   not a repeating-pattern seam. */
.about, .menu, .gallery, .reviews, .visit {
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, rgba(249,171,4,0.55), transparent) 1;
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--yellow-500);
  color: var(--red-600);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.2s ease;
  z-index: 90;
}
.back-to-top svg { width: 20px; height: 20px; }
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid, .visit-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; max-width: 280px; margin: 0 auto; }
  .review-grid { grid-template-columns: 1fr; }
  .review-card.tilt-left, .review-card.tilt-right { transform: rotate(0deg); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .scroll-dots { display: none; }
}

@media (max-width: 760px) {
  .main-nav a::before { display: none; }
  .hero-carousel { aspect-ratio: 4 / 5; max-width: 300px; margin-left: auto; margin-right: auto; }
  .hero-text { text-align: center; }
  .badge-row, .hero-tags, .hero-actions { justify-content: center; }
  .about-copy { text-align: center; }
  .about-copy p { margin-left: auto; margin-right: auto; }
  .about-stats { justify-content: center; transform: none; }
  .stat { text-align: center; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 10px 22px 16px;
    gap: 0;
    display: flex;
    border: 3px solid var(--yellow-500);
    border-top: none;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 16px 30px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .main-nav a .icon { display: block; color: var(--red-600); }
  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px dashed rgba(122,27,26,0.15);
  }
  .main-nav a:last-child { border-bottom: none; }
  .main-nav a:active { background: rgba(138,30,28,0.06); }
  .nav-toggle { display: flex; }
  .lang-btn span:not(.icon) { display: none; }
}

@media (max-width: 560px) {
  .gallery-row { gap: 14px; padding: 12px; }
  .gallery-row picture, .gallery-row img { width: 72px; height: 72px; }
  .menu-item { flex-direction: row; }
  .menu-thumb { width: 60px; height: 60px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}
