:root {
  --bg: #000000;
  --bg-alt: #050505;
  --surface: #0a0a0a;
  --surface-muted: #111111;
  --surface-soft: #151515;
  --text: #ffffff;
  --text-soft: #d5ddd9;
  --muted: #9aa5a0;
  --line: rgba(255, 255, 255, 0.18);
  --line-soft: rgba(255, 255, 255, 0.1);
  --brand: #2acf43;
  --brand-soft: #1f6f2a;
  --brand-deep: #5ff275;
  --brand-glow: rgba(42, 207, 67, 0.55);
  --brand-line: rgba(42, 207, 67, 0.5);
  --line-fade: rgba(255, 255, 255, 0.16);
  --danger: #fb7185;
  --warning: #fbbf24;
  --success: #4ade80;

  --header-bg: rgba(0, 0, 0, 0.9);
  --noise-dot: rgba(255, 255, 255, 0.04);
  --glow-a: rgba(14, 73, 43, 0.58);
  --glow-b: rgba(10, 49, 30, 0.5);
  --glow-c: rgba(16, 70, 43, 0.34);

  --button-bg: #009645;
  --button-text: #000000;
  --button-ghost-bg: #000000;
  --button-ghost-text: #ffffff;

  --radius-xl: 2rem;
  --radius-lg: 1.2rem;
  --radius-md: 0.9rem;

  --shadow: 10px 10px 0 0 var(--line);
  --shadow-sm: 4px 4px 0 0 var(--line);

  --scroll-progress: 0%;
  --scroll-y: 0;
  --cursor-x: 50vw;
  --cursor-y: 50vh;

  --font-body: 'Sora', sans-serif;
  --font-ui: 'Space Grotesk', sans-serif;
  --font-display: 'Archivo Black', sans-serif;

  --cursor-default: url('./icons/cursors/default-cursor.png') 2 2, auto;
  --cursor-pointer: url('./icons/cursors/pointer-cursor.png') 3 2, pointer;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background-color: #000000;
}

html {
  scroll-behavior: smooth;
  background: #000000;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, var(--glow-a) 0%, transparent 44%),
    radial-gradient(circle at 90% 18%, var(--glow-b) 0%, transparent 34%),
    radial-gradient(circle at 80% 90%, var(--glow-c) 0%, transparent 40%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background-color 260ms ease, color 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  body *,
  body *::before,
  body *::after {
    cursor: var(--cursor-default) !important;
  }

  a,
  a *,
  button,
  button *,
  summary,
  summary *,
  label[for],
  [role='button'],
  [role='tab'],
  [type='button'],
  [type='submit'],
  [type='reset'],
  .btn,
  .team-filter,
  .gallery-image-btn,
  .team-photo-btn,
  .lang-toggle,
  .lang-option,
  .menu-btn,
  .download-cta,
  [data-open-booking],
  [data-open-about],
  [data-open-gallery],
  [data-open-prices],
  [data-open-download],
  [data-team-filter],
  [data-gallery-open],
  [data-team-photo-open],
  .floating-booking-icon,
  .floating-booking-icon *,
  .floating-booking-icon::before,
  .floating-booking-icon::after,
  .floating-top-icon,
  .floating-top-icon *,
  .floating-top-icon::before,
  .floating-top-icon::after,
  .faq-list details,
  .faq-list summary,
  .faq-list summary *,
  .faq-list details a,
  .faq-list details a * {
    cursor: var(--cursor-pointer) !important;
  }
}

main {
  position: relative;
  z-index: 2;
}

.wrap {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  z-index: 140;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: var(--scroll-progress);
  background: linear-gradient(90deg, var(--brand) 0%, #00e270 100%);
  box-shadow: 0 0 16px var(--brand-glow);
  transition: width 100ms linear;
}

.cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  left: 0;
  top: 0;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
  z-index: 1;
  opacity: 0;
  transition: opacity 200ms ease;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--noise-dot) 1px, transparent 1px);
  background-size: 3px 3px;
  z-index: -3;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.42;
  transform: translateY(calc(var(--scroll-y) * 1px));
}

.blob-a {
  width: 420px;
  height: 420px;
  top: -140px;
  right: -120px;
  background: var(--glow-a);
  animation: floatA 9s ease-in-out infinite;
}

.blob-b {
  width: 330px;
  height: 330px;
  left: -120px;
  top: 36%;
  background: var(--glow-b);
  animation: floatB 11s ease-in-out infinite;
}

.blob-c {
  width: 280px;
  height: 280px;
  right: 14%;
  bottom: -90px;
  background: var(--glow-c);
  animation: floatC 12s ease-in-out infinite;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
  background: var(--header-bg);
  border-bottom: 3px solid var(--line);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: contain;
  transform: scale(1.5);
  transform-origin: center;
  z-index: 2;
  display: block;
}

.brand-logo-shell {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 0;
  overflow: visible;
  flex: 0 0 auto;
}

.brand-mark {
  font-family: var(--font-display);
  width: 48px;
  height: 48px;
  border: 3px solid var(--line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #000;
  box-shadow: var(--shadow-sm);
}

.brand-text {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  margin-left: 0.5cm;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
  position: relative;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-ui);
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  padding: 0.62rem 0.76rem;
  border-radius: 0.8rem;
  transition: background-color 170ms ease, color 170ms ease;
  white-space: nowrap;
}

.main-nav a:hover {
  background: var(--surface-muted);
}

@media (prefers-reduced-motion: no-preference) {
  .main-nav a,
  .lang-toggle,
  .menu-btn,
  .gallery-image-btn,
  .socials a,
  .card:not(.tilt-card) {
    transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  }

  .main-nav a:hover,
  .lang-toggle:hover,
  .menu-btn:hover,
  .socials a:hover {
    transform: scale(1.012);
  }

  .card:not(.tilt-card):hover {
    transform: scale(1.01);
  }

  .gallery-image-btn img {
    transition: transform 220ms ease;
  }

  .gallery-image-btn:hover img {
    transform: scale(1.018);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--line);
  border-radius: 1rem;
  padding: 0.98rem 1.45rem;
  text-decoration: none;
  background: var(--button-bg);
  color: var(--button-text);
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: var(--shadow);
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 220ms ease, color 220ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: scale(1.018);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: scale(0.992);
  box-shadow: var(--shadow-sm);
}

.btn-small {
  padding: 0.66rem 1rem;
  font-size: 0.72rem;
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: var(--button-ghost-bg);
  color: var(--button-ghost-text);
}

.lang-switch {
  position: relative;
}

.lang-toggle,
.theme-toggle,
.menu-btn {
  border: 3px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.lang-toggle {
  height: 44px;
  min-width: 86px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.lang-toggle img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid var(--line-soft);
}

#langToggleCode {
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 176px;
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 125;
}

.lang-option {
  width: 100%;
  border: 2px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.lang-option img {
  width: 22px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid var(--line-soft);
}

.lang-option:hover {
  border-color: var(--line);
  background: var(--surface-muted);
}

.lang-option.is-active {
  border-color: var(--line);
  background: var(--brand-soft);
}

.theme-toggle,
.menu-btn {
  width: 48px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.theme-toggle__icon {
  font-size: 1rem;
}

.menu-btn {
  display: none;
  padding: 8px;
}

.menu-btn span {
  display: block;
  width: 100%;
  height: 3px;
  margin: 3px 0;
  border-radius: 4px;
  background: currentColor;
}

.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  align-items: center;
  padding: 3.8rem 0 2.6rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 0.94;
  margin: 0;
  text-transform: uppercase;
  font-style: italic;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5.6rem);
  letter-spacing: -0.03em;
}

.hero-line-main {
  color: var(--text);
}

