/* ══════════════════════════════════════════
   ВКУС ОГНЯ — Design System
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

/* Ekaterina Velikaya One — вензельная буква */
@font-face {
  font-family: 'Ekaterina Velikaya';
  src: url('../fonts/EkaterinaVelikayaOne.woff') format('woff'),
       url('../fonts/EkaterinaVelikayaOne.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Cormorant Garamond — для позиций меню */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-LightItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-MediumItalic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('../fonts/Cormorant Garamond/CormorantGaramond-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ── Tokens ─────────────────────────────── */
:root {
  --bg-dark: #0a0a0a;
  --bg-red: #65000b;
  --gold: #e59d40;
  --gold-light: #f1b05b;
  --gold-dim: rgba(238, 155, 23, 0.6);
  --text: #e8e0d6;
  --text-dim: rgba(232, 224, 214, 0.6);
  --text-muted: rgba(232, 224, 214, 0.4);
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --card-bg: rgba(80, 10, 15, 0.35);
  --card-border: rgba(197, 150, 58, 0.25);
  --font-venzель: 'Ekaterina Velikaya', 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-display: 'Cormorant', Georgia, serif;
  --font-menu: 'Cormorant Garamond', 'Cormorant', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;
  --page-max: 1200px;
  --header-top: calc(1rem + env(safe-area-inset-top, 0px));
  --header-btn-h: 55px;
  --header-h: 55px;
  --site-gradient: linear-gradient(to right, var(--bg-red) 0%, #3a0006 42%, var(--bg-dark) 100%);
}

/* ── Reset ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  min-height: -webkit-fill-available;
  background: transparent;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  position: relative;
  isolation: isolate;
  background: transparent;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: -webkit-fill-available;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Фон скроллится вместе со страницей — уходит под прозрачный chrome */
#bg-gradient {
  position: absolute;
  left: calc(0px - env(safe-area-inset-left, 0px));
  right: calc(0px - env(safe-area-inset-right, 0px));
  top: calc(0px - env(safe-area-inset-top, 0px));
  bottom: calc(0px - env(safe-area-inset-bottom, 0px));
  z-index: 0;
  background-color: transparent;
  background-image: var(--site-gradient);
  pointer-events: none;
}

body > :not(#bg-gradient):not(.bg-atmosphere):not(.site-header):not(.modal-overlay):not(.eg-lightbox):not(.cart-float):not(.cart-toast) {
  position: relative;
  z-index: 1;
}

/* Noise overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── Vignette + micro grain (site-wide) ── */
body:has(.bg-atmosphere)::before {
  display: none;
}

.bg-atmosphere {
  position: absolute;
  left: calc(0px - env(safe-area-inset-left, 0px));
  right: calc(0px - env(safe-area-inset-right, 0px));
  top: calc(0px - env(safe-area-inset-top, 0px));
  bottom: calc(0px - env(safe-area-inset-bottom, 0px));
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.bg-atmosphere__vignette,
.bg-atmosphere__grain {
  position: absolute;
  inset: 0;
}

.bg-atmosphere__vignette {
  background:
    radial-gradient(ellipse 86% 76% at 50% 42%, transparent 38%, rgba(0, 0, 0, 0.35) 100%),
    radial-gradient(ellipse 118% 88% at 50% 50%, transparent 54%, rgba(0, 0, 0, 0.22) 100%);
  mix-blend-mode: multiply;
  opacity: 0.88;
}

.bg-atmosphere__grain {
  background-image: url("../img/grain.png");
  background-size: 280px 280px;
  background-repeat: repeat;
  opacity: 0.065;
  mix-blend-mode: overlay;
}

a { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────── */
/* PNG/SVG page headings (main pages) */
.page-heading {
  text-align: center;
  margin: 0 auto 2.5rem;
  padding: 0;
  line-height: 0;
}

.page-heading__img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: clamp(52px, 11vw, 88px);
  max-width: min(92vw, 520px);
  object-fit: contain;
}

.hero .page-heading {
  margin: 0;
}

.hero .page-heading__img {
  height: clamp(140px, 32vw, 300px);
  width: auto;
  max-width: min(94vw, 870px);
}

.hero-logo {
  margin: 0;
  position: relative;
  z-index: 2;
}

.hero .hero-logo__img {
  height: clamp(132px, 27vw, 270px);
  max-width: min(94vw, 1080px);
}

/* Sub-page decorative headers (афиша, бронь, доставка) — desktop */
.page-heading__img--sub {
  height: clamp(88px, 18vw, 150px);
  max-width: min(95vw, 1300px);
}

/* Shared venzel page titles (меню, доставка, афиша, бронь) */
.venzel-page-title {
  overflow: visible;
  line-height: 1;
  margin-bottom: 2rem;
}

.page-title.venzel-page-title .venzel {
  line-height: 1;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
}

.page-title.venzel-page-title .rest {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

main > .container > .page-title.venzel-page-title .venzel,
.order-page-wrapper .page-title.venzel-page-title .venzel,
.menu-page .page-title.venzel-page-title .venzel {
  line-height: 1;
  font-size: clamp(4.5rem, 12vw, 7.5rem);
}

main > .container > .page-title.venzel-page-title .rest,
.order-page-wrapper .page-title.venzel-page-title .rest,
.menu-page .page-title.venzel-page-title .rest {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.menu-page .venzel-page-title {
  margin-top: 2.5rem;
}

main > .container > .page-title.venzel-page-title,
.order-page-wrapper .page-title.venzel-page-title {
  margin-top: 0;
  margin-bottom: 2.5rem;
}

/* Sub-pages: delivery, booking, events */
.sub-page,
.event-page-main {
  padding-top: calc(var(--header-top) + var(--header-h) + 1rem) !important;
}

main > .container > .page-heading {
  margin-bottom: 2.5rem;
}

/* Page title with ornamental first letter (event subpages) */
.page-title {
  text-align: center;
  color: var(--gold);
  line-height: 0.9;
  margin-bottom: 2rem;
}

.page-title .venzel {
  font-family: var(--font-venzель);
  font-size: clamp(6rem, 18vw, 11rem);
  font-weight: 400;
  display: inline;
  line-height: 0.7;
}

.page-title .rest {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline;
  position: relative;
  top: -0.1em;
}

main > .container > .page-title {
  margin-top: -1rem;
  margin-bottom: 4.5rem;
}

main > .container > .page-title .venzel {
  font-size: clamp(4.5rem, 12vw, 7.5rem);
}

main > .container > .page-title .rest {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.display-title {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--gold);
  line-height: 1.1;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

.upper {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

/* ── Glass panels ───────────────────────── */
.glass {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.glass-strong {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* ── Layout ─────────────────────────────── */
.container {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 5rem 0;
  position: relative;
  z-index: 3;
  background: transparent;
}

/* Контент уходит под прозрачный chrome при скролле */
body > section.hero,
body > main.sub-page,
body > main.event-page-main,
body > main.menu-page {
  margin-top: calc(-1 * env(safe-area-inset-top, 0px));
}

body > .site-footer {
  margin-bottom: calc(-1 * env(safe-area-inset-bottom, 0px));
  padding-bottom: calc(3rem + env(safe-area-inset-bottom, 0px));
}

/* ── Header ─────────────────────────────── */
.site-header {
  position: fixed;
  top: var(--header-top);
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 0 1.5rem;
  transition: opacity .4s;
  pointer-events: none;
}

.site-header > * {
  pointer-events: auto;
}

.site-header.hidden {
  opacity: 0;
  pointer-events: none;
}

.site-header.visible {
  opacity: 1;
}

/* Главная: на index кнопка появляется после скролла hero */
.site-header--home .btn-main {
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.site-header--home .btn-main.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: var(--page-max);
  height: var(--header-btn-h);
  position: relative;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: var(--header-btn-h);
  min-height: var(--header-btn-h);
  max-height: var(--header-btn-h);
  padding: 0 2rem;
  box-sizing: border-box;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text);
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: opacity .3s;
}

.btn-main:hover {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
  color: var(--text);
}

.lang-toggle {
  position: fixed;
  top: var(--header-top);
  right: calc(var(--header-top) + env(safe-area-inset-right, 0px));
  width: var(--header-btn-h);
  height: var(--header-btn-h);
  min-width: var(--header-btn-h);
  min-height: var(--header-btn-h);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  flex-shrink: 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  z-index: 120;
  cursor: pointer;
  pointer-events: auto;
  transition: color .3s;
}

.lang-toggle:hover {
  color: var(--text);
}

.lang-toggle.glass-strong:hover {
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.10) 50%,
    rgba(255, 255, 255, 0.05) 100%
  );
}

/* ── Hero (main page) ───────────────────── */
.hero {
  min-height: calc(100dvh + env(safe-area-inset-top, 0px));
  min-height: calc(100vh + env(safe-area-inset-top, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(2rem + env(safe-area-inset-top, 0px)) 1.5rem 2rem;
  position: relative;
}

.hero-backdrop {
  position: fixed;
  top: calc(var(--header-h) + 2.5rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  pointer-events: none;
  will-change: transform, opacity;
  width: 100%;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.hero .page-title,
.hero .page-heading {
  position: relative;
  margin: 0;
}

.hero-glass-image {
  position: relative;
  z-index: 1;
  height: 200vh;
  max-width: none;
  max-height: none;
  width: auto;
  opacity: 0.9;
  margin-top: -35rem;
}

/* ── Navigation panel (glassmorphism) ───── */
.nav-panel {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding: 3rem 2.5rem;
  z-index: 3;
  max-width: 320px;
  margin-top: 1.35rem;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}

.nav-panel .nav-link {
  display: block;
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--text);
  text-align: center;
  transition: color .3s;
  will-change: opacity, transform;
  white-space: nowrap;
}

.nav-panel .nav-link:hover {
  color: var(--gold);
}

.nav-panel-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
}

/* ── Quote / manifesto block ────────────── */
#manifestoSection {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: -16.5vh;
  min-height: 120vh;
  position: relative;
  z-index: 3;
  background: transparent;
}

#manifestoSection > .container {
  min-height: inherit;
}

.manifesto {
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: sticky;
  top: calc(50vh - 180px);
  will-change: opacity;
}

.manifesto .headline {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 1.1rem;
  color: #FFEBCD;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.manifesto p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: #FFEBCD;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.manifesto em {
  font-style: italic;
  color: #FFEBCD;
  font-weight: 300;
}

/* ── Gallery (scroll-jacked horizontal scroll) ── */
.gallery-section {
  height: 220vh;
  position: relative;
  z-index: 3;
  margin-top: 0;
  background: transparent;
}

.gallery-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gallery-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 280px 180px 280px 180px 280px 280px 250px 200px 200px 280px;
  grid-template-areas:
    "g1 g2 g3 g4 g8 g9 g10 g11 g12 g15"
    "g1 g5 g6 g7 g8 g9 g13 g14 g14 g15";
  gap: 16px;
  height: 520px;
  padding: 1.5rem;
  will-change: transform;
}

.gf-1  { grid-area: g1; }
.gf-2  { grid-area: g2; }
.gf-3  { grid-area: g3; }
.gf-4  { grid-area: g4; }
.gf-5  { grid-area: g5; }
.gf-6  { grid-area: g6; }
.gf-7  { grid-area: g7; }
.gf-8  { grid-area: g8; }
.gf-9  { grid-area: g9; }
.gf-10 { grid-area: g10; }
.gf-11 { grid-area: g11; }
.gf-12 { grid-area: g12; }
.gf-13 { grid-area: g13; }
.gf-14 { grid-area: g14; }
.gf-15 { grid-area: g15; }

.gallery-frame {
  padding: 10px;
  overflow: hidden;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s;
}

.gallery-frame:hover img {
  transform: scale(1.05);
}

/* ── Story (Как создавался Вкус) ─────────  */
/* ── Story: Block 1 — Elena intro (fixed height) ── */
.story-intro {
  display: grid;
  grid-template-columns: 220px auto;
  grid-template-rows: auto 1fr;
  gap: 0 2.5rem;
  align-items: center;
  justify-content: center;
  max-width: 750px;
  margin: 0 auto 5rem;
}

.story-intro > .story-title {
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 1.5rem;
}

.story-portrait {
  padding: 10px;
  overflow: hidden;
  align-self: stretch;
  grid-column: 1;
  grid-row: 1 / 3;
}

.story-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-intro-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  grid-column: 2;
  grid-row: 2;
}

.story-title {
  text-align: left;
  margin-bottom: 0;
}

.story-text p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFEBCD;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.story-ruins {
  display: flex;
  gap: 1rem;
}

.story-ruins .story-frame {
  width: 180px;
  flex-shrink: 0;
}

.story-frame {
  padding: 10px;
  overflow: hidden;
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-ruins .story-frame {
  height: 160px;
}

/* ── Story: Block 2 — renovation photos (fixed height) ── */
.story-build {
  text-align: center;
}

.story-center-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #FFEBCD;
  font-weight: 300;
  line-height: 1.8;
  max-width: 700px;
  margin: 2.5rem auto;
}

.story-build-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 1rem;
  position: relative;
}

.sf-1 { grid-column: 1; grid-row: 1 / 3; margin-top: -2rem; max-height: 500px; align-self: center; }
.sf-2 { grid-column: 2; grid-row: 1; }
.sf-3 { grid-column: 3; grid-row: 1 / 3; margin-top: -2rem; max-height: 500px; align-self: center; }
.sf-4 { grid-column: 2; grid-row: 2; }

/* ── Partners ───────────────────────────── */
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 140px;
  grid-template-rows: auto auto auto;
  gap: 0.3rem 1.2rem;
  max-width: 420px;
  margin: 0 auto;
}

.partner-name {
  font-family: var(--font-body);
  color: #FFEBCD;
  font-size: 1rem;
  font-weight: 400;
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-bottom: 0.3rem;
}

.partner-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: #FFEBCD;
  font-weight: 300;
  line-height: 1.7;
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.partner-logo {
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  grid-row: 1 / 3;
  width: 140px;
  height: 140px;
  align-self: center;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-photos {
  grid-column: 1 / -1;
  grid-row: 3;
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 1.2rem;
  margin-top: 0.8rem;
}

.partner-ph { min-height: 0; }
.partner-pv { min-height: 0; }

/* ── Reviews ────────────────────────────── */
.reviews-meta {
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.reviews-rating {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.reviews-score {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

.reviews-count {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 235, 205, 0.6);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}

.review-card {
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 180px;
}

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

.review-text {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #FFEBCD;
  font-weight: 300;
  line-height: 1.7;
  flex: 1;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.review-author {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 400;
}

.review-date {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255, 235, 205, 0.45);
  font-weight: 300;
}

.reviews-link {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 235, 205, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.reviews-link:hover {
  color: var(--gold);
}

/* ── Contacts / Map ─────────────────────── */
.contacts-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.contact-block {
  margin-bottom: 0.5rem;
}

.contact-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--text);
}

.contact-value a {
  color: var(--text);
  text-decoration: none;
  transition: color .3s;
}

.contact-value a:hover {
  color: var(--gold);
}

.map-wrap {
  overflow: hidden;
  padding: 10px;
  height: 320px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Footer ─────────────────────────────── */
.site-footer {
  padding: 3rem 0;
  position: relative;
  z-index: 1;
}

.footer-icons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.footer-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFEBCD;
  font-size: 1.1rem;
  transition: all .3s;
}

.footer-icons a:hover {
  color: var(--bg);
  border-color: var(--gold);
  background: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(197, 150, 58, 0.3);
}

/* ── Menu page: Tabs ────────────────────── */
.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 1.5rem;
  margin-bottom: 0;
  position: relative;
  z-index: 10;
}

.menu-tab {
  padding: 0.55rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #FFEBCD;
  background: transparent;
  border: 1.5px solid #FFEBCD;
  cursor: pointer;
  transition: all .3s;
}

.menu-tab:first-child { border-radius: 0; }
.menu-tab:last-child { border-radius: 0; }

.menu-tab.active {
  color: var(--bg-dark);
  background: var(--gold);
  border-color: var(--gold);
}

.menu-tab:hover:not(.active) {
  color: var(--gold);
  border-color: var(--gold);
}

/* ── Menu: Category list ────────────────── */
.category-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 1.2rem;
}

.category-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #FFEBCD;
  padding: 0.5rem 1.4rem;
  cursor: pointer;
  transition: color .3s;
  position: relative;
}

.category-btn:hover {
  color: var(--gold);
}

.category-btn.active {
  color: var(--gold);
}

.category-btn.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25%;
  width: 50%;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}

