/* =======================
   VARIABLES / TOKENS
======================= */

@font-face {
  font-family: 'Playfair Display';
  src: url('/assets/fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/assets/fonts/source-sans-3-v19-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: optional;
}

:root {
  --r-sm: 0.9rem;
  --r-md: 1.25rem;
  --r-lg: 2rem;
  --r-xl: 2.6rem;
  --font-title: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-2: cubic-bezier(.2, 1, .2, 1);
  --dur-1: 180ms;
  --dur-2: 600ms;
  --dur-3: 750ms;
  --gold: #d4af37;
  --gold-2: #f3e7a5;
  --ink: #0D2E0B;
  --paper: rgba(255, 255, 255, 0.70);
  --paper-2: rgba(255, 255, 255, 0.50);
  --blur: blur(10px);
  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 16px 34px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 22px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 70px rgba(0, 0, 0, 0.22);
  --ring: 0 0 0 3px rgb(17, 104, 0);
  --header-h: 120px;
  --wrap: 1200px;
  --gold-glow: 0 10px 26px rgba(212, 175, 55, .16);
  --ornament-line: linear-gradient(90deg, transparent, rgba(212, 175, 55, .75), rgba(243, 231, 165, .70), rgba(212, 175, 55, .75), transparent);
}

/* =======================
   RESET / BASE
======================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) rgba(250, 248, 242, 0.8);
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  min-height: 100%;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  line-height: 1.65;
  color: #000;
  overflow-x: hidden;
  padding-bottom: 2.5rem;
  user-select: text;
}

.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

@supports (height: 100dvh) {
  .page-bg {
    height: 100dvh;
  }
}

.page-bg img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center top;
  display: block;
}

::selection {
  background: rgba(212, 175, 55, 0.35);
  color: #102014;
}

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

img,
button,
.burger-menu,
.theme-toggle,
.lang-current,
.category-card,
.info-bar,
.info-bar strong {
  user-select: none;
  -webkit-user-drag: none;
}

a:focus-visible,
button:focus-visible,
.theme-toggle:focus-visible,
.lang-current:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.85);
  outline-offset: 3px;
  border-radius: 12px;
}

/* =======================
   GLOBAL LAYOUT
======================= */
.container {
  width: min(92%, var(--wrap));
  margin: 3rem auto;
  padding: 0 1rem;
  border-radius: var(--r-xl);
  border: 1px solid rgba(212, 175, 55, .22);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, var(--paper), var(--paper-2)),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(circle at 100% 70%, rgba(15, 107, 111, 0.10), transparent 60%);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: fadeUp .8s var(--ease) both;
  position: relative;
  overflow: hidden;
}

.container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .34), transparent 35%),
    radial-gradient(circle at 12% 0%, rgba(243, 231, 165, .14), transparent 55%),
    radial-gradient(circle at 105% 70%, rgba(212, 175, 55, .10), transparent 60%);
  opacity: .45;
  mix-blend-mode: soft-light;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.section>.container {
  padding: 5rem 2rem;
  border-radius: var(--r-xl);
}

/* =======================
   SECTIONS
======================= */
.section {
  margin: 3rem 0;
  padding: 3rem 0;
  background: none;
  border: none;
  box-shadow: none;
}

.section-hidden {
  opacity: 0;
  transform: translateY(40px);
}

.section-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}

/* =======================
   TYPOGRAPHY
======================= */
h1,
h2,
h3 {
  font-family: var(--font-title);
  letter-spacing: 0.1rem;
}

.section h2 {
  position: relative;
  font-size: clamp(2.05rem, 3.2vw, 2.75rem);
  text-align: center;
  margin-bottom: 2.6rem;
  color: #105020;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .10);
}

.section h2::after {
  content: "";
  display: block;
  width: min(7rem, 40vw);
  height: 3px;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  box-shadow: var(--gold-glow);
  opacity: .95;
}

p {
  font-size: clamp(1rem, 1.05vw, 1.06rem);
  line-height: 1.85;
  color: #000000;
  max-width: 72ch;
  margin: 0 auto 1.1rem;
}

@media (min-width: 1024px) {
  p {
    max-width: 76ch;
  }
}

p a {
  color: #33692d;
  position: relative;
  transition: transform .25s var(--ease), color .25s var(--ease), text-shadow .25s var(--ease);
}

p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), #F5E28D);
  transition: width .35s var(--ease);
  opacity: .95;
}

/* =======================
   HOME MENU GRID (cards)
======================= */
.home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(21rem, 1fr));
  gap: 2.5rem;
}