.hero-line-accent {
  color: var(--brand);
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  margin: 1.35rem 0 1rem;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.62;
  font-weight: 700;
  color: var(--text-soft);
}

.hero-address {
  margin: 0 0 1.45rem;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-address-location,
.hero-address-separator,
.hero-address-phone {
  display: inline;
}

.hero-address-separator {
  margin: 0 0.25em;
}

.hero-address-phone {
  color: inherit;
  text-decoration: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.84rem;
  margin-bottom: 1.6rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.card {
  position: relative;
  background: var(--surface);
  border: 3px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 1.15rem;
}

.stat {
  background: linear-gradient(150deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.card-label {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.card-value {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.38rem, 4vw, 2.08rem);
  font-style: italic;
}

.hero-visual {
  position: relative;
  padding: 1.1rem;
  border-radius: 2.2rem;
}

.app-frame {
  border: 3px solid var(--line);
  border-radius: 1.4rem;
  background: var(--surface-muted);
  overflow: hidden;
}

.app-top {
  min-height: 50px;
  border-bottom: 2px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
}

.app-top p {
  margin: 0 0 0 8px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

.gallery-mini {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.9rem;
}

.gallery-mini img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 0.85rem;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
}

.dot-red { background: var(--danger); }
.dot-yellow { background: var(--warning); }
.dot-green { background: var(--success); }

.app-body {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.8rem;
  padding: 1rem;
  min-height: 255px;
}

.meter-col {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 5px;
  border: 2px dashed var(--line-soft);
  border-radius: 1rem;
  padding: 0.7rem 0.45rem;
  background: var(--surface);
}

.meter-bar {
  width: 9px;
  border-radius: 9px;
  background: linear-gradient(180deg, var(--brand) 0%, var(--brand-deep) 100%);
  transform-origin: bottom;
  animation: meter 1.15s ease-in-out infinite;
}

.meter-bar:nth-child(1) { height: 46px; animation-delay: 0s; }
.meter-bar:nth-child(2) { height: 62px; animation-delay: 0.1s; }
.meter-bar:nth-child(3) { height: 52px; animation-delay: 0.2s; }
.meter-bar:nth-child(4) { height: 38px; animation-delay: 0.3s; }
.meter-bar:nth-child(5) { height: 72px; animation-delay: 0.4s; }
.meter-bar:nth-child(6) { height: 57px; animation-delay: 0.5s; }

.track-col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.track-row {
  border: 2px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.62rem 0.78rem;
  background: var(--surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.track-row strong {
  color: var(--brand);
}

.wave-line {
  margin-top: 0.5rem;
  height: 54px;
  border-radius: 0.9rem;
  border: 2px solid var(--line);
  background:
    repeating-linear-gradient(
      90deg,
      var(--brand-line) 0px,
      var(--brand-line) 2px,
      transparent 2px,
      transparent 8px
    ),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 100%);
  animation: waveShift 1.3s linear infinite;
}

.floating-chip {
  position: absolute;
  border: 2px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 0.45rem 0.78rem;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  box-shadow: var(--shadow-sm);
}

.chip-1 {
  top: -12px;
  right: 24px;
  animation: chipFloat 4.2s ease-in-out infinite;
}

.chip-2 {
  left: -18px;
  top: 38%;
  animation: chipFloat 4.8s ease-in-out infinite 0.2s;
}

.chip-3 {
  right: -14px;
  bottom: 18px;
  animation: chipFloat 5.1s ease-in-out infinite 0.3s;
}

.section {
  padding: 4.4rem 0 0.7rem;
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 4.8vw, 3.25rem);
}

.section-lead {
  margin: 0 0 1.3rem;
  max-width: 860px;
  font-size: 1.07rem;
  line-height: 1.72;
  font-weight: 700;
  color: var(--text-soft);
}

.about-line {
  margin: 0.35rem 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.65;
  color: var(--text-soft);
}

.social-row {
  margin-top: 1.25rem;
}

.social-row > p {
  margin: 0 0 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.7rem;
  color: var(--muted);
}

.about-grid,
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-grid .card,
.program-card {
  min-height: 190px;
}

.about-grid h3,
.program-card h3,
.story-step h3,
.story-preview h3,
.cta h2 {
  font-size: 1.35rem;
  margin-bottom: 0.72rem;
}

.about-grid p,
.program-card p,
.story-step p,
.story-preview p,
.cta p {
  margin: 0;
  line-height: 1.58;
  font-weight: 700;
  color: var(--text-soft);
}

.story-section {
  padding-top: 5rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 390px) 1fr;
  gap: 1.25rem;
  align-items: start;
}

.story-preview {
  position: sticky;
  top: 106px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.story-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  border: 3px solid var(--line);
  background: var(--brand);
  color: #000;
  font-size: 2rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

.story-preview h3 {
  margin-bottom: 0.25rem;
}

.story-dots {
  margin-top: auto;
  display: flex;
  gap: 0.45rem;
}

.story-dots span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 2px solid var(--line);
  background: var(--surface);
}

.story-dots span.is-active {
  width: 26px;
  background: var(--brand);
}

.story-steps {
  display: grid;
  gap: 0.95rem;
}

.story-step {
  min-height: 170px;
  border-color: var(--line-soft);
  box-shadow: 8px 8px 0 0 var(--line-fade);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.story-step .step-index {
  margin: 0 0 0.58rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.story-step.is-active {
  transform: translateX(6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.program-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.program-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.program-icon {
  margin: 0 0 0.3rem;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 3px solid var(--line);
  border-radius: 15px;
  background: var(--surface-muted);
  font-size: 1.8rem;
}

.gallery-grid,
.team-grid,
.reviews-grid,
.location-grid {
  display: grid;
  gap: 1rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  min-height: 280px;
}

.gallery-image-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  margin: 0 0 0.75rem;
  cursor: zoom-in;
}

.gallery-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 2px solid var(--line);
  border-radius: 1rem;
  margin-bottom: 0;
  display: block;
}

.gallery-card p {
  margin: 0;
  font-weight: 700;
  color: var(--text-soft);
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1rem;
}

.team-filter {
  position: relative;
  overflow: visible;
  border: 1px solid rgba(42, 207, 67, 0.52);
  border-radius: 999px;
  background: rgba(10, 26, 17, 0.66);
  color: #ffffff;
  padding: 0.38rem 0.82rem;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.team-filter:hover,
.team-filter:focus-visible {
  border-color: rgba(85, 236, 110, 0.72);
  background: rgba(24, 62, 36, 0.78);
  transform: scale(1.02);
}

.team-filter.is-active {
  background: rgba(42, 207, 67, 0.2);
  border-color: rgba(85, 236, 110, 0.92);
  color: #ffffff;
  transform-origin: center;
  animation: teamFilterActivePulse 2.35s ease-in-out infinite;
}

.team-filter.is-active::before,
.team-filter.is-active::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 1px solid rgba(118, 249, 145, 0.62);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.96);
}

.team-filter.is-active::before {
  animation: teamFilterActiveWave 2.6s ease-out infinite;
}

.team-filter.is-active::after {
  animation: teamFilterActiveWave 2.6s ease-out infinite 1.3s;
}

.team-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
}

.team-card[hidden] {
  display: none !important;
}

.team-photo-btn {
  --face-x: 50%;
  --face-y: 28%;
  width: 84px;
  height: 84px;
  padding: 0;
  margin: 0 0 0.75rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
}

.team-card img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: cover;
  object-position: var(--face-x) var(--face-y);
  border: 2px solid var(--line);
  margin-bottom: 0;
  display: block;
}

.team-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.team-card p {
  margin: 0;
  line-height: 1.6;
  color: var(--text-soft);
  font-weight: 700;
}

.team-card-scroll {
  margin-top: 0.18rem;
  max-height: 146px;
  overflow-y: auto;
  padding-right: 0.24rem;
}

.team-card-scroll p {
  margin: 0;
}

.team-bio-list {
  margin: 0.48rem 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.28rem;
}

.team-bio-list li {
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.45;
  font-size: 0.84rem;
}

.team-role {
  margin-bottom: 0.42rem !important;
  color: var(--brand) !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.72rem;
}

.team-role-note {
  margin-left: 0.28rem;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.01em;
  color: rgba(229, 255, 236, 0.92);
  white-space: nowrap;
}

.reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.location-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-note {
  margin-top: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  font-weight: 700;
  font-size: 0.85rem;
}

.rating-card {
  display: grid;
  gap: 0.55rem;
}

.rating-row {
  display: grid;
  grid-template-columns: 24px 1fr 40px;
  align-items: center;
  gap: 0.65rem;
}

.rating-row span {
  font-weight: 900;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.rating-row b {
  height: 10px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: var(--surface-muted);
}

.inline-link {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}

a[href^='tel:'] {
  white-space: nowrap;
}

.amenities-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.3rem;
}

.amenities-list li {
  color: var(--text-soft);
  font-weight: 700;
}

.location-info-card,
.location-hours-card {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.location-info-card .card-label,
.location-hours-card .card-label {
  margin: 0.2rem 0 0.1rem;
}

.location-info-card p {
  margin: 0;
  line-height: 1.55;
}

.location-info-card .amenities-list {
  margin-top: 0.35rem;
}

.hours-list {
  margin-top: 0.45rem;
  display: grid;
  gap: 0.35rem;
}

.hours-list p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px dashed var(--line-soft);
  padding-bottom: 0.32rem;
  color: var(--text-soft);
  font-weight: 700;
}

.hours-list b {
  color: var(--text);
  font-size: 0.87rem;
}

.hours-note {
  margin: 0.5rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 600;
}

.location-actions {
  margin-top: 1rem;
  margin-bottom: 0;
}

.location-hours-card .location-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.location-map-actions,
.location-hours-actions {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.btn-icon-map {
  width: 3.25rem;
  min-width: 3.25rem;
  padding: 0;
  line-height: 0;
}

.expand-map-icon {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
  stroke: none;
}

.call-map-icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
}

.location-map-card {
  display: flex;
  flex-direction: column;
}

.map-frame-wrap {
  margin-top: 0.6rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--surface-muted);
  min-height: 280px;
}

.map-frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 260;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 2.8vw, 28px);
  background: rgba(0, 0, 0, 0.82);
  overscroll-behavior: contain;
}

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

