:root {
  --ink: #111315;
  --charcoal: #1c2024;
  --graphite: #2b3036;
  --lime: #d6ff2f;
  --orange: #ff5633;
  --cyan: #33d6ff;
  --paper: #f5f3eb;
  --white: #ffffff;
  --muted: #6f777d;
  --line: rgba(17, 19, 21, 0.12);
  --shadow: 0 24px 70px rgba(17, 19, 21, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
  padding: 12px 52px;
  background: rgba(245, 243, 235, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 182px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  font-family: "Archivo Black", Inter, sans-serif;
}

.brand-name {
  display: grid;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.brand-name strong {
  color: var(--orange);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  color: var(--graphite);
  font-size: 0.92rem;
  font-weight: 900;
}

.nav-links a {
  border-radius: 8px;
  padding: 9px 11px;
}

.nav-links a:hover {
  background: rgba(17, 19, 21, 0.08);
}

.header-call {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 72px 52px 44px;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.95) 0%, rgba(17, 19, 21, 0.72) 42%, rgba(17, 19, 21, 0.28) 100%),
    repeating-linear-gradient(135deg, rgba(214, 255, 47, 0.22) 0 2px, transparent 2px 42px);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: 44px;
  width: 520px;
  height: 180px;
  background:
    linear-gradient(105deg, transparent 0 10%, rgba(214, 255, 47, 0.82) 10% 21%, transparent 21% 28%, rgba(255, 86, 51, 0.9) 28% 38%, transparent 38% 45%, rgba(51, 214, 255, 0.76) 45% 55%, transparent 55%);
  transform: skewX(-22deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--lime);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 14px;
  color: var(--white);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 5.8rem;
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  color: var(--ink);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.15;
}

.hero-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.28rem;
  font-weight: 750;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 18px 36px rgba(214, 255, 47, 0.2);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 860px;
  margin: 34px 0 0;
}

.hero-metrics div {
  min-height: 102px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 14px;
  background: rgba(17, 19, 21, 0.38);
  backdrop-filter: blur(10px);
}

.hero-metrics dt {
  color: var(--lime);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.quick-info a,
.quick-info span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(17, 19, 21, 0.18);
  padding: 16px;
  text-align: center;
}

.about-section,
.services-section,
.experience-section,
.offers-section,
.booking-section,
.contact-section {
  padding: 78px 52px;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-heading.wide {
  max-width: 1080px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 34px;
  align-items: stretch;
}

.about-copy {
  display: grid;
  align-content: space-between;
  border-left: 8px solid var(--orange);
  padding: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-copy p {
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
}

.about-signature {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-weight: 900;
}

.about-signature strong {
  color: var(--orange);
}

.about-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(17, 19, 21, 0.74));
}

.about-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-visual span {
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 900;
}

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

.services-section h2,
.services-section h3 {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: var(--charcoal);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  opacity: 0.7;
  transition: transform 360ms ease, opacity 360ms ease;
}

.service-card:hover img {
  transform: scale(1.05);
  opacity: 0.88;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 19, 21, 0.1), rgba(17, 19, 21, 0.88));
}

.service-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 22px;
}

.service-content span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.service-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--lime);
  font-weight: 900;
}

.experience-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(17, 19, 21, 0.98), rgba(43, 48, 54, 0.96)),
    repeating-linear-gradient(135deg, rgba(214, 255, 47, 0.16) 0 2px, transparent 2px 38px);
  color: var(--white);
}

.experience-section::before {
  content: "TRAIN";
  position: absolute;
  right: -26px;
  bottom: -50px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(6rem, 17vw, 15rem);
  line-height: 0.8;
}

.experience-section::after {
  content: "";
  position: absolute;
  top: 54px;
  right: 52px;
  width: min(420px, 42vw);
  height: 128px;
  background:
    linear-gradient(105deg, transparent 0 8%, rgba(214, 255, 47, 0.86) 8% 22%, transparent 22% 29%, rgba(255, 86, 51, 0.9) 29% 42%, transparent 42% 49%, rgba(51, 214, 255, 0.72) 49% 62%, transparent 62%);
  transform: skewX(-22deg);
  opacity: 0.8;
}