.menu-item {
  background: #fffdf8;
  border-radius: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(212, 175, 55, 0.14);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);

  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .08), transparent 55%);
  opacity: .38;
}

.menu-item img {
  width: 100%;
  height: 60%;
  object-fit: cover;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .10);
  filter: saturate(1.06) contrast(1.04);
}

.menu-item h3 {
  font-size: 1.4rem;
  color: #105020;
  margin-bottom: 0.5rem;
}

.menu-item p {
  font-size: .95rem;
  color: rgba(31, 44, 29, .78);
  max-width: 60ch;
}

/* =======================
   CONTACT SECTION
======================= */
.contact-section p {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 650;
  color: #33692d;
}

.map-container {
  margin-top: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--paper), var(--paper-2)),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.12), transparent 55%),
    radial-gradient(circle at 100% 70%, rgba(15, 107, 111, 0.10), transparent 60%);
  padding: 1rem;
  border: 1px solid rgba(212, 175, 55, 0.16);
  box-shadow: var(--shadow-sm);
}

/* =========================================================
   HEADER — stable + premium
========================================================= */
header {
  z-index: 1000;
  height: var(--header-h);
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  isolation: isolate;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  background: linear-gradient(180deg,
      rgba(47, 58, 37, 0.92) 0%,
      rgba(40, 48, 32, 0.86) 55%,
      rgba(20, 25, 18, 0.82) 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--ornament-line);
  opacity: .22;
  pointer-events: none;
}

.header-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo img {
  height: 92px;
  width: auto;
  transform-origin: center;
  transition: transform var(--dur-2) var(--ease), filter var(--dur-2) var(--ease);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-nav ul li {
  position: relative;
}

.header-nav ul li a {
  font-family: var(--font-title);
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 10px;
  border-radius: 999px;
  display: inline-block;
  transition: transform var(--dur-1) var(--ease), background var(--dur-1) var(--ease), box-shadow var(--dur-1) var(--ease);
  white-space: nowrap;
}

.header-nav ul li a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-2) var(--ease);
  opacity: .85;
}

.header-nav ul li a.active {
  color: #fff;
  background: rgba(212, 175, 55, 0.16);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, .20),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  transform: translateY(-3px);
}

.header-nav ul li a.active::after {
  transform: scaleX(1);
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.burger-menu span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  position: relative;
  cursor: pointer;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .10);
  transition: transform var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
}

.lang-current img {
  width: 28px;
  height: 18px;
  border-radius: 4px;
  transform: translateY(1px);
}

.lang-arrow {
  color: var(--gold);
  font-size: 18px;
  transition: transform var(--dur-2) var(--ease);
}

.language-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(47, 58, 37, 0.95);
  border-radius: 10px;
  padding: .55rem;
  display: none;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  min-width: 100%;
}

.language-switcher.open .lang-options {
  display: flex;
}

.lang-options img {
  width: 28px;
  height: 18px;
  border-radius: 4px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.22);
  color: var(--gold);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .10);
}

.info-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9000;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #f3e7a5;
}

.info-bar strong {
  color: #fff;
  font-weight: 900;
}

/* =======================
   PREMIUM FOOTER
======================= */
.premium-footer {
  position: relative;
  overflow: hidden;
  background: rgba(40, 48, 32, 0.9);
  color: #FAF9F6;
  padding: 5rem 1.5rem 3rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  text-align: center;
}

.premium-footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
  opacity: 1;
}

@keyframes fadeInFooter {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.premium-footer h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.premium-footer h3::after {
  content: "";
  display: block;
  height: 3px;
  margin: 1.1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  box-shadow: var(--gold-glow);
  opacity: .85;
}

.footer-brand img {
  width: 130px;
  margin: 0 auto 1rem;
  animation: floatLogo 4s ease-in-out infinite;
}

@keyframes floatLogo {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.88;
  color: #ffffff;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: #FAF9F6;
  margin-bottom: 0.6rem;
  text-decoration: none;
  transition: transform 0.3s var(--ease), text-shadow 0.3s var(--ease), opacity 0.3s var(--ease);
  position: relative;
}

.footer-links a::after,
.footer-contact a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #F5E28D);
  border-radius: 1px;
  transition: width 0.35s var(--ease);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#footer-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.75;
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding-top: 1.2rem;
}

.footer-shimmer {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 70%);
  animation: shimmerOverlay 6s linear infinite;
  pointer-events: none;
}

.footer-credit {
  margin-top: 0.6rem;
  font-size: 0.7rem;
  opacity: 0.48;
  letter-spacing: 0.08em;
  text-align: center;
}