.modal-window {
  position: relative;
  width: min(1200px, 96vw);
  max-height: 92vh;
  border: 2px solid var(--line);
  border-radius: 1.2rem;
  box-shadow: var(--shadow);
}

.modal-window-gallery {
  background: #000;
  overflow: hidden;
}

#galleryModalImage {
  width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
}

#teamPhotoModalImage {
  width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
}

.modal-window-map {
  width: min(1320px, 97vw);
  max-height: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--surface);
  padding: 1rem;
}

.modal-window-about {
  width: min(1100px, 97vw);
  max-height: 90vh;
  background: linear-gradient(160deg, rgba(8, 8, 8, 0.98) 0%, rgba(10, 18, 14, 0.97) 100%);
  padding: clamp(0.9rem, 2vw, 1.35rem);
}

.about-modal-scroll {
  max-height: calc(90vh - 1.8rem);
  overflow: auto;
  padding-right: 0.25rem;
  overscroll-behavior: contain;
}

.modal-window-booking {
  width: min(640px, 96vw);
  max-height: none;
  min-height: clamp(460px, 70vh, 580px);
}

.modal-window-booking .about-modal-scroll {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.booking-modal-content h2 {
  margin: 0.2rem 0 0.65rem;
}

.booking-modal-intro[hidden] {
  display: none !important;
}

.booking-modal-text {
  margin: 0 0 0.95rem;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.5;
}

.booking-form {
  display: grid;
  gap: 0.72rem;
  min-height: 440px;
}

.booking-step {
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  min-height: 440px;
}

.booking-step[hidden] {
  display: none !important;
}

.booking-next-btn {
  width: 100%;
  margin-top: auto;
}

.booking-step-actions {
  display: grid;
  gap: 0.52rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.5fr);
  margin-top: 0.1rem;
}

.booking-step-actions .btn {
  width: 100%;
}

.booking-success-step {
  min-height: clamp(290px, 46vh, 430px);
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1rem;
  text-align: center;
  padding: clamp(0.8rem, 2vw, 1.4rem);
}

.booking-success-title {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #eaffee;
}

.booking-success-text {
  margin: 0;
  max-width: 36ch;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  font-weight: 700;
  color: var(--text-soft);
}

.booking-success-close {
  min-width: min(240px, 100%);
}

.booking-field-label {
  display: flex;
  align-items: baseline;
  gap: 0.38rem;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-required {
  color: #ff7d7d;
  font-weight: 900;
}

.booking-field-hint {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 0.86rem;
  padding: 0.78rem 0.9rem;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
}

.booking-form textarea {
  resize: vertical;
  min-height: 132px;
}

#bookingStep2 textarea[name='comment'] {
  flex: 1 1 auto;
  min-height: 120px;
  max-height: 220px;
}

