:root {
  --bg: #0a0a0d;
  --bg-2: #0f0e14;
  --panel: #141219;
  --panel-2: #1a1822;
  --line: rgba(255, 255, 255, 0.1);
  --line-2: rgba(255, 255, 255, 0.18);
  --text: #f4f1ec;
  --muted: #aba7b4;
  --muted-2: #8d8998;
  --accent: #ff6a5a;
  --accent-deep: #d93b2b;
  --amber: #f0b357;
  --ok: #79d0a8;
  --r: 14px;
  --r-lg: 22px;
  --wrap: 1180px;
  --pad: clamp(16px, 4vw, 28px);
  --font: 'Onest', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Unbounded', 'Onest', 'Segoe UI', system-ui, sans-serif;
}

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

[hidden] {
  display: none !important;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-underline-offset: 3px;
}

a:hover {
  color: #ff8b7e;
}

button {
  font: inherit;
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: clamp(56px, 9vw, 110px);
  position: relative;
}

.section,
#top {
  scroll-margin-top: 84px;
}

@media (max-width: 900px) {
  .section,
  #top {
    scroll-margin-top: 150px;
  }
}

@media (max-width: 560px) {
  .section,
  #top {
    scroll-margin-top: 104px;
  }
}

.section--tint {
  background: linear-gradient(180deg, transparent, var(--bg-2) 12%, var(--bg-2) 88%, transparent);
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}

.h2 {
  font-size: clamp(27px, 4.4vw, 46px);
}

.lead {
  color: var(--muted);
  font-size: clamp(16px, 1.9vw, 19px);
  max-width: 64ch;
  margin-top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--text);
  color: #111;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.2s;
}

.skip:focus {
  top: 12px;
  color: #111;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background-color 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: var(--accent);
  background-color: var(--accent);
  color: #100e14;
}

.btn--primary:hover {
  background: #fff;
  color: #100e14;
}

.btn--ghost {
  background: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--text);
  background: rgba(255, 106, 90, 0.08);
}

.btn--sm {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 15px;
}

.btn svg {
  flex: none;
}

.hdr {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 13, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.hdr__in {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  flex-wrap: wrap;
  padding-block: 9px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo__accent {
  color: var(--accent);
}

.logo__mark {
  flex: none;
}

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
  transition:
    color 0.18s,
    background-color 0.18s;
}

.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hdr .btn {
  flex: none;
}

@media (max-width: 900px) {
  .hdr__in {
    min-height: 60px;
  }

  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, #000 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent);
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hdr .btn {
    margin-left: auto;
  }
}

@media (max-width: 767px) {
  .hdr .btn {
    display: none;
  }
}

@media (max-width: 560px) {
  .nav {
    order: 0;
    width: auto;
    margin-left: auto;
    min-width: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
  }

  .hdr__in {
    gap: 10px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 8vw, 92px) clamp(48px, 7vw, 80px);
}

.hero::before {
  content: '';
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(46% 40% at 18% 8%, rgba(217, 59, 43, 0.2), transparent 70%),
    radial-gradient(40% 42% at 88% 26%, rgba(240, 179, 87, 0.12), transparent 72%);
  pointer-events: none;
}

.hero__in {
  position: relative;
  display: grid;
  gap: clamp(30px, 4vw, 56px);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: start;
}

@media (max-width: 900px) {
  .hero__in {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

h1 {
  font-size: clamp(32px, 4.6vw, 54px);
  letter-spacing: -0.03em;
  font-weight: 700;
  text-wrap: balance;
}

.hero__sub {
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
  margin-top: 22px;
  max-width: 56ch;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__side {
  border-left: 1px solid var(--line);
  padding-left: clamp(18px, 3vw, 34px);
}

.hero__side {
  align-self: stretch;
}

@media (max-width: 900px) {
  .hero__side {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-left: 0;
    padding-top: 26px;
  }
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.fact__v {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.2vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text);
}

.fact__l {
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}

.hero__note {
  color: var(--muted-2);
  font-size: 14px;
  margin-top: 22px;
}

.hero__side {
  display: flex;
  flex-direction: column;
}

.hero__art {
  margin: auto 0 0;
  padding-top: clamp(22px, 3vw, 32px);
}

.hero__art img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .hero__art {
    margin: 26px 0 0;
    padding-top: 0;
  }

  .hero__art img {
    aspect-ratio: auto;
    max-height: 240px;
  }
}

.qcc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.qcc-header h3 {
  font-size: clamp(22px, 3.5vw, 32px);
  margin: 0;
}

.qcc-controls {
  display: flex;
  gap: 8px;
}

.qcc-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--panel);
  color: var(--text);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    background-color 0.18s,
    border-color 0.18s;
  flex: none;
}

.qcc-btn:hover {
  background: var(--panel-2);
  border-color: var(--accent);
}

.qcc-btn svg {
  width: 18px;
  height: 18px;
}

.cats {
  position: relative;
  margin-top: 0;
}

.cats__row {
  display: flex;
  gap: clamp(12px, 1.5vw, 16px);
  overflow-x: auto;
  overflow-y: clip;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  padding: 8px 8px 16px;
  margin: -8px -8px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.cats__row::-webkit-scrollbar {
  display: none;
}

.cats::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  bottom: 16px;
  width: clamp(36px, 7vw, 64px);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 14, 20, 0), var(--bg-2));
  opacity: 1;
  transition: opacity 0.2s ease;
  z-index: 4;
}

