/* =========================================================
   ПЯТНИЦА index4 — Meat Market energy + split-screen
   ========================================================= */

:root {
  --red: #c8102e;
  --red-deep: #8f0b20;
  --red-hot: #e11d3a;
  --ink: #0d0d0f;
  --ink-soft: #1a1a1f;
  --paper: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --glass: rgba(20, 20, 24, 0.55);
  --glass-border: rgba(255, 255, 255, 0.14);
  --gold: #f5c518;
  --pad: clamp(1rem, 3.5vw, 2.5rem);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--paper);
  background: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

em {
  font-style: normal;
}

/* ---------- Top meta (legacy helpers kept for hours tip) ---------- */
.hours-tip {
  position: relative;
}

.hours-tip-btn {
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--glass-border);
  color: #fff;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.25s var(--ease);
}

.hours-tip-btn svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hours-tip-btn:hover,
.hours-tip:focus-within .hours-tip-btn {
  background: #fff;
  color: var(--red);
  transform: translateY(-1px);
}

.hours-tip-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  z-index: 50;
  min-width: 11.5rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.85rem;
  background: #15171d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}

.hours-tip--header .hours-tip-panel {
  left: auto;
  right: 0;
}

.hours-tip-panel strong {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.1rem;
}

.hours-tip-panel span {
  font-size: 0.82rem;
  font-weight: 650;
  color: #fff;
  white-space: nowrap;
}

.hours-tip:hover .hours-tip-panel,
.hours-tip:focus-within .hours-tip-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem 1rem;
  min-height: 3.4rem;
  padding: 0.4rem var(--pad);
  background: rgba(13, 13, 15, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.logo {
  display: inline-flex;
  align-items: center;
  z-index: 2;
  line-height: 0;
}

.logo-img {
  width: auto;
  height: clamp(1.45rem, 2.2vw, 1.7rem);
  display: block;
}

.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.05rem;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-pill a {
  padding: 0.4rem 0.7rem;
  border-radius: 0.55rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
  transition: background 0.2s, color 0.2s;
}

.nav-pill a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: end;
}

.header-phone {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  transition: color 0.2s;
}

.header-phone:hover {
  color: #fff;
}

.hours-tip--header {
  display: block;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.48rem 0.95rem;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  transition: transform 0.25s var(--ease), background 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 18px rgba(200, 16, 46, 0.28);
}

.btn-login:hover {
  transform: translateY(-1px);
  background: var(--red-hot);
}