.footer-credit a {
  color: inherit;
  font-weight: 700;
}

@keyframes shimmerOverlay {
  0% {
    transform: rotate(0deg) translate(0, 0);
  }

  50% {
    transform: rotate(180deg) translate(20px, 20px);
  }

  100% {
    transform: rotate(360deg) translate(0, 0);
  }
}

.consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: none;
  justify-content: center;
  z-index: 999999;
  pointer-events: none;
}

.consent.show {
  display: flex;
}

.consent-box {
  pointer-events: auto;
  background: rgba(255, 253, 248, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  padding: 1.2rem 1.4rem;
  border-radius: 1.4rem;
  max-width: 720px;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, .3);
}

.consent-box p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.consent-buttons {
  display: flex;
  gap: 0.7rem;
  flex-shrink: 0;
}

.btn-ghost,
.btn-primary {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: transform .2s ease;
}

.btn-ghost {
  background: #eee;
}

.btn-primary {
  background: #d4af37;
  color: #1b2416;
}

.btn-ghost:hover,
.btn-primary:hover {
  transform: translateY(-2px);
}

/* =========================================================
   WELCOME HERO (index.html)
========================================================= */
.hero-welcome {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
}



.welcome-box {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  padding: 2rem;
  border-radius: 1.6rem;
  text-align: center;
  max-width: 800px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.welcome-box h1 {
  font-family: var(--font-title);
  font-size: clamp(2.2rem, 4vw, 3.55rem);
  color: var(--ink);
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.welcome-box h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 1rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  border-radius: 999px;
}

.welcome-box span {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(31, 44, 29, .78);
  font-weight: 700;
}

/* =========================================================
   REVIEWS
========================================================= */
.reviews-section {
  position: relative;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.review-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(241, 255, 236, .58));
  border: 1px solid rgba(212, 175, 55, .18);
  border-radius: 1.4rem;
  padding: 1.1rem 1.2rem 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.review-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .10), transparent 55%);
  opacity: .34;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .6rem;
}

.review-top>.review-name {
  font-size: 1.3rem;
}

.review-top>.review-name::after {
  content: "";
  display: block;
  width: 8rem;
  height: 2px;
  margin: 3px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), var(--gold), transparent);
  border-radius: 999px;
}

.review-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .08em;
}

.review-text {
  margin: 0;
  line-height: 1.75;
  color: rgba(31, 44, 29, .86);
  letter-spacing: .01em;
}

/* =========================================================
   Home page buttons
========================================================= */

.container.has-bottom-cta {
  display: flex;
  flex-direction: column;
}

.home-button {
  position: static;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  gap: .65rem;
  padding: 0.8rem 1.5rem;
  margin: 2rem auto 0;
  align-self: flex-end;
  background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(241, 255, 236, .68));
  border: 1px solid rgba(212, 175, 55, .28);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  justify-content: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
}

.home-button .btn-text {
  white-space: nowrap;
  color: #105020;
}

/* =========================================================
   MENU ICON (fork & knife) — same size as maps-pin
========================================================= */
.menu-icon {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  transform: translateY(-1px);
  filter:
    drop-shadow(0 6px 14px rgba(0, 0, 0, .28)) drop-shadow(0 0 0.6px rgba(0, 0, 0, .45));
}

.menu-icon::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 6px;
  height: 14px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #d4af37, #b8942e);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .35),
    0 0 0 1px rgba(0, 0, 0, .28);
}

.menu-icon::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 1px;
  width: 6px;
  height: 16px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffffff, #e6e6e6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .45),
    0 0 0 1px rgba(0, 0, 0, .28);
}

.maps-pin {
  width: 18px;
  height: 18px;
  position: relative;
  display: inline-block;
  transform: translateY(-1px);
}

.maps-pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: conic-gradient(from 60deg, #4285F4, #34A853, #FBBC05, #EA4335, #4285F4);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .45);
}

.maps-pin::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  top: 5px;
  left: 5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .25);
}

/* =======================
   SCROLL TO TOP
======================= */
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--gold);
  color: #2F3A25;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .28);
  z-index: 999;
}

/* =========================================================
   MENU PAGE (menu.html)
========================================================= */
.menu-grid-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2rem;
  width: 100%;
  align-items: start;
}

.menu-sidebar {
  position: sticky;
  top: calc(var(--header-h) - 10px);
  align-self: start;
  border-radius: var(--r-lg);
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-top: 3.6rem;
  max-height: calc(100vh - var(--header-h) - 40px);
}

.menu-sidebar::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .08), transparent 55%);
  opacity: .35;
}