.booking-dob-row {
  display: grid;
  gap: 0.52rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-dob-row input {
  text-align: center;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: var(--muted);
}

.booking-select {
  position: relative;
}

.booking-select-trigger {
  width: 100%;
  border: 2px solid var(--line);
  border-radius: 0.86rem;
  padding: 0.78rem 2.6rem 0.78rem 0.9rem;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  position: relative;
}

.booking-select-trigger.is-selected {
  color: var(--text);
}

.booking-select-caret {
  position: absolute;
  right: 0.92rem;
  top: 50%;
  width: 0.62rem;
  height: 0.62rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.booking-select.is-open .booking-select-caret {
  transform: translateY(-34%) rotate(-135deg);
  border-color: #aefabf;
}

.booking-select-menu {
  position: absolute;
  top: calc(100% + 0.38rem);
  left: 0;
  right: 0;
  z-index: 20;
  border: 2px solid var(--line);
  border-radius: 0.86rem;
  background: linear-gradient(170deg, var(--surface) 0%, var(--surface-soft) 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42);
  padding: 0.34rem;
  display: grid;
  gap: 0.2rem;
}

.booking-overlay-menu {
  position: fixed;
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  z-index: 420;
  width: min(640px, 96vw);
  max-width: min(640px, 96vw);
  height: min(90vh, 580px);
  max-height: min(90vh, 580px);
  margin: 0;
  overflow: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.booking-select-menu[hidden] {
  display: none !important;
}

.booking-direction-menu {
  top: auto;
  bottom: calc(100% + 0.38rem);
  left: 0;
  right: 0;
  transform: translateY(114px);
  margin: 0;
  max-width: none;
  width: auto;
  max-height: 290px;
  padding: 0.45rem;
  gap: 0.24rem;
}

.booking-schedule-menu {
  padding: 0.95rem;
  gap: 0.56rem;
  border-radius: 1.2rem;
}

.booking-schedule-hint {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(224, 255, 231, 0.82);
}

.booking-schedule-hint-hours {
  margin-top: -0.16rem;
  color: rgba(204, 255, 216, 0.72);
}

.booking-schedule-section-title {
  margin: 0.08rem 0 0.04rem;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--brand);
}

.booking-schedule-grid {
  display: grid;
  gap: 0.34rem;
}

.booking-schedule-grid-days {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.booking-schedule-grid-time {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.booking-schedule-option {
  text-align: center;
  padding: 0.58rem 0.42rem;
}

.booking-schedule-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
  margin-top: 1.1rem;
  align-items: stretch;
  position: sticky;
  bottom: calc(-0.78rem - env(safe-area-inset-bottom));
  transform: translateY(12.5px);
  background: linear-gradient(
    180deg,
    rgba(12, 15, 18, 0) 0%,
    rgba(12, 15, 18, 0.94) 32%,
    rgba(12, 15, 18, 0.98) 100%
  );
  padding-top: 0.52rem;
  padding-bottom: calc(0.18rem + env(safe-area-inset-bottom));
}

.booking-schedule-actions .btn {
  width: 100%;
  height: 3.25rem;
  min-height: 3.25rem;
  margin: 0;
  padding: 0.98rem 1.45rem;
}

.booking-select-option {
  border: 0;
  border-radius: 0.66rem;
  background: transparent;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 700;
  padding: 0.62rem 0.68rem;
  cursor: pointer;
}

.booking-select-option:hover,
.booking-select-option:focus-visible {
  background: rgba(42, 207, 67, 0.16);
  outline: none;
}

.booking-select-option.is-selected {
  background: rgba(42, 207, 67, 0.22);
  color: #eaffee;
}

#bookingModal.booking-overlay-open .about-modal-scroll {
  overflow: hidden;
}

.booking-form .booking-submit-btn {
  width: 100%;
}

.booking-form .booking-submit-btn:hover,
.booking-form .booking-submit-btn:focus-visible,
.booking-form .booking-submit-btn:active {
  transform: none !important;
  filter: brightness(1.05);
}

.booking-form .booking-submit-btn:disabled {
  opacity: 0.86;
  cursor: wait;
  filter: saturate(0.9);
}

.booking-form input:focus,
.booking-form textarea:focus,
.booking-select-trigger:focus,
.booking-select.is-open .booking-select-trigger {
  outline: none;
  border-color: rgba(85, 236, 110, 0.8);
  box-shadow: 0 0 0 2px rgba(42, 207, 67, 0.22);
}

.booking-form-hint {
  margin: 0.72rem 0 0;
  font-size: 0.84rem;
  color: var(--muted);
  font-weight: 700;
}

.booking-form-status {
  margin: 0.62rem 0 0;
  color: #a6ffb9;
  font-weight: 800;
}

.booking-form-status.is-error {
  color: #ff9d9d;
}

@media (max-width: 680px) {
  .modal-window-booking {
    max-height: 90vh;
    min-height: auto;
  }

  .modal-window-booking .about-modal-scroll {
    max-height: calc(90vh - 1rem);
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .booking-field-label {
    font-size: 0.8rem;
  }

  .booking-field-hint {
    font-size: 0.72rem;
  }

  .booking-schedule-grid {
    gap: 0.3rem;
  }

  .booking-schedule-menu {
    max-width: none;
    max-height: none;
  }

  .booking-direction-menu {
    max-height: 280px;
  }

  .booking-schedule-grid-days {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-schedule-grid-time {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .booking-step-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-modal-content h2 {
  margin: 0.15rem 0 0.95rem;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 0.96;
  letter-spacing: -0.015em;
  color: var(--brand);
  text-shadow: 0 0 18px rgba(42, 207, 67, 0.18);
}

.about-modal-content h3 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  color: #e9fff0;
}

.about-modal-intro {
  margin-top: 0 !important;
  font-size: 1.02rem;
  color: #e7ffef !important;
}

.about-modal-content p {
  margin: 0.42rem 0;
  line-height: 1.58;
  color: var(--text-soft);
  font-weight: 600;
}

.about-modal-content ul {
  margin: 0.2rem 0 0;
  padding-left: 1.22rem;
  display: grid;
  gap: 0.42rem;
}

.about-modal-content li {
  line-height: 1.62;
  color: var(--text-soft);
  font-weight: 600;
}

.about-modal-divider {
  margin: 0.88rem 0 0.4rem !important;
  letter-spacing: 0.24em;
  color: rgba(42, 207, 67, 0.82) !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
  display: none;
}

.about-modal-intro-card {
  margin: 0.95rem 0 0.75rem !important;
  border: 1px solid rgba(42, 207, 67, 0.35);
  border-radius: 0.8rem;
  background: rgba(10, 24, 17, 0.52);
  padding: 0.72rem 0.8rem;
  box-shadow: none;
  transform: none !important;
  transition: none;
}

.about-modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-modal-section-card {
  padding: 0.85rem 0.95rem;
}

.modal-window-gallery-showcase {
  width: min(1180px, 97vw);
}

.modal-window-team-photo {
  width: min(1080px, 96vw);
  background: #000;
}

.modal-window-prices {
  width: min(900px, 96vw);
}

.modal-window-download {
  width: min(940px, 97vw);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(
      0deg,
      rgba(8, 10, 14, 0.72) 0%,
      rgba(8, 10, 14, 0.72) 100%
    ),
    linear-gradient(
      128deg,
      rgba(131, 58, 180, 0.08) 0%,
      rgba(225, 48, 108, 0.07) 26%,
      rgba(252, 175, 69, 0.06) 48%,
      rgba(50, 168, 255, 0.06) 72%,
      rgba(36, 142, 255, 0.05) 100%
    );
  backdrop-filter: blur(10px) saturate(1.05);
}

.download-modal-content h2 {
  margin: 0.18rem 0 0.62rem;
  font-size: clamp(1.75rem, 4.2vw, 2.55rem);
  color: #f8fbff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.08);
}

.download-modal-content p {
  margin: 0;
}

.download-modal-shell {
  border: none;
  border-radius: 0;
  padding: clamp(0.1rem, 0.6vw, 0.4rem);
  background: transparent;
  box-shadow: none;
  animation: none;
}

.download-modal-text {
  color: rgba(244, 248, 252, 0.95) !important;
  font-weight: 700;
  line-height: 1.5;
}

.download-modal-subtext {
  margin-top: 0.32rem !important;
  color: rgba(204, 212, 220, 0.92) !important;
  font-size: 0.88rem;
}

.download-modal-groups {
  margin-top: 0.92rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.download-group {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.88rem;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.72) 0%, rgba(8, 10, 14, 0.7) 100%);
  padding: 0.72rem 0.74rem;
  box-shadow:
    0 10px 20px rgba(4, 8, 14, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.download-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.download-group-title {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-size: 0.83rem;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(244, 248, 253, 0.94);
}

.download-group-status {
  border: 1px solid rgba(42, 207, 67, 0.42);
  border-radius: 999px;
  background: rgba(42, 207, 67, 0.14);
  padding: 0.2rem 0.46rem;
  font-size: 0.67rem;
  font-weight: 700;
  color: rgba(227, 255, 233, 0.95);
  white-space: nowrap;
}

.download-platform-list {
  margin: 0.62rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.download-platform-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.72rem;
  padding: 0.5rem 0.56rem;
  background: rgba(255, 255, 255, 0.02);
}

.download-store-icon-wrap {
  flex: 0 0 1.8rem;
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.42);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.download-store-icon-wrap img {
  width: 1.34rem;
  height: 1.34rem;
  object-fit: contain;
  display: block;
}

.download-platform-meta {
  min-width: 0;
}

.download-platform-name {
  display: block;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #eef6ff;
}

.download-platform-store {
  display: block;
  margin-top: 0.14rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(198, 206, 214, 0.88);
}

.prices-modal-content h2 {
  margin: 0.15rem 0 0.95rem;
  font-size: clamp(2rem, 4.6vw, 3.1rem);
}

.prices-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.prices-card {
  padding: 0.85rem 0.95rem;
}

.prices-plan {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 800 !important;
}

.prices-value {
  margin: 0.28rem 0 0.25rem !important;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 900 !important;
  color: var(--brand) !important;
  line-height: 1.05 !important;
}

.prices-desc {
  margin: 0 !important;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.8) !important;
}

.prices-note {
  margin: 0.95rem 0 0 !important;
  border: 1px solid rgba(42, 207, 67, 0.35);
  border-radius: 0.8rem;
  background: rgba(10, 24, 17, 0.52);
  padding: 0.72rem 0.8rem;
  color: rgba(232, 255, 240, 0.92) !important;
  font-size: 0.86rem;
  line-height: 1.5;
}

.prices-note-period {
  margin-top: 0.55rem !important;
}

.gallery-showcase-title {
  margin: 0.2rem 0 0.95rem;
  font-size: clamp(2rem, 5vw, 3.15rem);
  color: #f4fff8;
}

.gallery-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.gallery-showcase-card {
  min-height: 0;
  padding: 0.8rem;
}

.gallery-showcase-card img {
  width: 100%;
  height: clamp(180px, 18vw, 250px);
  object-fit: cover;
  border-radius: 0.9rem;
  border: 2px solid var(--line);
  display: block;
  margin-bottom: 0.7rem;
}

.gallery-showcase-card .gallery-image-btn {
  margin-bottom: 0.7rem;
}

.gallery-showcase-card .gallery-image-btn img {
  margin-bottom: 0;
}

.gallery-showcase-card p {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.52;
}

.map-modal-frame-wrap {
  height: min(80vh, 760px);
  min-height: 360px;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--surface-muted);
}

.modal-actions {
  margin-top: 0;
  justify-content: flex-start;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 2px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  z-index: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 2px solid var(--line);
  border-radius: 0.65rem;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  transform: scale(1.09);
  background: rgba(220, 38, 38, 0.86);
  border-color: rgba(248, 113, 113, 0.9);
  box-shadow: 0 0 16px rgba(239, 68, 68, 0.35);
}

.modal-close:active {
  transform: scale(0.96);
}

.modal-nav:hover,
.modal-nav:focus-visible {
  transform: translateY(-50%) scale(1.09);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.35);
  color: var(--brand);
}

.modal-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.modal-nav-prev {
  left: 12px;
}

.modal-nav-next {
  right: 12px;
}

body.modal-open {
  overflow: hidden;
}

.cursor-pressure-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 180ms ease;
  background:
    radial-gradient(
      200px 200px at var(--cursor-x) var(--cursor-y),
      rgba(0, 0, 0, 0.085) 0%,
      rgba(0, 0, 0, 0.045) 28%,
      rgba(0, 0, 0, 0) 68%
    );
}

.site-footer .socials {
  gap: 0.55rem;
}

.site-footer .social-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.62rem 0.35rem 0.4rem;
  background: rgba(0, 0, 0, 0.2);
}

.site-footer .social-link-icon img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  display: block;
}