.category-btn.flash {
  animation: catFlash .5s ease;
}

@keyframes catFlash {
  0%   { color: var(--text); }
  30%  { color: var(--gold); }
  100% { color: var(--gold); }
}

/* ── Menu: Item cards (food) ────────────── */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.menu-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: 1fr auto;
  min-height: 150px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: border-color .3s;
}

.menu-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.menu-card-img {
  grid-row: 1 / 3;
  width: 130px;
  height: 130px;
  object-fit: cover;
  margin: 15px;
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
}

.menu-card-img.no-photo {
  background: linear-gradient(
    135deg,
    rgba(120, 20, 25, 0.4) 0%,
    rgba(60, 8, 12, 0.6) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-card-img.no-photo::after {
  content: 'В';
  font-family: var(--font-venzель);
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.15);
  line-height: 1;
}

.menu-card-body {
  grid-column: 2;
  grid-row: 1;
  padding: 1.2rem 1.5rem 0.5rem 2rem;
}

.menu-card-body h4 {
  font-family: var(--font-menu);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #FFEBCD;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.menu-card-body .desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 200;
  color: rgba(255, 235, 205, 0.6);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.menu-card-meta {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  align-items: baseline;
  gap: 2.5rem;
  padding: 0.5rem 1.5rem 1.1rem 2rem;
}

.menu-card-meta .weight {
  font-family: var(--font-menu);
  font-size: 1.2rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 235, 205, 0.5);
}

.menu-card-meta .price {
  font-family: var(--font-menu);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: #FFEBCD;
}

.btn-cart {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: end;
  margin: 0 2rem 0 1rem;
  padding: 1rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: transparent;
  border: 0.5px solid var(--gold);
  cursor: pointer;
  transition: all .3s;
  white-space: nowrap;
}

.btn-cart:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

/* ── Menu: Table layout (bar/wine) ──────── */
.menu-table {
  width: 100%;
  max-width: 900px;
  margin: 1rem auto 0;
  border-collapse: collapse;
  animation: fadeIn .4s ease;
  background: transparent;
}

.menu-table-category {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 1.2rem 0 0.5rem;
  border-bottom: 1px solid var(--card-border);
}

.menu-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.menu-table td {
  padding: 0.75rem 0.5rem;
  font-size: 0.82rem;
  vertical-align: top;
}

.menu-table td:first-child {
  padding-left: 0;
}

.menu-table td:last-child {
  padding-right: 0;
}

.menu-table .item-name {
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--text);
}