.menu-sidebar h2 {
  font-family: var(--font-title);
  color: #105020;
  font-size: 1.65rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.65);
  padding-bottom: .6rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.menu-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding: 0.9rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.40);
  border: 1px solid rgba(212, 175, 55, 0.18);
  position: relative;
  z-index: 1;
  max-height: calc(100vh - var(--header-h) - 140px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.category-card {
  position: relative;
  height: 78px;
  border-radius: 1.2rem;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: .55rem .75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), filter var(--dur-2) var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.65));
  pointer-events: none;
}

.category-card span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.76rem;
  text-align: right;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.menu-links-list a.active {
  box-shadow: var(--ring), 0 18px 40px rgba(0, 0, 0, 0.18);
}

.menu-category {
  margin: 3.6rem 0;
  padding: 1.6rem 1.4rem;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.54));
  border: 1px solid rgba(212, 175, 55, 0.16);
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
  min-width: 0;

  position: relative;
  overflow: hidden;
}

.menu-category::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .08), transparent 55%);
  opacity: .32;
}

.menu-category h3 {
  font-family: var(--font-title);
  font-size: 1.95rem;
  color: #105020;
  margin-bottom: 1.25rem;
  display: inline-block;
  padding-bottom: .35rem;
  border-bottom: 2px solid rgba(212, 175, 55, 0.70);
  position: relative;
  z-index: 1;
}

.menu-items {
  list-style: none;
  margin: 0;
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.40);
  border: 1px solid rgba(212, 175, 55, 0.18);
  overflow: hidden;
  min-width: 0;
  position: relative;
  z-index: 1;
}

@media (min-width: 1200px) {
  .menu-items {
    grid-template-columns: repeat(2, minmax(360px, 1fr));
  }
}

.menu-items li {
  position: relative;
  display: grid;
  column-gap: 1rem;
  row-gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(241, 255, 236, 0.72), rgba(241, 255, 236, 0.52));
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease), background var(--dur-2) var(--ease);
  align-items: start;
  grid-template-columns: 92px 1fr auto;
  grid-template-areas: "img dish price";
}

.menu-items li::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .10), transparent 55%);
  opacity: .32;
}

.menu-items li>img {
  grid-area: img;
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  filter: saturate(1.06) contrast(1.04);
}

.menu-items .dish {
  grid-area: dish;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 850;
  color: #2E3A26;
  min-width: 0;
  margin-top: 0;
}

.menu-items .price {
  align-self: end;
  justify-self: end;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-weight: 500;
  color: #0d2c15;
  position: static;
  white-space: nowrap;
}

/* =========================================================
   GALLERY
========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.gallery-item {
  grid-column: span 4;
  border-radius: 1.4rem;
  overflow: hidden;
  position: relative;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transform: translateZ(0);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .10), transparent 55%);
  opacity: .28;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 700ms var(--ease-2), filter 700ms var(--ease-2);
  filter: saturate(1.06) contrast(1.04);
}

/* =========================================================
   DISH MODAL
========================================================= */
.dish-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.dish-modal.open {
  display: flex;
}

.dish-modal-content {
  background: #fffdf8;
  border-radius: 1.8rem;
  padding: 2rem;
  max-width: 1200px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: modalPop 0.4s var(--ease);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: var(--shadow-xl);
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.dish-modal-content img {
  width: 100%;
  max-height: 85vh;
  object-fit: cover;
  border-radius: 1.2rem;
  margin-bottom: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  filter: saturate(1.06) contrast(1.04);
}


.dish-modal-content h3 {
  font-size: clamp(1.3rem, 4vw, 1.6rem);
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.dish-modal-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0.5rem;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #333;
  display: grid;
  place-items: center;
  z-index: 5;
}


/* =========================================================
   RESTAURANT PAGE — Premium storytelling
========================================================= */
.history-section,
.location-section,
.cuisine-section,
.hospitality-section {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .18);
  box-shadow: var(--shadow-lg);
}

