/* ── Local fonts ───────────────────────────────────────── */
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/noto%20sans/NotoSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/noto%20sans/NotoSans-Bold.ttf') format('truetype');
  font-weight: 600 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/noto%20sans/NotoSans-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Noto Sans';
  src: url('/fonts/noto%20sans/NotoSans-BoldItalic.ttf') format('truetype');
  font-weight: 600 700; font-style: italic; font-display: swap;
}

/* ── Variables ─────────────────────────────────────────── */
:root {
  --cream:   #F3ECE0;
  --navy:    #1C2E4A;
  --blue:    #97B8C9;
  --charcoal:#2E2E2E;
  --tan:     #A37C54;
  --terra:   #B25B3C;
  --white:   #ffffff;
}

/* ── Reset & base ──────────────────────────────────────── */
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Noto Sans', 'Noto Sans Georgian', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Noto Serif', 'Noto Serif Georgian', serif;
  color: var(--navy);
}

a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--terra); }

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

/* ── Layout ────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 3rem 0; }

/* ── Navigation ────────────────────────────────────────── */
.site-nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(28,46,74,0.1);
  position: sticky; top: 0; z-index: 100;
}
.site-nav .inner {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.site-nav .logo img { height: 40px; }
.site-nav .links {
  display: flex; gap: 2rem; align-items: center;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.site-nav .links a { color: var(--navy); }
.site-nav .links a:hover { color: var(--terra); }
.lang-switch {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  display: flex; gap: 0.5rem;
}
.lang-switch a { color: var(--tan); }
.lang-switch a.active { color: var(--navy); font-weight: 600; }
.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); margin: 4px 0;
}
@media (max-width: 768px) {
  .burger { display: block; }
  .site-nav .links { display: none; flex-direction: column; }
  .site-nav .links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); padding: 1rem 1.5rem; border-bottom: 1px solid rgba(28,46,74,0.1); }
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: var(--cream);
  background: var(--navy);
}
.hero-content h1 {
  color: var(--cream);
  font-family: 'Noto Serif', 'Noto Serif Georgian', serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  max-width: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28,46,74,0.58);
  z-index: 1;
}
.hero-content {
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  margin: 0 auto;
  width: fit-content;
  padding: 2rem;
  z-index: 3;
}
.hero-logo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.hero-subtitle {
  color: rgba(243,236,224,0.8);
  font-size: 1rem;
  margin-top: 0.5rem;
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
}
.hero-icon {
  height: 300px;
  width: auto;
  max-width: 250px;
  display: block;
  margin: 0 auto 0.75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.hero-content blockquote {
  font-family: 'Noto Serif', 'Noto Serif Georgian', serif;
  font-style: italic;
  font-size: 1.25rem;
  max-width: 640px;
  line-height: 1.7;
  color: rgba(243,236,224,0.92);
}

/* ── Section cards ─────────────────────────────────────── */
.section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) { .section-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .section-cards { grid-template-columns: 1fr; } }

.section-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex; flex-direction: column;
  color: inherit; text-decoration: none;
  transition: box-shadow 0.18s, transform 0.18s;
}
.section-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.13);
  transform: translateY(-2px);
  color: inherit;
}
.section-card .card-body { padding: 1.25rem 1.5rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.section-card h3 { margin-bottom: 0.5rem; }
.section-card p  { color: var(--tan); font-size: 0.9rem; flex: 1; }
.section-card .card-link {
  margin-top: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--terra);
}
.section-card { position: relative; }
img.section-card-icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: invert(1);
  opacity: 0.18;
  pointer-events: none;
}

/* ── Event highlight ───────────────────────────────────── */
.event-highlight {
  background: var(--navy);
  color: var(--cream);
  padding: 2rem 1.5rem;
  border-radius: 8px;
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.event-highlight h3 { color: var(--blue); margin-bottom: 0.5rem; }
.event-highlight p  { font-size: 0.9rem; color: rgba(243,236,224,0.85); }
.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-family: 'Noto Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
}
.btn-terra { background: var(--terra); color: var(--white); }
.btn-terra:hover { background: #9d4f35; color: var(--white); }
.btn-navy  { background: var(--navy);  color: var(--cream); }

/* ── Photo grid ────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .photo-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .photo-grid { grid-template-columns: 1fr; } }
.photo-grid .photo-item { aspect-ratio: 4/3; overflow: hidden; border-radius: 6px; }
.photo-grid .photo-item img { width: 100%; height: 100%; object-fit: cover; }

/* ── Team cards ────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr 1fr; } }
.team-card { text-align: center; }
.team-card .avatar {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 50%; overflow: hidden;
  margin: 0 auto 0.75rem;
}
.team-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card .name { font-family: 'Noto Serif', serif; font-size: 1rem; color: var(--navy); }
.team-card .role { font-size: 0.8rem; color: var(--tan); }

/* ── Menu list ─────────────────────────────────────────── */
.menu-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .menu-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .menu-cards { grid-template-columns: 1fr; } }

