/* ===== Base ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #FFFFFF;
  color: #3C3C3B;
  font-family: 'Onest', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: #EC76AB; color: #fff; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
[id] { scroll-margin-top: 74px; }
section[id] { scroll-margin-top: 88px; }
@media print { section { opacity: 1 !important; transform: none !important; } }

@keyframes bnch-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes bnch-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes bnch-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.8); } }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px);
}
.page { overflow-x: hidden; background: #FFFFFF; }

/* ===== Typography blocks ===== */
.eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}
.eyebrow--pink { color: #DE5F98; }
.eyebrow--green { color: #3C6B2C; }
.eyebrow--pink-light { color: #F19FC3; }

.h2 {
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 800;
  margin: 14px 0 0;
}
.lead {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: #605F59;
  margin: 16px 0 0;
}
.lead--tight { margin-top: 18px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn--sm { font-size: 15px; padding: 11px 20px; }
.btn--md { font-size: 16px; padding: 15px 24px; }
.btn--xl { font-size: 17px; font-weight: 700; padding: 17px 30px; }
.btn--xl2 { font-size: 17px; padding: 17px 28px; }
.btn--footer { font-size: 14px; padding: 11px 18px; margin-top: 20px; }
.btn--contact { font-size: 16px; padding: 15px 22px; }
.btn--hero-main { font-size: 16px; padding: 16px 26px; }
.btn--hero-menu { font-size: 16px; padding: 16px 24px; }
.btn--hero-route { font-size: 16px; padding: 16px 14px; }
.btn--nowrap { white-space: nowrap; }

.btn--pink {
  background: #EC76AB;
  color: #fff;
  border-color: #EC76AB;
  transition: background .2s ease, transform .15s ease;
}
.btn--pink:hover { background: #DE5F98; }
.btn--lift-1:hover { transform: translateY(-1px); }
.btn--lift-2:hover { transform: translateY(-2px); }

.btn--dark {
  background: #3C3C3B;
  color: #fff;
  border-color: #3C3C3B;
  transition: background .2s ease;
}
.btn--dark:hover { background: #000; }

.btn--outline {
  background: transparent;
  color: #3C3C3B;
  border-color: #3C3C3B;
  transition: background .2s ease, color .2s ease;
}
.btn--outline:hover { background: #3C3C3B; color: #fff; }

.btn--ghost {
  background: transparent;
  color: #3C3C3B;
  border-color: transparent;
  transition: color .2s ease;
}
.btn--ghost:hover { color: #3C6B2C; }

.btn--white {
  background: #fff;
  color: #3C3C3B;
  transition: transform .15s ease;
}
.btn--pink-deep {
  background: #DE5F98;
  color: #fff;
  border-color: #DE5F98;
  transition: background .2s ease, transform .15s ease;
}
.btn--pink-deep:hover { background: #D2528D; }

.btn--soft {
  background: transparent;
  color: #3C3C3B;
  border-color: #EAE9E6;
  transition: border-color .2s ease;
}
.btn--soft:hover { border-color: #3C3C3B; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.58);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid rgba(234,233,230,.75);
}
.site-nav {
  padding-top: 13px;
  padding-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-nav__logo { display: flex; align-items: center; }
.site-nav__logo img { height: 40px; width: auto; display: block; }
.site-nav__links { display: flex; align-items: center; gap: 20px; }
.site-nav__link { font-size: 15px; font-weight: 500; }
.site-nav__link:hover { color: #DE5F98; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span { width: 26px; height: 2px; background: #3C3C3B; display: block; }

@media (max-width: 999px) {
  .site-nav__links { display: none; }
  .burger { display: flex; }
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  padding: 16px clamp(18px, 5vw, 56px);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__logo { height: 40px; width: auto; display: block; }
.mobile-menu__close {
  background: none;
  border: 1.5px solid #EAE9E6;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  font-size: 22px;
  cursor: pointer;
  color: #3C3C3B;
}
.mobile-menu__links { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
.mobile-menu__links a {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  padding: 10px 0;
  border-bottom: 1px solid #F0EFEC;
}
.mobile-menu__route {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #EC76AB;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 24px;
  border-radius: 999px;
}
.mobile-menu__addr {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #8A8A83;
  margin-top: 16px;
  letter-spacing: .04em;
}

/* ===== Hero ===== */
.hero { padding: clamp(44px, 6vw, 84px) 0 clamp(36px, 5vw, 64px); }
.hero__grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  align-items: start;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #DE5F98;
  font-weight: 500;
  border: 1px solid #F6D2E2;
  background: #FCEBF2;
  padding: 7px 14px;
  border-radius: 999px;
}
.hero__title {
  font-size: clamp(44px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 22px 0 0;
}
.hero__title span { color: #EC76AB; white-space: nowrap; }
.hero__text {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  color: #605F59;
  margin: 22px 0 0;
  max-width: 38ch;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.hero__media { position: relative; }
.hero__checker {
  position: absolute;
  top: -18px;
  right: -10px;
  width: 119px;
  height: 119px;
  z-index: 2;
  background-image: repeating-conic-gradient(#F6CFE0 0% 25%, transparent 0% 50%);
  background-size: 34px 34px;
  opacity: .9;
  pointer-events: none;
}
.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(320px, 46vw, 500px);
  object-fit: cover;
  border-radius: 28px;
  display: block;
}
.hero__price-card {
  position: absolute;
  z-index: 2;
  left: -16px;
  bottom: 22px;
  background: #fff;
  border: 1px solid #EC76AB;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 20px 44px -22px rgba(60,60,59,.4);
  animation: bnch-float 5s ease-in-out infinite;
}
.hero__price-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8A8A83;
}
.hero__price-value { font-size: 30px; font-weight: 800; letter-spacing: -.02em; margin-top: 2px; }

.hero__meta {
  margin-top: clamp(22px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  align-items: center;
  justify-content: space-between;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #57574F;
  border: 1px solid #EAE9E6;
  background: #fff;
  padding: 8px 13px;
  border-radius: 999px;
}
.hero__status {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #7A7A72;
  letter-spacing: .03em;
}
.hero__status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3C6B2C;
  display: inline-block;
  animation: bnch-pulse 2.4s ease-in-out infinite;
}

/* ===== Marquee ===== */
.marquee {
  background: #EC76AB;
  color: #fff;
  overflow: hidden;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.marquee__track { display: flex; width: max-content; animation: bnch-marquee 34s linear infinite; }
.marquee__row {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  white-space: nowrap;
  font-family: 'IBM Plex Mono', monospace;
  font-size: clamp(15px, 2vw, 20px);
  letter-spacing: .02em;
}
.marquee__dot { opacity: .5; }

/* ===== Shared section bits ===== */
.section-decor {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(34%, -46%);
  width: clamp(300px, 46vw, 740px);
  pointer-events: none;
}
.section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
.section-head__text { max-width: 640px; }
.section-head__text--wide { max-width: 720px; }

/* ===== About ===== */
.about { padding: clamp(72px, 9vw, 124px) 0; position: relative; overflow: hidden; }
.about__inner { position: relative; }
.about__intro { max-width: 760px; }

.about__cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  margin-top: 44px;
}
.card {
  background: #fff;
  border: 1px solid #EAE9E6;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 1px 2px rgba(60,60,59,.04), 0 18px 40px -26px rgba(60,60,59,.18);
}
.card--hover { transition: transform .2s ease, box-shadow .2s ease; }
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 1px 2px rgba(60,60,59,.04), 0 26px 46px -24px rgba(60,60,59,.28);
}
.card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.card__icon--sm { width: 44px; height: 44px; border-radius: 12px; }
.card__icon--pink { background: #FCEBF2; }
.card__icon--gray { background: #EEEEED; }
.card__icon--green { background: #EAF1E5; }
.card__icon--glass { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.12); }
.icon-circle { width: 18px; height: 18px; border-radius: 50%; background: #EC76AB; display: block; }
.icon-square { width: 17px; height: 17px; border-radius: 4px; background: #3C3C3B; display: block; }
.icon-hex {
  width: 19px;
  height: 19px;
  background: #3C6B2C;
  display: block;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.icon-hex--sm { width: 17px; height: 17px; }
.icon-diamond { width: 17px; height: 17px; background: #EC76AB; display: block; transform: rotate(45deg); }
.icon-cup { width: 15px; height: 19px; border-radius: 3px 3px 5px 5px; background: #EC76AB; display: block; }
.icon-ring { width: 16px; height: 16px; border-radius: 50%; border: 3px solid #fff; display: block; }

.card__title { font-size: 21px; font-weight: 700; margin: 18px 0 0; letter-spacing: -.01em; }
.card__text { font-size: 15px; line-height: 1.55; color: #6A6A63; margin: 9px 0 0; }

/* ===== Gallery ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  grid-auto-rows: clamp(130px, 17vw, 180px);
  gap: 14px;
  margin-top: clamp(36px, 4vw, 52px);
}
.gallery__item { position: relative; transition: transform .4s ease; }
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--big { grid-column: span 2; grid-row: span 2; }
.gallery__item--big:hover { transform: scale(1.015); }
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}
.gallery__tag {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #fff;
  background: rgba(43,43,42,.6);
  padding: 6px 11px;
  border-radius: 999px;
}
.gallery__tag--sm { left: 10px; bottom: 10px; font-size: 11px; padding: 5px 10px; }
/* 3 колонки (средне-узкий): шахматный паттерн как на широком — тёмный зал справа */
@media (min-width: 768px) and (max-width: 1024px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--big:nth-child(4) { grid-column: 2 / span 2; }
  .gallery__item:nth-child(5) { grid-column: 1; grid-row: 3; }
  .gallery__item:nth-child(6) { grid-column: 1; grid-row: 4; }
}

/* ===== Menu ===== */
.menu {
  padding: clamp(72px, 9vw, 124px) 0;
  background: #F7F6F3;
  position: relative;
  overflow: hidden;
}
.menu__inner { position: relative; }
.menu__note {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  background: #EAF1E5;
  border: 1px solid #D8E6CF;
  border-radius: 999px;
  padding: 9px 16px;
}
.menu__note-dot { width: 9px; height: 9px; border-radius: 50%; background: #3C6B2C; flex-shrink: 0; }
.menu__note span:last-child {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #2C531F;
  letter-spacing: .02em;
}
.menu__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
  margin-top: 40px;
}
.menu-card {
  background: #fff;
  border: 1px solid #EAE9E6;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.menu-card--plain { padding: 24px; display: block; }
.menu-card--dark { background: #3C3C3B; padding: 24px; color: #fff; border: none; }
.menu-card__photo { width: 100%; height: 195px; object-fit: cover; display: block; }
.menu-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.menu-card__head { display: flex; align-items: center; justify-content: space-between; }
.menu-card__head--gap { margin-top: 16px; gap: 12px; }
.menu-card__title { margin: 0; }
.menu-card__num { font-family: 'IBM Plex Mono', monospace; font-size: 12px; color: #DE5F98; }
.menu-card__num--light { color: #F19FC3; }
.menu-card__list { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.menu-card__line { font-size: 15px; }
.menu-card__desc { font-size: 15px; line-height: 1.55; color: #6A6A63; margin: 12px 0 0; }
.menu-card__desc--light { color: rgba(255,255,255,.72); }

.price-row { display: flex; align-items: baseline; gap: 8px; }
.price-row span:first-child { font-size: 15px; }
.price-row__muted { color: #6A6A63; }
.price-row__dots { flex: 1; border-bottom: 1px dotted #D5D4CF; transform: translateY(-4px); }
.price-row__price {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px !important;
  font-weight: 500;
  color: #3C3C3B;
}

.menu-highlight { border-radius: 14px; padding: 12px 14px; margin-top: auto; }
.menu-highlight--green { background: #EAF1E5; }
.menu-highlight--pink { background: #FCEBF2; }
.menu-highlight__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.menu-highlight__name { font-size: 15px; font-weight: 700; }
.menu-highlight__badge {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
}
.menu-highlight__badge--green { background: #3C6B2C; }
.menu-highlight__badge--pink { background: #EC76AB; }
.menu-highlight__text { font-size: 13px; line-height: 1.5; color: #6A6A63; margin-top: 4px; }

/* ===== Work ===== */
.work { padding: clamp(72px, 9vw, 124px) 0; position: relative; overflow: hidden; }
.work__matrix {
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(200px, 26vw, 380px);
  aspect-ratio: 1 / 1.05;
  pointer-events: none;
}
.work__grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  align-items: center;
  position: relative;
}
.work__media { position: relative; order: 0; align-self: end; }
.work__photo {
  width: 100%;
  height: clamp(300px, 42vw, 460px);
  object-fit: cover;
  border-radius: 26px;
  display: block;
}
.work__terminal {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid #EAE9E6;
  border-radius: 14px;
  padding: 11px 15px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #3C3C3B;
  box-shadow: 0 16px 34px -20px rgba(60,60,59,.4);
}
.work__terminal span { color: #3C6B2C; }
.work__tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: 12px;
  margin-top: 26px;
}
.tile { border: 1px solid #EAE9E6; border-radius: 16px; padding: 16px; }
.tile__title { font-weight: 700; font-size: 16px; }
.tile__text { font-size: 14px; color: #6A6A63; margin-top: 3px; }

/* ===== D&D ===== */
.dnd {
  padding: clamp(76px, 9vw, 128px) 0;
  background: #2B2B2A;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.dnd__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.06) 1.5px, transparent 0);
  background-size: 26px 26px;
  pointer-events: none;
}
.dnd__inner { position: relative; }
.dnd__grid {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  align-items: center;
  margin-top: clamp(28px, 4vw, 44px);
}
.dnd__text {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.6;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 46ch;
}
.dnd__text--follow { margin-top: 14px; }
.dnd__accent { color: #F19FC3; font-weight: 600; }

.dice { display: flex; align-items: center; gap: 18px; margin-top: 32px; }
.dice__btn {
  width: 100px;
  height: 115px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: #EC76AB;
  border: none;
  cursor: pointer;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 38px;
  font-weight: 600;
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.dice__btn:hover { background: #DE5F98; }
.dice__btn:active { transform: scale(.94); }
.dice__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F19FC3;
}
.dice__title { font-size: 17px; font-weight: 600; margin-top: 4px; }
.dice__hint { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 2px; }

.dnd__media { position: relative; }
.dnd__photo {
  width: 100%;
  height: clamp(300px, 42vw, 440px);
  object-fit: cover;
  border-radius: 26px;
  display: block;
}
.dnd__badge {
  position: absolute;
  right: 14px;
  top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #fff;
  background: rgba(60,107,44,.9);
  padding: 7px 12px;
  border-radius: 999px;
}

/* ===== Events ===== */
.events { padding: clamp(72px, 9vw, 124px) 0; }
.events__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  margin-top: 40px;
  align-items: start;
}
.events__tiles {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
}
.event-tile { border: 1px solid #EAE9E6; border-radius: 18px; padding: 18px; }
.event-tile__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.event-tile .tile__text { margin-top: 6px; }
.event-tile__mark { flex-shrink: 0; margin-top: 4px; }
.event-tile__mark--green-sq { width: 12px; height: 12px; background: #3C6B2C; border-radius: 3px; }
.event-tile__mark--pink-dot { width: 12px; height: 12px; background: #EC76AB; border-radius: 50%; }
.event-tile__mark--green-hex {
  width: 13px; height: 13px; background: #3C6B2C; margin-top: 3px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.event-tile__mark--pink-diamond { width: 12px; height: 12px; background: #EC76AB; transform: rotate(45deg); }
.event-tile__mark--green-dot { width: 12px; height: 12px; background: #3C6B2C; border-radius: 50%; }
.event-tile__mark--pink-hex {
  width: 13px; height: 13px; background: #EC76AB; margin-top: 3px;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}
.events__suggest { margin-top: 20px; }

.afisha { background: #3C3C3B; color: #fff; border-radius: 22px; padding: 24px; }
.afisha__head {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F19FC3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.afisha__count { color: rgba(255,255,255,.4); }
.afisha__list { margin-top: 16px; display: flex; flex-direction: column; }
.afisha__row {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.afisha__row--last { border-bottom: none; }
.afisha__time {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #F19FC3;
  white-space: nowrap;
}
.afisha__name { font-size: 15px; }

/* ===== Reviews ===== */
.reviews {
  padding: clamp(72px, 9vw, 124px) 0;
  background: #F7F6F3;
  position: relative;
}
.reviews__award {
  position: absolute;
  top: 0;
  right: clamp(14px, 5vw, 84px);
  transform: translateY(-30%) rotate(6deg);
  width: clamp(84px, 10vw, 140px);
  z-index: 5;
  pointer-events: none;
  filter: drop-shadow(0 18px 30px rgba(60,60,59,.2));
}
.reviews__inner { position: relative; }
.reviews__rating {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  background: #fff;
  border: 1px solid #EAE9E6;
  border-radius: 999px;
  padding: 9px 16px;
}
.reviews__stars { color: #F5A623; font-size: 14px; letter-spacing: 2px; }
.reviews__rating-text {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #3C3C3B;
  letter-spacing: .02em;
}
.reviews__masonry { columns: 300px; column-gap: 16px; margin-top: 40px; }
.review {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  margin: 0 0 16px;
  background: #fff;
  border: 1px solid #EAE9E6;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 1px 2px rgba(60,60,59,.04), 0 18px 40px -30px rgba(60,60,59,.2);
}
.review__quote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  line-height: 1;
  color: #EC76AB;
  margin-bottom: 4px;
}
.review__text { font-size: 15px; line-height: 1.6; color: #3C3C3B; margin: 0; }
.review__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #F0EFEC;
}
.review__author { font-weight: 700; font-size: 14px; }
.review__link {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: #3C6B2C;
  white-space: nowrap;
}
.review__link:hover { color: #2C531F; }

/* ===== Find ===== */
.find { padding: clamp(72px, 9vw, 124px) 0; }
.find__grid {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  align-items: center;
}
.find__addr {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 20px 0 0;
}
.find__city { font-size: 17px; color: #605F59; margin-top: 4px; }
.find__hours {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: #7A7A72;
}
.find__hours-dot { width: 9px; height: 9px; border-radius: 50%; background: #3C6B2C; display: inline-block; }
.find__phone {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 14px;
  color: #3C3C3B;
  margin-top: 10px;
}
.find__tg-link { color: #3C6B2C; }
.find__tg-link:hover { color: #2C531F; }
.find__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
}
.find__row { display: flex; flex-wrap: wrap; gap: 12px; }

.map {
  position: relative;
  height: clamp(280px, 38vw, 400px);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid #E4E3DF;
  background: #EDECE7;
  background-image:
    linear-gradient(rgba(60,60,59,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60,60,59,.06) 1px, transparent 1px);
  background-size: 38px 38px;
}
.map__h-road { position: absolute; left: 0; right: 0; top: 38%; height: 16px; background: #DFDED8; }
.map__v-road { position: absolute; top: 0; bottom: 0; left: 58%; width: 14px; background: #DFDED8; }
.map__path { position: absolute; left: 12%; top: 20%; right: 20%; height: 0; border-top: 2px dashed #EC76AB; }
.map__start {
  position: absolute;
  left: 12%;
  top: 20%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #3C6B2C;
  transform: translate(-50%, -50%);
}
.map__pin {
  position: absolute;
  left: calc(58% + 7px);
  top: calc(38% + 8px);
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.map__pin-label {
  background: #EC76AB;
  color: #fff;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 12px 26px -12px rgba(60,60,59,.5);
}
.map__pin-tip { width: 14px; height: 14px; background: #EC76AB; transform: rotate(45deg); margin-top: -7px; }

/* ===== CTA ===== */
.cta {
  padding: clamp(76px, 9vw, 124px) 0;
  background: #EC76AB;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta__pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-conic-gradient(rgba(255,255,255,.09) 0% 25%, transparent 0% 50%);
  background-size: 34px 34px;
  pointer-events: none;
}
.cta__inner { position: relative; text-align: center; }
.cta__title {
  font-size: clamp(38px, 6.4vw, 72px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 800;
  margin: 0;
}
.cta__text {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
  color: rgba(255,255,255,.85);
  margin: 18px auto 0;
  max-width: 44ch;
}
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }

/* ===== Footer ===== */
.footer { background: #232322; color: #fff; padding: clamp(52px, 7vw, 80px) 0 34px; }
.footer__grid {
  display: grid;
  gap: 36px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
}
.footer__brand { max-width: 300px; }
.footer__logo { height: 46px; width: auto; display: block; }
.footer__about { font-size: 15px; line-height: 1.55; color: rgba(255,255,255,.6); margin: 16px 0 0; }
.footer__label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.footer__col { display: flex; flex-direction: column; gap: 11px; margin-top: 16px; }
.footer__link { font-size: 15px; color: rgba(255,255,255,.82); }
.footer__link:hover { color: #F19FC3; }
.footer__link--icon { display: inline-flex; align-items: center; gap: 8px; }
.footer__line { font-size: 15px; color: rgba(255,255,255,.82); }
.footer__hours { font-family: 'IBM Plex Mono', monospace; font-size: 15px; color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
}

/* ===== Maps promo modal (?frommaps) ===== */
.maps-promo {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(30, 30, 29, 0);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease, background .35s ease;
}
.maps-promo--show {
  opacity: 1;
  pointer-events: auto;
  background: rgba(30, 30, 29, .62);
}
.maps-promo__card {
  position: relative;
  width: min(680px, 100%);
  transform: translateY(26px) scale(.96);
  transition: transform .4s cubic-bezier(.22,.61,.36,1);
}
.maps-promo--show .maps-promo__card { transform: translateY(0) scale(1); }
.maps-promo__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
}
.maps-promo__close {
  position: absolute;
  top: -13px;
  right: -13px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: #3C3C3B;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .3);
  transition: background .2s ease, transform .15s ease;
}
.maps-promo__close:hover { background: #000; transform: scale(1.08); }
@media (max-width: 560px) {
  .maps-promo__close { top: -10px; right: -6px; width: 36px; height: 36px; font-size: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .maps-promo, .maps-promo__card { transition: none; }
  .maps-promo__card { transform: none; }
}