.history-section::after,
.location-section::after,
.cuisine-section::after,
.hospitality-section::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;

  background: linear-gradient(120deg,
      rgba(212, 175, 55, 0),
      rgba(212, 175, 55, .35),
      rgba(243, 231, 165, .22),
      rgba(212, 175, 55, .12),
      rgba(212, 175, 55, 0));

  -webkit-mask-image:
    linear-gradient(#000, #000),
    linear-gradient(#000, #000);
  -webkit-mask-origin: content-box, border-box;
  -webkit-mask-clip: content-box, border-box;

  mask-image:
    linear-gradient(#000, #000),
    linear-gradient(#000, #000);
  mask-origin: content-box, border-box;
  mask-clip: content-box, border-box;

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  opacity: .60;
}


.history-section h2,
.location-section h2,
.cuisine-section h2,
.hospitality-section h2 {
  font-size: clamp(2.15rem, 2.8vw, 3rem);
  margin-bottom: 2.2rem;
}

.history-section p,
.location-section p,
.cuisine-section p,
.hospitality-section p {
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 74ch;
  margin: 0 auto 1.1rem;
}

.history-section p:first-of-type::first-letter,
.location-section p:first-of-type::first-letter,
.cuisine-section p:first-of-type::first-letter,
.hospitality-section p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-title);
  font-size: 3.1rem;
  line-height: .95;
  margin: .12rem .6rem 0 0;
  color: var(--gold);
  text-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.history-section p+p,
.location-section p+p,
.cuisine-section p+p,
.hospitality-section p+p {
  padding-top: .9rem;
  margin-top: .9rem;
  border-top: 1px solid rgba(212, 175, 55, .14);
}

.dish-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  margin: 2.2rem auto 0;
  max-width: 1100px;
}

.dish-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: var(--shadow-md);
  filter: saturate(1.06) contrast(1.04);
  transform: translateZ(0);
  transition: transform var(--dur-2) var(--ease), filter var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease);
}

.dish-gallery img:nth-child(1) {
  grid-column: 1 / span 5;
}

.dish-gallery img:nth-child(2) {
  grid-column: 6 / span 4;
}

.dish-gallery img:nth-child(3) {
  grid-column: 10 / span 3;
}

/* =======================
   PRIVACY / POLICY LAYOUT
======================= */
.policy-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  align-items: start;
}

.policy-lead {
  max-width: 76ch;
  margin: 0 auto 1.2rem;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--ink);
}

.policy-cards {
  display: grid;
  gap: 1rem;
}

.policy-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .56));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-sm);
  padding: 1.2rem 1.15rem;
  position: relative;
  overflow: hidden;
}

.policy-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, .35), transparent 55%),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, .08), transparent 55%);
  opacity: .28;
}

.policy-card h3 {
  margin-bottom: .6rem;
  color: #105020;
  font-size: 1.4rem;
}

.policy-card p {
  margin: 0 0 .7rem;
}

.policy-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .56));
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 1.4rem;
  box-shadow: var(--shadow-md);
  padding: 1.1rem;
}

.policy-box h3 {
  margin-bottom: .7rem;
  color: #105020;
  font-size: 1.35rem;
}

.policy-box ul {
  margin: 0;
  padding-left: 1.1rem;
  line-height: 1.7;
}

.policy-link {
  display: block;
  padding: .55rem .7rem;
  border-radius: .9rem;
  margin-bottom: .5rem;
  background: rgba(241, 255, 236, 0.55);
  border: 1px solid rgba(212, 175, 55, .14);
  font-weight: 800;
  color: #2E3A26;
  transition: transform .25s var(--ease);
}

.policy-link:hover {
  transform: translateY(-1px);
}

.policy-actions {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
  margin-top: .75rem;
}

.policy-btn {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1.25rem;
  border-radius: 999px;
  margin: 1.25rem 0 0 auto;
  align-self: flex-end;
  background: linear-gradient(180deg, rgba(255, 255, 255, .88), rgba(241, 255, 236, .68));
  border: 1px solid rgba(212, 175, 55, .28);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .55);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), filter .35s var(--ease);
  cursor: pointer;
}

.policy-btn:hover {
  transform: translateY(-1px);
}

/* =========================================================
   DARK MODE — soft “night filter”
========================================================= */
body.dark .container,
body.dark .section>.container,
body.dark .map-container,
body.dark .welcome-box,
body.dark .menu-category,
body.dark .menu-sidebar,
body.dark .menu-links-list,
body.dark .menu-items,
body.dark .policy-card,
body.dark .policy-box,
body.dark .policy-link,
body.dark .policy-btn,
body.dark .home-button {
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.58), rgba(20, 20, 20, 0.46)),
    radial-gradient(circle at 20% 0%, rgba(212, 175, 55, 0.10), transparent 55%),
    radial-gradient(circle at 100% 70%, rgba(15, 107, 111, 0.10), transparent 60%);
  border: 1px solid rgba(212, 175, 55, 0.16);
}

body.dark .welcome-box h1,
body.dark .welcome-box span,
body.dark .menu-sidebar h2,
body.dark .menu-category h3,
body.dark .section h2,
body.dark .contact-section p,
body.dark .menu-item h3,
body.dark .policy-card h3,
body.dark .policy-box h3,
body.dark .policy-link,
body.dark .policy-btn,
body.dark .home-button .btn-text {
  color: #79b16f;
}