.burger {
  display: none;
  position: relative;
  z-index: 70;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.65rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.burger span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1rem;
  height: 2px;
  margin-left: -0.5rem;
  background: #fff;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

.burger span:first-child {
  transform: translateY(-3.5px);
}

.burger span:last-child {
  transform: translateY(3.5px);
}

.burger[aria-expanded="true"] span:first-child {
  transform: translateY(0) rotate(45deg);
}

.burger[aria-expanded="true"] span:last-child {
  transform: translateY(0) rotate(-45deg);
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: flex;
  justify-content: flex-end;
  padding: 3.5rem 0.65rem 0.75rem;
  background: rgba(8, 8, 10, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.drawer[hidden] {
  display: none !important;
}

.drawer-panel {
  width: min(100%, 18.5rem);
  max-height: calc(100svh - 4.1rem);
  margin-left: auto;
  padding: 0.55rem;
  border-radius: 1rem;
  background: rgba(18, 18, 22, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  overflow: auto;
}

.drawer a {
  display: block;
  padding: 0.62rem 0.75rem;
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 750;
  letter-spacing: 0;
  border-radius: 0.65rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.drawer a:not(.drawer-cta):hover,
.drawer a:not(.drawer-cta):active {
  background: rgba(255, 255, 255, 0.07);
}

.drawer-cta {
  margin-top: 0.35rem;
  text-align: center;
  border-radius: var(--radius-pill) !important;
  background: var(--red);
  color: #fff !important;
  padding: 0.7rem 0.9rem !important;
  font-family: var(--font) !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  width: auto;
}

.drawer-meta {
  margin-top: 0.55rem;
  padding: 0.65rem 0.7rem 0.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.35;
}

.drawer-meta a {
  border: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.drawer-meta p {
  margin: 0;
}

.drawer-socials {
  display: flex;
  gap: 0.4rem;
  padding-top: 0.15rem;
}

.drawer-socials a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  color: #fff;
}

.drawer-socials svg {
  width: 1.15rem;
  height: 1.15rem;
}

body.is-drawer-open .header {
  z-index: 70;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s, background 0.25s;
}

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

.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.btn-red {
  background: var(--red-hot);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.btn-red:hover {
  background: #ff2a4a;
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ---------- HERO / SPLIT ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - 3.4rem);
  display: flex;
  flex-direction: column;
  padding: 0.65rem var(--pad) 1.1rem;
  background:
    radial-gradient(ellipse 70% 50% at 50% -10%, rgba(200, 16, 46, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 80%, rgba(245, 197, 24, 0.05), transparent 50%),
    linear-gradient(180deg, #16161a 0%, var(--ink) 55%, #09090b 100%);
  overflow: hidden;
}

.hero-bg-word {
  position: absolute;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  font-family: var(--display);
  font-size: clamp(6rem, 28vw, 22rem);
  line-height: 0.8;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
}

.hero-split {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  min-height: min(68svh, 640px);
}

.zone {
  position: relative;
  overflow: hidden;
  border-radius: 1.6rem;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.9s var(--ease), opacity 0.9s var(--ease);
}

.zone.is-in {
  transform: none;
  opacity: 1;
}

.zone-pool {
  transition-delay: 0.12s;
}

.zone-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.zone-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.2s var(--ease);
}

.zone:hover .zone-media img {
  transform: scale(1.14);
}

.zone-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 40%, rgba(0, 0, 0, 0.78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 40%);
}

.zone-bowl .zone-scrim {
  background:
    linear-gradient(180deg, rgba(10, 20, 50, 0.2) 0%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(135deg, rgba(200, 16, 46, 0.25), transparent 50%);
}

.zone-pool .zone-scrim {
  background:
    linear-gradient(180deg, rgba(15, 30, 25, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%),
    linear-gradient(225deg, rgba(0, 0, 0, 0.2), transparent 45%);
}

.zone-body {
  position: relative;
  z-index: 2;
  padding: clamp(1.25rem, 3vw, 2.25rem);
  width: 100%;
}

.zone-tag {
  display: inline-block;
  margin-bottom: 0.55rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.zone-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.zone-lead {
  margin: 0.85rem 0 1.25rem;
  max-width: 28ch;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  font-weight: 700;
}

.zone-body .btn {
  margin-top: 0.25rem;
}

.glass-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-pill);
  background: rgba(20, 20, 24, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  animation: floatBadge 4.5s ease-in-out infinite;
}

.glass-badge i {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--red);
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 900;
}

.badge-a {
  top: 1.25rem;
  right: 1.25rem;
}

.badge-b {
  top: 1.25rem;
  left: 1.25rem;
  animation-delay: 0.8s;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Duo morph (billiard ↔ bowling) ---------- */
.duo {
  position: relative;
  padding: clamp(3.25rem, 7vw, 5.5rem) var(--pad);
  background:
    radial-gradient(ellipse 70% 55% at 85% 40%, rgba(200, 16, 46, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 45% at 10% 80%, rgba(245, 197, 24, 0.08), transparent 55%),
    var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.duo-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.duo-copy {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.duo-copy.reveal.is-in {
  opacity: 1;
  transform: none;
}

.duo-copy .eyebrow {
  color: var(--gold);
}

.duo-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.duo-copy h2 span {
  color: var(--red-hot);
}

.duo-lead {
  margin: 1rem 0 0;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}

.duo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.duo-stage {
  position: relative;
  width: min(100%, 840px);
  justify-self: end;
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  transition-delay: 0.1s;
}

.duo-stage.reveal.is-in {
  opacity: 1;
  transform: none;
}

.duo-frame {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0a0a0c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 28px 60px rgba(0, 0, 0, 0.45);
}

.duo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 70%, rgba(0, 0, 0, 0.28) 100%);
}

.duo-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.duo-caption {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Gallery (screen 2) ---------- */
.gallery {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: #f3f3f5;
  color: var(--ink);
}

.gallery-head {
  width: min(100%, 1100px);
  margin: 0 auto 2.25rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.gallery-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.gallery-head h2 span {
  color: var(--red);
}

.gallery-lead {
  margin: 0.9rem 0 0;
  max-width: 40ch;
  color: rgba(13, 13, 15, 0.65);
  font-size: 1.05rem;
}

.gallery-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  min-height: min(62vw, 520px);
  background: #111;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.shot.reveal.is-in {
  opacity: 1;
  transform: none;
}

.shot-pool {
  transition-delay: 0.12s;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: min(62vw, 520px);
  transition: transform 1.1s var(--ease);
}

.shot:hover img {
  transform: scale(1.05);
}

.shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  color: #fff;
}

.shot figcaption span {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.shot-bowl figcaption span { color: #9ae6ff; }
.shot-pool figcaption span { color: #9dffb0; }

.shot figcaption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1;
}

.shot figcaption p {
  margin: 0.45rem 0 0;
  max-width: 32ch;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Shared section heads ---------- */
.section-head {
  width: min(100%, 1100px);
  margin: 0 auto 2rem;
}

.section-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
}

.section-head.on-dark h2 {
  color: #fff;
}

.section-lead {
  margin: 0.85rem 0 0;
  max-width: 48ch;
  color: rgba(13, 13, 15, 0.62);
  font-size: 1.02rem;
}

.section-head.on-dark .section-lead {
  color: rgba(255, 255, 255, 0.65);
}

.section-head.on-dark .eyebrow {
  color: #ff6b84;
}

/* ---------- Advantages ---------- */
.advantages {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: #f3f3f5;
  color: var(--ink);
}

.adv-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.adv-item {
  padding: 1.4rem 1.25rem 1.55rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.adv-item.reveal.is-in {
  opacity: 1;
  transform: none;
}

.adv-item:nth-child(2) { transition-delay: 0.08s; }
.adv-item:nth-child(3) { transition-delay: 0.14s; }
.adv-item:nth-child(4) { transition-delay: 0.2s; }

.adv-icon {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.95rem;
  border-radius: 0.9rem;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
}

.adv-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.adv-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.adv-item p {
  margin: 0;
  color: rgba(13, 13, 15, 0.65);
  font-size: 0.95rem;
}

/* ---------- Cafe menu ---------- */
.menu-cafe {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background:
    linear-gradient(180deg, #f7f4ef 0%, #efe8de 100%);
  color: var(--ink);
}

.menu-cafe .section-head {
  color: var(--ink);
}

.menu-cafe .section-lead {
  color: rgba(13, 13, 15, 0.62);
}

.menu-preview {
  width: min(100%, 1180px);
  margin: 0 auto 1.35rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.menu-preview-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 1.15rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(13, 13, 15, 0.08);
  box-shadow: 0 10px 28px rgba(20, 12, 8, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.menu-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20, 12, 8, 0.1);
}

.menu-preview-media {
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse 80% 70% at 50% 40%, rgba(255, 255, 255, 0.55), transparent 70%),
    linear-gradient(160deg, #efe6da 0%, #e4d8c8 100%);
  overflow: hidden;
}

.menu-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s var(--ease);
}

.menu-preview-card:hover .menu-preview-media img {
  transform: scale(1.04);
}

.menu-preview-body {
  display: grid;
  gap: 0.4rem;
  padding: 0.95rem 1rem 1.05rem;
  align-content: start;
}

.menu-preview-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.menu-preview-body h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.25;
  text-transform: none;
  color: var(--ink);
}

.menu-preview-body p {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(13, 13, 15, 0.58);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-preview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.menu-preview-row strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
}

.menu-preview-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.2rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s;
}

.menu-preview-row a:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.menu-cafe-actions {
  width: min(100%, 1180px);
  margin: 0 auto 1.5rem;
  display: grid;
  justify-items: center;
  gap: 0.45rem;
  text-align: center;
}

.menu-cafe-actions p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(13, 13, 15, 0.55);
}

.menu-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: 0.55rem;
}

.menu-link {
  display: grid;
  grid-template-columns: 4.8rem 1fr auto;
  gap: 0.9rem 1rem;
  align-items: center;
  padding: 0.55rem 1rem 0.55rem 0.55rem;
  border-radius: 1rem;
  background: rgba(13, 13, 15, 0.04);
  border: 1px solid rgba(13, 13, 15, 0.08);
  color: var(--ink);
  transition: background 0.25s, transform 0.25s var(--ease), border-color 0.25s;
}

.menu-link-cover {
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 0.75rem;
  object-fit: cover;
  display: block;
}

.menu-link-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.menu-link strong {
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}

.menu-link-copy span {
  color: rgba(13, 13, 15, 0.55);
  font-size: 0.9rem;
  font-weight: 600;
}

.menu-link em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.menu-link:hover {
  background: #fff;
  border-color: rgba(200, 16, 46, 0.25);
  transform: translateY(-2px);
}

/* ---------- Prices ---------- */
.prices {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: #000;
  color: #fff;
}

.price-cal {
  width: min(100%, 920px);
  margin: 0 auto;
  display: grid;
  gap: 1.35rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.price-cal.reveal.is-in {
  opacity: 1;
  transform: none;
}

.cal {
  width: 100%;
}

.cal-head {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  margin-bottom: 0.65rem;
  text-align: center;
  font-size: clamp(0.78rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5c5c5c;
}

.cal-body {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.cal-block {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.35rem;
  min-height: 7.5rem;
  padding: 1rem 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
}

.cal-block--4 { grid-column: span 4; }
.cal-block--2 { grid-column: span 2; }
.cal-block--1 { grid-column: span 1; }

.cal-days {
  display: none;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8d8d8d;
}

.cal-block.is-peak {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.05);
}

.cal-price {
  font-family: var(--font);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.cal-meta,
.cal-hours {
  font-size: 0.82rem;
  line-height: 1.3;
  color: #8d8d8d;
}

.cal-hours {
  color: #b5b5b5;
  font-variant-numeric: tabular-nums;
}

.price-extras {
  display: grid;
  gap: 0.55rem;
}

.price-extra {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1.05rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.price-extra.is-vip {
  border-color: rgba(255, 107, 132, 0.55);
  background: rgba(200, 16, 46, 0.16);
}

.price-extra-mark {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.45rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.price-extra.is-vip .price-extra-mark {
  background: #fff;
  color: var(--red);
}

.price-extra-copy {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}

.price-extra-copy strong {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.25;
}

.price-extra-copy span {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.35;
}

.price-extra.is-vip .price-extra-copy span {
  color: rgba(255, 220, 226, 0.78);
}

.price-note {
  margin: 0;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.45;
  color: #6e6e6e;
}

.prices-cta {
  width: min(100%, 920px);
  margin: 1.75rem auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 0.7rem;
  padding: 0.7rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.22), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.02));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.prices-cta-book {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 0.75rem;
  row-gap: 0.2rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1rem;
  background: #fff;
  color: #111;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.prices-cta-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 255, 255, 0.12);
}

.prices-cta-book-label {
  grid-column: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 0.5);
}

.prices-cta-book strong {
  grid-column: 1;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.15;
}

.prices-cta-book em {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  font-style: normal;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--red);
}

.prices-cta-phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.prices-phone {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.7rem;
  align-items: center;
  padding: 0.9rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.prices-phone:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.prices-phone-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  background: rgba(200, 16, 46, 0.9);
  color: #fff;
}

.prices-phone-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.prices-phone small {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.prices-phone b {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

/* ---------- Rules ---------- */
.rules {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: #f3f3f5;
  color: var(--ink);
}

.rules-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.rule-card {
  padding: 1.4rem 1.2rem;
  border-radius: 1.25rem;
  background: #fff;
  border-top: 3px solid var(--red);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.rule-card.reveal.is-in {
  opacity: 1;
  transform: none;
}

.rule-card:nth-child(2) { transition-delay: 0.08s; border-color: #111; }
.rule-card:nth-child(3) { transition-delay: 0.14s; }
.rule-card:nth-child(4) { transition-delay: 0.2s; border-color: #111; }

.rule-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

.rule-icon {
  display: inline-grid;
  place-items: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 0.85rem;
  border-radius: 0.85rem;
  background: rgba(200, 16, 46, 0.08);
  color: var(--red);
}

.rule-card:nth-child(2) .rule-icon,
.rule-card:nth-child(4) .rule-icon {
  background: rgba(13, 13, 15, 0.06);
  color: #111;
}

.rule-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.rule-card p {
  margin: 0;
  color: rgba(13, 13, 15, 0.65);
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */
.faq {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  background: var(--ink);
  color: #fff;
}

.faq-list {
  width: min(100%, 900px);
  margin: 0 auto;
  display: grid;
  gap: 0.55rem;
}

.faq-item {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.faq-item.reveal.is-in {
  opacity: 1;
  transform: none;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff6b84;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
  max-width: 62ch;
}

.faq-cta {
  width: min(100%, 900px);
  margin: 1.5rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ---------- Contacts ---------- */
.contacts {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  background: var(--ink);
  color: #fff;
}

.contacts-card {
  padding: clamp(3rem, 7vw, 5rem) var(--pad);
}

.contacts-card .eyebrow {
  color: #ff6b84;
}

.contacts-card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.contact-list {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
  display: grid;
  gap: 1.1rem;
}

.contact-list li {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-list span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.contact-list a,
.contact-list em {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-list em a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-list a:hover {
  color: #ff6b84;
}

.contact-socials {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.contact-socials a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem !important;
}

.contacts-visual {
  min-height: 420px;
  overflow: hidden;
}

.contacts-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(1.05);
}

/* ---------- Footer ---------- */
.footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1.5rem;
  align-items: start;
  padding: 2.25rem var(--pad) 1.5rem;
  background: #09090b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand p {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
}

.footer-nav-wrap {
  display: grid;
  gap: 1rem;
}

.footer-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-group {
  position: relative;
}

.footer-group-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

.footer-group-btn::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.footer-group:hover .footer-group-btn,
.footer-group-btn[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.footer-group-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.45rem);
  z-index: 20;
  min-width: 11.5rem;
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #141418;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.footer-group-panel a {
  padding: 0.45rem 0.55rem;
  border-radius: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 650;
  font-size: 0.84rem;
  text-decoration: none;
}

.footer-group-panel a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ff6b84;
}

.footer-group:hover .footer-group-panel,
.footer-group-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.footer-group:hover .footer-group-btn::after,
.footer-group-btn[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-1px);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  font-weight: 700;
  color: #fff;
}

.footer-nav a:hover {
  color: #ff6b84;
}

.footer-meta {
  justify-self: end;
  text-align: right;
  display: grid;
  gap: 0.4rem;
}

.footer-meta a {
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.footer-meta p {
  margin: 0;
  font-size: 0.85rem;
}

.footer-hours {
  display: grid;
  gap: 0.15rem;
  font-size: 0.82rem;
}

.footer-socials {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
  margin-top: 0.25rem;
}

.footer-socials a {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
}

.footer-socials svg {
  width: 1.45rem;
  height: 1.45rem;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0.5rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  opacity: 0.55;
}

.footer-legal {
  grid-column: 1 / -1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .header-phone {
    display: none;
  }
}

@media (max-width: 980px) {
  .nav-pill {
    display: none;
  }

  .burger {
    display: block;
  }

  .header {
    grid-template-columns: 1fr auto;
  }

  .hours-tip--header {
    display: none;
  }

  .hero-split,
  .gallery-grid,
  .adv-grid,
  .rules-grid,
  .contacts,
  .footer,
  .duo-inner {
    grid-template-columns: 1fr;
  }

  .duo-stage {
    width: min(100%, 720px);
    justify-self: center;
  }

  .menu-preview {
    grid-template-columns: 1fr 1fr;
  }

  .cal {
    overflow: visible;
    padding-bottom: 0;
  }

  .cal-head {
    display: none;
  }

  .cal-head,
  .cal-body {
    min-width: 0;
  }

  .cal-body {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .cal-block--4,
  .cal-block--2,
  .cal-block--1 {
    grid-column: auto;
  }

  .cal-days {
    display: block;
  }

  .cal-block {
    min-height: 0;
    padding: 1rem 1.1rem;
  }

  .prices-cta {
    grid-template-columns: 1fr;
  }

  .prices-cta-phones {
    grid-template-columns: 1fr;
  }

  .price-extra {
    grid-template-columns: auto 1fr;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-group-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin-top: 0.35rem;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.04);
  }

  .footer-group-panel.is-open {
    display: grid;
  }

  .footer-group:hover .footer-group-panel {
    display: none;
  }

  .footer-group:hover .footer-group-panel.is-open {
    display: grid;
  }

  .badge-a,
  .badge-b {
    top: auto;
    bottom: auto;
    left: 1rem;
    right: auto;
    top: 1rem;
  }

  .zone {
    min-height: 460px;
  }

  .shot,
  .shot img {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .zone-title {
    font-size: clamp(2.4rem, 14vw, 3.4rem);
  }

  .drawer {
    padding: 3.35rem 0.55rem 0.65rem;
  }

  .drawer-panel {
    width: min(100%, 17.25rem);
    max-height: calc(100svh - 3.9rem);
  }

  .menu-preview {
    grid-template-columns: 1fr;
  }

  .glass-badge {
    font-size: 0.72rem;
    padding: 0.5rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zone,
  .shot,
  .glass-badge,
  .zone-media img,
  .price-cal,
  .adv-item,
  .price-row,
  .rule-card,
  .faq-item {
    transition: none !important;
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   ЦЕНЫ НА ПРАЗДНИКИ — плашка на главной + всплывающее окно
   ========================================================= */

.holiday-alert {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.15rem;
  border-radius: 1.05rem;
  border: 1px solid rgba(245, 197, 24, 0.42);
  background: linear-gradient(120deg, rgba(200, 16, 46, 0.22), rgba(245, 197, 24, 0.1));
}

.holiday-alert.is-now {
  border-color: rgba(245, 197, 24, 0.85);
  background: linear-gradient(120deg, rgba(200, 16, 46, 0.38), rgba(245, 197, 24, 0.18));
}

.holiday-alert-flare {
  position: absolute;
  inset: -60% -20% auto auto;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 197, 24, 0.24), transparent 65%);
  pointer-events: none;
}

.holiday-alert-icon {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 0.8rem;
  background: var(--gold);
  color: #1a1200;
}

.holiday-alert-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.holiday-alert-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  position: relative;
}

.holiday-alert-copy strong {
  font-family: var(--font);
  font-size: clamp(0.98rem, 1.6vw, 1.1rem);
  font-weight: 800;
  line-height: 1.25;
}

.holiday-alert-copy span {
  font-size: 0.87rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

.holiday-alert-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.15rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--gold);
  color: #1a1200;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.holiday-alert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245, 197, 24, 0.32);
}

.holiday-alert-btn em {
  font-style: normal;
  transition: transform 0.25s var(--ease);
}

.holiday-alert-btn:hover em {
  transform: translateX(3px);
}

/* ── всплывающее окно ─────────────────────────────────────────────────── */

body.holiday-modal-open {
  overflow: hidden;
}

.holiday-modal[hidden] {
  display: none;
}

.holiday-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 3vw, 2rem);
}

.holiday-modal-back {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 6, 0.78);
  backdrop-filter: blur(6px);
}

.holiday-modal-card {
  position: relative;
  width: min(620px, 100%);
  max-height: min(86vh, 780px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, #16161a, #0c0c0e);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6);
  animation: holidayIn 0.35s var(--ease);
}

@keyframes holidayIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .holiday-modal-card { animation: none; }
  .holiday-alert-btn:hover { transform: none; }
}

.holiday-modal-x {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.holiday-modal-x:hover {
  background: rgba(255, 255, 255, 0.14);
}

.holiday-modal-x svg {
  width: 1.05rem;
  height: 1.05rem;
}

.holiday-modal-head {
  padding: 1.6rem 1.5rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.holiday-modal-head .eyebrow {
  margin: 0 0 0.35rem;
  color: var(--gold);
}

.holiday-modal-head h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4.5vw, 2.25rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
}

.holiday-modal-lead {
  margin: 0.55rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.holiday-modal-body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  gap: 0.65rem;
  padding: 1.15rem 1.5rem;
}

.holiday-modal-empty {
  margin: 0;
  padding: 1.4rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.holiday-modal-empty a {
  color: var(--gold);
}

.holiday-item {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.03);
}

.holiday-item.is-now {
  border-color: rgba(245, 197, 24, 0.7);
  background: rgba(245, 197, 24, 0.09);
}

.holiday-item > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.holiday-item header strong {
  display: block;
  font-family: var(--font);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.25;
}

.holiday-item-dates {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}

.holiday-item-tag {
  flex: none;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.holiday-item.is-now .holiday-item-tag {
  background: var(--gold);
  color: #1a1200;
}

.holiday-item-zone {
  justify-self: start;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.holiday-item ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.3rem;
}

.holiday-item li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.42rem 0.65rem;
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.holiday-item li span {
  color: rgba(255, 255, 255, 0.68);
}

.holiday-item li b {
  font-family: var(--font);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.holiday-item li b i {
  font-style: normal;
  font-weight: 600;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.holiday-modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  flex-wrap: wrap;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.holiday-modal-foot p {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  font-variant-numeric: tabular-nums;
}

.holiday-modal-foot p b {
  color: #fff;
  font-weight: 800;
}

.holiday-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--red);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.25s var(--ease);
}

.holiday-modal-cta:hover {
  background: var(--red-hot);
}

.holiday-modal-cta em {
  font-style: normal;
}

@media (max-width: 720px) {
  .holiday-alert {
    grid-template-columns: auto minmax(0, 1fr);
    row-gap: 0.85rem;
  }

  .holiday-alert-btn {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .holiday-modal-foot {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .holiday-modal-cta {
    justify-content: center;
  }
}
