:root {
  --black: #050505;
  --charcoal: #111214;
  --graphite: #1b1d20;
  --line: rgba(255, 255, 255, 0.14);
  --text: #f7f4ee;
  --muted: #c8c1b7;
  --amber: #ff6a00;
  --amber-2: #ff9d22;
  --green: #1fbd58;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: Inter, Montserrat, Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 8px;
  opacity: 0.32;
  z-index: 20;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand img {
  width: clamp(108px, 11vw, 144px);
  height: auto;
}

.footer-brand img {
  width: 132px;
}

h1,
h2,
h3,
.button,
.eyebrow,
.pill {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  color: #f1ece3;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding-block: 8px;
  color: rgba(247, 244, 238, 0.86);
}

.main-nav a:hover {
  color: var(--amber-2);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  line-height: 1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.header-cta,
.button-primary {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 106, 0, 0.22);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.button-whatsapp {
  background: var(--green);
  color: #fff;
  width: 100%;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: min(640px, calc(100vh - 160px));
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.76) 42%, rgba(0, 0, 0, 0.38) 70%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 38%),
    url("assets/images/20260327_100200.jpg") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-content {
  position: relative;
  width: min(690px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-block: 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber-2);
  font-size: 15px;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 18px;
  font-size: clamp(42px, 5.7vw, 72px);
  line-height: 0.92;
}

h1 span {
  color: var(--amber);
}

.hero-copy {
  max-width: 590px;
  color: #ede7dd;
  font-size: clamp(16px, 1.8vw, 20px);
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  max-width: 620px;
  margin: 20px 0 24px;
}

.hero-points span {
  position: relative;
  padding-left: 28px;
  color: #f6efe5;
  font-weight: 700;
  font-size: 14px;
}

.hero-points span::before,
li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.25);
}

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

.trust-badge {
  position: absolute;
  right: clamp(18px, 6vw, 92px);
  bottom: clamp(28px, 8vw, 92px);
  display: grid;
  place-items: center;
  width: 164px;
  min-height: 154px;
  padding: 24px 18px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.34);
  background: rgba(16, 17, 18, 0.74);
  clip-path: polygon(50% 0, 100% 22%, 100% 78%, 50% 100%, 0 78%, 0 22%);
}

.trust-badge strong {
  color: #fff;
  font-size: 17px;
  text-transform: uppercase;
}

.trust-badge span {
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-strip article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  align-items: center;
  min-height: 118px;
  padding: 24px clamp(18px, 3vw, 46px);
  background: #101010;
}

.feature-strip p {
  grid-column: 2;
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.feature-strip strong {
  text-transform: uppercase;
}

.icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(255, 106, 0, 0.12));
}

.split-section,
.courses,
.benefits,
.testimonials,
.faq-contact,
.location {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(60px, 9vw, 110px) 0;
}

.section-copy h2,
.section-heading h2,
.faq h2,
.lead-card h2,
.location h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.95;
  margin-bottom: 18px;
}

.section-copy p,
.location p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  color: var(--amber-2);
  font-weight: 900;
  text-transform: uppercase;
}

.image-panel {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.6)),
    url("assets/images/20251011_133023.jpg") center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.courses,
.benefits,
.testimonials,
.gallery,
.faq-contact,
.location {
  padding: clamp(58px, 8vw, 90px) 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.course-card,
.benefit-grid article,
blockquote,
.lead-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.course-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: 210px 1fr;
}

.course-image {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05)),
    url("assets/images/20251219_114225.jpg") center / cover no-repeat;
}

.course-private {
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05)),
    url("assets/images/20251221_105724.jpg");
  background-position: center;
}

.course-two {
  background-image:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.05)),
    url("assets/images/20260327_100143(0).jpg");
  background-position: center;
}

.course-body {
  display: grid;
  align-content: start;
  padding: 22px;
}

.pill {
  width: max-content;
  margin-bottom: 14px;
  padding: 6px 10px;
  border: 1px solid var(--amber);
  border-radius: 4px;
  color: var(--amber-2);
  background: rgba(255, 106, 0, 0.1);
  font-size: 14px;
}

.course-body h3 {
  font-size: 31px;
  line-height: 1;
}

.course-body p,
.benefit-grid p,
blockquote p,
.lead-card p,
.faq p {
  color: var(--muted);
}

ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 12px 0 22px;
  list-style: none;
}

li {
  position: relative;
  padding-left: 25px;
  color: #eee5da;
  font-size: 14px;
}

li::before {
  width: 10px;
  height: 10px;
}

.price-row {
  display: grid;
  gap: 4px;
  margin-top: auto;
  margin-bottom: 18px;
}

.price-row strong {
  font-size: 24px;
}

.price-row small,
.price-row span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.price-row.split {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.benefit-grid article {
  padding: 28px 22px;
}

.benefit-grid h3 {
  margin: 20px 0 10px;
  font-size: 25px;
  line-height: 1;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--graphite);
}

.gallery-grid img:first-child,
.gallery-grid img:nth-child(4) {
  grid-row: span 2;
}

blockquote {
  margin: 0;
  padding: 26px;
}

blockquote span {
  color: var(--amber-2);
}

cite {
  color: #fff;
  font-style: normal;
  font-weight: 900;
}

.faq-contact {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

details {
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
}

summary {
  cursor: pointer;
  padding: 17px 18px;
  color: #fff;
  font-weight: 900;
}

summary::marker {
  color: var(--amber);
}

details p {
  padding: 0 18px 18px;
}

.lead-card {
  position: sticky;
  top: 100px;
  padding: clamp(26px, 4vw, 44px);
  text-align: center;
}

.lead-card span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
}

.location {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.reference {
  color: #fff;
  font-weight: 800;
}

.map-card {
  min-height: 360px;
  overflow: hidden;
  padding: 0;
  background: #151515;
}

.map-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.18) contrast(1.05) brightness(0.92);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 28px;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #070707;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--amber);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 11;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(31, 189, 88, 0.36);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

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

  .nav-toggle {
    justify-self: end;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: transparent;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .trust-badge {
    display: none;
  }

  .feature-strip,
  .course-grid,
  .benefit-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .split-section,
  .faq-contact,
  .location {
    grid-template-columns: 1fr;
  }

  .lead-card {
    position: static;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-content {
    width: calc(100% - 32px);
    margin-inline: 16px;
    padding-block: 46px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-points,
  .feature-strip,
  .course-grid,
  .benefit-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .gallery-grid img:first-child,
  .gallery-grid img:nth-child(4) {
    grid-row: span 1;
  }

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

  .image-panel {
    min-height: 310px;
  }

  .course-card {
    grid-template-rows: 190px 1fr;
  }

  .price-row.split {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 56px;
    height: 56px;
  }
}