.menu-table .item-desc {
  display: block;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  margin-top: 0.15rem;
  line-height: 1.4;
}

.menu-table .item-vol {
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  white-space: nowrap;
  font-size: 0.72rem;
  min-width: 4.5rem;
}

.menu-table .item-price {
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.88rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

/* ── Cart floating button ───────────────── */
.cart-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: rgba(60, 8, 12, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid #FFEBCD;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFEBCD;
  z-index: 90;
  transition: all .3s;
  opacity: 0;
  pointer-events: none;
}

.cart-float .cart-icon {
  stroke: #FFEBCD;
  transition: stroke .3s;
}

.cart-float.visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-float:hover {
  border-color: var(--gold);
  transform: scale(1.06);
}

.cart-float:hover .cart-icon {
  stroke: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Cart toast notification ───────────── */
.cart-toast {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 200;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
}

.cart-toast-item {
  background: rgba(40, 6, 10, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 0.5px solid rgba(255, 235, 205, 0.25);
  padding: 0.55rem 1.1rem 0.55rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 400;
  color: #FFEBCD;
  letter-spacing: 0.03em;
  max-width: 260px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  animation: toastIn .3s ease forwards;
}

.cart-toast-item.hiding {
  animation: toastOut .25s ease forwards;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes toastOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to   { opacity: 0; transform: translateY(-6px) scale(0.96); }
}

/* ── Events / Afisha page ────────────── */
.events-section-title {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-align: center;
  margin: 3rem 0 1.5rem;
}

.events-upcoming {
  text-align: center;
  margin-bottom: 2rem;
}

.event-hero-card {
  max-width: 360px;
  margin: 0 auto;
  border: 1px solid var(--card-border);
  overflow: hidden;
}

.event-hero-poster {
  width: 100%;
  display: block;
}

.event-hero-card .event-hero-poster {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.event-hero-card.event-logo-placeholder {
  border: none;
  container-type: size;
  aspect-ratio: 1 / 1;
  padding: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-upcoming-num {
  font-family: var(--font-venzель);
  font-size: 52cqi;
  font-weight: 400;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  user-select: none;
  text-align: center;
  display: block;
  max-width: 100%;
  padding: 0.08em 0 0.14em;
  white-space: nowrap;
}

@supports not (font-size: 1cqi) {
  .event-upcoming-num {
    font-size: clamp(4rem, 34vw, 8rem);
  }
}

.event-logo-mark {
  width: auto;
  height: clamp(110px, 28vw, 170px);
  margin: 0 auto;
  object-fit: contain;
}

.event-cta-btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: transparent;
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: all .3s;
}

.event-cta-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.events-past {
  max-width: 700px;
  margin: 0 auto;
}

.event-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  margin-bottom: 1.2rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: 1fr auto;
}

.event-card-img {
  grid-row: 1 / 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 160px;
}

.event-card-body {
  padding: 1.2rem 1.5rem 0.8rem;
}

.event-card-body h3 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #FFEBCD;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.event-card-body p {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 200;
  color: rgba(255, 235, 205, 0.6);
  line-height: 1.6;
}

.event-link-btn {
  display: inline-block;
  padding: 0.45rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--gold);
  text-decoration: none;
  transition: all .3s;
}

.event-link-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.events-ticket {
  max-width: 420px;
  margin: 2rem auto 0;
}

.ticket-form-wrap {
  margin-top: 1rem;
}

.ticket-form-wrap .form-group {
  margin-bottom: 20px;
}

.ticket-form-wrap .t-input,
.ticket-form-wrap textarea {
  width: 100%;
  height: 50px;
  padding: 0 0 0 10px;
  background: transparent;
  border: 1px solid #FFEBCD;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: #FFEBCD;
  box-sizing: border-box;
  transition: all .3s;
  outline: none;
  opacity: 0.7;
}

.ticket-form-wrap textarea {
  height: auto;
  resize: vertical;
  padding: 12px 10px;
}

.ticket-form-wrap .t-input:focus,
.ticket-form-wrap textarea:focus {
  opacity: 1;
  border-color: var(--gold);
}

.ticket-form-wrap .t-input::placeholder,
.ticket-form-wrap textarea::placeholder {
  color: #FFEBCD;
  opacity: 0.5;
}

/* ── Delivery / Order page ────────────── */
.order-page-wrapper {
  padding: 20px 0;
}

.order-page-container {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
}

.order-summary-block {
  width: 560px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}

.order-summary-header {
  font-family: var(--font-menu);
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  min-height: 40px;
}

.order-item-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: #FFEBCD;
  text-align: left;
  flex: 1;
  line-height: 1.6;
}