body.dark .container::after {
  opacity: .30;
}

body.dark p,
body.dark li {
  color: rgba(255, 255, 255, .86);
}

body.dark p a {
  color: #9bd58f;
}


body.dark .menu-item,
body.dark .review-card {
  background: rgba(36, 36, 36, 0.68);
}

body.dark .menu-items li,
body.dark .gallery-item {
  background: rgba(36, 36, 36, 0.28);
  border: 1px solid rgba(212, 175, 55, 0.14);
}



body.dark .menu-item::before,
body.dark .menu-sidebar::before,
body.dark .menu-category::before,
body.dark .menu-items li::before,
body.dark .gallery-item::before,
body.dark .review-card::before {
  opacity: .22;
}

body.dark .menu-items .dish,
body.dark .menu-items .price,
body.dark .review-name,
body.dark .review-text {
  color: rgba(255, 255, 255, 0.92);
}

body.dark .dish-modal-content h3 {
  color: #79b16f;
}

body.dark .dish-modal-content {
  background: #222222;
}

body.dark .menu-icon {
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .45));
}

body.dark .menu-icon::before,
body.dark .menu-icon::after {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55);
}

body.dark .consent-box {
  background-color: #181818;
}

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

  * {
    animation: none !important;
    transition: none !important;
  }

  .footer-shimmer {
    display: none !important;
  }

  .footer-brand img {
    animation: none !important;
  }

  header {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .premium-footer-container {
    opacity: 0;
    animation: fadeInFooter 1.2s forwards 0.3s;
  }
}

/* =========================================================
   RESPONSIVE — short screens
========================================================= */
@media (max-height: 720px) {
  :root {
    --header-h: 96px;
  }

  header {
    height: var(--header-h);
  }

  .logo img {
    height: 72px;
  }

  .welcome-box {
    padding: 1.6rem 2.4rem;
  }

  .dish-gallery img,
  .gallery-item img {
    height: 200px;
  }

  .scroll-top {
    bottom: 16px;
    right: 16px;
  }

  .container {
    width: min(94%, var(--wrap));
  }

  .section>.container {
    padding: 2.2rem 1.25rem;
    border-radius: 1.4rem;
  }

  .section h2 {
    font-size: 2rem;
    margin-bottom: 1.6rem;
  }

  .section h2::before {
    bottom: -10px;
  }

  .section p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .menu-main,
  .menu-category,
  .menu-items {
    min-width: 0;
  }

  .menu-category {
    overflow-x: hidden;
  }
}

/* =========================================================
   RESPONSIVE — tablets
========================================================= */
@media (max-width: 1024px) {
  .gallery-item {
    grid-column: span 6;
  }

  .gallery-item img {
    height: 240px;
  }

  .menu-items {
    grid-template-columns: 1fr !important;
    width: 100%;
  }
}

