:root {
  --bg: #050506;
  --surface: rgba(12, 12, 16, 0.86);
  --surface-border: rgba(255, 255, 255, 0.09);
  --surface-border-strong: rgba(255, 255, 255, 0.16);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-strong: #d4d4d8;
  --accent: #ef4444;
  --accent-strong: #dc2626;
  --success: #4ade80;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --shell: min(1200px, calc(100vw - 2rem));
  --nav-height: 5.5rem;
  --transition: 220ms ease;
  color-scheme: dark;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 20%, rgba(239, 68, 68, 0.18), transparent 36%),
    radial-gradient(circle at 80% 0%, rgba(37, 99, 235, 0.16), transparent 28%),
    linear-gradient(135deg, #04050b, #090910 60%, #050506 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 300;
  padding: 0.75rem 1rem;
  background: #ffffff;
  color: #111111;
  border-radius: 999px;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 80;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding-top: 0.35rem;
  transition: background-color var(--transition), box-shadow var(--transition), backdrop-filter var(--transition), border-color var(--transition);
}

.nav--scrolled {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav__inner {
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand img {
  width: clamp(3.5rem, 8vw, 8.5rem);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.45));
}

.nav__links,
.nav__actions {
  display: none;
}

.nav__links a,
.nav__actions a {
  color: rgba(255, 255, 255, 0.72);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__actions a:hover {
  color: #ffffff;
}

.nav__links {
  gap: 1.5rem;
  align-items: center;
}

.nav__actions {
  gap: 1rem;
  align-items: center;
}

.nav__links a,
.nav__phone {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav__phone,
.contact-link,
.footer__list a,
.footer__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.nav__phone svg,
.contact-link svg,
.footer__list svg,
.hero__meta-item svg,
.hero__scroll svg,
.stat svg,
.location-highlight svg,
.service-card__icon svg,
.service-action svg,
.reviews-link svg,
.rating-row svg,
.footer__socials svg,
.booking-modal__heading svg,
.checkout-success svg,
.modal__close svg,
.service-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  flex: none;
}

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.nav__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav__toggle-close {
  display: none;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-open {
  display: none;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-close {
  display: block;
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-height) 0 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(14px);
}

.mobile-menu__panel {
  width: var(--shell);
  margin: 0 auto;
  padding: 2rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.mobile-menu__panel a {
  font-size: 1.35rem;
  font-weight: 700;
}

.mobile-menu__phone {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.2rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition), opacity var(--transition);
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #ffffff;
}

.button--ghost,
.button--outline {
  border-color: var(--surface-border-strong);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.button--small {
  min-height: 2.8rem;
  padding: 0.7rem 1.25rem;
  font-size: 0.82rem;
}

.button--block {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8.5rem 0 4rem;
  isolation: isolate;
  overflow: hidden;
}

.hero__background,
.hero__grid {
  position: absolute;
  inset: 0;
}

.hero__background {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.95)),
    url("../assets/images/hero-drone.jpg") center/cover no-repeat;
  z-index: -2;
}

.hero__grid {
  background-image:
    linear-gradient(rgba(255, 77, 77, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 77, 0.18) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.18;
  z-index: -1;
}

.hero__content {
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero__badge-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
  animation: pulse 2s infinite;
}

.hero__title {
  margin: 0;
  font-size: clamp(3.5rem, 13vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #ffffff 10%, #fca5a5 55%, #ef4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.hero__subtitle {
  margin: 1rem 0 0;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
}

.hero__description {
  width: min(100%, 48rem);
  margin: 1.5rem auto 0;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.hero__description span,
.section-title span {
  color: #f87171;
}

.hero__meta {
  margin: 2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.76);
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero__meta-divider {
  display: none;
}

.hero__meta-plus {
  display: inline-grid;
  place-items: center;
  width: 1.2rem;
  height: 1.2rem;
  color: #f87171;
  font-weight: 800;
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero__actions .button {
  position: relative;
  overflow: hidden;
}

.hero__actions .button--primary {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 50%, #ef4444 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  box-shadow: 0 18px 40px rgba(239, 68, 68, 0.2);
  transition: transform 300ms ease, background-position 300ms ease, box-shadow 300ms ease;
}

.hero__actions .button--primary:hover,
.hero__actions .button--primary:focus-visible {
  transform: translateY(-1px) scale(1.05);
  background-position: 0 0;
  box-shadow: 0 22px 48px rgba(239, 68, 68, 0.28);
}

.hero__actions .button--ghost {
  transition: transform 300ms ease, background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.hero__actions .button--ghost:hover,
.hero__actions .button--ghost:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.hero__highlights {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
}

.hero__highlight {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

.hero__highlight svg {
  width: 1.1rem;
  height: 1.1rem;
  color: #f87171;
}

.hero__highlight-title {
  margin: 0.9rem 0 0.45rem;
  color: #fca5a5;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.77rem;
  font-weight: 700;
}

.hero__highlight p:last-child,
.section-copy,
.stack p,
.modal__copy,
.booking-modal__hint,
.booking-modal__note,
.contact-form__hint,
.checkout-help {
  color: var(--muted);
  line-height: 1.7;
}

.hero__scroll {
  display: inline-flex;
  justify-content: center;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.7);
  animation: bob 2s infinite;
}

.hero__scroll svg {
  width: 2rem;
  height: 2rem;
}

.hero__corner {
  position: absolute;
  width: 6.5rem;
  height: 6.5rem;
  pointer-events: none;
}

.hero__corner--left {
  top: 0;
  left: 0;
  border-top: 2px solid rgba(239, 68, 68, 0.34);
  border-left: 2px solid rgba(239, 68, 68, 0.34);
}

.hero__corner--right {
  right: 0;
  bottom: 0;
  border-right: 2px solid rgba(239, 68, 68, 0.34);
  border-bottom: 2px solid rgba(239, 68, 68, 0.34);
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section--dark {
  background: linear-gradient(180deg, rgba(10, 10, 14, 0.94), rgba(6, 6, 8, 0.98));
}

.section--black {
  background: linear-gradient(180deg, rgba(2, 2, 4, 0.98), rgba(9, 9, 13, 0.96));
}

.section-heading {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-copy--tight {
  max-width: 35rem;
  margin: 0 auto;
}

.section-copy--left {
  max-width: 34rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.78rem;
  font-weight: 700;
}

.eyebrow--small {
  margin-bottom: 0.55rem;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
}

.section-title,
.modal h3 {
  margin: 0;
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.05;
}

.stack {
  display: grid;
  gap: 1.25rem;
}

.stack strong {
  color: #ffffff;
}

.about__grid,
.location__grid,
.contact__grid,
.footer__grid {
  display: grid;
  gap: 3rem;
}

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

.stat {
  padding: 1.2rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.stat svg {
  margin: 0 auto 0.6rem;
  color: #f87171;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.about__gallery {
  position: relative;
}

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

.media-card {
  overflow: hidden;
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.media-card:hover img,
.media-card:focus-within img {
  transform: scale(1.1);
}

.media-card--tall {
  aspect-ratio: 4 / 5;
}

.media-card--square {
  aspect-ratio: 1;
}

.about__badge {
  position: absolute;
  left: -0.35rem;
  bottom: -0.35rem;
  padding: 1rem 1.3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: var(--shadow);
}

.about__badge strong {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.about__badge span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-layout,
.services-grid,
.membership-grid,
.testimonials-grid,
.location-highlights {
  display: grid;
  gap: 1rem;
}

.gallery-tile {
  position: relative;
  min-height: 17rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  transition: transform 500ms ease, border-color 500ms ease, box-shadow 500ms ease;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
  transition: border-color 500ms ease;
}

.gallery-tile:hover,
.gallery-tile:focus-within {
  transform: translateY(-6px);
  border-color: rgba(239, 68, 68, 0.28);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.42);
}

.gallery-tile:hover::after,
.gallery-tile:focus-within::after {
  border-color: rgba(239, 68, 68, 0.5);
}

.gallery-tile:hover img,
.gallery-tile:focus-within img {
  transform: scale(1.05);
}

.gallery-tile__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1.35rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.86));
}

.gallery-tile__overlay p,
.facility-badge p {
  margin: 0 0 0.25rem;
  color: #f87171;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
}

.gallery-tile__overlay h3,
.facility-badge strong,
.service-card h3,
.membership-card h3,
.testimonial-card__name,
.location-highlight h3,
.contact-link strong,
.footer h3,
.footer h4,
.checkout-total strong,
.basket-tray__head strong,
.modal-service-header h3 {
  margin: 0;
}

.facility-badge {
  margin: 1.5rem auto 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: fit-content;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.facility-badge img {
  width: 6.5rem;
  height: auto;
  mix-blend-mode: screen;
}

.service-card,
.membership-card,
.testimonial-card,
.location-highlight,
.contact-link,
.footer__socials a,
.partner-link,
.basket-item,
.checkout-item {
  border: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(10px);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.7rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1.15rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: border-color 500ms ease, box-shadow 500ms ease, background-color 500ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-accent, linear-gradient(135deg, rgba(239, 68, 68, 0.16), transparent));
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-top: 2px solid rgba(255, 255, 255, 0.08);
  border-right: 2px solid rgba(255, 255, 255, 0.08);
  border-top-right-radius: var(--radius-lg);
  pointer-events: none;
  transition: border-color 500ms ease;
}

.service-card > * {
  position: relative;
}

.service-card__icon,
.service-icon {
  display: inline-grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1.2rem;
  color: #ffffff;
  background: var(--card-accent-strong, linear-gradient(135deg, #ef4444, #dc2626));
}

.service-icon--large {
  width: 4.5rem;
  height: 4.5rem;
}

.service-card__icon svg,
.service-icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.service-card__copy {
  color: var(--muted);
  line-height: 1.7;
}

.service-card h3,
.service-card__copy,
.service-action,
.service-action svg {
  transition: color 500ms ease, transform 500ms ease;
}

.service-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card__meta strong,
.membership-card__price,
.checkout-total,
.basket-tray__head span {
  color: #ffffff;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.service-card__tags span,
.booking-modal__includes span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.82rem;
  color: var(--muted-strong);
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #f87171;
  font-weight: 700;
}

.service-action svg {
  width: 1rem;
  height: 1rem;
}

.service-card:hover,
.service-card:focus-visible,
.service-card:focus-within {
  border-color: rgba(239, 68, 68, 0.6);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.38);
}

.service-card:hover::before,
.service-card:focus-visible::before,
.service-card:focus-within::before {
  opacity: 0.42;
}

.service-card:hover::after,
.service-card:focus-visible::after,
.service-card:focus-within::after {
  border-color: rgba(239, 68, 68, 0.3);
}

.service-card:hover h3,
.service-card:focus-visible h3,
.service-card:focus-within h3 {
  color: #f87171;
}

.service-card:hover .service-action,
.service-card:focus-visible .service-action,
.service-card:focus-within .service-action {
  color: #fb7185;
}

.service-card:hover .service-action svg,
.service-card:focus-visible .service-action svg,
.service-card:focus-within .service-action svg {
  transform: translateX(0.25rem);
}

.trainings__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.trainings__cta > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.trainings__cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.trainings__cta-row a {
  color: #f87171;
  font-weight: 700;
}

.trainings__cta-row span {
  color: var(--muted);
  font-size: 0.95rem;
}

.membership-card {
  position: relative;
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  min-height: 100%;
}

.membership-card--featured {
  border-color: rgba(239, 68, 68, 0.5);
  box-shadow: 0 0 45px rgba(239, 68, 68, 0.12);
}

.membership-card__badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.membership-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.membership-card__header svg {
  width: 2rem;
  height: 2rem;
  color: #f87171;
}

.membership-card__label {
  margin: 0.15rem 0 0;
  color: #f87171;
  font-size: 0.9rem;
}

.membership-card__price {
  font-size: 2.35rem;
  font-weight: 800;
}

.membership-card__description {
  color: var(--muted);
  line-height: 1.7;
}

.membership-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  flex: 1;
}

.membership-card__list li {
  display: flex;
  gap: 0.7rem;
  color: var(--muted-strong);
}

.membership-card__list svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  color: #f87171;
}

.rating-row {
  margin: 1.25rem 0 1rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  color: #fbbf24;
}

.rating-row svg {
  width: 2rem;
  height: 2rem;
}

.testimonial-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1rem;
}

.testimonial-card__quote {
  color: rgba(239, 68, 68, 0.45);
}

.testimonial-card__quote svg {
  width: 2.3rem;
  height: 2.3rem;
}

.testimonial-card__rating {
  display: flex;
  gap: 0.25rem;
  color: #fbbf24;
}

.testimonial-card__rating svg {
  width: 1rem;
  height: 1rem;
}

.testimonial-card__copy {
  color: #e4e4e7;
  line-height: 1.75;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.testimonial-card__time {
  color: var(--muted);
  font-size: 0.88rem;
}

.testimonial-card__initial {
  display: inline-grid;
  place-items: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  font-weight: 700;
}

.reviews-link {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.reviews-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid var(--surface-border-strong);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

.reviews-link a:hover,
.reviews-link a:focus-visible {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.reviews-link svg {
  width: 1.3rem;
  height: 1.3rem;
}

.location-highlight {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.location-highlight h3 {
  margin-top: 0.8rem;
  margin-bottom: 0.45rem;
}

.location-highlight p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.location__map {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  box-shadow: var(--shadow);
}

.location__map iframe {
  display: block;
  width: 100%;
  min-height: 28rem;
  border: 0;
  filter: grayscale(1);
  transition: filter var(--transition);
}

.location__map:hover iframe {
  filter: grayscale(0.2);
}

.contact-links {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-link {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  transition: border-color var(--transition), color var(--transition), background-color var(--transition), transform var(--transition);
}

.contact-link p,
.footer__brand p,
.footer__list,
.footer__bottom p,
.basket-item p,
.checkout-item p,
.form-status {
  margin: 0;
}

.contact-link p {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: rgba(239, 68, 68, 0.65);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.contact-link:hover strong,
.contact-link:focus-visible strong {
  color: #ffffff;
}

.contact-form {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: rgba(0, 0, 0, 0.82);
  box-shadow: var(--shadow);
}

.contact-form,
.checkout-modal__form form {
  display: grid;
  gap: 1rem;
}

.contact-form__row {
  display: grid;
  gap: 1rem;
}

.contact-form label,
.checkout-modal__form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span,
.checkout-modal__form span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.contact-form input,
.contact-form textarea,
.checkout-modal__form input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.checkout-modal__form input:focus {
  outline: none;
  border-color: rgba(239, 68, 68, 0.7);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.16);
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.4rem;
  font-size: 0.92rem;
}

.form-status--success {
  color: var(--success);
}

.form-status--error {
  color: #fda4af;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #030304;
}

.footer__grid {
  padding: 3rem 0;
}

.footer__brand h3 {
  font-size: 2rem;
}

.footer__brand p {
  margin-top: 0.75rem;
  color: var(--muted);
  line-height: 1.7;
}

.footer__socials {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.75rem;
}

.footer__socials a {
  display: inline-grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  transition: transform var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.footer__socials a:hover,
.footer__socials a:focus-visible {
  transform: translateY(-2px);
}

.footer__socials a:nth-child(1):hover,
.footer__socials a:nth-child(1):focus-visible {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 14px 30px rgba(24, 119, 242, 0.3);
}

.footer__socials a:nth-child(2):hover,
.footer__socials a:nth-child(2):focus-visible {
  background: linear-gradient(135deg, #f97316, #ec4899 55%, #8b5cf6);
  border-color: rgba(236, 72, 153, 0.85);
  box-shadow: 0 14px 30px rgba(236, 72, 153, 0.28);
}

.footer__socials a:nth-child(3):hover,
.footer__socials a:nth-child(3):focus-visible {
  background: #25d366;
  border-color: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.28);
}

.footer__list a {
  transition: color var(--transition);
}

.footer__list a:hover,
.footer__list a:focus-visible {
  color: #f87171;
}

.footer h4 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
}

.footer__list {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
  color: var(--muted);
}

.footer__list--contact li,
.footer__list--contact a {
  align-items: flex-start;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom-row {
  padding: 1.1rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #71717a;
  font-size: 0.92rem;
}

.footer__made {
  color: #8b8b95;
}

.basket-tray {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 70;
  width: min(22rem, calc(100vw - 1.5rem));
  transform: translateX(-50%);
  padding: 1rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(0, 0, 0, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.basket-tray__head,
.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.basket-tray__label {
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  margin-bottom: 0.35rem;
}

.basket-tray__items,
.checkout-items {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
  max-height: 11rem;
  overflow: auto;
  padding-right: 0.2rem;
}

.basket-item,
.checkout-item {
  padding: 0.85rem 1rem;
  border-radius: 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.basket-item strong,
.checkout-item strong {
  display: block;
  margin-bottom: 0.18rem;
}

.basket-item p,
.checkout-item p {
  color: var(--muted);
  font-size: 0.86rem;
}

.basket-item button,
.checkout-item button {
  align-self: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.basket-tray__actions {
  display: grid;
  gap: 0.7rem;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 7rem;
  z-index: 95;
  transform: translateX(-50%);
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(17, 17, 23, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  font-size: 0.92rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  visibility: hidden;
}

.modal.is-open,
.modal.is-closing {
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 260ms ease;
}

.modal__panel {
  position: relative;
  width: min(34rem, calc(100vw - 1.5rem));
  max-height: calc(100vh - 2rem);
  margin: 1rem auto;
  padding: 1.6rem;
  overflow: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.98), rgba(7, 7, 10, 0.98));
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition: opacity 260ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.modal__panel--wide {
  width: min(60rem, calc(100vw - 1.5rem));
}

.modal.is-open .modal__backdrop {
  opacity: 1;
}

.modal.is-open .modal__panel {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.booking-modal,
.checkout-modal {
  display: grid;
  gap: 1.4rem;
}

.booking-modal__info,
.checkout-modal__basket {
  padding: 1rem 0;
}

.booking-modal__info {
  border-bottom: 1px solid rgba(239, 68, 68, 0.12);
}

.modal-service-header {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.booking-modal__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.5rem 0;
}

.booking-modal__meta article,
.checkout-total {
  padding: 1rem;
  border-radius: 1.2rem;
  border: 1px solid var(--surface-border);
  background: rgba(255, 255, 255, 0.03);
}

.booking-modal__meta span,
.booking-modal__label,
.checkout-total span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  margin-bottom: 0.45rem;
}

.booking-modal__meta strong {
  font-size: 1.05rem;
}

.booking-modal__includes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

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

.date-button {
  padding: 0.95rem 0.8rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  text-align: left;
  transition: border-color var(--transition), background-color var(--transition), transform var(--transition);
}

.date-button:hover,
.date-button.is-selected {
  transform: translateY(-1px);
  border-color: rgba(239, 68, 68, 0.7);
  background: rgba(239, 68, 68, 0.12);
}

.date-button__weekday,
.date-button__month {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.date-button__day {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.booking-modal__actions,
.app-links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.partner-list {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.partner-link {
  display: block;
  padding: 1rem;
  border-radius: 1.15rem;
}

.partner-link strong {
  display: block;
  margin-bottom: 0.35rem;
}

.partner-link span {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-modal__form {
  padding: 1rem 0;
}

.checkout-help {
  font-size: 0.9rem;
}

.checkout-submit svg {
  width: 1rem;
  height: 1rem;
}

.checkout-success {
  display: grid;
  gap: 0.9rem;
  text-align: center;
  align-content: center;
  min-height: 100%;
  padding: 2rem 0;
}

.checkout-success svg {
  width: 4rem;
  height: 4rem;
  color: var(--success);
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal--left {
  transform: translate3d(-30px, 0, 0);
}

.reveal--right {
  transform: translate3d(30px, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { box-shadow: 0 0 0 10px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

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

@media (min-width: 700px) {
  .hero__actions,
  .trainings__cta-row,
  .contact-form__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero__meta-divider {
    display: block;
    width: 1px;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.15);
  }

  .hero__highlights,
  .stats,
  .services-grid,
  .membership-grid,
  .testimonials-grid,
  .location-highlights,
  .footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-tile--wide {
    grid-column: span 2;
  }

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

  .booking-modal,
  .checkout-modal,
  .about__grid,
  .location__grid,
  .contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .booking-modal__info {
    padding-right: 1.5rem;
    border-right: 1px solid rgba(239, 68, 68, 0.12);
    border-bottom: 0;
  }

  .booking-modal__dates,
  .checkout-modal__form {
    padding-left: 1.5rem;
  }

  .checkout-modal__basket {
    padding-right: 1.5rem;
    border-right: 1px solid rgba(239, 68, 68, 0.12);
  }
}

@media (min-width: 920px) {
  :root {
    --nav-height: 6.25rem;
  }

  .section {
    padding: 6.5rem 0;
  }

  .nav__links,
  .nav__actions {
    display: flex;
  }

  .nav__toggle,
  .mobile-menu {
    display: none !important;
  }

  .hero__highlights,
  .services-grid,
  .membership-grid,
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .footer__grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  }

  .basket-tray {
    left: auto;
    right: 1.5rem;
    transform: none;
    bottom: 1.5rem;
  }

  .toast {
    bottom: 1.8rem;
  }
}

@media (min-width: 1080px) {
  .hero__actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