.order-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}

.order-item-qty {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #FFEBCD;
  min-width: 30px;
  text-align: center;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: 1px solid #FFEBCD;
  background: transparent;
  color: #FFEBCD;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.order-item-price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  color: #FFEBCD;
  text-align: right;
  min-width: 80px;
  margin-left: 16px;
}

.order-divider {
  width: 100%;
  height: 1px;
  background-color: var(--gold);
  margin: 20px 0;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-total-label,
.order-total-value {
  font-family: var(--font-menu);
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--gold);
}

.empty-cart-button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.empty-cart-btn {
  width: 228px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all .3s;
  letter-spacing: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.empty-cart-btn:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.empty-cart-message {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #FFEBCD;
  opacity: 0.7;
  text-align: center;
  padding: 40px 0;
}

.checkout-form-block {
  width: 460px;
  flex-shrink: 0;
}

.checkout-form-header {
  font-family: var(--font-menu);
  font-weight: 600;
  font-size: 28px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  letter-spacing: 3px;
}

.checkout-form-block .form-group {
  margin-bottom: 20px;
}

.field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #FFEBCD;
  opacity: 0.6;
  margin-bottom: 8px;
}

.required-star {
  color: var(--gold);
  margin-left: 3px;
}

.checkout-form-block .t-input,
.checkout-form-block textarea,
.ticket-form-wrap .t-input,
.ticket-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(255, 235, 205, 0.5);
  border-radius: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: #FFEBCD;
  box-sizing: border-box;
  transition: border-color .3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.checkout-form-block textarea,
.ticket-form-wrap textarea {
  height: auto;
  resize: vertical;
  line-height: 1.4;
}

.checkout-form-block .t-input:focus,
.checkout-form-block textarea:focus,
.ticket-form-wrap .t-input:focus,
.ticket-form-wrap textarea:focus {
  border-color: var(--gold);
}

.checkout-form-block .t-input::placeholder,
.checkout-form-block textarea::placeholder,
.ticket-form-wrap .t-input::placeholder,
.ticket-form-wrap textarea::placeholder {
  color: rgba(255, 235, 205, 0.3);
}

.delivery-options, .payment-options {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 5px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  color: #FFEBCD;
}

.radio-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #FFEBCD;
  margin: 0;
}

.checkbox-group {
  margin-top: 24px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #FFEBCD;
  line-height: 1.6;
}