/* =========================================================
   RESPONSIVE — mobile
========================================================= */
@media (max-width: 768px) {
  body {
    overflow-x: visible;
  }

  .section {
    padding: 2.5rem 0;
    margin: 2rem 0;
  }

  .section>.container {
    padding: 2.4rem 1.25rem;
  }

  .burger-menu {
    display: flex;
  }

  .logo img {
    height: 60px;
  }

  .header-right {
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
  }

  .consent.show {
    display: flex;
  }

  .consent-box {
    flex-direction: column;
    text-align: center;
    max-width: 420px;
  }

  .consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(47, 58, 37, 0.95);
    border-radius: 0 0 12px 12px;
    padding: 1rem 0;
    flex-direction: column;
    gap: 0.5rem;
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav ul {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .header-nav ul li a {
    font-size: 1rem;
    padding: 0.55rem 0.25rem;
  }

  .lang-options {
    flex-direction: row;
    gap: 8px;
    top: 120%;
    min-width: 120px;
    padding: 0.5rem;
  }

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

  .menu-sidebar {
    position: sticky;
    top: calc(var(--header-h) - 72px);
    z-index: 950;
    padding: 0.85rem 0.8rem;
    width: 100%;
  }

  .menu-sidebar h2 {
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
  }

  .menu-links-list {
    display: flex;
    flex-direction: row;
    gap: 0.65rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0.7rem;
    border-radius: 1.25rem;
    scrollbar-width: none;
    max-height: calc(100vh - var(--header-h) - 180px);
  }

  .menu-links-list::-webkit-scrollbar {
    display: none;
  }

  .menu-links-list li {
    flex: 0 0 auto;
  }

  .menu-links-list a {
    white-space: nowrap;
  }

  .category-card {
    height: 58px;
    width: 160px;
    border-radius: 1rem;
  }

  .category-card span {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

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

  .menu-items li {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "img dish"
      "img price";
  }

  .menu-items li>img {
    width: 80px;
    height: 80px;
  }

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

  .gallery-item {
    grid-column: auto;
    border-radius: 1.2rem;
  }

  .gallery-item img {
    height: 220px;
  }

  .dish-gallery {
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .dish-gallery img {
    height: 210px;
  }

  .dish-gallery img:nth-child(1),
  .dish-gallery img:nth-child(2),
  .dish-gallery img:nth-child(3) {
    grid-column: auto;
  }

  .welcome-box {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }

  .welcome-box h1 {
    letter-spacing: 0.05em;
  }

  .welcome-box span {
    font-size: 0.8rem;
  }

  .premium-footer-container {
    opacity: 1;
    transform: none;
    grid-template-columns: 1fr;
  }

  .reviews-section .container {
    overflow: hidden;
    padding-left: 12px;
    padding-right: 12px;
  }

  .reviews-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 2px 0 10px;
    max-width: 100%;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

  .reviews-grid::-webkit-scrollbar {
    display: none;
  }

  .review-card {
    flex: 0 0 78%;
    max-width: 280px;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .scroll-top {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

@media (max-width: 420px) {
  .gallery-item img {
    height: 200px;
  }

  .category-card {
    width: 145px;
  }

  .menu-items li {
    padding: 0.9rem;
  }

  .home-button {
    bottom: 18px;
    right: 18px;
    padding: .7rem 1.1rem;
    font-size: .85rem;
  }

  .dish-modal-content img {
    height: 240px;
  }
}

/* =========================================================
   EXTRA SMALL — 380px and below
========================================================= */
@media (max-width: 380px) {
  :root {
    --header-h: 92px;
  }

  header {
    height: var(--header-h);
  }

  .logo img {
    height: 54px;
  }

  .header-nav ul li a {
    font-size: 0.95rem;
    padding: 0.5rem 0.2rem;
  }

  .lang-current {
    padding: 7px 9px;
  }

  .lang-current img {
    width: 26px;
    height: 16px;
  }

  .theme-toggle {
    width: 40px;
    height: 40px;
  }

  .section {
    margin: 1.6rem 0;
    padding: 2.1rem 0;
  }

  .section>.container {
    padding: 2.1rem 1.05rem;
    border-radius: 1.2rem;
  }

  .section h2 {
    font-size: 1.85rem;
    margin-bottom: 1.35rem;
  }

  .section h2::before {
    bottom: -9px;
  }

  .section h2::after {
    margin-top: .95rem;
    width: min(6rem, 55vw);
  }

  p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .hero-welcome {
    min-height: 52vh;
  }

  .welcome-box {
    padding: 1.55rem 1.1rem;
    margin: 0 .8rem;
  }

  .welcome-box h1 {
    font-size: clamp(1.85rem, 7vw, 2.35rem);
  }

  .welcome-box span {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .menu-sidebar h2 {
    font-size: 1.05rem;
  }

  .menu-links-list {
    padding: 0.6rem;
    gap: 0.55rem;
  }

  .category-card {
    width: 138px;
    height: 54px;
    border-radius: 0.95rem;
  }

  .category-card span {
    font-size: 0.70rem;
  }

  .menu-items li {
    padding: 0.85rem;
  }

  .menu-items li>img {
    width: 74px;
    height: 74px;
    border-radius: 0.9rem;
  }

  .menu-items .dish {
    font-size: 1rem;
  }

  .menu-items .price {
    font-size: 0.95rem;
  }

  .gallery-item img {
    height: 190px;
  }

  .review-card {
    flex: 0 0 92%;
  }

  .home-button {
    bottom: 16px;
    right: 14px;
    padding: .65rem 1rem;
    font-size: .82rem;
  }

  .scroll-top {
    width: 34px;
    height: 34px;
    font-size: 17px;
    right: 14px;
    bottom: 14px;
  }
}


/* =========================
   HOVER (desktop only)
========================= */
@media (hover:hover) and (pointer:fine) {
  .menu-items li:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(241, 255, 236, 0.56));
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  }

  .menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .category-card:hover {
    transform: translateY(-4px);
    filter: saturate(1.05);
  }

  p a:hover {
    color: var(--gold);
    transform: translateY(-1px);
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
  }

  p a:hover::after {
    width: 100%;
  }

  .logo a:hover img {
    transform: scale(0.8) translateY(-2px);
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.45));
  }

  .header-nav ul li a:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }

  .header-nav ul li a:hover::after {
    transform: scaleX(1);
  }

  .lang-current:hover {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.12);
  }

  .lang-options img:hover {
    transform: scale(1.05);
    opacity: 0.9;
  }

  .theme-toggle:hover {
    transform: rotate(20deg) scale(1.06);
  }

  .footer-links a:hover::after,
  .footer-contact a:hover::after {
    width: 100%;
  }

  .footer-links a:hover,
  .footer-contact a:hover {
    transform: translateX(4px);
    text-shadow: 0 0 8px var(--gold);
  }

  .dish-gallery img:hover {
    transform: translateY(-6px) scale(1.01);
    filter: saturate(1.12) contrast(1.06);
    box-shadow: var(--shadow-xl);
  }

  .gallery-item {
    transition: transform 700ms var(--ease-2), box-shadow 700ms var(--ease-2);
  }

  .gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .gallery-item:hover img {
    transform: scale(1.08);
    filter: saturate(1.15) contrast(1.08);
  }

  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .20);
  }

  body .home-button:hover,
  body .scroll-top:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
    background: var(--gold);
  }

  body .home-button:hover .btn-text {
    color: var(--ink);
  }

  body .home-button:hover .menu-icon::before {
    background: linear-gradient(180deg, #3c9700, #006946);
  }
}