.menu-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.menu-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
.menu-card-photo { aspect-ratio: 16/9; overflow: hidden; }
.menu-card-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.menu-card:hover .menu-card-photo img { transform: scale(1.04); }
.menu-card-body { padding: 1.5rem; }
.menu-card h3 { margin-bottom: 0.4rem; }
.menu-card p  { color: var(--tan); font-size: 0.9rem; }
.event-badge {
  display: inline-block;
  background: var(--blue);
  color: var(--navy);
  font-size: 0.7rem;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* ── Menu items ────────────────────────────────────────── */
.menu-category { margin-bottom: 3rem; }
.menu-category-header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(28,46,74,0.15);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.menu-category h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin: 0;
}
.menu-category-desc {
  font-size: 0.78rem;
  color: var(--tan);
  font-family: 'Noto Sans', sans-serif;
  font-weight: 400;
  white-space: nowrap;
}
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .menu-items-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) {
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item .item-photo:has(img[src*="placehold.co"]) { display: none; }
}

.menu-item {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.menu-item .item-photo { aspect-ratio: 4/3; overflow: hidden; }
.menu-item .item-photo img { width: 100%; height: 100%; object-fit: cover; }
.menu-item .item-body { padding: 0.9rem 1rem 1rem; }
.menu-item .item-name {
  font-family: 'Noto Serif', 'Noto Serif Georgian', serif;
  font-size: 1rem; color: var(--navy); margin-bottom: 0.3rem;
}
.menu-item .item-desc { font-size: 0.82rem; color: var(--tan); margin-bottom: 0.5rem; }
.menu-item .item-price { font-size: 0.9rem; color: var(--terra); font-weight: 600; }
.menu-item .item-tags { margin-top: 0.4rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.tag {
  font-size: 0.7rem; padding: 0.1rem 0.5rem;
  background: var(--cream); border-radius: 20px; color: var(--tan);
}

/* ── News list ─────────────────────────────────────────── */
.news-list { display: flex; flex-direction: column; gap: 1.5rem; }
.news-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  display: flex;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.12); }
@media (max-width: 600px) { .news-card { flex-direction: column; } }
.news-card .card-photo { width: 280px; flex-shrink: 0; aspect-ratio: 16/9; overflow: hidden; }
.news-card .card-photo img { width: 100%; height: 100%; object-fit: cover; }
.news-card .card-body { padding: 1.25rem 1.5rem; display: flex; flex-direction: column; }
.news-card .card-date { font-size: 0.78rem; color: var(--tan); margin-bottom: 0.4rem; }
.news-card h3 { margin-bottom: 0.5rem; }
.news-card .card-excerpt { font-size: 0.88rem; color: var(--charcoal); flex: 1; }
.news-card .read-more { margin-top: 0.75rem; font-size: 0.8rem; color: var(--terra); text-transform: uppercase; letter-spacing: 0.07em; }
@media (max-width: 600px) { .news-card .card-photo { width: 100%; } }

/* ── News article ──────────────────────────────────────── */
.article { max-width: 760px; margin: 0 auto; }
.hero-meta { font-size: 0.82rem; color: rgba(243,236,224,0.75); margin-bottom: 0.6rem; }
.article .article-body { font-size: 1rem; line-height: 1.75; }
.article .article-body p  { margin-bottom: 1rem; }
.article .article-body img { border-radius: 6px; margin: 1rem 0; }