.checkbox-label input.t-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 235, 205, 0.5);
  background: transparent;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.checkbox-label input:checked ~ .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 11px;
  border: solid var(--gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.checkout-submit {
  width: 228px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: all .3s;
  letter-spacing: 2px;
}

.checkout-submit:hover {
  background: var(--gold);
  color: var(--bg-dark);
}

.checkout-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn .4s ease;
}

@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 235, 205, 0.15);
  padding: 60px 50px;
  max-width: 460px;
  width: 90%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp .4s ease;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-box-text {
  font-family: var(--font-menu);
  font-size: 1.5rem;
  font-weight: 400;
  color: #FFEBCD;
  line-height: 1.6;
  margin-bottom: 32px;
}

.modal-tg-link {
  display: inline-block;
  color: #FFEBCD;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 235, 205, 0.4);
  padding-bottom: 2px;
  transition: all .3s;
}

.modal-tg-link:hover {
  color: #fff;
  border-color: #fff;
}

.modal-close-btn {
  display: block;
  margin: 28px auto 0;
  padding: 12px 40px;
  background: transparent;
  border: 1px solid rgba(255, 235, 205, 0.3);
  color: #FFEBCD;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
}

.modal-close-btn:hover {
  background: rgba(255, 235, 205, 0.1);
  border-color: rgba(255, 235, 205, 0.5);
}

/* Карточка «Упс!» — как на 404, в т.ч. внутри модалки */
.page-404-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 235, 205, 0.15);
  padding: 2rem 3rem;
  text-align: center;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  animation: modalSlideUp .4s ease;
}

.modal-overlay .page-404-card {
  margin-top: 0;
}

.page-404-card h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.page-404-card p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 300;
  color: #FFEBCD;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

/* ── Responsive ─────────────────────────── */

/* ── Tablet / small laptop ────────────── */
@media (max-width: 1100px) {
  .order-page-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .order-summary-block,
  .checkout-form-block {
    width: 100%;
    max-width: 560px;
  }
}