.site-footer .social-link-icon:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-list details {
  padding: 1rem 1.1rem;
  cursor: pointer;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.faq-list details p {
  margin: 0.72rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  font-weight: 700;
}

.faq-list details a {
  cursor: pointer;
}

.faq-list details p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  font-weight: 900;
}

.reel-section {
  padding-top: 5rem;
}

.reel-wrap {
  overflow: hidden;
  border-radius: 1.5rem;
}

.reel-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  animation: reelScroll 26s linear infinite;
  padding: 0.2rem;
}

.reel-wrap:hover .reel-track {
  animation-play-state: paused;
}

.reel-card {
  width: min(300px, 78vw);
  min-height: 132px;
  display: flex;
  align-items: center;
}

.reel-card p {
  margin: 0;
  font-weight: 800;
  line-height: 1.6;
  color: var(--text-soft);
}

.cta {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 1.3rem;
  background: linear-gradient(155deg, var(--surface) 0%, var(--surface-soft) 100%);
}

.trial-form {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.trial-form input {
  width: 100%;
  border: 3px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.92rem 1rem;
  font: inherit;
  font-weight: 700;
  color: var(--text);
  background: var(--surface);
}

.trial-form input::placeholder {
  color: var(--muted);
}

.trial-form input:focus {
  outline: none;
  background: var(--brand-soft);
}

.site-footer {
  margin-top: 4.4rem;
  border-top: 3px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  min-height: 88px;
  padding: 1rem 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.1rem;
}

.footer-meta {
  display: grid;
  gap: 0.28rem;
  max-width: 760px;
}

.footer-location {
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.footer-legal,
.footer-rights {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.5;
  font-weight: 600;
  color: var(--muted);
  text-transform: none;
  letter-spacing: 0;
}

#footerYear {
  color: var(--text);
  font-weight: 800;
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  text-decoration: none;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.67rem;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 0.46rem 0.82rem;
  background: var(--surface-muted);
}

.socials a:hover {
  background: var(--brand);
  color: #fff;
}

.floating-booking,
.floating-top {
  position: fixed;
  bottom: max(54px, calc(env(safe-area-inset-bottom) + 48px));
  z-index: 125;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  transform: translateY(var(--floating-footer-translate, 0px));
  transition: transform 180ms ease;
  will-change: transform;
}

.floating-booking {
  right: max(54px, calc(env(safe-area-inset-right) + 48px));
}

.floating-top {
  left: max(54px, calc(env(safe-area-inset-left) + 48px));
}

.floating-booking-label {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.92rem;
  padding: 0.36rem 0.69rem;
  border-radius: 0.48rem;
  border: 2px solid rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.98);
  color: #0d1014;
  font-size: 0.77rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, filter 180ms ease;
}

.floating-booking-label:hover,
.floating-booking-label:focus-visible {
  transform: scale(1.03);
  filter: brightness(1.02);
}

.floating-booking:hover .floating-booking-label,
.floating-booking:focus-within .floating-booking-label {
  background: linear-gradient(180deg, rgba(58, 220, 88, 0.98) 0%, rgba(33, 191, 67, 0.98) 100%);
  border-color: rgba(134, 255, 159, 0.96);
  color: #ffffff;
  transform: scale(1.05);
}

.floating-booking-icon {
  position: relative;
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 999px;
  border: 3px solid rgba(122, 247, 149, 0.92);
  background: radial-gradient(circle at 30% 22%, #62f48f 0%, #28cc58 62%, #1ca84a 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.44), 0 0 24px rgba(59, 233, 103, 0.38);
  transition: transform 180ms ease, filter 180ms ease;
  animation: bookingIconPulse 2.2s ease-in-out infinite;
  isolation: isolate;
}

.floating-booking-icon:hover,
.floating-booking-icon:focus-visible {
  transform: scale(1.06);
  filter: brightness(1.06);
}

.floating-booking:hover .floating-booking-icon,
.floating-booking:focus-within .floating-booking-icon {
  transform: scale(1.1);
  filter: brightness(1.12) saturate(1.08);
  border-color: rgba(173, 255, 187, 0.98);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.48), 0 0 30px rgba(86, 249, 128, 0.52);
}

.floating-booking-icon::before,
.floating-booking-icon::after {
  content: '';
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid rgba(116, 244, 143, 0.7);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  animation: bookingRipple 2.4s ease-out infinite;
}

.floating-booking-icon::after {
  animation-delay: 1.2s;
}

.floating-booking-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-booking-icon svg line[x1='7.2'],
.floating-booking-icon svg line[x1='11.8'],
.floating-booking-icon svg line[x1='16.4'] {
  stroke-width: 2.8;
}