/* ── Registration form ─────────────────────────────────── */
.registration-form {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 3rem;
  max-width: 480px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  scroll-margin-top: 90px;
}
.registration-form h3 { margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.82rem; color: var(--tan); margin-bottom: 0.3rem; }
.form-group input {
  width: 100%; padding: 0.6rem 0.75rem;
  border: 1px solid rgba(28,46,74,0.2);
  border-radius: 4px;
  font-family: inherit; font-size: 0.9rem;
  background: var(--cream);
}
.form-group input:focus { outline: none; border-color: var(--blue); }
.success-msg {
  background: rgba(151,184,201,0.2);
  border-left: 3px solid var(--blue);
  padding: 1rem 1.25rem;
  border-radius: 4px;
  color: var(--navy);
}
.success-msg.warning-msg {
  background: rgba(178,91,60,0.1);
  border-left-color: var(--terra);
  color: var(--terra);
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--navy);
  color: rgba(243,236,224,0.7);
  padding: 2.5rem 1.5rem;
  margin-top: 4rem;
  font-size: 0.85rem;
  text-align: center;
}
.site-footer .footer-logo img { height: 36px; filter: brightness(0) invert(1); margin: 0 auto 1rem; opacity: 0.8; }
.site-footer a { color: var(--blue); }
.footer-social { display: flex; gap: 1rem; justify-content: center; margin-top: 1.25rem; }
.footer-credit { margin-top: 1.5rem; font-size: 0.72rem; opacity: 0.45; letter-spacing: 0.04em; }
.footer-social a { color: rgba(243,236,224,0.55); display: flex; align-items: center; transition: color 0.15s; }
.footer-social a:hover { color: var(--blue); }

/* ── Page nav ──────────────────────────────────────────── */
.page-nav {
  position: sticky;
  top: var(--nav-h, 64px);
  z-index: 99;
  background: var(--cream);
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  padding-left: max(1.5rem, calc((100vw - 1200px) / 2 + 1.5rem));
  border-bottom: 1px solid rgba(28,46,74,0.12);
  box-shadow: 0 2px 8px rgba(28,46,74,0.06);
}
.page-nav-label {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  padding-right: 1rem;
  margin-right: 0.25rem;
  border-right: 1px solid rgba(28,46,74,0.15);
}
.page-nav-scroll {
  flex: 1;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.page-nav-scroll::-webkit-scrollbar { display: none; }
.page-nav-btn {
  flex-shrink: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tan);
  white-space: nowrap;
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.page-nav-btn:hover  { color: var(--navy); border-bottom-color: var(--blue); }
.page-nav-btn.active { color: var(--navy); border-bottom-color: var(--navy); font-weight: 600; }
.menu-category[id] { scroll-margin-top: calc(var(--nav-h, 64px) + var(--page-nav-h, 48px) + 1rem); }

/* ── Page header ───────────────────────────────────────── */
.page-header {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 1.5rem;
  text-align: center;
}
.page-header h1 { color: var(--cream); margin-bottom: 0.25rem; }
.page-header p  { color: var(--blue); font-size: 0.9rem; }

/* ── Masonry gallery ───────────────────────────────────── */
.masonry-grid {
  column-count: 4;
  column-gap: 1rem;
}
.masonry-grid .masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
}
.masonry-grid .masonry-item img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 900px) { .masonry-grid:not(.expanded) { column-count: 2; } }
@media (max-width: 480px) { .masonry-grid:not(.expanded) { column-count: 1; } }