.cats[data-end='true']::after {
  opacity: 0;
}

.cat {
  flex: 0 0 auto;
  width: clamp(140px, 18vw, 180px);
  scroll-snap-align: start;
  background: var(--bg-2);
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: left;
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

.cat:hover {
  transform: translateY(-4px);
}

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

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

.qcc__char {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 78%;
  pointer-events: none;
  z-index: 1;
}

.qcc__char img {
  width: 100%;
  height: auto;
  display: block;
}

.qcc__shadow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    to top,
    rgba(10, 10, 13, 0.95) 0%,
    rgba(10, 10, 13, 0.8) 25%,
    rgba(10, 10, 13, 0.3) 55%,
    transparent 100%
  );
}

.qcc__title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 14px;
  z-index: 3;
}

.qcc__title p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.qcc__count {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

.cat[aria-pressed='true'] {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.cat[aria-pressed='true'] .qcc__title p {
  color: var(--accent);
}

@media (max-width: 600px) {
  .cat {
    width: clamp(130px, 38vw, 170px);
  }
}

.fbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 16px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
}

.fbar__count {
  color: var(--muted);
  font-size: 15px;
}

.linkbtn {
  background: none;
  border: 0;
  color: var(--accent);
  cursor: pointer;
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 11px 4px;
  min-height: 44px;
}

.linkbtn:hover {
  color: #ff8b7e;
}

.grid {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 30px;
}

@media (max-width: 1000px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.card:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
}

.card__media {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #1b1a23, #0c0b11 70%);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__level {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(10, 10, 13, 0.78);
  border: 1px solid var(--line-2);
  backdrop-filter: blur(6px);
}

.lvl-extreme {
  color: #ff8b7e;
  border-color: rgba(255, 106, 90, 0.5);
}

.lvl-hard {
  color: var(--amber);
  border-color: rgba(240, 179, 87, 0.4);
}

.lvl-mid {
  color: var(--text);
}

.lvl-easy {
  color: var(--ok);
  border-color: rgba(121, 208, 168, 0.4);
}

.card__age {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(10, 10, 13, 0.78);
  border: 1px solid var(--line-2);
}

.card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.card__title {
  font-size: 21px;
}

.card__short {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.tag {
  font-size: 13px;
  color: var(--muted-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  color: var(--muted-2);
  font-size: 14px;
  margin-top: auto;
  padding-top: 6px;
}

.card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.price {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  white-space: nowrap;
}

.price small {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 400;
  letter-spacing: 0;
}

.card__foot-l {
  min-width: 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 7px;
  font-size: 13px;
  line-height: 1;
  flex-wrap: wrap;
}

.rating__star {
  width: 14px;
  height: 14px;
  fill: var(--amber);
  flex-shrink: 0;
}

.rating__v {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.rating__max {
  color: var(--muted-2);
  font-size: 12px;
}

.rating__n {
  color: var(--muted-2);
  font-size: 12px;
}

.modal__body .rating {
  margin: 12px 0 0;
}

.ratings-demo {
  margin: 26px 0 18px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
  padding-left: 12px;
  border-left: 2px solid var(--line-2);
}

.draftwarn {
  margin: 26px 0 20px;
  padding: 14px 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 106, 90, 0.55);
  background: rgba(255, 106, 90, 0.1);
  color: #ff8b7e;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}

.draftwarn b {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.draftwarn span {
  display: block;
  font-weight: 400;
  color: var(--muted);
}

.empty {
  text-align: center;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(34px, 6vw, 64px) 24px;
  margin-top: 30px;
}

.empty h3 {
  font-size: 22px;
}

.empty p {
  color: var(--muted);
  margin: 12px auto 22px;
  max-width: 44ch;
}

.steps {
  display: grid;
  gap: 2px;
  margin-top: 38px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

@media (min-width: 860px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  background: var(--bg-2);
  padding: clamp(22px, 3vw, 32px);
}

.step__n {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.step h3 {
  font-size: 19px;
  margin: 14px 0 10px;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

.atmo {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.atmo__row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: clamp(16px, 3vw, 40px);
  padding: clamp(24px, 3.4vw, 38px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

@media (max-width: 700px) {
  .atmo__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.atmo__n {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.14);
  letter-spacing: -0.03em;
  line-height: 1;
}

.atmo__row h3 {
  font-size: clamp(19px, 2.4vw, 25px);
}

.atmo__row p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 70ch;
}

@media (min-width: 701px) {
  .atmo__row:nth-child(even) {
    grid-template-columns: minmax(0, 1fr) 96px;
  }

  .atmo__row:nth-child(even) .atmo__n {
    order: 2;
    text-align: right;
  }

  .atmo__row:nth-child(even) .atmo__c {
    order: 1;
  }
}

.safety {
  margin-top: clamp(34px, 5vw, 60px);
  border: 1px solid rgba(255, 106, 90, 0.28);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(217, 59, 43, 0.09), transparent 60%);
  padding: clamp(22px, 3.4vw, 40px);
}

.safety h3 {
  font-size: clamp(21px, 2.8vw, 28px);
}

.safety > p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 72ch;
}

.rules {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.rules li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
  font-size: 15px;
  align-items: start;
}

.rules svg {
  margin-top: 4px;
  color: var(--accent);
}

.locs {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  margin-top: 38px;
}

@media (min-width: 860px) {
  .locs {
    grid-template-columns: 1fr 1fr;
  }
}

.loc {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: clamp(20px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.loc h3 {
  font-size: 22px;
}

.loc__addr {
  font-size: 17px;
}

.loc__metro {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 15px;
}

.loc__find {
  color: var(--muted);
  font-size: 15px;
}

.loc__hours {
  color: var(--muted-2);
  font-size: 14px;
}

.map {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-2);
}

.map__ph {
  padding: 22px;
  text-align: center;
}

.map__ph p {
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 14px;
}

.map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05) brightness(0.86);
}

.reviews {
  margin-top: 38px;
}

@media (min-width: 760px) {
  .reviews {
    column-count: 2;
    column-gap: 22px;
  }
}

@media (min-width: 1080px) {
  .reviews {
    column-count: 3;
  }
}

.rev {
  break-inside: avoid;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--panel);
  padding: 22px;
  margin: 0 0 22px;
}

.revdemo {
  margin-top: 18px;
}

.revdemo p {
  margin-top: 0;
}

.revempty {
  margin-top: 34px;
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  padding: clamp(24px, 4vw, 40px);
  color: var(--muted);
  max-width: 64ch;
}

.rev__q {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.rev__m {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.rev__n {
  font-weight: 600;
}

.rev__d {
  color: var(--muted-2);
}

.rev__quest {
  color: var(--accent);
  display: block;
  margin-top: 2px;
}

.faq {
  margin-top: 38px;
  border-top: 1px solid var(--line);
  max-width: 900px;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 44px 20px 0;
  position: relative;
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 500;
  font-family: var(--font-display);
}

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

.faq summary::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq p {
  color: var(--muted);
  font-size: 16px;
  padding: 0 0 22px;
  max-width: 78ch;
}

.final {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background:
    radial-gradient(70% 120% at 20% 0%, rgba(217, 59, 43, 0.16), transparent 65%), var(--panel);
  padding: clamp(28px, 5vw, 64px);
  text-align: center;
}

.final h2 {
  font-size: clamp(25px, 3.8vw, 40px);
}

.final p {
  color: var(--muted);
  margin: 16px auto 28px;
  max-width: 56ch;
}

.ftr {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: clamp(38px, 5vw, 60px) 40px;
}

.ftr__grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 860px) {
  .ftr__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.ftr h3 {
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin: 0 0 12px;
  font-weight: 500;
  font-family: var(--font);
}

.ftr p,
.ftr li {
  color: var(--muted);
  font-size: 15px;
}

.ftr li + li {
  margin-top: 2px;
}

.ftr li a,
.ftr li .ftr__btn,
.map__ph a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.ftr__btn {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--accent);
  font-size: 15px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ftr__btn:hover {
  color: #ff8b7e;
}

.ftr__legal {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.ftr__legal p {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.55;
}

.mcta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, rgba(10, 10, 13, 0), rgba(10, 10, 13, 0.94) 32%);
}

.mcta .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .mcta {
    display: block;
  }

  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }
}

.ovl {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(6px);
  padding: clamp(10px, 3vw, 32px);
  overflow-y: auto;
}

.ovl.is-open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal {
  width: 100%;
  max-width: 860px;
  margin: auto;
  background: var(--panel);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: pop 0.22s ease;
}

@keyframes pop {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal__top {
  position: relative;
}

.modal__cover {
  aspect-ratio: 16/7;
  background: linear-gradient(160deg, #1b1a23, #0c0b11 70%);
  overflow: hidden;
}

.modal__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.modal__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 13, 0.8);
  border: 1px solid var(--line-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background-color 0.18s,
    border-color 0.18s;
}

.modal__close:hover {
  background: rgba(217, 59, 43, 0.3);
  border-color: var(--accent);
}

.modal__body {
  padding: clamp(20px, 3.4vw, 34px);
}

.modal__body h2 {
  font-size: clamp(24px, 3.4vw, 34px);
}

.modal__full {
  color: var(--muted);
  margin-top: 16px;
  font-size: 16px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  margin-top: 26px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

@media (max-width: 760px) {
  .specs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.spec {
  background: var(--panel-2);
  padding: 14px 16px;
}

.spec dt {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.spec dd {
  margin: 6px 0 0;
  font-size: 16px;
  font-weight: 600;
}

.modal h3 {
  font-size: 19px;
  margin-top: 32px;
}

.sched {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

.day {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 16px;
  align-items: center;
}

.day + .day {
  border-top: 1px solid var(--line);
}

.day:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

@media (max-width: 560px) {
  .day {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.day__d {
  font-size: 14px;
  line-height: 1.3;
}

.day__d b {
  display: block;
  font-weight: 600;
  font-size: 15px;
}

.day__d span {
  color: var(--muted-2);
}

.slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.slot {
  min-height: 44px;
  min-width: 76px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--text);
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 0.16s,
    border-color 0.16s,
    color 0.16s;
}

.slot:hover {
  background: var(--text);
  color: #100e14;
  border-color: var(--text);
}

.slot--off {
  color: var(--muted-2);
  border-color: var(--line);
  cursor: not-allowed;
  background: transparent;
}

.slot--off:hover {
  color: var(--muted-2);
  border-color: var(--line);
}

.slot--past {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  color: #9a96a6;
}

.slot--past:hover {
  background: transparent;
}

.slot--busy {
  background: repeating-linear-gradient(
    135deg,
    transparent 0 4px,
    rgba(255, 255, 255, 0.06) 4px 8px
  );
}

.slot--busy:hover {
  background: repeating-linear-gradient(
    135deg,
    transparent 0 4px,
    rgba(255, 255, 255, 0.06) 4px 8px
  );
}

.slot--selected {
  background: var(--accent);
  color: #100e14;
  border-color: var(--accent);
}

.slot--selected:hover {
  background: var(--accent);
  color: #100e14;
  border-color: var(--accent);
}

.modal .btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted-2);
}

.legend i {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 3px;
  margin-right: 7px;
  vertical-align: -1px;
  border: 1px solid var(--line-2);
}

.legend i.on {
  background: var(--text);
  border-color: var(--text);
}

.legend i.busy {
  background: repeating-linear-gradient(
    135deg,
    transparent 0 3px,
    rgba(255, 255, 255, 0.28) 3px 6px
  );
}

.legend i.past {
  background: linear-gradient(
    to bottom right,
    transparent 42%,
    var(--muted-2) 42% 58%,
    transparent 58%
  );
}

.disclaimer {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  color: var(--muted-2);
  font-size: 13.5px;
  line-height: 1.5;
}

.disclaimer svg {
  margin-top: 2px;
  color: var(--amber);
}

.modal__cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.modal__cta .btn {
  flex: 1 1 220px;
}

.modal--form {
  max-width: 600px;
}

.fmodal__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: clamp(20px, 3.4vw, 30px) clamp(20px, 3.4vw, 34px) 0;
}

.fmodal__head h2 {
  font-size: clamp(22px, 3vw, 29px);
  flex: 1;
  min-width: 0;
}

.fmodal__head .modal__close {
  position: static;
  flex: none;
}

.fmodal__lead {
  color: var(--muted);
  font-size: 15px;
  margin-top: 12px;
  padding-inline: clamp(20px, 3.4vw, 34px);
}

.fform {
  padding: clamp(18px, 3vw, 26px) clamp(20px, 3.4vw, 34px) clamp(22px, 3.4vw, 34px);
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field__l {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.field__l .req {
  color: var(--accent);
}

.field__hint {
  font-size: 13px;
  color: var(--muted-2);
  line-height: 1.45;
}

.field__price {
  background: var(--bg-card);
  color: var(--accent);
  font-weight: 600;
  cursor: default;
}

.field input[type='text'],
.field input[type='tel'],
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: var(--r);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--text);
  font: inherit;
  font-size: 16px;
}

.field textarea {
  min-height: 92px;
  resize: vertical;
  line-height: 1.5;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline-offset: 1px;
}

.field input[aria-invalid='true'],
.field textarea[aria-invalid='true'] {
  border-color: var(--accent);
}

.field__err {
  color: #ff8b7e;
  font-size: 13.5px;
  line-height: 1.45;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

.field__err svg {
  flex: none;
  margin-top: 2px;
}

.consent {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255, 255, 255, 0.02);
}

.consent input {
  width: 22px;
  height: 22px;
  margin: 0;
  align-self: center;
  accent-color: var(--accent);
  flex: none;
}

.consent label {
  display: flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
  cursor: pointer;
}

.consent[data-invalid='true'] {
  border-color: var(--accent);
}

.consent .field__err,
.consent .fpolicy {
  grid-column: 2;
}

.fpolicy {
  margin-top: 2px;
  font-size: 13.5px;
  line-height: 1.5;
}

.fpolicy a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.fform .btn {
  width: 100%;
}

.fform .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.note {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border-radius: var(--r);
  padding: 16px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.03);
}

.note h3 {
  font-size: 16px;
  margin: 0;
}

.note p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  margin-top: 7px;
}

.note svg {
  margin-top: 2px;
}

.note--warn {
  border-color: rgba(240, 179, 87, 0.45);
  background: rgba(240, 179, 87, 0.09);
}

.note--warn svg,
.note--warn h3 {
  color: var(--amber);
}

.note--ok {
  border-color: rgba(121, 208, 168, 0.45);
  background: rgba(121, 208, 168, 0.09);
}

.note--ok svg,
.note--ok h3 {
  color: var(--ok);
}

.note--err {
  border-color: rgba(255, 106, 90, 0.5);
  background: rgba(255, 106, 90, 0.1);
}

.note--err svg,
.note--err h3 {
  color: #ff8b7e;
}

.modal--form .note {
  margin: 18px clamp(20px, 3.4vw, 34px) 0;
}

.modal--form.is-done .note {
  margin-bottom: clamp(22px, 3.4vw, 34px);
}

.nojs {
  border: 1px solid rgba(240, 179, 87, 0.4);
  background: rgba(240, 179, 87, 0.08);
  border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 30px);
  margin-top: 30px;
}

.nojs h3 {
  font-size: 20px;
}

.nojs p {
  color: var(--muted);
  margin-top: 12px;
  max-width: 70ch;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .card:hover {
    transform: none;
  }

  .btn:active {
    transform: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
