﻿:root {
  --bg: #123524;
  --ink: #f0ede4;
  /* Bronze brand accents */
  --wordmark-bronze: #9e7148;
  --muted: rgba(240, 237, 228, 0.68);
  --line: rgba(240, 237, 228, 0.16);
  --glass: rgba(18, 53, 36, 0.72);
  --accent: #9b6b3b;
  --accent2: #c49a6d;
  /* Body copy (Neurorock + fallbacks; topbar + fixed hero mark stay Bramos) */
  --font-ui: "KritamoNeurorock", Verdana, Geneva, sans-serif;
  /* Menu list — honey dish titles & prices; descriptions/tags tint via color-mix */
  --menu-price: #e8c9a0;
  --menu-price-shadow: none;
  --menu-item-name: #e8c9a0;
  --menu-item-name-shadow: none;
  /* Section tab label colours — amber (fixed; not tied to dish/price palette) */
  --menu-section-tab: #8f7a5e;
  --menu-section-tab-shadow: 0 1px 2px rgba(0, 0, 0, 0.22);
  --menu-section-tab-active: #ffe8c4;
  --menu-section-tab-active-shadow: 0 1px 0 rgba(0, 0, 0, 0.5), 0 0 14px rgba(0, 0, 0, 0.35);
  /* Section tab type — Contador + fallbacks */
  --font-menu-section: "KritamoContador", "Trebuchet MS", "Lucida Grande", sans-serif;
  --shadow: 0 18px 55px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --max: 1120px;
  --bg-logo-opacity: 0.68;
  --bg-logo-scroll-scale: 1;
  --topbar-block: max(
    62px,
    calc(30px + 1.25em + env(safe-area-inset-top, 0px))
  );
  /* Space for fixed footer (matches topbar __inner 14+14 + one line + border + safe area) */
  --footer-bar-block: max(
    56px,
    calc(30px + 1.25em + env(safe-area-inset-bottom, 0px))
  );
}

/* Optional preview faces under site/fonts/preview/ — @font-face below */