/* ── Tablet portrait ──────────────────── */
@media (max-width: 768px) {
  .container { padding: 0 1.2rem; }

  /* Header */
  :root {
    --header-btn-h: 46px;
    --header-h: 46px;
  }
  .site-header { padding: 0 0 0 1.2rem; }
  .btn-main { width: 220px; font-size: 0.9rem; padding: 0 1.5rem; }
  .lang-toggle { font-size: 0.65rem; }

  /* Hero */
  .hero { padding: 1.5rem 1rem; }
  .hero-backdrop { top: calc(var(--header-h) + 2rem); padding: 0 1rem; }
  .hero .page-heading__img { height: clamp(120px, 30vw, 240px); }
  .hero .hero-logo__img { height: clamp(120px, 30vw, 240px); }
  .hero-backdrop { top: calc(var(--header-h) + 2rem); gap: 0.65rem; }
  .page-heading__img--sub { height: clamp(100px, 22vw, 160px); }
  .nav-panel { padding: 1.5rem 2rem; max-width: 280px; }
  .nav-panel .nav-link { font-size: 1rem; }
  .hero-glass-image { height: 140vh; margin-top: -26rem; }

  /* Page titles */
  .page-title .venzel { font-size: clamp(4rem, 14vw, 8rem); }
  .page-title .rest { font-size: clamp(1.8rem, 5.5vw, 3.5rem); }
  main > .container > .page-title .venzel { font-size: clamp(4rem, 12vw, 6.5rem); }
  main > .container > .page-title .rest { font-size: clamp(1.8rem, 5vw, 3rem); }
  main > .container > .page-title { margin-bottom: 2.5rem; }
  .page-heading__img { height: clamp(44px, 10vw, 72px); }
  .page-heading__img--sub { height: clamp(100px, 22vw, 160px); }
  main > .container > .page-heading { margin-bottom: 2rem; }

  /* Manifesto */
  .manifesto { padding: 2rem 2rem; max-width: 90%; }
  .manifesto .headline { font-size: 0.95rem; }
  .manifesto p { font-size: 0.95rem; }

  /* Gallery */
  .gallery-grid {
    height: 460px;
    grid-template-columns: 260px 170px 260px 170px 260px 260px 230px 190px 190px 260px;
    gap: 14px;
    padding: 1rem;
  }

  /* Story */
  .story-intro {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
  }
  .story-intro > .story-title { grid-column: 1; grid-row: auto; order: 1; margin-bottom: 0; }
  .story-portrait { max-width: 180px; max-height: 260px; margin: 0 auto; grid-column: 1; grid-row: auto; order: 2; }
  .story-intro-right { gap: 2rem; text-align: center; grid-column: 1; grid-row: auto; order: 3; }
  .section-title.story-title { text-align: center; font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .story-text {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
  }
  .story-text p { margin-bottom: 0.7rem; }
  .story-text > br { display: block; margin-bottom: 0.5rem; }
  .story-ruins {
    flex-wrap: nowrap;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 0;
    gap: 1rem;
    position: relative;
    z-index: 1;
  }
  .story-ruins .story-frame {
    width: calc(50% - 0.5rem);
    height: auto;
    aspect-ratio: 3 / 2;
  }
  .story-build { margin-top: 3rem; }
  .story-build > .story-center-text:first-child {
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  .story-build-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
  }
  .sf-1, .sf-3 { margin-top: 0; max-height: none; }
  .sf-1 { grid-column: 1; grid-row: 1; }
  .sf-2 { grid-column: 2; grid-row: 1; }
  .sf-3 { grid-column: 1; grid-row: 2; }
  .sf-4 { grid-column: 2; grid-row: 2; }
  .story-build-grid .story-frame { aspect-ratio: 1 / 1; height: auto; }
  .story-center-text {
    font-size: 0.9rem;
    margin: 2rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
  }

  /* Partners */
  .partner-grid {
    grid-template-columns: 1fr 120px;
    max-width: 360px;
  }
  .partner-logo { width: 120px; height: 120px; }
  .partner-photos { grid-template-columns: 1fr 120px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; gap: 1rem; }
  .review-card { min-height: auto; padding: 1.4rem 1.2rem; }

  /* Contacts */
  .contacts-layout { grid-template-columns: 1fr; }
  .map-wrap { height: 280px; }

  /* Menu tabs & categories */
  .menu-tab { padding: 0.5rem 1.2rem; font-size: 0.65rem; }
  .category-btn { font-size: 1rem; padding: 0.5rem 1rem; }

  /* Menu cards */
  .menu-card { min-height: 130px; }
  .menu-card-img { width: 110px; height: 110px; margin: 10px; }
  .menu-card-body { padding: 1rem 1rem 0.3rem 1rem; }
  .menu-card-body h4 { font-size: 1.15rem; }
  .menu-card-body .desc { font-size: 0.7rem; }
  .menu-card-meta { padding: 0.3rem 1rem 0.8rem 1rem; gap: 1.5rem; }
  .btn-cart { padding: 0.7rem 1.2rem; font-size: 0.65rem; margin: 0 1rem; }

  /* Menu table */
  .menu-table td { padding: 0.55rem 0.3rem; }
  .menu-table .item-name { font-size: 0.72rem; }
  .menu-table .item-price { font-size: 0.78rem; }
  .menu-table .item-vol { font-size: 0.65rem; min-width: 3.5rem; }

  /* Events */
  .event-hero-card { max-width: 300px; }
  .event-card { grid-template-columns: 130px 1fr; }
  .event-card-img { min-height: 130px; }
  .event-card-body { padding: 1rem; }
  .event-card-body h3 { font-size: 0.72rem; }
  .event-card-body p { font-size: 0.65rem; }

  /* Delivery / Order */
  .order-page-wrapper { padding: 0 1rem 10px; }
  .order-page-container { padding: 0 0.5rem; }
  .order-summary-block { width: 100%; }
  .checkout-form-block { width: 100%; }
  .order-summary-header, .checkout-form-header { font-size: 22px; letter-spacing: 2px; }

  /* Cart */
  .cart-float { width: 52px; height: 52px; bottom: 1.2rem; right: 1.2rem; }
  .cart-badge { width: 18px; height: 18px; font-size: 0.6rem; top: -4px; right: -4px; }
  .cart-toast { bottom: 5rem; right: 1.2rem; }
  .cart-toast-item { font-size: 0.62rem; max-width: 220px; }

  /* Modal */
  .modal-box { padding: 40px 30px; }
  .modal-box-text { font-size: 1.2rem; }

  /* Footer */
  .footer-icons a { width: 42px; height: 42px; }
}

/* ── Mobile phone ─────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 0.8rem; }
  .section { padding: 3rem 0; }

  /* Header */
  :root {
    --header-top: calc(0.8rem + env(safe-area-inset-top, 0px));
    --header-btn-h: 42px;
    --header-h: 42px;
  }
  .site-header {
    padding-left: 0.8rem;
    padding-right: 0;
  }
  .btn-main { width: 180px; font-size: 0.78rem; padding: 0 1.2rem; letter-spacing: 0.12em; }
  .lang-toggle {
    right: var(--header-top);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  /* Hero */
  .hero { padding: 1rem 0.8rem; min-height: 100svh; }
  .hero-backdrop {
    top: calc(var(--header-h) + 1.35rem);
    padding: 0 0.8rem;
    gap: 0.55rem;
  }
  .hero .page-title .venzel { font-size: clamp(5rem, 22vw, 8rem); }
  .hero .page-title .rest { font-size: clamp(2rem, 8vw, 4rem); }
  .hero .page-heading__img { height: clamp(100px, 28vw, 200px); }
  .hero .hero-logo__img { height: clamp(106px, 29.7vw, 198px); }
  .page-heading__img--sub { height: clamp(100px, 22vw, 160px); }
  .menu-page .venzel-page-title { margin-top: 1.75rem; margin-bottom: 1.75rem; }
  .sub-page,
  .event-page-main { padding-top: calc(var(--header-top) + var(--header-h) + 0.5rem) !important; }
  .nav-panel {
    padding: 1.45rem 1.82rem;
    max-width: 290px;
    margin-top: 1.31rem;
  }
  .nav-panel .nav-link {
    font-size: 0.97rem;
    letter-spacing: 0.12em;
    padding: 0.43rem 0;
  }
  .nav-panel-links { gap: 0.61rem; }
  .hero-glass-image { height: 157.5vh; margin-top: -19.4rem; }

  /* Page titles */
  .page-title .venzel { font-size: clamp(3rem, 13vw, 5rem); }
  .page-title .rest { font-size: clamp(1.3rem, 4.5vw, 2.5rem); }
  main > .container > .page-title .venzel { font-size: clamp(3.2rem, 12vw, 5rem); }
  main > .container > .page-title .rest { font-size: clamp(1.4rem, 4.5vw, 2.4rem); }
  main > .container > .page-title { margin-top: -0.5rem; margin-bottom: 2rem; }
  main > .container > .page-heading { margin-bottom: 1.75rem; }

  /* Venzel titles — menu stays large; sub-pages −50% */
  main > .container > .page-title.venzel-page-title,
  .order-page-wrapper .page-title.venzel-page-title,
  .menu-page .page-title.venzel-page-title {
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  main.sub-page > .container > .page-title.venzel-page-title .venzel,
  main.sub-page > .order-page-wrapper > .page-title.venzel-page-title .venzel {
    font-size: clamp(3.2rem, 12vw, 5rem);
    line-height: 1;
  }
  main.sub-page > .container > .page-title.venzel-page-title .rest,
  main.sub-page > .order-page-wrapper > .page-title.venzel-page-title .rest {
    font-size: clamp(1.4rem, 4.5vw, 2.4rem);
  }
  .menu-page .page-title.venzel-page-title .venzel {
    font-size: clamp(6.4rem, 24vw, 10rem);
    line-height: 1;
  }
  .menu-page .page-title.venzel-page-title .rest {
    font-size: clamp(2.8rem, 9vw, 4.8rem);
  }

  /* Manifesto */
  #manifestoSection { margin-top: -11vh; min-height: 100vh; }
  .manifesto { padding: 1.5rem 1.2rem; max-width: 95%; }
  .manifesto .headline { font-size: 0.82rem; line-height: 1.6; margin-bottom: 1rem; }
  .manifesto p { font-size: 0.85rem; line-height: 1.6; }

  /* Gallery */
  .gallery-section { height: 200vh; }
  .gallery-sticky { align-items: center; }
  .gallery-grid {
    height: min(56vh, 520px);
    min-height: 420px;
    grid-template-columns: 220px 145px 220px 145px 220px 220px 195px 160px 160px 220px;
    gap: 12px;
    padding: 0.5rem 0.8rem;
  }
  .gallery-frame { padding: 8px; }

  /* Story */
  .story-intro { gap: 1.5rem; margin-bottom: 2.5rem; }
  .story-intro > .story-title { grid-column: 1; grid-row: auto; order: 1; margin-bottom: 0; }
  .story-portrait { max-width: 150px; max-height: 220px; margin: 0 auto 0; grid-column: 1; grid-row: auto; order: 2; }
  .story-intro-right { gap: 1rem; padding: 0 0.8rem 1rem; grid-column: 1; grid-row: auto; order: 3; }
  .section-title { font-size: clamp(1.2rem, 3.5vw, 1.8rem); }
  .section-title.story-title { text-align: center; margin-bottom: 0; font-size: clamp(1.8rem, 7vw, 2.6rem); }
  .story-text {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .story-text p {
    font-size: 0.88rem;
    line-height: 1.75;
    margin-bottom: 0.8rem;
  }
  .story-text > br { display: block; content: ""; margin-bottom: 0.6rem; }
  .story-intro, .story-intro-right { overflow: visible; }
  .story-ruins {
    margin-top: 1rem;
    margin-bottom: 1rem;
    gap: 0.8rem;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  .story-ruins .story-frame {
    width: calc(50% - 0.4rem);
    height: auto;
    aspect-ratio: 3 / 2;
    flex-shrink: 1;
  }
  .story-build { margin-top: 2.5rem; padding-top: 0; }
  .story-build > .story-center-text:first-child {
    margin: 0 auto 2rem;
    padding: 0 0.8rem;
    position: relative;
    z-index: 2;
  }
  .story-build-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.8rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
  }
  .sf-1, .sf-3 { margin-top: 0; max-height: none; grid-row: auto; }
  .sf-1 { grid-column: 1; grid-row: 1; }
  .sf-2 { grid-column: 2; grid-row: 1; }
  .sf-3 { grid-column: 1; grid-row: 2; }
  .sf-4 { grid-column: 2; grid-row: 2; }
  .story-build-grid .story-frame { aspect-ratio: 1 / 1; height: auto; }
  .story-center-text {
    font-size: 0.88rem;
    margin: 1.8rem auto;
    padding: 0 0.8rem;
    line-height: 1.75;
    position: relative;
    z-index: 2;
  }

  /* Partners */
  .partner-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 340px;
    gap: 0.6rem;
    text-align: center;
    padding: 0 0.5rem;
  }
  .partner-logo {
    order: 1;
    width: 120px; height: 120px;
    margin: 0 auto;
  }
  .partner-name {
    order: 2;
    font-size: 0.95rem;
    text-align: center;
    width: 100%;
  }
  .partner-desc {
    order: 3;
    font-size: 0.82rem;
    text-align: center;
    width: 100%;
  }
  .partner-desc br { display: none; }
  .partner-photos {
    order: 4;
    display: flex;
    align-items: stretch;
    gap: 0.6rem;
    margin-top: 0.3rem;
    padding-bottom: 0.5rem;
    width: 100%;
  }
  .partner-ph {
    flex: 1.3;
    height: auto;
    aspect-ratio: auto;
    min-height: 0;
  }
  .partner-pv {
    flex: 0.7;
    height: auto;
    aspect-ratio: auto;
    min-height: 0;
  }
  .partner-photos .story-frame {
    overflow: hidden;
  }
  .partner-photos .story-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; max-width: 100%; gap: 0.8rem; }
  .review-card { padding: 1.2rem 1rem; }
  .review-text { font-size: 0.82rem; }
  .reviews-meta { gap: 0.4rem; }
  .reviews-rating { font-size: 1.1rem; }
  .reviews-score { font-size: 1.2rem; }
  .reviews-count { font-size: 0.75rem; }

  /* Contacts */
  .contact-info { padding: 1.5rem 1.2rem; gap: 0.8rem; }
  .contact-value { font-size: 1.1rem; }
  .map-wrap { height: 240px; }

  /* Menu tabs & categories */
  .menu-tabs { margin-top: 1rem; margin-bottom: 0.3rem; gap: 0; flex-wrap: wrap; justify-content: center; }
  .menu-tab { padding: 0.4rem 1rem; font-size: 0.6rem; letter-spacing: 0.12em; }
  .category-list { margin-top: 0.8rem; gap: 0.1rem; }
  .category-btn { font-size: 0.92rem; padding: 0.45rem 0.9rem; letter-spacing: 0.15em; }

  /* Menu cards */
  .menu-items { gap: 0.6rem; margin-top: 1.2rem; }
  .menu-card {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
  }
  .menu-card-img { grid-row: 1 / 3; width: 70px; height: 70px; margin: 8px; }
  .menu-card-body { grid-column: 2; padding: 0.6rem 0.6rem 0.2rem 0; }
  .menu-card-body h4 { font-size: 0.88rem; margin-bottom: 0.2rem; }
  .menu-card-body .desc { font-size: 0.6rem; line-height: 1.4; }
  .menu-card-meta { grid-column: 2; padding: 0.2rem 0.6rem 0.5rem 0; gap: 1rem; }
  .menu-card-meta .weight { font-size: 0.8rem; }
  .menu-card-meta .price { font-size: 0.85rem; }
  .btn-cart {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 0 8px 8px;
    padding: 0.5rem 1rem;
    font-size: 0.6rem;
    text-align: center;
    justify-self: stretch;
  }

  /* Menu table */
  .menu-table { margin-top: 0.5rem; }
  .menu-table td { padding: 0.45rem 0.2rem; font-size: 0.72rem; }
  .menu-table .item-name { font-size: 0.66rem; }
  .menu-table .item-desc { font-size: 0.55rem; }
  .menu-table .item-vol { font-size: 0.58rem; min-width: 2.8rem; }
  .menu-table .item-price { font-size: 0.72rem; }
  .menu-table-category { font-size: 0.7rem; padding: 0.8rem 0 0.4rem; }

  /* Events */
  .event-hero-card { max-width: 260px; }
  .events-section-title { font-size: 0.65rem; letter-spacing: 0.15em; }
  .event-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .event-card-img {
    grid-row: auto;
    grid-column: 1;
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 380px;
    min-height: auto;
    object-fit: cover;
    object-position: center center;
  }
  .event-card-body { padding: 0.8rem 1rem 0.5rem; }
  .event-card-body h3 { font-size: 0.68rem; }
  .event-card-body p { font-size: 0.62rem; }
  .event-cta-btn { padding: 0.6rem 1.6rem; font-size: 0.65rem; }
  .event-link-btn { font-size: 0.55rem; padding: 0.4rem 1.2rem; }

  /* Delivery / Order */
  .order-page-wrapper { padding: 0 1rem 10px; }
  .order-page-container { gap: 30px; padding: 0; }
  .order-summary-header, .checkout-form-header { font-size: 18px; letter-spacing: 1.5px; margin-bottom: 20px; }
  .order-item-name { font-size: 0.68rem; }
  .order-item-price { font-size: 0.68rem; min-width: 60px; margin-left: 10px; }
  .order-item-controls { gap: 5px; margin-left: 10px; }
  .qty-btn { width: 24px; height: 24px; font-size: 15px; }
  .order-total-label, .order-total-value { font-size: 1.4rem; }
  .field-label { font-size: 10px; letter-spacing: 1px; }
  .checkout-form-block .t-input,
  .checkout-form-block textarea,
  .ticket-form-wrap .t-input,
  .ticket-form-wrap textarea { padding: 11px 12px; font-size: 13px; }
  .radio-label { font-size: 12px; gap: 8px; }
  .radio-label input { width: 16px; height: 16px; }
  .checkbox-label { font-size: 11px; }
  .delivery-options, .payment-options { gap: 16px; }
  .checkout-submit { width: 100%; max-width: 280px; font-size: 13px; }
  .empty-cart-btn { width: 100%; max-width: 260px; font-size: 0.78rem; }

  /* Cart */
  .cart-float { width: 48px; height: 48px; bottom: 1rem; right: 1rem; }
  .cart-float svg { width: 22px; height: 22px; }
  .cart-badge { width: 16px; height: 16px; font-size: 0.55rem; top: -3px; right: -3px; }
  .cart-toast { bottom: 4.5rem; right: 1rem; }
  .cart-toast-item { font-size: 0.58rem; max-width: 180px; padding: 0.4rem 0.8rem; }

  /* Modal */
  .modal-box { padding: 32px 20px; max-width: 92%; }
  .modal-box-text { font-size: 1.05rem; margin-bottom: 24px; }
  .modal-tg-link { font-size: 0.72rem; }
  .modal-close-btn { padding: 10px 32px; font-size: 0.68rem; }

  /* Footer */
  .footer-icons { gap: 0.8rem; }
  .footer-icons a { width: 38px; height: 38px; }
  .footer-icons a svg { width: 18px; height: 18px; }
}

/* ══════════════════════════════════════════
   EVENT GALLERY — Carousel + Lightbox
   ══════════════════════════════════════════ */

.event-page-main > .container > .page-title,
.event-page-main > .container > .page-heading {
  margin-top: 0;
}

.event-intro {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  padding: 2rem 2.5rem;
}

.event-intro p {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 300;
  color: #FFEBCD;
  line-height: 1.85;
  margin-bottom: 0.5rem;
}

.event-intro p:last-child { margin-bottom: 0; }

.event-intro .event-date {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ── Showcase: 3-panel carousel ──────────── */
.eg-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
  height: 520px;
  padding: 0 70px;
}

.eg-frame {
  overflow: hidden;
  padding: 8px;
  flex-shrink: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.08) 50%,
    rgba(255, 255, 255, 0.03) 100%
  );
  backdrop-filter: blur(8px) saturate(1.2);
  -webkit-backdrop-filter: blur(8px) saturate(1.2);
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s;
}

