:root {
  --ink: #0b0b0d;
  --ink-2: #17171b;
  --paper: #f7f4ed;
  --paper-2: #ebe7dc;
  --muted: #747068;
  --line: rgba(11, 11, 13, 0.12);
  --line-dark: rgba(255, 255, 255, 0.14);
  --lime: #d7ff39;
  --coral: #ff5c39;
  --cyan: #3ed7ff;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(11, 11, 13, 0.18);
  --radius: 8px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px clamp(20px, 4vw, 52px);
  color: var(--white);
  background: rgba(11, 11, 13, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 11, 13, 0.92);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  line-height: 1;
  font-size: 1rem;
}

.brand small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 22px;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  transform: scaleX(0);
  background: var(--lime);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.site-nav a:hover {
  color: var(--white);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
  font-size: 0.88rem;
  transition: transform 0.2s ease, background 0.2s ease;
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(11, 11, 13, 0.94), rgba(11, 11, 13, 0.54) 52%, rgba(11, 11, 13, 0.18)),
    linear-gradient(0deg, rgba(11, 11, 13, 0.98), transparent 42%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: end;
  padding: 150px 0 38px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--coral);
  font-weight: 900;
  font-size: 0.76rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  max-width: 900px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4.5vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 40px rgba(215, 255, 57, 0.22);
}

.btn-primary:hover {
  background: #e4ff64;
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-panel {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.panel-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
}

.panel-status span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 8px rgba(215, 255, 57, 0.12);
}

.lead-card,
.mini-metrics div {
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.28);
}

.lead-card span,
.lead-card small,
.mini-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.lead-card strong {
  display: block;
  margin: 8px 0;
  color: var(--lime);
  font-size: 4rem;
  line-height: 0.9;
}

.mini-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

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

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(11, 11, 13, 0.42);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--lime);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section {
  padding: clamp(70px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.plans-section,
.gallery-section,
.faq-section {
  background: var(--paper-2);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.plan-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 38px rgba(11, 11, 13, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.plan-card:hover,
.gallery-grid button:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.plan-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper-2);
  font-weight: 900;
}

.featured .plan-icon {
  background: var(--lime);
}

.plan-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.plan-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.68);
}

.plan-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #4f4c46;
}

.featured ul {
  color: rgba(255, 255, 255, 0.76);
}

.plan-card li::before {
  content: "•";
  margin-right: 8px;
  color: var(--coral);
}

.plan-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.featured .plan-meta {
  border-color: var(--line-dark);
}

.plan-meta span {
  color: var(--muted);
  font-size: 0.85rem;
}

.featured .plan-meta span {
  color: rgba(255, 255, 255, 0.62);
}

.plan-meta strong {
  font-size: 1.2rem;
}

