:root {
  --bg: #F6F2EA; --card: #FFFDF9; --ink: #0F1A2E; --muted: #6B7388; --line: #E6E1D6;
  --brand: #1F5BFF; --brand-dark: #0E3B8C; --brand-soft: #E7EEFF; --accent: #FF6A3D; --accent-soft: #FFE9E0;
  --teal: #21D4C9; --ok: #1B9C5B; --err: #D93838; --gold: #FFB020;
  --r: 24px; --r-sm: 16px; --shadow: 0 12px 40px rgba(31, 91, 255, .10);
  --font: "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --display: "Unbounded", "Onest", -apple-system, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--ink); line-height: 1.45; font-size: 16px; -webkit-font-smoothing: antialiased; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1 { font-size: clamp(28px, 4vw, 40px); line-height: 1.1; margin: 0 0 12px; letter-spacing: -.02em; }
h2 { font-size: clamp(22px, 3vw, 30px); margin: 40px 0 16px; letter-spacing: -.01em; }
h3 { font-size: 20px; margin: 0 0 8px; }
p { margin: 0 0 12px; }
img { max-width: 100%; display: block; }
.wrap { width: min(1200px, 100% - 32px); margin-inline: auto; }
.muted { color: var(--muted); }
.small { font-size: 13px; }
.big { font-size: 20px; font-weight: 600; }
.mt { margin-top: 16px; }
.center { text-align: center; }
.h-sub { font-size: .55em; font-weight: 500; margin-left: 8px; }
.lnk { font-weight: 600; }
.narrow { max-width: 560px; }
.narrow-box { max-width: 640px; margin-top: 24px; }

/* header */
.hdr { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.hdr__in { display: flex; align-items: center; gap: 24px; height: 64px; }
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 22px; color: var(--brand-dark); letter-spacing: -.02em; }
.logo:hover { text-decoration: none; }
.nav { display: flex; gap: 4px; flex: 1; }
.nav a { padding: 8px 12px; border-radius: 10px; color: var(--ink); font-weight: 500; white-space: nowrap; }
.nav a:hover, .nav a.on { background: var(--brand-soft); color: var(--brand); text-decoration: none; }
.hdr__right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.city { color: var(--muted); font-size: 14px; }
.avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.avatar:hover { text-decoration: none; background: var(--brand-dark); }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 10px; width: 40px; height: 40px; font-size: 18px; cursor: pointer; }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 14px; font-weight: 600; font-size: 15px; border: 1px solid transparent; cursor: pointer; transition: .15s; font-family: inherit; white-space: nowrap; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-dark); }
.btn--ghost { background: #fff; border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--light { background: #fff; color: var(--brand-dark); }
.btn--sm { padding: 8px 14px; font-size: 14px; border-radius: 10px; }
.btn--lg { padding: 16px 24px; font-size: 17px; }
.btn--block { width: 100%; margin-top: 10px; }

/* flash */
.flash { position: sticky; top: 64px; z-index: 40; display: flex; justify-content: space-between; align-items: center; gap: 12px; margin: 0 auto; width: min(1200px, 100% - 32px); padding: 12px 16px; border-radius: var(--r-sm); font-weight: 500; margin-top: 12px; }
.flash--ok { background: #E4F6EC; color: var(--ok); }
.flash--error { background: #FDE8E8; color: var(--err); }
.flash--inline { position: static; width: auto; margin: 0 0 12px; }
.flash button { background: none; border: 0; font-size: 22px; cursor: pointer; color: inherit; line-height: 1; }
.demo { background: var(--accent-soft); color: #9A3412; padding: 12px 16px; border-radius: var(--r-sm); margin-bottom: 16px; font-weight: 500; }
.demo--ok { background: #E4F6EC; color: var(--ok); }

/* hero */
.hero { padding: 24px 0 8px; }
.hero__grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
.hero__card { border-radius: 28px; padding: 28px; color: #fff; position: relative; overflow: hidden; min-height: 340px; display: flex; flex-direction: column; }
.hero__card--a { background: linear-gradient(135deg, #1546E0, #6C4DFF); }
.hero__card--b { background: linear-gradient(160deg, #0B2A8A, #12B5A5); justify-content: flex-end; }
.hero__card--c { background: linear-gradient(135deg, #FF6B3D, #F5B301); }
.hero__num { font-size: 56px; font-weight: 800; line-height: 1; letter-spacing: -.03em; }
.hero__txt { font-size: 18px; margin: 8px 0 16px; opacity: .95; }
.hero__img { position: absolute; right: -10px; bottom: -20px; width: 60%; height: auto; opacity: .95; }
.hero__img--full { inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero__slogan { position: relative; font-size: 44px; font-weight: 800; line-height: 1; letter-spacing: -.02em; text-shadow: 0 4px 20px rgba(0,0,0,.3); }
.hero__card .btn { align-self: flex-start; margin-top: auto; }

/* chips marquee */
.chips-marquee { overflow: hidden; padding: 16px 0; mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.chips-marquee__track { display: flex; gap: 10px; width: max-content; animation: marquee 60s linear infinite; }
.chips-marquee:hover .chips-marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); font-weight: 500; font-size: 14px; white-space: nowrap; }
.chip:hover, .chip.on { border-color: var(--brand); color: var(--brand); text-decoration: none; background: var(--brand-soft); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }

/* benefits */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.benefit { background: #fff; border-radius: var(--r); padding: 20px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow); }
.benefit__ico { font-size: 28px; }
.benefit b { font-size: 17px; }
.benefit span:last-child { color: var(--muted); font-size: 14px; }

/* sections */
.sec { margin-top: 24px; }
.sec__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.sec__head h2 { margin-bottom: 12px; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: 272px; gap: 16px; overflow-x: auto; padding: 8px 4px 20px; scroll-snap-type: x mandatory; scrollbar-width: thin; }
.rail > * { scroll-snap-align: start; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

/* card */
.card { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); position: relative; display: flex; flex-direction: column; transition: transform .15s; }
.card:hover { transform: translateY(-2px); }
.card__cover { display: block; aspect-ratio: 16/10; position: relative; }
.card__cover img { width: 100%; height: 100%; object-fit: cover; }
.badge { position: absolute; top: 12px; left: 12px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.badge--new { background: var(--teal); color: #fff; }
.badge--ultra { background: #111; color: var(--gold); left: auto; right: 12px; }
.badge--plus { position: static; background: var(--brand-soft); color: var(--brand); margin-left: 8px; }
.card__fav { position: absolute; top: 10px; right: 10px; }
.card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; }
.card__title { font-weight: 700; color: var(--ink); font-size: 17px; line-height: 1.25; }
.card__meta { display: flex; gap: 6px; align-items: center; font-size: 14px; }
.rating { color: var(--ink); font-weight: 700; }
.rating--lg { font-size: 20px; }
.card__row { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.price { font-weight: 700; }
.metro { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 14px; }
.metro i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: inline-block; }
.card__tags { font-size: 13px; }
.fav { width: 36px; height: 36px; border-radius: 50%; border: 0; background: rgba(255,255,255,.9); color: #B8C0D0; font-size: 18px; cursor: pointer; }
.fav.on { color: var(--accent); }

/* categories */
.cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.cat { border-radius: var(--r); padding: 24px; min-height: 160px; display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; color: #fff; }
.cat:hover { text-decoration: none; filter: brightness(1.05); }
.cat b { font-size: 24px; }
.cat span { opacity: .9; font-size: 14px; }
.cat--sport { background: linear-gradient(135deg, #1546E0, #6C4DFF); }
.cat--relax { background: linear-gradient(135deg, #0D9488, #12B5A5); }
.cat--beauty { background: linear-gradient(135deg, #DB2777, #F472B6); }
.cat--all { background: #fff; color: var(--ink); border: 1px solid var(--line); }
.cat--all span { color: var(--brand); }

/* how */
.how__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.how__step { background: #fff; border-radius: var(--r); padding: 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: var(--shadow); }
.how__step i { width: 36px; height: 36px; border-radius: 50%; background: var(--brand); color: #fff; display: grid; place-items: center; font-style: normal; font-weight: 700; margin-bottom: 8px; }
.how__step b { font-size: 18px; }
.how__step span { color: var(--muted); }

/* stats */
.stats { background: var(--brand-dark); color: #fff; padding: 40px 0; margin-top: 48px; }
.stats--inline { border-radius: var(--r); margin: 16px 0; padding: 24px 16px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: center; }
.stats__grid b { display: block; font-size: 40px; font-weight: 800; letter-spacing: -.02em; }
.stats__grid span { opacity: .8; }

/* faq */
.faq details { background: #fff; border-radius: var(--r-sm); padding: 4px 20px; margin-bottom: 8px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 14px 0; list-style: none; display: flex; justify-content: space-between; }
.faq summary::after { content: '+'; color: var(--brand); font-size: 20px; }
.faq details[open] summary::after { content: '–'; }
.faq p { padding-bottom: 14px; color: var(--muted); }

/* page & filters */
.page { padding: 28px 0 48px; }
.crumbs { font-size: 14px; margin-bottom: 12px; }
.crumbs a { color: var(--muted); }
.filters { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto auto; gap: 8px; margin: 16px 0 8px; }
.inp { width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--r-sm); font: inherit; background: #fff; color: var(--ink); }
.inp:focus { outline: 2px solid var(--brand-soft); border-color: var(--brand); }
.inp--lg { padding: 16px; font-size: 18px; }
.inp--code { letter-spacing: .5em; text-align: center; font-size: 28px; }
select.inp { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235F687D' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.empty { background: #fff; border-radius: var(--r-sm); padding: 24px; color: var(--muted); text-align: center; }
.pager { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }
.pager a { padding: 8px 14px; background: #fff; border-radius: 10px; border: 1px solid var(--line); }
.pager a.on { background: var(--brand); color: #fff; border-color: var(--brand); }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.svc { border-radius: var(--r); padding: 20px; color: #fff; background: linear-gradient(135deg, var(--c1), var(--c2)); display: flex; flex-direction: column; gap: 8px; min-height: 120px; }
.svc:hover { text-decoration: none; transform: translateY(-2px); }
.svc__ico { font-size: 32px; }

/* map */
.map { height: 70vh; min-height: 420px; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); background: #E4E8F1; }
.dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; vertical-align: middle; }
.dot--sport { background: #1546E0; } .dot--relax { background: #0D9488; } .dot--beauty { background: #DB2777; }
.pin { width: 14px; height: 14px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.leaflet-popup-content { font-family: var(--font); }

/* place */
.place__hero { border-radius: 28px; overflow: hidden; position: relative; aspect-ratio: 24/9; }
.place__hero img { width: 100%; height: 100%; object-fit: cover; }
.place__hero .badge { top: 16px; left: 16px; font-size: 14px; }
.place__hero .badge--ultra { left: auto; right: 16px; }
.place__grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; margin-top: 24px; }
.place__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.place__addr { margin-bottom: 8px; }
.place__desc { font-size: 17px; }
.place__facts { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: 14px; }
.side { background: #fff; border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); position: sticky; top: 84px; }
.side__price { font-size: 28px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.days { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 12px; }
.day { flex: 0 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 10px 14px; cursor: pointer; font: inherit; display: flex; flex-direction: column; gap: 2px; min-width: 110px; text-align: left; }
.day span { font-size: 12px; color: var(--muted); }
.day.on { border-color: var(--brand); background: var(--brand-soft); color: var(--brand); }
.offer { background: #fff; border-radius: var(--r-sm); padding: 16px; display: grid; grid-template-columns: 260px 1fr; gap: 16px; margin-bottom: 10px; align-items: start; }
.offer__info { display: flex; flex-direction: column; gap: 2px; }
.offer__times { display: flex; flex-wrap: wrap; gap: 8px; }
.slot { display: inline-flex; flex-direction: column; align-items: center; padding: 8px 14px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); font-weight: 600; min-width: 68px; line-height: 1.2; }
.slot small { font-size: 10px; font-weight: 500; color: var(--accent); }
.slot:hover { background: var(--brand); color: #fff; text-decoration: none; }
.slot:hover small { color: #fff; }
.slot--full { background: #EEF0F5; color: #A3ABBE; text-decoration: line-through; }
.reviews { display: grid; gap: 10px; }
.review { background: #fff; border-radius: var(--r-sm); padding: 16px; }
.review__head { display: flex; gap: 12px; align-items: center; margin-bottom: 6px; font-size: 14px; }
.review p { margin: 0; }
.review-form { background: #fff; border-radius: var(--r); padding: 20px; margin-top: 16px; display: grid; gap: 10px; max-width: 640px; }
.stars { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.stars input { display: none; }
.stars span { font-size: 28px; color: #D6DBE6; cursor: pointer; }
.stars label:hover span, .stars label:hover ~ label span, .stars input:checked ~ span, .stars label:has(input:checked) ~ label span { color: var(--gold); }

/* forms */
.form { display: grid; gap: 12px; }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: 14px; }
.form--row { grid-template-columns: 1fr 1fr 1fr auto; align-items: end; background: #fff; padding: 20px; border-radius: var(--r); }
.check { display: flex; align-items: center; gap: 8px; font-weight: 500 !important; font-size: 13px !important; color: var(--muted); }
.radio { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px; cursor: pointer; font-weight: 500 !important; }
.radio:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.radio--off { opacity: .7; }
.radio input { margin-top: 4px; }

/* profile & wallet */
.prof__head { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; flex-wrap: wrap; }
.prof__wallet { background: #fff; border-radius: var(--r); padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; box-shadow: var(--shadow); min-width: 200px; }
.prof__wallet b { font-size: 28px; }
.ultra { color: #9A6B00; } .plus { color: var(--brand); }
.bk-list { display: grid; gap: 10px; }
.bk { background: #fff; border-radius: var(--r-sm); padding: 16px; display: grid; grid-template-columns: 220px 1fr auto; gap: 16px; align-items: center; color: var(--ink); }
.bk:hover { text-decoration: none; box-shadow: var(--shadow); }
.bk--past { opacity: .75; }
.bk__when, .bk__what, .bk__code { display: flex; flex-direction: column; gap: 2px; }
.bk__code { text-align: right; }
.bk__code b { font-size: 20px; letter-spacing: .05em; }
.pkgs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pkg { background: #fff; border-radius: var(--r); padding: 20px; display: flex; flex-direction: column; gap: 6px; border: 2px solid transparent; position: relative; }
.pkg--auto { border-color: var(--brand); }
.pkg > b { font-size: 26px; }
.pkg__cb { color: var(--ok); font-weight: 600; font-size: 14px; }
.pkg .badge { position: static; align-self: flex-start; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.three { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.box { background: #fff; border-radius: var(--r); padding: 24px; box-shadow: var(--shadow); }
.box .benefit__ico { display: block; margin-bottom: 8px; }
.tbl { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-sm); overflow: hidden; font-size: 14px; }
.tbl th, .tbl td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl th { color: var(--muted); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.tbl .r { text-align: right; white-space: nowrap; }
.plus-amt { color: var(--ok); font-weight: 600; }
.tbl-wrap { overflow-x: auto; }
.ticket { background: #fff; border-radius: var(--r); box-shadow: var(--shadow); display: grid; grid-template-columns: 180px 1fr; overflow: hidden; margin-bottom: 16px; }
.ticket__code { background: var(--brand); color: #fff; padding: 24px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 4px; }
.ticket__code .muted { color: rgba(255,255,255,.7); }
.ticket__code b { font-size: 32px; letter-spacing: .08em; }
.ticket__body { padding: 24px; display: flex; flex-direction: column; gap: 4px; }
.promo { display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: center; border-radius: 28px; padding: 32px; color: #fff; }
.promo h1 { color: #fff; }
.promo p { font-size: 17px; opacity: .95; }
.promo--gift { background: linear-gradient(135deg, #DB2777, #F5B301); }
.promo--corp { background: linear-gradient(135deg, #0B2A8A, #1546E0); }
.promo--partner { background: linear-gradient(135deg, #0D9488, #12B5A5); }
.ol { padding-left: 20px; display: grid; gap: 6px; }

/* footer */
.ftr { background: #fff; border-top: 1px solid var(--line); margin-top: 48px; padding: 40px 0 24px; }
.ftr__in { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 24px; }
.ftr__in > div { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.ftr__in a { color: var(--ink); }
.ftr__logo { font-weight: 800; font-size: 22px; color: var(--brand-dark); }
.ftr__copy { margin-top: 32px; font-size: 13px; }

@media (max-width: 960px) {
  .hero__grid, .cats__grid, .how__grid, .benefits, .three, .pkgs { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .place__grid { grid-template-columns: 1fr; }
  .side { position: static; }
  .filters { grid-template-columns: 1fr 1fr; }
  .form--row { grid-template-columns: 1fr 1fr; }
  .ftr__in { grid-template-columns: 1fr 1fr; }
  .promo { grid-template-columns: 1fr; }
  .promo img { display: none; }
  .nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .burger { display: block; }
  .city { display: none; }
}
@media (max-width: 600px) {
  .hero__grid, .cats__grid, .how__grid, .benefits, .three, .two, .pkgs, .form--row { grid-template-columns: 1fr; }
  .hero__card { min-height: 240px; }
  .hero__num { font-size: 44px; }
  .offer { grid-template-columns: 1fr; }
  .bk { grid-template-columns: 1fr; }
  .bk__code { text-align: left; }
  .ticket { grid-template-columns: 1fr; }
  .filters { grid-template-columns: 1fr; }
  .flash { top: 64px; }
  .rail { grid-auto-columns: 240px; }
  .stats__grid b { font-size: 32px; }
}

/* v2: deals, waitlist, family, notifications, landing */
.nav__hot { color: #C2410C !important; }
.bell { position: relative; font-size: 20px; text-decoration: none !important; line-height: 1; padding: 6px; }
.bell b { position: absolute; top: 0; right: -2px; background: var(--accent); color: #fff; font-size: 11px; border-radius: 999px; min-width: 18px; height: 18px; display: grid; place-items: center; padding: 0 5px; }
.badge--hot { background: var(--accent); color: #fff; top: auto; bottom: 12px; left: 12px; }
.benefits--4 { grid-template-columns: repeat(4, 1fr); }
.deals { display: flex; flex-direction: column; gap: 6px; margin-top: 14px; background: var(--accent-soft); border-radius: var(--r-sm); padding: 12px 16px; font-size: 14px; }
.strike { color: var(--muted); font-weight: 500; font-size: .7em; }
.slot--deal { background: var(--accent-soft); color: #C2410C; }
.slot--deal:hover { background: var(--accent); color: #fff; }
.slot--deal small { color: #C2410C; }
.slot--full { background: #EEF0F5; color: #6B7386; text-decoration: none; border: 1px dashed #C5CBD8; cursor: pointer; font: inherit; font-weight: 600; }
.slot--full small { color: var(--brand); }
.slot--full:hover { background: var(--brand-soft); color: var(--brand); }
.slot-form { display: inline; }
.hot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 12px; }
.hot-grid--rail { grid-template-columns: repeat(4, 1fr); }
.hot { display: grid; grid-template-columns: 96px 1fr; gap: 12px; background: #fff; border-radius: var(--r); padding: 12px; box-shadow: var(--shadow); color: var(--ink); align-items: start; }
.hot:hover { text-decoration: none; transform: translateY(-2px); }
.hot img { width: 96px; height: 96px; object-fit: cover; border-radius: 12px; }
.hot__body { display: flex; flex-direction: column; gap: 2px; font-size: 14px; min-width: 0; }
.hot__body > b { font-size: 15px; }
.hot__body .badge { position: static; align-self: flex-start; margin-bottom: 2px; }
.hot__when { color: var(--brand); font-weight: 600; }
.hot__price { font-weight: 700; font-size: 16px; }
.hot__price s { color: var(--muted); font-weight: 400; font-size: 13px; margin-right: 4px; }
.terms { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; display: grid; gap: 6px; font-size: 14px; }
.who { display: flex; flex-wrap: wrap; gap: 8px; }
.form .chip--radio { display: inline-flex; flex-direction: row; align-items: center; gap: 6px; cursor: pointer; font-weight: 500; font-size: 14px; }
.chip--radio input { accent-color: var(--brand); }
.chip--radio:has(input:checked) { background: var(--brand); color: #fff; border-color: var(--brand); }
.bk--wait { grid-template-columns: 220px 1fr auto; opacity: 1; border: 1px dashed var(--line); }
.notifs { display: grid; gap: 8px; }
.notif { display: grid; grid-template-columns: 40px 1fr; gap: 12px; background: #fff; border-radius: var(--r-sm); padding: 14px; color: var(--ink); }
.notif:hover { text-decoration: none; box-shadow: var(--shadow); }
.notif--new { border-left: 4px solid var(--accent); }
.notif__ico { font-size: 24px; }
.notif__body { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.member { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--line); }
.member > div { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.member__limit { display: flex; gap: 6px; }
.member__limit .inp { width: 110px; padding: 8px 10px; }
.form--inline { grid-template-columns: 1fr 1.4fr auto; align-items: center; }
.form--inline .inp { border: 0; }
.land { background: linear-gradient(180deg, #fff, var(--bg)); padding: 48px 0 24px; }
.land__hero { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center; }
.land__eyebrow { display: inline-block; background: var(--brand-soft); color: var(--brand); font-weight: 700; font-size: 13px; padding: 6px 12px; border-radius: 999px; margin-bottom: 16px; }
.land__h1 { font-size: clamp(32px, 5vw, 56px); line-height: 1.05; }
.land__lead { font-size: 19px; color: var(--muted); max-width: 640px; }
.land__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 28px; }
.land__nums { display: flex; gap: 32px; flex-wrap: wrap; }
.land__nums b { display: block; font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.land__nums span { color: var(--muted); font-size: 14px; }
.land__art { background: linear-gradient(135deg, #1546E0, #6C4DFF); border-radius: 32px; padding: 40px; display: grid; place-items: center; min-height: 360px; }
.land__dark { background: var(--brand-dark); color: #fff; padding: 48px 0; margin-top: 48px; }
.land__dark h2 { margin-top: 0; }
.land__dark .muted { color: rgba(255,255,255,.7); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.feat { background: rgba(255,255,255,.08); border-radius: var(--r); padding: 22px; display: flex; flex-direction: column; gap: 8px; }
.feat span { font-size: 30px; }
.feat b { font-size: 18px; }
.feat p { margin: 0; color: rgba(255,255,255,.8); font-size: 14px; }
@media (max-width: 960px) {
  .benefits--4, .hot-grid--rail, .feat-grid { grid-template-columns: 1fr 1fr; }
  .land__hero { grid-template-columns: 1fr; }
  .land__art { display: none; }
  .form--inline { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .benefits--4, .hot-grid--rail, .feat-grid, .hot-grid { grid-template-columns: 1fr; }
  .bk--wait, .member { grid-template-columns: 1fr; }
}

/* style pass: display type, warm surfaces, brand gradients, icons instead of emoji */
h1, h2, .hero__num, .hero__slogan, .stats__grid b, .land__h1, .land__nums b, .side__price, .prof__wallet b, .ticket__code b, .logo span, .ftr__logo, .cat b { font-family: var(--display); letter-spacing: -.01em; }
h1 { font-weight: 700; } h2 { font-weight: 600; }
.logo span { font-weight: 700; font-size: 20px; }
.btn { border-radius: 16px; font-weight: 600; }
.btn--primary { box-shadow: 0 8px 24px rgba(31, 91, 255, .28); }
.btn--primary:hover { box-shadow: 0 10px 28px rgba(31, 91, 255, .36); }
.chip { background: var(--card); border-color: var(--line); }
.hero__card { border-radius: 32px; }
.hero__card--a { background: linear-gradient(135deg, #1F5BFF, #21D4C9); }
.hero__card--b { background: linear-gradient(160deg, #0E3B8C, #1F5BFF); }
.hero__card--c { background: linear-gradient(135deg, #FF6A3D, #FFB020); }
.hero__slogan { transform: rotate(-3deg); text-shadow: 0 5px 0 rgba(14, 59, 140, .5), 0 14px 34px rgba(0, 0, 0, .35); }
.card, .benefit, .how__step, .box, .side, .review, .offer, .bk, .pkg, .hot, .notif, .review-form, .form--row, .prof__wallet { border: 1px solid var(--line); box-shadow: none; border-radius: var(--r); background: var(--card); }
.card:hover, .benefit:hover, .hot:hover, .bk:hover { box-shadow: var(--shadow); border-color: transparent; }
.benefit__ico { width: 48px; height: 48px; border-radius: 16px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; font-size: 24px; }
.benefit__ico svg { width: 26px; height: 26px; }
.cat { border-radius: 28px; }
.cat--sport { background: linear-gradient(135deg, #1F5BFF, #21D4C9); }
.cat--relax { background: linear-gradient(135deg, #0E3B8C, #1F5BFF); }
.cat--beauty { background: linear-gradient(135deg, #FF6A3D, #FFB020); }
.cat--all { background: var(--card); }
.nav__hot { color: var(--accent) !important; display: inline-flex; align-items: center; gap: 6px; }
.nav__hot svg, .bell svg { width: 18px; height: 18px; display: block; }
.bell { color: var(--ink); }
.bell svg { width: 22px; height: 22px; }
.hdr { border-bottom: 0; box-shadow: 0 1px 0 var(--line); background: rgba(255, 253, 249, .92); backdrop-filter: blur(12px); }
.inp { border-radius: 16px; background: var(--card); }
.card__row .price { color: var(--brand); background: var(--brand-soft); padding: 4px 10px; border-radius: 10px; }
.badge--hot, .hot__body .badge { background: linear-gradient(135deg, #FF6A3D, #FFB020); }
.badge--new { background: var(--teal); color: var(--ink); }
.slot { border-radius: 12px; }
.day { border-radius: 16px; }
.stats { background: var(--brand-dark); }
.ticket__code { background: linear-gradient(160deg, #0E3B8C, #1F5BFF); }
.land__art { background: linear-gradient(135deg, #1F5BFF, #21D4C9); }
.promo--corp { background: linear-gradient(135deg, #0E3B8C, #1F5BFF); }
.promo--partner { background: linear-gradient(135deg, #0E8F87, #21D4C9); }
.promo--gift { background: linear-gradient(135deg, #FF6A3D, #FFB020); }
.faq details { border: 1px solid var(--line); background: var(--card); border-radius: var(--r-sm); }
.ftr { background: var(--card); }