.floating-top-icon {
  position: relative;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 0.9rem;
  border: 1.8px solid rgba(255, 255, 255, 0.56);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.3) 100%);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  transform: scale(0.7);
  transform-origin: center;
  transition:
    transform 260ms cubic-bezier(0.22, 0.61, 0.36, 1),
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
  animation: none;
}

.floating-top-icon:hover,
.floating-top:hover .floating-top-icon {
  transform: scale(1);
  filter: brightness(1.04);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.floating-top-icon:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.65);
  outline-offset: 2px;
}

.floating-top-icon::before,
.floating-top-icon::after {
  content: none;
}

.floating-top-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.95))
    drop-shadow(0 2px 3px rgba(0, 0, 0, 0.55));
}

.floating-top-icon svg polyline {
  stroke-width: 2.35;
}

@keyframes bookingRipple {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  24% {
    opacity: 0.72;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes bookingIconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  48% {
    transform: scale(1.035);
  }
}

/* EasyWeek-like visual layer (old site close, with new motion accents) */
body {
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3 {
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  font-style: normal;
  line-height: 1.05;
}

.site-header {
  position: fixed;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 19, 23, 0.58);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 88px;
}

.brand-mark {
  border-radius: 999px;
  border-width: 2px;
  box-shadow: none;
  color: #fff;
  background: var(--brand);
}

.main-nav {
  gap: 0.25rem;
}

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
  font-size: 0.94rem;
  padding: 0.62rem 0.78rem;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nav-download-mobile {
  display: none;
}

.btn {
  border-width: 2px;
  border-radius: 0.66rem;
  box-shadow: none;
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
}

  .btn:hover,
  .btn:active {
    transform: scale(1.015);
    box-shadow: none;
  }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
}

.nav-phone {
  white-space: nowrap;
}

.hero {
  display: block;
  min-height: 50rem;
}

.hero-cover {
  position: relative;
  background-image: url('./images/hero-optimized.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-cover .wrap {
  position: relative;
  z-index: 2;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
}

.hero-copy {
  max-width: 860px;
}

h1 {
  font-size: clamp(2.4rem, 8vw, 5.9rem);
  letter-spacing: -0.02em;
}

.hero-line-main,
.hero-line-accent {
  color: #fff;
}

.hero-line-accent {
  color: var(--brand);
}

.hero-address {
  color: rgba(255, 255, 255, 0.8);
}

.hero-grid {
  max-width: 760px;
  margin-top: 1.2rem;
}

.stat {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: none;
}

.section {
  padding-top: 4rem;
}

.card {
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.17);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  font-weight: 600;
}

.eyebrow {
  letter-spacing: 0.09em;
  font-size: 0.82rem;
  color: var(--brand);
}

.review-note {
  color: rgba(255, 255, 255, 0.7);
}

.rating-row b {
  border-color: rgba(255, 255, 255, 0.2);
}

.faq-list details {
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: #141518;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 620ms ease, transform 620ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 220ms ease;
}

@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-24px, 20px); }
}

@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -18px); }
}

@keyframes floatC {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-16px, -24px); }
}

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

@keyframes meter {
  0%, 100% { transform: scaleY(0.76); }
  50% { transform: scaleY(1.08); }
}

@keyframes waveShift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 90px 0, 0 0; }
}

@keyframes reelScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes teamFilterActivePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(42, 207, 67, 0.22);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.028);
    box-shadow: 0 0 0 2px rgba(42, 207, 67, 0.3);
    filter: brightness(1.06);
  }
}

@keyframes teamFilterActiveWave {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  25% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: scale(1.13);
  }
}