/* =========================
   TAP STATES (touch)
========================= */
@media (hover:none) and (pointer:coarse) {
  .menu-items li:active {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.16);
  }

  .menu-category:active {
    transform: translateY(-3px);
  }

  .menu-item:active {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }

  .category-card:active {
    transform: translateY(-4px);
    filter: saturate(1.05);
  }

  p a:active {
    color: var(--gold);
    transform: translateY(-1px);
    text-shadow: 0 0 4px rgba(212, 175, 55, 0.5);
  }

  p a:active::after {
    width: 100%;
  }

  .header-nav ul li a:active {
    color: #fff;
    background: rgba(212, 175, 55, 0.16);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .12);
    transform: translateY(-1px);
  }

  .header-nav ul li a:active::after {
    transform: scaleX(1);
  }

  .lang-current:active {
    transform: translateY(-1px);
    background: rgba(212, 175, 55, 0.12);
  }

  .lang-options img:active {
    transform: scale(1.05);
    opacity: 0.9;
  }

  .theme-toggle:active {
    transform: rotate(20deg) scale(1.06);
  }

  .dish-gallery img:active {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-xl);
  }

  .gallery-item:active {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
  }

  .gallery-item:active img {
    transform: scale(1.08);
    filter: saturate(1.15) contrast(1.08);
  }
}

/* =========================
   WebKit scrollbar polish
========================= */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .30);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .35);
}














#review-widget{
position:fixed;
bottom:20px;
right:20px;
background:white;
border-radius:14px;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
padding:16px;
font-family:system-ui;
z-index:9999;
display:none;
max-width:260px;
}

#review-title{
font-weight:600;
font-size:15px;
margin-bottom:10px;
}

.review-buttons{
display:flex;
gap:10px;
}

.review-btn{
flex:1;
display:flex;
align-items:center;
justify-content:center;
gap:6px;
padding:8px 10px;
border-radius:8px;
font-size:13px;
cursor:pointer;
text-decoration:none;
color:white;
}

.google{
background:#4285F4;
}

.trip{
background:#34E0A1;
color:#000;
}

#close-review{
position:absolute;
top:6px;
right:8px;
cursor:pointer;
font-size:14px;
color:#888;
}



/* =======================
   BOOKING FORM
======================= */
#bookingForm {
  max-width: 520px;
  margin: 2rem auto;
  padding: 2rem;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(10px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-family: var(--font-body);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

#bookingForm input,
#bookingForm select {
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  font-size: var(--r-sm);
  outline: none;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

#bookingForm input:focus,
#bookingForm select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.35);
}

#bookingForm button[type="submit"] {
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: none;
  background: var(--gold);
  color: #1b2416;
  font-weight: 700;
  font-size: var(--r-md);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

#bookingForm button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

#bookingForm label {
  font-weight: 600;
  font-size: var(--r-sm);
  color: var(--ink);
}

#bookingMessage {
  margin-top: 0.5rem;
  font-weight: 600;
  color: #33692d;
  text-align: center;
  min-height: 1.2em;
}

@media (max-width: 768px) {
  #bookingForm {
    margin: 1.5rem;
    padding: 1.5rem;
  }
}