/* ── Mobile gallery: horizontal scroll + expand ─────────── */
.gallery-expand-btn { display: none; }
@media (max-width: 768px) {
  .masonry-grid:not(.expanded) {
    column-count: unset;
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    /* break out of .container padding for full-bleed scroll */
    margin-inline: -1.5rem;
    padding-inline: 1rem;
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }
  .masonry-grid:not(.expanded) .masonry-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .masonry-grid:not(.expanded) .masonry-item img {
    height: 180px;
    object-fit: cover;
  }
  .masonry-grid.expanded { column-count: 2; }
  .gallery-expand-btn {
    display: block;
    margin: 0.75rem auto 1rem;
    padding: 0.4rem 1.5rem;
    background: none;
    border: 1px solid var(--tan);
    border-radius: 20px;
    color: var(--tan);
    font-family: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }
  .gallery-expand-btn:hover { background: var(--tan); color: #fff; }
}

/* ── Mobile padding ────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .page-header { padding: 2rem 1rem; }
  .masonry-grid:not(.expanded) {
    margin-inline: -1rem;
    padding-inline: 0.75rem;
    padding-top: 1rem;
    padding-bottom: 0.75rem;
  }
}

/* ── Gallery horizontal scroll (mobile) ───────────────── */
@media (max-width: 768px) {
  .photo-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: 260px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .photo-grid .photo-item { scroll-snap-align: start; }
  .team-grid {
    grid-template-columns: unset;
    grid-auto-flow: column;
    grid-auto-columns: 150px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
  }
  .team-grid .team-card { scroll-snap-align: start; }
}

/* ── Lightbox ──────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 88vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  cursor: default;
}
.lb-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 2.5rem; line-height: 1;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 1;
}
.lb-arrow:hover { color: #fff; }
.lb-arrow--prev { left: 0.5rem; }
.lb-arrow--next { right: 0.5rem; }
.lb-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 1rem;
  text-align: center;
  color: rgba(243,236,224,0.9);
  font-size: 0.85rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  pointer-events: none;
  z-index: 2;
}
.lb-caption:empty { display: none; }
@media (max-width: 480px) {
  .lb-arrow { font-size: 2rem; padding: 0.75rem; }
}

/* ── Rental ────────────────────────────────────────────── */
.rental-text, .bar-text { font-size: 1rem; line-height: 1.8; color: var(--charcoal); max-width: 760px; white-space: pre-line; }
.rental-text h2, .rental-text h3, .bar-text h2, .bar-text h3 { color: var(--navy); margin: 1.5rem 0 0.75rem; }
.rental-text p, .bar-text p { margin-bottom: 1rem; }
.booking-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  max-width: 760px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.booking-field label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--tan);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fafaf8;
  color: var(--charcoal);
}
.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus { outline: none; border-color: var(--blue); }
.booking-field--full { grid-column: 1 / -1; }
.booking-success {
  background: rgba(151,184,201,0.15);
  border-left: 4px solid var(--blue);
  padding: 1rem 1.25rem;
  border-radius: 6px;
  color: var(--navy);
  font-size: 1rem;
}
@media (max-width: 600px) {
  .booking-grid { grid-template-columns: 1fr; }
  .booking-box { padding: 1.5rem; }
}

/* ── Custom cursor ─────────────────────────────────────── */
#custom-cursor { display: none; }
@media (pointer: fine) {
  /* custom cursor disabled
  #custom-cursor { display: block; }
  html, * { cursor: none !important; } */
  #custom-cursor {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    will-change: transform;
    transition: opacity 0.2s;
  }
  #custom-cursor img {
    display: block;
    height: 24px;
    width: auto;
    margin-top: -10px;
    transform: rotate(18deg);
    transform-origin: top left;
    transition: transform 0.18s ease;
  }
  #custom-cursor.cur-hover img  { transform: rotate(18deg) scale(1.35); }
  #custom-cursor.cur-click  img { transform: rotate(18deg) scale(0.8);  }
  #custom-cursor.cur-hidden     { opacity: 0; }
}

/* ── Order: qty controls ─────────────────────────── */
.item-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.5rem; margin-top: 0.5rem;
}
.item-qty { display: flex; align-items: center; gap: 0.3rem; }
.qty-btn {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--tan); background: none; color: var(--tan);
  font-size: 1rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.12s;
  flex-shrink: 0;
}
.qty-btn:hover { background: var(--tan); color: var(--white); }
.qty-val {
  min-width: 1.4rem; text-align: center;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
}
.item-qty:not(.active) .qty-val { color: rgba(0,0,0,0.2); }
.item-qty.active .qty-btn.qty-dec { border-color: var(--terra); color: var(--terra); }
.item-qty.active .qty-btn.qty-dec:hover { background: var(--terra); color: var(--white); }

/* ── Order: sticky bar ───────────────────────────── */
.order-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--navy); color: var(--cream);
  padding: 0.85rem 1.5rem;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.22);
}
.order-bar:not(.hidden) { transform: translateY(0); }
.order-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 900px; margin: 0 auto; gap: 1rem;
}
.order-bar-info { display: flex; flex-direction: column; gap: 0.05rem; }
.order-bar-count { font-size: 0.72rem; opacity: 0.6; letter-spacing: 0.04em; }
.order-bar-total { font-size: 1.1rem; font-weight: 700; }
.order-bar-cta {
  font-size: 0.8rem; letter-spacing: 0.06em; white-space: nowrap;
  padding: 0.38rem 1rem;
  border: 1px solid rgba(243,236,224,0.3); border-radius: 20px;
  transition: background 0.15s;
}
.order-bar:hover .order-bar-cta { background: rgba(255,255,255,0.1); }
body.has-order-bar { padding-bottom: 72px; }