.reservation-section {
  background: var(--paper);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.booking-card,
.booking-confirmation {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.booking-card {
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
}

.booking-fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field-group {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field-group label {
  color: #4f4c46;
  font-size: 0.82rem;
  font-weight: 900;
}

.field-group select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid rgba(11, 11, 13, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.field-group select:focus {
  border-color: rgba(11, 11, 13, 0.42);
  box-shadow: 0 0 0 4px rgba(215, 255, 57, 0.34);
}

.class-availability {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 10px 0 18px;
}

.availability-card {
  min-height: 94px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.availability-card span,
.reservation-summary dt {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.availability-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1;
}

.availability-card.accent strong {
  color: var(--coral);
}

.full-width {
  width: 100%;
}

.booking-confirmation {
  min-height: 380px;
  display: grid;
  align-items: center;
  padding: clamp(22px, 3vw, 34px);
  color: var(--white);
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.96), rgba(23, 23, 27, 0.9)),
    url("https://images.unsplash.com/photo-1599058917212-d750089bc07e?auto=format&fit=crop&w=1100&q=76") center/cover;
}

.confirmation-empty span,
.success-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
}

.confirmation-empty h3,
.confirmation-ready h3 {
  margin: 16px 0 10px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.confirmation-empty p {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.reservation-summary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.reservation-summary div {
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.reservation-summary dt {
  color: rgba(255, 255, 255, 0.58);
}

.reservation-summary dd {
  margin: 4px 0 0;
  font-weight: 900;
}

.access-qr {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin: 0 0 20px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.qr-box {
  width: 140px;
  height: 140px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.qr-box img,
.qr-box canvas {
  width: 100% !important;
  height: 100% !important;
}

.access-qr p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.account-section {
  color: var(--white);
  background: var(--ink);
}

.account-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.account-app {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 82% 12%, rgba(215, 255, 57, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: var(--shadow);
}

.account-profile {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border-bottom: 1px solid var(--line-dark);
}

.account-avatar {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-weight: 900;
}

.account-profile h3 {
  margin-bottom: 4px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.account-profile p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.account-status,
.account-reservation .panel-title span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.account-metrics,
.account-reservation-grid {
  display: grid;
  gap: 14px;
}

.account-metrics {
  grid-template-columns: repeat(3, 1fr);
  padding: 20px;
}

.account-metrics article,
.account-reservation-grid div {
  padding: 16px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.account-metrics span,
.account-reservation-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
}

.account-metrics strong,
.account-reservation-grid strong {
  display: block;
  margin-top: 4px;
  font-size: 1.45rem;
  line-height: 1.05;
}

.account-reservation {
  margin: 0 20px 20px;
  padding: 20px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.22);
}

.panel-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.panel-title h3 {
  margin: 0;
}

.account-reservation-grid {
  grid-template-columns: repeat(4, 1fr);
}

.business-section {
  background: var(--paper);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.business-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 12px 38px rgba(11, 11, 13, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.business-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 11, 13, 0.24);
}

.business-grid article span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-size: 0.78rem;
  font-weight: 900;
}

.business-grid h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.business-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.comparison-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.comparison-column {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-column.digital {
  color: var(--white);
  border-color: var(--ink);
  background:
    radial-gradient(circle at 88% 14%, rgba(215, 255, 57, 0.18), transparent 30%),
    var(--ink);
}

.comparison-title {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.digital .comparison-title {
  border-color: var(--line-dark);
}

.comparison-title span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-size: 0.76rem;
  font-weight: 900;
}

.digital .comparison-title span {
  color: var(--ink);
  background: var(--lime);
}

.comparison-title h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1;
}

.comparison-column ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.comparison-column li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 22px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.comparison-column li:last-child {
  border-bottom: 0;
}

.comparison-column li::before {
  content: "–";
  color: var(--coral);
  font-weight: 900;
}

.digital li {
  color: rgba(255, 255, 255, 0.76);
  border-color: var(--line-dark);
}

.digital li::before {
  content: "+";
  color: var(--lime);
}

.business-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.92), rgba(23, 23, 27, 0.9)),
    url("https://images.unsplash.com/photo-1571902943202-507ec2618e8f?auto=format&fit=crop&w=1400&q=80") center/cover;
  box-shadow: var(--shadow);
}

.business-cta h3 {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.testimonials-section {
  color: var(--white);
  background: var(--ink);
}

.testimonials-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.testimonial-carousel {
  min-height: 275px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.testimonial-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: clamp(1.3rem, 3vw, 2.3rem);
  line-height: 1.12;
  font-weight: 900;
}

.testimonial-card cite {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-weight: 800;
}

.stars {
  margin-bottom: 12px;
  color: #fbbc04;
  letter-spacing: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-grid button {
  min-height: 210px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  transition: transform 0.2s ease;
}

.gallery-grid button:nth-child(1),
.gallery-grid button:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-grid button:hover img {
  transform: scale(1.04);
}

.faq-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

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

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  padding: 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--coral);
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.closing-cta {
  padding: clamp(70px, 10vw, 120px) 0;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(11, 11, 13, 0.92), rgba(11, 11, 13, 0.74)),
    url("https://images.unsplash.com/photo-1534258936925-c58bed479fcb?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.closing-cta .section-shell {
  max-width: 860px;
}

.closing-cta p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 255, 255, 0.68);
  background: #050506;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 30px;
}

.footer-grid strong,
.footer-grid a {
  display: block;
}

.footer-grid strong {
  margin-bottom: 12px;
  color: var(--white);
}

.footer-grid a {
  margin-bottom: 8px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.26);
  font-weight: 900;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-size: 2rem;
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

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

  .hero-panel {
    max-width: 520px;
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 14px 20px 22px;
    background: rgba(11, 11, 13, 0.98);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    transition: transform 0.24s ease;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 130px;
  }

  .hero-stats,
  .booking-layout,
  .plans-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .account-metrics,
  .account-reservation-grid,
  .business-grid,
  .comparison-board {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .business-cta {
    display: grid;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-inner {
    gap: 24px;
    padding-bottom: 24px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats,
  .booking-fields,
  .class-availability,
  .reservation-summary,
  .access-qr,
  .account-profile,
  .account-metrics,
  .account-reservation-grid,
  .business-grid,
  .comparison-board,
  .plans-grid,
  .mini-metrics,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .access-qr {
    justify-items: start;
  }

  .account-profile {
    display: grid;
  }

  .gallery-grid button,
  .gallery-grid button:nth-child(1),
  .gallery-grid button:nth-child(4) {
    grid-column: auto;
    min-height: 180px;
  }
}

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