@font-face {
  font-family: "BramosBrand";
  src: url("fonts/Bramos.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "KritamoAmolin";
  src:
    url("fonts/preview/amolin.otf") format("opentype"),
    url("fonts/preview/amolin.ttf") format("truetype"),
    url("fonts/preview/amolin/Amolin-Regular.otf") format("opentype"),
    url("fonts/preview/amolin/Amolin.otf") format("opentype"),
    url("fonts/preview/amolin/amolin.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "KritamoAstralMelt";
  src:
    url("fonts/preview/astral-melt.otf") format("opentype"),
    url("fonts/preview/astral-melt.ttf") format("truetype"),
    url("fonts/preview/astral-melt/AstralMelt-Regular.otf") format("opentype"),
    url("fonts/preview/astral-melt/Astral-Melt-Regular.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "KritamoContador";
  src:
    url("fonts/preview/contador.otf") format("opentype"),
    url("fonts/preview/contador.ttf") format("truetype"),
    url("fonts/preview/contador/Contador-Regular.otf") format("opentype"),
    url("fonts/preview/contador/contador.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "KritamoNeurorock";
  src:
    url("fonts/preview/neurorock.otf") format("opentype"),
    url("fonts/preview/neurorock.ttf") format("truetype"),
    url("fonts/preview/neurorock/Neurorock-Regular.otf") format("opentype"),
    url("fonts/preview/neurorock/Neurock-Regular.otf") format("opentype"),
    url("fonts/preview/neurorock/neurorock.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "KritamoNouveauNostalgia";
  src:
    url("fonts/preview/nouveau-nostalgia.otf") format("opentype"),
    url("fonts/preview/nouveau-nostalgia.ttf") format("truetype"),
    url("fonts/preview/nouveau-nostalgia/NouveauNostalgia-Regular.otf") format("opentype"),
    url("fonts/preview/nouveau-nostalgia/Nouveau-Nostalgia.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "KritamoThegora";
  src:
    url("fonts/preview/thegora.otf") format("opentype"),
    url("fonts/preview/thegora.ttf") format("truetype"),
    url("fonts/preview/thegora/Thegora-Regular.otf") format("opentype"),
    url("fonts/preview/thegora-demo/thegora.otf") format("opentype"),
    url("fonts/preview/thegora-demo/ThegoraDemo-Regular.otf") format("opentype");
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

* {
  box-sizing: border-box;
}
html {
  background-color: var(--bg);
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: clip;
  -ms-overflow-style: none; /* legacy Edge */
}
@supports (scrollbar-width: none) {
  html,
  body {
    scrollbar-width: none; /* Firefox + Chromium 121+: hide scrollbar, keep scroll */
  }
}
@supports (scrollbar-gutter: stable) {
  html {
    /* Chromium / Firefox: reserve space so fixed header/footer don’t shift when a vertical scrollbar appears */
    scrollbar-gutter: stable;
  }
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}
main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
  position: relative;
  z-index: 1;
  padding-top: var(--topbar-block);
  padding-bottom: var(--footer-bar-block);
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
  -ms-overflow-style: none;
  font-family: var(--font-ui);
  background: transparent;
  color: var(--ink);
  letter-spacing: 0.2px;
}

/* Keep Bramos for top bar chrome next to logo */
header.topbar,
header.topbar * {
  font-family: "BramosBrand", ui-serif, Georgia, Cambria, "Times New Roman", Times, serif !important;
}

/*
  Real fixed layers (not ::before + background-attachment: fixed) to avoid
  scroll compositor flicker / horizontal banding on Chrome & Safari.
*/
.bg-logo,
.bg-wash {
  position: fixed;
  inset: 0;
  pointer-events: none;
  contain: strict;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.bg-logo {
  z-index: -2;
  background-image: url("images/WhatsAppImage.png");
  background-position: center calc(50% + 36px);
  background-size: clamp(560px, 104vw, 1320px) auto;
  background-repeat: no-repeat;
  /* Cream-on-black mark: screen removes black so it sits cleanly on the green wash */
  mix-blend-mode: screen;
  opacity: var(--bg-logo-opacity);
  transform: translateZ(0) scale(var(--bg-logo-scroll-scale));
  transform-origin: center center;
  will-change: opacity, transform;
  transition: opacity 0.22s ease-out, transform 0.28s ease-out;
}

@supports (background-image: image-set(url("x.webp") type("image/webp"))) {
  .bg-logo {
    background-image: image-set(
      url("images/WhatsAppImage.webp") type("image/webp"),
      url("images/WhatsAppImage.png") type("image/png")
    );
  }
}

.bg-wash {
  z-index: -1;
  background: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.92;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 max(22px, env(safe-area-inset-left)) 0 max(22px, env(safe-area-inset-right));
}

.site-page {
  display: none;
}
.site-page.is-active {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
  width: 100%;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  flex-shrink: 0;
  padding-top: env(safe-area-inset-top);
  background: var(--bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

html.route-inner .topbar {
  background: var(--bg);
}

/* Fixed vertical “social rail” (Stalitsa-style). Desktop only; home only (see html.route-inner). */
.social-rail {
  display: none;
}

@media (min-width: 920px) {
  .social-rail {
    display: block;
    position: fixed;
    top: 50%;
    left: max(10px, env(safe-area-inset-left, 0px));
    transform: translateY(-50%);
    z-index: 58;
    margin: 0;
    padding: 0;
    pointer-events: none;
  }

  .social-rail__list {
    pointer-events: auto;
    list-style: none;
    margin: 0;
    padding: 10px 7px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    border-radius: 999px;
    background: rgba(6, 18, 12, 0.78);
    border: 1px solid rgba(240, 237, 228, 0.14);
    -webkit-backdrop-filter: blur(14px) saturate(1.1);
    backdrop-filter: blur(14px) saturate(1.1);
    box-shadow: 0 12px 42px rgba(0, 0, 0, 0.42);
  }

  .social-rail__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: rgba(240, 237, 228, 0.85);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    transition: color 0.15s ease, background-color 0.15s ease;
  }

  .social-rail__link:hover {
    color: var(--wordmark-bronze);
    background: rgba(255, 255, 255, 0.06);
  }

  .social-rail__link:focus-visible {
    outline: 2px solid rgba(196, 154, 109, 0.65);
    outline-offset: 2px;
  }

  .social-rail__link svg {
    display: block;
  }

  html.route-inner .social-rail {
    display: none;
  }
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  width: 100%;
  padding: 14px max(22px, env(safe-area-inset-right)) 14px max(22px, env(safe-area-inset-left));
  gap: 12px;
}
.navToggle {
  display: none;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.navToggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  background: var(--ink);
  transition: opacity 0.2s ease;
}
.navToggle[aria-expanded="true"] .navToggle__bar {
  opacity: 0.85;
}
.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.brand__logoImg {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  transform: none;
  filter: none;
  opacity: 1;
}
.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
}
.nav a {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav a[aria-current="page"] {
  color: var(--wordmark-bronze);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.btn--accent {
  border-color: rgba(155, 107, 59, 0.45);
  background: linear-gradient(135deg, rgba(155, 107, 59, 0.32), rgba(155, 107, 59, 0.1));
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: visible;
}

/* First viewport: reserves height; mark is .hero-fixed-mark (fixed layer). */
.hero__introSpace {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  min-height: 100lvh;
  flex-shrink: 0;
  pointer-events: none;
}
/* RM Auto–style scroll reminder (first screen only, home hero). */
.hero__scrollhint {
  position: fixed;
  /* Keep hint consistently above the fixed footer on all viewport sizes */
  bottom: calc(var(--footer-bar-block) + clamp(16px, 3.4vh, 34px));
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(240, 237, 228, 0.55);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 54;
  opacity: 1;
  transition: opacity 0.65s ease-out, transform 0.65s ease-out;
}
html.hero-scrollhint-dismissed .hero__scrollhint {
  opacity: 0;
  transform: translate3d(-50%, 10px, 0);
  pointer-events: none;
}
html.hero-scrollhint-dismissed .hero__scrollhintDot {
  animation: none;
}
.hero__scrollhintDot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--wordmark-bronze);
  box-shadow: 0 0 0 1px rgba(158, 113, 72, 0.25);
  animation: kritamoScrollhintBounce 1.4s ease-in-out infinite;
}
@keyframes kritamoScrollhintBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(16px, 2.2vw, 28px);
  align-items: start;
  padding: clamp(22px, 2.4vw, 34px) 0 clamp(38px, 5vw, 56px);
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}

/* Hero + about: always fully visible when scrolled into view (no scroll-opacity flicker) */
#page-home.is-active .hero__reveal,
#page-home.is-active #about {
  opacity: 1;
  transform: none;
}
.kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
}
.h1 {
  margin: 10px 0 0;
  font-size: clamp(24px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: 0.01em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.lead {
  margin: 14px 0 0;
  max-width: 54ch;
  color: rgba(240, 237, 228, 0.9);
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.55;
}

.panel {
  border: 1px solid var(--line);
  background: var(--glass);
  border-radius: var(--radius);
  padding: clamp(16px, 2vw, 22px);
  box-shadow: var(--shadow);
}
.panel h3 {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.panel p {
  margin: 0;
  color: rgba(240, 237, 228, 0.88);
  line-height: 1.6;
}

.section {
  padding: clamp(54px, 7vw, 82px) 0;
  scroll-margin-top: calc(var(--topbar-block) + 10px);
}

/* Picture menu: start images flush under the fixed topbar (main already offsets for --topbar-block). */
#page-menu .section {
  padding-top: 0;
}
#page-menu .section__head:empty {
  display: none;
  margin: 0;
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.h2 {
  margin: 0;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: 0.02em;
}
.sub {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
  line-height: 1.6;
}

.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: clamp(14px, 1.8vw, 20px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.card p {
  margin: 0;
  color: rgba(240, 237, 228, 0.82);
  line-height: 1.6;
}
.tagrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.tag {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(155, 107, 59, 0.35);
  color: rgba(240, 237, 228, 0.92);
  background: rgba(155, 107, 59, 0.12);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 55;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: var(--bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 14px;
}
.footer a {
  display: inline-flex;
  align-items: center;
  padding: 6px 0;
  min-height: 44px;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 10px;
  padding: 14px 0;
  min-height: 0;
}

.footer__start {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  justify-self: start;
  min-width: 0;
}

.footer__copy {
  line-height: 1.2;
}

.footer__instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--muted);
  padding: 4px;
  margin: -4px;
  border-radius: 10px;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.footer__instagram:hover {
  color: var(--wordmark-bronze);
}

.footer__instagram svg {
  display: block;
}

/* Desktop: Instagram lives on the fixed social rail only.
   Must beat `.footer a { display: inline-flex }` (higher specificity). */
@media (min-width: 920px) {
  .footer .footer__instagram {
    display: none;
  }
}

.footer__inner > .stalitsa-site-credit {
  justify-self: end;
}

@media (max-width: 520px) {
  :root {
    --footer-bar-block: max(
      64px,
      calc(44px + 1em + env(safe-area-inset-bottom, 0px))
    );
  }
  .footer__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 10px;
    text-align: left;
  }

  .footer__inner > .footer__start {
    justify-self: unset;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px 10px;
  }

  .footer__inner > .stalitsa-site-credit {
    justify-self: unset;
    flex: 0 1 auto;
    min-width: 0;
    justify-content: flex-end;
  }

  .footer .stalitsa-site-credit {
    font-size: clamp(6px, 2.4vw, 8px);
  }
}

.form {
  display: grid;
  gap: 12px;
}
label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
input,
textarea,
select {
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  padding: 12px 12px;
  outline: none;
  font: inherit;
  font-size: 16px;
}
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  padding-right: 42px;
  color-scheme: dark;
  cursor: pointer;
  border-color: rgba(240, 237, 228, 0.2);
  background-color: rgba(255, 255, 255, 0.07);
  -webkit-backdrop-filter: blur(10px) saturate(1.2);
  backdrop-filter: blur(10px) saturate(1.2);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(240, 237, 228, 0.95) 50%),
    linear-gradient(135deg, rgba(240, 237, 228, 0.95) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 13px) calc(50% - 2px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}
select:focus-visible {
  border-color: rgba(196, 154, 109, 0.7);
  box-shadow:
    0 0 0 3px rgba(196, 154, 109, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.22);
}
select option {
  background: #184a33;
  color: #f0ede4;
}
textarea {
  min-height: 120px;
  resize: vertical;
}
.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.notice {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(240, 237, 228, 0.86);
}
.notice.error {
  border-color: rgba(255, 110, 110, 0.35);
}
.contactFormNotice {
  margin-top: 16px;
}
.contactNoticeSlot {
  min-height: 0;
}
.contactInfoCol {
  display: grid;
  gap: 14px;
  align-content: start;
}
.contactNoticeSlot--top {
  display: none;
}
.topicPickerBox {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 12px;
}
.topicPickerRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.topicBtn {
  min-height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}
.topicBtn.is-active {
  border-color: rgba(155, 107, 59, 0.55);
  background: rgba(155, 107, 59, 0.2);
}
.bookingPicker {
  width: 100%;
  max-width: 100%;
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 12px;
  outline: none;
  font: inherit;
  font-size: 16px;
  border-color: rgba(196, 154, 109, 0.26);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(11, 35, 24, 0.65);
  -webkit-backdrop-filter: blur(10px) saturate(1.1);
  backdrop-filter: blur(10px) saturate(1.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 10px 24px rgba(0, 0, 0, 0.22);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.bookingPicker:hover {
  border-color: rgba(196, 154, 109, 0.4);
}
.bookingPicker:focus-visible {
  border-color: rgba(196, 154, 109, 0.72);
  box-shadow:
    0 0 0 3px rgba(196, 154, 109, 0.24),
    0 12px 28px rgba(0, 0, 0, 0.28);
}
.bookingPicker option:disabled {
  color: rgba(240, 237, 228, 0.45);
}
.dateTriggerBtn {
  cursor: pointer;
  text-align: left;
}
.dateModal {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0;
  width: min(94vw, 760px);
  background: rgba(10, 32, 23, 0.96);
  color: var(--ink);
}
.dateModal::backdrop {
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
html.modalOpen,
body.modalOpen {
  overflow: hidden;
  touch-action: none;
}
.dateModal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.dateModal__list {
  max-height: none;
  overflow: visible;
  padding: 10px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}
.dateOption {
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
  text-align: left;
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}
.dateOption:hover {
  border-color: rgba(196, 154, 109, 0.5);
}
.dateOption.is-active {
  border-color: rgba(155, 107, 59, 0.55);
  background: rgba(155, 107, 59, 0.2);
}
/* Greek House–style menu: section tabs + one panel of dishes at a time */
.menu-view {
  margin-top: 16px;
}

.menu-section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.menu-tab {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--menu-section-tab);
  text-shadow: var(--menu-section-tab-shadow);
  font-family: var(--font-menu-section);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.menu-tab:hover {
  background: rgba(255, 255, 255, 0.07);
}

.menu-tab.is-active {
  border-color: rgba(155, 107, 59, 0.55);
  background: rgba(155, 107, 59, 0.2);
  color: var(--menu-section-tab-active);
  text-shadow: var(--menu-section-tab-active-shadow);
}

.menu-tab:focus-visible {
  outline: 2px solid rgba(196, 154, 109, 0.65);
  outline-offset: 2px;
}

.menu-panels {
  margin-top: 18px;
}

/* Author `display: grid` must not override native `[hidden]` (all panels would show). */
.menu-tab-panel[hidden] {
  display: none !important;
}

.menu-tab-panel:not([hidden]) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  align-items: start;
}

.menu-tab-panel .menu-empty-panel {
  grid-column: 1 / -1;
}

.menu-item {
  border: 1px solid rgba(240, 237, 228, 0.14);
  border-radius: var(--radius);
  background: rgba(12, 38, 28, 0.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
  padding: 16px 18px;
  min-width: 0;
  isolation: isolate;
}

.menu-item-layout {
  display: grid;
  gap: 12px;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
}

.menu-item-header span:first-child {
  color: var(--menu-item-name);
  text-shadow: var(--menu-item-name-shadow);
}

.menu-item-header span:last-child {
  color: var(--menu-price);
  text-shadow: var(--menu-price-shadow);
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  /* ~ mix of --menu-item-name (#e8c9a0) + --bg (#123524) when color-mix() unavailable */
  color: rgba(198, 176, 142, 0.95);
}

.menu-item-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.menu-item-tags .tag {
  font-size: 11px;
  color: rgba(212, 188, 154, 0.96);
  border-color: rgba(164, 118, 72, 0.55);
  background: rgba(232, 201, 160, 0.1);
}

.menu-empty-panel {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(205, 182, 148, 0.92);
}

@supports (color: color-mix(in srgb, white, black)) {
  .menu-item__desc {
    color: color-mix(in srgb, var(--menu-item-name) 70%, var(--bg));
  }

  .menu-item-tags .tag {
    color: color-mix(in srgb, var(--menu-item-name) 84%, var(--bg));
    border-color: color-mix(in srgb, var(--menu-item-name) 38%, var(--accent));
    background: color-mix(in srgb, var(--menu-item-name) 12%, rgba(12, 38, 28, 0.55));
  }

  .menu-empty-panel {
    color: color-mix(in srgb, var(--menu-item-name) 58%, var(--bg));
  }
}

.galleryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.galleryPlaceholder {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.menu-preview-list {
  display: grid;
  gap: 14px;
}
.menu-preview-image {
  display: block;
  width: calc(100vw - clamp(32px, 8vw, 112px));
  max-width: none;
  height: auto;
  margin-left: calc(50% - 50vw + clamp(16px, 4vw, 56px));
  border: 1px solid var(--line);
  border-radius: 12px;
}

@media (min-width: 1400px) {
  :root {
    --max: 1200px;
  }
}

@media (min-width: 1536px) {
  :root {
    --max: 1280px;
  }
}

@media (max-width: 920px) {
  .contactNoticeSlot--top {
    display: block;
    margin-bottom: 14px;
  }
  .contactNoticeSlot--details {
    display: none;
  }
  .container {
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }
  .topbar__inner {
    padding-left: max(22px, env(safe-area-inset-left));
    padding-right: max(22px, env(safe-area-inset-right));
  }
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 20px 0 36px;
  }
  .section {
    padding: 48px 0;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .galleryGrid {
    grid-template-columns: 1fr;
  }
  .row2 {
    grid-template-columns: 1fr;
  }
  .menu-tab-panel:not([hidden]) {
    grid-template-columns: 1fr;
  }
  .menu-preview-image {
    width: calc(100vw - clamp(26px, 6vw, 72px));
    margin-left: calc(50% - 50vw + clamp(13px, 3vw, 36px));
  }
}

/* Phone + tablet: drawer nav (avoids cramped links between ~770–920px) */
@media (max-width: 919px) {
  .topbar {
    z-index: 120;
  }
  .bg-logo {
    background-size: min(92vw, 640px) auto;
    background-position: center calc(50% + 26px);
  }
  .topbar__inner {
    flex-wrap: wrap;
  }
  .navToggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 121;
  }
  .nav {
    display: none;
    position: fixed;
    top: calc(env(safe-area-inset-top) + 72px);
    left: max(12px, env(safe-area-inset-left));
    right: max(12px, env(safe-area-inset-right));
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin-top: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(18, 53, 36, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    max-height: calc(100dvh - var(--footer-bar-block) - env(safe-area-inset-top) - 84px);
    overflow-y: auto;
    z-index: 119;
  }
  .nav.is-open {
    display: flex;
  }
  .nav a,
  .nav .btn {
    justify-content: flex-start;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 12px;
  }
  .nav .btn {
    margin-top: 6px;
    width: 100%;
    box-sizing: border-box;
  }
  .nav a {
    border-bottom: 1px solid rgba(240, 237, 228, 0.06);
  }
  .nav a:last-of-type {
    border-bottom: none;
  }
}

@media (min-width: 920px) {
  .bg-logo {
    background-size: min(74vw, 720px) auto;
    background-position: center calc(50% + 34px);
  }
  .navToggle {
    display: none !important;
  }
  .topbar__inner {
    flex-wrap: nowrap;
    max-width: var(--max);
    margin: 0 auto;
  }
  .brand {
    flex: 0 0 auto;
    justify-content: flex-start;
  }
  .nav {
    display: flex !important;
    flex: 1 1 auto;
    margin-left: auto;
    justify-content: flex-end;
  }
  .nav.is-open {
    display: flex !important;
  }
}

@media (min-width: 1024px) {
  .bg-logo {
    background-size: min(104vw, 1320px) auto;
    background-position: center calc(50% + 40px);
  }
}

@media (max-width: 560px) {
  .container {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }
  .topbar__inner {
    padding-left: max(18px, env(safe-area-inset-left));
    padding-right: max(18px, env(safe-area-inset-right));
  }
  .h1 {
    font-size: clamp(22px, 9vw, 36px);
  }
  .lead {
    font-size: 17px;
    line-height: 1.58;
  }
  .menu-tab {
    padding: 10px 14px;
    font-size: 12px;
  }
  .menu-item-header {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .menu-item-header span:last-child {
    white-space: normal;
    text-align: right;
    margin-left: auto;
  }
  .dateModal__list {
    grid-template-columns: 1fr;
  }
  .menu-preview-image {
    width: calc(100vw - clamp(20px, 5vw, 40px));
    margin-left: calc(50% - 50vw + clamp(10px, 2.5vw, 20px));
    border-radius: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