/* ── Order: popup ────────────────────────────────── */
.order-popup { position: fixed; inset: 0; z-index: 600; }
.order-popup.hidden { display: none; }
.order-popup-overlay {
  position: absolute; inset: 0;
  background: rgba(28,46,74,0.5); backdrop-filter: blur(3px);
}
.order-popup-box {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--cream); border-radius: 16px 16px 0 0;
  padding: 1.5rem 1.5rem 2.5rem;
  max-height: 80vh; overflow-y: auto;
  animation: orderSlideUp 0.28s ease;
}
@keyframes orderSlideUp {
  from { transform: translateY(32px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.order-popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.5rem; line-height: 1; color: var(--tan);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
}
.order-popup-title {
  font-family: 'Noto Serif', 'Noto Serif Georgian', serif;
  font-size: 1.15rem; color: var(--navy);
  margin-bottom: 1.25rem; padding-right: 2rem;
}
.popup-item-row {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 0.6rem; align-items: center;
  padding: 0.45rem 0; border-bottom: 1px solid rgba(163,124,84,0.15);
}
.popup-item-row:last-child { border-bottom: none; }
.popup-item-qty-ctrl { display: flex; align-items: center; gap: 0.2rem; }
.popup-qty-btn {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--tan); background: none; color: var(--tan);
  font-size: 0.9rem; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.12s; flex-shrink: 0;
}
.popup-qty-btn:hover { background: var(--tan); color: var(--white); }
.popup-qty-val { min-width: 1.2rem; text-align: center; font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.popup-item-name { font-size: 0.92rem; color: var(--navy); }
.popup-item-price { font-size: 0.92rem; color: var(--terra); font-weight: 600; white-space: nowrap; }
.order-popup-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; margin-top: 0.25rem;
  border-top: 2px solid rgba(163,124,84,0.4);
}
.order-popup-sum { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.order-popup-clear {
  background: none; border: 1px solid rgba(178,91,60,0.35); border-radius: 20px;
  padding: 0.3rem 1rem; font-size: 0.78rem; color: var(--terra);
  cursor: pointer; font-family: inherit; letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.order-popup-clear:hover { background: var(--terra); color: #fff; border-color: var(--terra); }
body.popup-open { overflow: hidden; }

@media (min-width: 640px) {
  .order-popup-box {
    left: auto; right: 1.5rem; bottom: 1.5rem;
    border-radius: 12px; width: 380px;
    max-height: 70vh;
    animation: orderFadeIn 0.22s ease;
  }
}
@keyframes orderFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Mentions ────────────────────────────────────── */
.mentions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) { .mentions-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .mentions-grid { grid-template-columns: 1fr; } }

.mention-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.18s, transform 0.18s;
}
.mention-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.11);
  transform: translateY(-2px);
}
.mention-logo {
  display: flex; align-items: center; justify-content: center;
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  min-height: 80px;
}
.mention-logo img {
  max-height: 52px; max-width: 140px;
  width: auto; height: auto;
  object-fit: contain;
}
.mention-quote {
  font-family: 'Noto Serif', 'Noto Serif Georgian', serif;
  font-style: italic;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--charcoal);
  padding: 1rem 1.25rem 0.5rem;
  flex: 1;
  margin: 0;
}
.mention-quote::before { content: '\201C'; }
.mention-quote::after  { content: '\201D'; }
.mention-source {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--tan);
  padding: 0.5rem 1.25rem 1rem;
  text-transform: uppercase;
}

/* ── Admin edit shortcut button ─────────────────────────────────────────────── */
.admin-edit-btn {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem 0.5rem 0.75rem;
  background: rgba(30, 30, 30, 0.88);
  color: #fff;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 12px rgba(0,0,0,.35);
  opacity: 0.65;
  transition: opacity 0.2s, transform 0.2s;
}
.admin-edit-btn:hover {
  opacity: 1;
  transform: translateY(-2px);
}
.admin-edit-btn svg { flex-shrink: 0; }