.experience-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: start;
}

.experience-copy {
  max-width: 680px;
}

.experience-copy .eyebrow {
  color: var(--lime);
}

.experience-copy h2 {
  color: var(--white);
}

.experience-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.04rem;
  font-weight: 700;
}

.experience-cta {
  width: fit-content;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 8px;
  padding: 12px 16px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 900;
}

.experience-flow {
  position: relative;
  display: grid;
  gap: 14px;
}

.experience-flow::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 36px;
  width: 2px;
  background: linear-gradient(180deg, var(--lime), var(--orange), var(--cyan));
  opacity: 0.75;
}

.experience-card {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 20px;
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(17, 19, 21, 0.62);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--lime), var(--orange));
}

.experience-index {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: 1.1rem;
}

.experience-card h3 {
  color: var(--white);
}

.experience-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.experience-board {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.experience-board div {
  min-height: 92px;
  display: grid;
  align-content: center;
  border-radius: 8px;
  padding: 18px;
  background: var(--lime);
  color: var(--ink);
}

.experience-board span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experience-board strong {
  font-family: "Archivo Black", Inter, sans-serif;
  font-size: clamp(1.6rem, 4vw, 3.2rem);
  line-height: 1;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.offer-card {
  min-height: 280px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(17, 19, 21, 0.08);
}

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

.offer-card.featured h3 {
  color: var(--white);
}

.offer-badge {
  width: fit-content;
  border-radius: 8px;
  padding: 7px 9px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-card p {
  color: var(--muted);
  font-weight: 700;
}

.offer-card.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.offer-card strong {
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
}

.offer-card.featured strong,
.offer-card.featured a {
  color: var(--lime);
}

.offer-card a {
  color: var(--ink);
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: 38px;
  align-items: start;
  background: var(--charcoal);
  color: var(--white);
}

.booking-section h2 {
  color: var(--white);
}

.booking-copy {
  position: sticky;
  top: 108px;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.whatsapp-panel {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  border: 1px solid rgba(214, 255, 47, 0.28);
  border-radius: 8px;
  padding: 18px;
  background: rgba(214, 255, 47, 0.08);
}

.whatsapp-panel span {
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-panel strong {
  color: var(--white);
  font-size: 1.2rem;
}

.booking-form {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

label span {
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fffefa;
  font: inherit;
}

.form-control:focus {
  border-color: var(--orange);
  outline: 3px solid rgba(255, 86, 51, 0.18);
}

.errorlist {
  margin: 0;
  padding-left: 18px;
  color: #b42318;
  font-size: 0.9rem;
}

.form-message {
  margin: 0;
  border-radius: 8px;
  padding: 12px;
  background: rgba(214, 255, 47, 0.22);
  color: var(--ink);
  font-weight: 850;
}

.contact-section {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  background: var(--lime);
  color: var(--ink);
}

.contact-section p {
  max-width: 560px;
  margin-bottom: 0;
  font-weight: 800;
}

address {
  display: grid;
  gap: 8px;
  font-style: normal;
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 52px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
}

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

  .nav-links {
    justify-content: flex-start;
  }

  .header-call {
    justify-self: start;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .about-layout,
  .experience-stage,
  .booking-section {
    grid-template-columns: 1fr;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .about-section,
  .services-section,
  .experience-section,
  .offers-section,
  .booking-section,
  .contact-section,
  .site-footer {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .hero-text {
    font-size: 1.08rem;
  }

  .hero-actions .button,
  .header-call {
    width: 100%;
  }

  .hero-metrics,
  .quick-info,
  .experience-board,
  .form-row {
    grid-template-columns: 1fr;
  }

  .quick-info a,
  .quick-info span {
    justify-content: flex-start;
    text-align: left;
  }

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

  .experience-flow::before {
    display: none;
  }

  .experience-cta {
    width: 100%;
  }

  .contact-section,
  .site-footer {
    flex-direction: column;
  }
}