@keyframes downloadButtonGradientFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes downloadButtonGlowPulse {
  0%,
  100% {
    box-shadow:
      0 12px 26px rgba(18, 27, 56, 0.38),
      0 0 24px rgba(68, 168, 255, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
  50% {
    box-shadow:
      0 14px 30px rgba(20, 30, 62, 0.42),
      0 0 34px rgba(188, 87, 255, 0.38),
      inset 0 1px 0 rgba(255, 255, 255, 0.32);
  }
}

@keyframes downloadButtonShineSweep {
  0% {
    transform: translateX(-120%) skewX(-18deg);
  }
  52% {
    transform: translateX(-120%) skewX(-18deg);
  }
  100% {
    transform: translateX(120%) skewX(-18deg);
  }
}

@keyframes downloadButtonSparkleTwinkle {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.84;
  }
}

@keyframes downloadButtonDustScatter {
  0% {
    background-position:
      6% 18%, 14% 66%, 22% 34%, 29% 82%,
      37% 12%, 44% 58%, 53% 28%, 61% 76%,
      69% 16%, 76% 64%, 84% 36%, 91% 72%,
      11% 44%, 32% 52%, 58% 8%, 88% 50%;
  }
  25% {
    background-position:
      10% 30%, 18% 52%, 26% 20%, 35% 70%,
      42% 24%, 50% 68%, 57% 40%, 66% 84%,
      72% 26%, 80% 58%, 86% 48%, 94% 66%,
      8% 56%, 28% 38%, 63% 14%, 90% 42%;
  }
  50% {
    background-position:
      4% 40%, 12% 74%, 20% 44%, 31% 88%,
      39% 18%, 46% 62%, 55% 34%, 64% 80%,
      70% 10%, 78% 70%, 85% 30%, 92% 60%,
      16% 48%, 34% 58%, 60% 6%, 82% 46%;
  }
  75% {
    background-position:
      9% 24%, 17% 60%, 24% 28%, 33% 78%,
      40% 14%, 48% 54%, 56% 24%, 62% 72%,
      68% 20%, 74% 62%, 83% 40%, 89% 76%,
      14% 42%, 30% 50%, 54% 12%, 86% 56%;
  }
  100% {
    background-position:
      6% 18%, 14% 66%, 22% 34%, 29% 82%,
      37% 12%, 44% 58%, 53% 28%, 61% 76%,
      69% 16%, 76% 64%, 84% 36%, 91% 72%,
      11% 44%, 32% 52%, 58% 8%, 88% 50%;
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.8rem;
  }

  .hero-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    max-width: 760px;
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-preview {
    position: relative;
    top: auto;
    min-height: 260px;
  }

  .program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 860px) {
  html,
  body {
    touch-action: pan-y;
    overscroll-behavior-y: none;
  }

  .menu-btn {
    display: grid;
  }

  .main-nav {
    position: fixed;
    left: auto;
    right: max(3vw, env(safe-area-inset-right));
    top: calc(82px + env(safe-area-inset-top));
    transform: none;
    width: min(332px, 80vw);
    max-width: calc(100vw - 20px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.74rem;
    gap: 0.42rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    background: #000000;
    backdrop-filter: none;
    box-shadow:
      var(--shadow),
      0 16px 38px rgba(0, 0, 0, 0.48),
      0 2px 0 rgba(255, 255, 255, 0.04) inset;
    z-index: 140;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 2.65rem;
    padding: 0.6rem 0.86rem;
    border-radius: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    font-size: clamp(1rem, 3.8vw, 1.05rem);
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .main-nav a.nav-download-mobile {
    display: flex;
    margin-top: 0.08rem;
  }

  .main-nav a:not(.download-cta):hover,
  .main-nav a:not(.download-cta):focus-visible {
    background: rgba(74, 221, 108, 0.12);
    border-color: rgba(74, 221, 108, 0.38);
  }

  .main-nav a.nav-phone {
    display: none;
  }

  .lang-menu {
    right: -56px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(1160px, 94vw);
  }

  .header-inner {
    min-height: 82px;
  }

  .brand-text {
    display: none;
  }

  .brand-logo {
    transform: scale(1.5);
  }

  .brand-logo-shell {
    width: 54px;
    height: 54px;
  }

  .hero {
    padding-top: 2.2rem;
  }

  h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.65rem);
  }

  .hero-text {
    font-size: clamp(0.98rem, 3.8vw, 1.14rem);
    line-height: 1.42;
  }

  .hero-address {
    font-size: 0.84rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.66rem;
  }

  .location-map-actions,
  .location-hours-actions {
    flex-direction: row;
  }

  .location-map-actions > .btn:first-child,
  .location-hours-actions > .btn:first-child {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }

  .location-map-actions .btn-icon-map,
  .location-hours-actions .btn-icon-map {
    flex: 0 0 3.25rem;
    width: 3.25rem;
    min-width: 3.25rem;
  }

  .btn {
    width: 100%;
  }

  .location-map-actions,
  .location-hours-actions {
    flex-wrap: nowrap;
  }

  .location-map-actions > .btn,
  .location-hours-actions > .btn {
    width: auto;
  }

  .app-body {
    grid-template-columns: 1fr;
  }

  .gallery-mini {
    grid-template-columns: 1fr;
  }

  .gallery-mini img {
    height: 180px;
  }

  .meter-col {
    min-height: 74px;
  }

  .floating-chip {
    position: static;
    margin-top: 0.45rem;
    display: inline-flex;
    width: fit-content;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 3.4rem;
  }

  .story-step.is-active {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
    min-height: auto;
  }

  .floating-booking {
    right: max(21px, calc(env(safe-area-inset-right) + 17px));
    bottom: max(49px, calc(env(safe-area-inset-bottom) + 45px));
    gap: 0;
    transition: none;
  }

  .floating-top {
    display: none;
  }

  .floating-booking-label {
    display: none;
  }

  .floating-booking-icon {
    width: 3.3rem;
    height: 3.3rem;
  }

  .floating-booking-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .cursor-glow {
    display: none;
  }

  .floating-booking-icon,
  .floating-booking-icon::before,
  .floating-booking-icon::after,
  .floating-top-icon,
  .floating-top-icon::before,
  .floating-top-icon::after {
    animation: none !important;
  }

  .team-filter.is-active,
  .team-filter.is-active::before,
  .team-filter.is-active::after {
    animation: none !important;
  }

  .download-cta[data-open-download],
  .download-cta[data-open-download]::before,
  .download-cta[data-open-download]::after {
    animation: none !important;
  }

  .download-particles {
    display: none !important;
  }
}

/* Top section cleanup: closer to old site */
.scroll-progress,
.cursor-glow,
.bg-noise,
.bg-blobs {
  display: none !important;
}

.site-header {
  background: rgba(15, 17, 20, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.main-nav a {
  opacity: 0.96;
}

.hero-cover {
  min-height: 46rem;
}

.hero-cover .wrap {
  padding-top: clamp(6.4rem, 8.4vw, 7.5rem);
  padding-bottom: clamp(4.1rem, 6.2vw, 4.9rem);
}

.hero-copy {
  max-width: 760px;
  display: grid;
  align-content: start;
  row-gap: clamp(0.44rem, 1.08vw, 0.9rem);
}

.hero-copy .eyebrow {
  margin: 0;
}

.hero-line-main,
.hero-line-accent {
  color: #ffffff;
}

h1 {
  font-weight: 600;
  font-size: clamp(2.8rem, 7vw, 5.1rem);
}

.hero-text {
  max-width: 760px;
  margin: 0.14rem 0 0;
  font-size: clamp(1.02rem, 1.8vw, 1.28rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.hero-address {
  margin: 0.08rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-actions {
  margin-bottom: 0;
}

.hero-copy .hero-actions {
  position: relative;
  z-index: 6;
  transform: translateY(0);
  margin-top: 0.42rem;
  margin-bottom: 0;
}

@media (min-width: 861px) {
  .hero-copy .hero-actions {
    width: min(1160px, 92vw);
  }

  .hero-copy .hero-actions .download-cta[data-open-download] {
    margin-left: auto;
    box-shadow:
      0 10px 22px rgba(11, 16, 28, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.25);
    animation: downloadButtonGradientFlow 4.6s ease-in-out infinite;
  }

  .hero-copy .hero-actions .download-cta[data-open-download]::before {
    content: none;
  }

  .hero-copy .hero-actions .download-cta[data-open-download]:hover,
  .hero-copy .hero-actions .download-cta[data-open-download]:focus-visible {
    box-shadow:
      0 12px 26px rgba(16, 22, 38, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }
}

.download-cta[data-open-download] {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(151, 195, 228, 0.5);
  background-color: rgba(10, 12, 16, 0.72);
  background:
    linear-gradient(
      0deg,
      rgba(8, 10, 14, 0.72) 0%,
      rgba(8, 10, 14, 0.72) 100%
    ),
    linear-gradient(
      124deg,
      rgba(131, 58, 180, 0.22) 0%,
      rgba(225, 48, 108, 0.2) 28%,
      rgba(252, 175, 69, 0.18) 48%,
      rgba(50, 168, 255, 0.2) 74%,
      rgba(36, 142, 255, 0.18) 100%
    );
  background-size: 180% 180%;
  color: #ffffff;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px) saturate(1.05);
  box-shadow:
    0 10px 22px rgba(11, 16, 28, 0.34),
    0 0 14px rgba(76, 173, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation:
    downloadButtonGradientFlow 4.6s ease-in-out infinite,
    downloadButtonGlowPulse 2.4s ease-in-out infinite;
}

.download-cta[data-open-download]::before {
  content: none;
}

.download-cta[data-open-download]::after {
  content: none;
}

.download-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.download-particle {
  position: absolute;
  left: var(--x, 50%);
  top: var(--y, 50%);
  width: var(--size, 2px);
  height: var(--size, 2px);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  opacity: var(--alpha, 0.7);
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(214, 235, 255, 0.9) 38%,
    rgba(125, 191, 255, 0) 100%
  );
  will-change: transform, opacity;
  animation:
    downloadParticleOrbit var(--dur, 6s) linear infinite,
    downloadParticleBlink var(--twinkle, 1.5s) steps(5, end) infinite;
  animation-delay: var(--delay, 0s), calc(var(--delay, 0s) * 0.55);
}

@keyframes downloadParticleOrbit {
  0% {
    transform: translate(
      calc(-50% + var(--dx1, 0px)),
      calc(-50% + var(--dy1, 0px))
    ) scale(0.82);
  }
  24% {
    transform: translate(
      calc(-50% + var(--dx2, 0px)),
      calc(-50% + var(--dy2, 0px))
    ) scale(1);
  }
  49% {
    transform: translate(
      calc(-50% + var(--dx3, 0px)),
      calc(-50% + var(--dy3, 0px))
    ) scale(1.08);
  }
  73% {
    transform: translate(
      calc(-50% + var(--dx4, 0px)),
      calc(-50% + var(--dy4, 0px))
    ) scale(0.92);
  }
  100% {
    transform: translate(
      calc(-50% + var(--dx1, 0px)),
      calc(-50% + var(--dy1, 0px))
    ) scale(0.82);
  }
}

@keyframes downloadParticleBlink {
  0%,
  100% {
    opacity: calc(var(--alpha, 0.7) * 0.42);
  }
  50% {
    opacity: var(--alpha, 0.7);
  }
}

.download-cta[data-open-download]:hover,
.download-cta[data-open-download]:focus-visible {
  filter: brightness(1.04) saturate(1.08);
  transform: scale(1.03);
  box-shadow:
    0 12px 26px rgba(16, 22, 38, 0.42),
    0 0 18px rgba(193, 97, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn {
  min-height: 3.25rem;
}

@media (max-width: 860px) {
  .hero-cover {
    min-height: 40rem;
  }
}

/* Smooth transition from hero image to content */
.hero-cover {
  overflow: hidden;
}

.hero-cover::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(120px, 17vw, 220px);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 52%,
    rgba(0, 0, 0, 0.96) 80%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-cover .wrap {
  position: relative;
  z-index: 2;
}

#gallery {
  position: relative;
  margin-top: -62px;
  padding-top: 62px;
  background: transparent;
}

#gallery::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: -122px;
  height: 216px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 54%,
    #000000 76%,
    #000000 100%
  );
  pointer-events: none;
  z-index: 0;
}

#gallery::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: 0;
  bottom: -140px;
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(3, 9, 7, 0.96) 34%,
    rgba(6, 16, 11, 0.74) 66%,
    rgba(7, 19, 13, 0.34) 88%,
    rgba(7, 19, 13, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

#gallery > * {
  position: relative;
  z-index: 1;
}

#about {
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  top: -82px;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(7, 19, 13, 0.42) 0%,
    rgba(7, 19, 13, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
}

#about > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  #gallery {
    margin-top: -48px;
    padding-top: 48px;
  }

  #gallery::before {
    top: -90px;
    height: 154px;
  }

  #about::before {
    top: -62px;
    height: 104px;
  }

  .about-modal-content h2 {
    font-size: clamp(1.85rem, 8.8vw, 2.65rem);
  }

  .about-modal-content h3 {
    font-size: clamp(1rem, 4.2vw, 1.2rem);
  }

  .about-modal-divider {
    letter-spacing: 0.14em;
  }

  .hero-cover .wrap {
    padding-top: clamp(6.6rem, 18vw, 8.1rem);
    padding-bottom: clamp(3.6rem, 11vw, 4.8rem);
  }

  .hero-copy {
    row-gap: clamp(0.58rem, 2.2vw, 0.95rem);
  }

  .hero-text {
    margin-top: 0.28rem;
  }

  .hero-address {
    margin-top: 0.24rem;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.35;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    column-gap: 0.35rem;
    row-gap: 0.08rem;
  }

  .hero-address-location {
    width: 100%;
  }

  .hero-address-separator {
    display: none;
  }

  .hero-address-phone {
    width: 100%;
    white-space: nowrap;
  }

  .hero-copy .hero-actions {
    transform: translateY(0);
    margin-top: 0.7rem;
  }

  .hero-copy .hero-actions .download-cta[data-open-download] {
    display: none;
  }

  .main-nav a.nav-download-mobile.download-cta[data-open-download] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 2.64rem;
    padding: 0.56rem 0.95rem;
    border-radius: 0.72rem;
    font-size: clamp(0.95rem, 3.4vw, 1rem);
    margin-inline: 0;
    text-overflow: clip;
    overflow: hidden;
    box-shadow:
      0 8px 18px rgba(18, 28, 58, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.26);
    animation: downloadButtonGradientFlow 4.6s ease-in-out infinite;
  }

  .main-nav a.nav-download-mobile.download-cta[data-open-download]::before {
    content: none;
  }

  .main-nav a.nav-download-mobile.download-cta[data-open-download]:hover,
  .main-nav a.nav-download-mobile.download-cta[data-open-download]:focus-visible {
    transform: scale(1.02);
    box-shadow:
      0 10px 20px rgba(18, 28, 58, 0.36),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .download-particles {
    opacity: 0.74;
  }

  .gallery-showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .download-modal-groups {
    grid-template-columns: 1fr;
  }

  .about-modal-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer stripe layout */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  position: relative;
  z-index: 140;
}

.site-footer .footer-inner {
  min-height: auto;
  padding: 0.9rem 0 1rem;
  display: grid;
  grid-template-columns: auto auto minmax(280px, 1fr) auto;
  align-items: center;
  column-gap: 1.05rem;
  row-gap: 0.42rem;
}

.site-footer .footer-meta,
.site-footer .footer-legal,
.site-footer .footer-rights,
.site-footer .socials {
  min-width: 0;
}

.site-footer .footer-meta {
  order: 1;
  max-width: none;
  display: block;
}

.site-footer .footer-location {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.site-footer .footer-legal {
  order: 2;
  margin: 0;
  white-space: nowrap;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.86);
}

.site-footer .footer-rights {
  order: 3;
  margin: 0;
  min-width: 0;
  max-width: 600px;
  font-size: 0.68rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.63);
}

.site-footer .socials {
  order: 4;
  display: flex;
  align-items: center;
  justify-self: end;
  transform: translateX(12mm);
  white-space: nowrap;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

html[lang='ru'] .site-footer .socials {
  transform: translateX(20mm);
}

html[lang='ru'] .site-footer .footer-rights {
  max-width: 520px;
}

.site-footer .social-link-icon {
  flex: 0 0 auto;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .site-footer .footer-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      'meta socials'
      'legal legal'
      'rights rights';
    gap: 0.45rem 0.9rem;
  }

  .site-footer .footer-meta {
    grid-area: meta;
  }

  .site-footer .socials {
    grid-area: socials;
    align-self: center;
  }

  .site-footer .footer-legal {
    grid-area: legal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-footer .footer-rights {
    grid-area: rights;
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .site-footer .socials {
    transform: none;
  }

  html[lang='ru'] .site-footer .socials {
    transform: none;
  }

  .site-footer .footer-location {
    font-size: 0.66rem;
    letter-spacing: 0.05em;
    overflow: visible;
    text-overflow: clip;
  }

  .site-footer .social-link-icon {
    font-size: 0.56rem;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.45rem 0.3rem 0.3rem;
    gap: 0.34rem;
  }

  .site-footer .social-link-icon img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
  }
}

@media (max-width: 560px) {
  .site-footer .footer-inner {
    gap: 0.35rem 0.55rem;
  }

  .site-footer .footer-location {
    font-size: 0.58rem;
    letter-spacing: 0.03em;
  }

  .site-footer .socials {
    gap: 0.24rem;
  }

  .site-footer .social-link-icon span {
    display: none;
  }

  .site-footer .social-link-icon {
    padding: 0.24rem;
  }

  .site-footer .social-link-icon img {
    width: 16px;
    height: 16px;
    border-radius: 4px;
  }
}

/* Hero easter-egg trigger in the second "o" of School */
.hero-o-trigger {
  all: unset;
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
  cursor: var(--cursor-default) !important;
}

.hero-o-trigger:hover,
.hero-o-trigger:focus-visible {
  color: inherit;
  background: transparent;
  transform: none;
}

.hero-o-trigger:focus-visible {
  outline: none;
}

/* Chaos mode (activated by triple-click on second "o") */
.chaos-mode {
  animation: chaos-page-flicker 0.54s steps(2, end) infinite;
}

.chaos-mode .hero-o-trigger {
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.chaos-target {
  transform:
    translate(var(--chaos-x, 0px), var(--chaos-y, 0px))
    rotate(var(--chaos-rotate, 0deg))
    skew(var(--chaos-skew-x, 0deg), var(--chaos-skew-y, 0deg))
    scale(var(--chaos-scale, 1));
  filter:
    hue-rotate(var(--chaos-hue, 0deg))
    saturate(var(--chaos-sat, 1))
    brightness(var(--chaos-bright, 1));
  transition:
    transform var(--chaos-duration, 0.46s) cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--chaos-duration, 0.46s) ease;
  will-change: transform, filter;
}

@keyframes chaos-page-flicker {
  0% {
    filter: contrast(1) brightness(1);
  }
  48% {
    filter: contrast(1.08) brightness(1.02);
  }
  52% {
    filter: contrast(1.2) brightness(1.08);
  }
  100% {
    filter: contrast(1) brightness(1);
  }
}