.eg-frame:hover {
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.eg-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease;
}

.eg-frame.eg-center {
  flex: 0 0 55%;
  max-width: 600px;
  height: 100%;
}

.eg-frame.eg-side {
  flex: 0 0 18%;
  max-width: 200px;
  height: 72%;
}

/* ── Arrows ──────────────────────────────── */
.eg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #FFEBCD;
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eg-nav:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.eg-nav-prev { left: 8px; }
.eg-nav-next { right: 8px; }

/* ── Counter ─────────────────────────────── */
.eg-counter {
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(255, 235, 205, 0.5);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* ── Thumbnail strip ─────────────────────── */
.eg-thumbs {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 1.2rem;
  overflow-x: auto;
  padding: 0.4rem 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.15) transparent;
}

.eg-thumbs::-webkit-scrollbar { height: 4px; }
.eg-thumbs::-webkit-scrollbar-track { background: transparent; }
.eg-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 4px; }

.eg-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.25s, box-shadow 0.25s;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 3px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
}

.eg-thumb.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--gold), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.eg-thumb:hover { opacity: 0.7; }

/* ── Fullscreen lightbox (click to expand) ── */
.eg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.eg-lightbox.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.eg-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
}

.eg-lb-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #FFEBCD;
  font-size: 2.4rem;
  cursor: pointer;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}

.eg-lb-close:hover { opacity: 1; }

/* ── Schema lightbox (booking page) ── */
.schema-lightbox {
  flex-direction: column;
  padding: 3.5rem 1rem 1.5rem;
}

.schema-lb-caption {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 5rem);
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 235, 205, 0.75);
  margin: 0;
  text-align: center;
  pointer-events: none;
}

.schema-lb-body {
  flex: 1;
  width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: pan-x pan-y pinch-zoom;
}

.schema-lightbox img {
  max-width: min(96vw, 1400px);
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .schema-lightbox {
    padding: 3rem 0.5rem 1rem;
  }

  .schema-lightbox img {
    max-width: 98vw;
    max-height: 80vh;
  }
}

/* ── Mobile: event gallery ───────────────── */
@media (max-width: 768px) {
  .event-intro { padding: 1.4rem 1.6rem; max-width: 90%; }
  .event-intro p { font-size: 0.85rem; }

  .eg-showcase {
    flex-wrap: wrap;
    height: auto;
    gap: 8px;
    padding: 0 50px;
    max-width: 500px;
  }
  .eg-frame.eg-center {
    flex: 0 0 100%;
    max-width: 100%;
    height: 240px;
    order: -1;
  }
  .eg-frame.eg-side {
    flex: 1 1 calc(50% - 4px);
    max-width: calc(50% - 4px);
    height: 180px;
  }
  .eg-nav { width: 36px; height: 36px; font-size: 1.2rem; }
  .eg-nav-prev { left: 6px; }
  .eg-nav-next { right: 6px; }
  .eg-thumb { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .event-intro { padding: 1.2rem 1.2rem; max-width: 95%; }
  .event-intro p { font-size: 0.82rem; line-height: 1.7; }

  .eg-showcase {
    gap: 6px;
    padding: 0 44px;
  }
  .eg-frame { padding: 5px; }
  .eg-frame.eg-center { height: 210px; }
  .eg-frame.eg-side { height: 160px; }
  .eg-nav { width: 32px; height: 32px; font-size: 1rem; }
  .eg-nav-prev { left: 4px; }
  .eg-nav-next { right: 4px; }
  .eg-thumb { width: 42px; height: 42px; }
  .eg-counter { font-size: 0.7rem; }
}
