/* ============ FC Babylon ============ */
@font-face {
  font-family: "Anton";
  src: url("../fonts/anton-400-latin.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --black: #0b0b0b;
  --ink: #171717;
  --white: #ffffff;
  --paper: #f7f7f5;
  --green: #169a84;
  --green-bright: #1fc29f;
  --green-dark: #0e6d5d;
  --gold: #c99212;
  --wa: #25d366;
  --wa-dark: #1eb457;
  --display: "Anton", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, "Segoe UI", sans-serif;
  --nav-h: 64px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-img { opacity: 1 !important; transform: none !important; transition: none !important; }
}
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--green); color: #fff; padding: 10px 16px; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3, .price {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.02;
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.9rem, 9.5vw, 6.5rem); }
h2 { font-size: clamp(2.1rem, 6vw, 4rem); margin-bottom: 0.5em; }
h2 em { font-style: normal; color: var(--green); }
h3 { font-size: 1.35rem; }
.eyebrow {
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.22em; color: var(--green); margin-bottom: 0.9rem;
}

/* ---------- layout ---------- */
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 820px; }
.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--tight { padding-bottom: clamp(2.5rem, 5vw, 4rem); }
.section--light { background: var(--paper); color: var(--ink); }
.section--dark { background: var(--black); color: var(--white); }
.section--dark .eyebrow { color: var(--green-bright); }
.section--photo { position: relative; overflow: hidden; }
.section__bg { position: absolute; inset: 0; z-index: 0; }
.section__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.section__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,7,0.86) 0%, rgba(5,8,7,0.68) 45%, rgba(5,8,7,0.88) 100%);
}
.section--photo > .wrap { position: relative; z-index: 1; }
.section p { max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; text-decoration: none; border-radius: 999px;
  padding: 12px 22px; font-size: 0.95rem; line-height: 1.2;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--wa { background: var(--wa); color: #063; color: #05391d; box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35); }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }
.btn--ghost { border: 2px solid rgba(255,255,255,0.75); color: #fff; }
.btn--ghost:hover { border-color: var(--green-bright); color: var(--green-bright); }
.btn--lg { padding: 15px 26px; font-size: 1rem; }
.btn--xl { padding: 18px 34px; font-size: 1.15rem; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 20px;
  padding: 0 clamp(16px, 3vw, 32px);
  color: #fff;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0));
  transition: background 0.25s ease, backdrop-filter 0.25s ease;
}
.nav.is-scrolled {
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  font-weight: 600; font-size: 1.05rem; letter-spacing: 0.02em;
}
.nav__brand b { color: var(--green-bright); font-weight: 800; }
.nav__brand img { height: 40px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  text-decoration: none; font-weight: 600; font-size: 0.92rem;
  padding: 8px 12px; border-radius: 8px; opacity: 0.85;
}
.nav__links a:hover { opacity: 1; }
.nav__links a.is-active { color: var(--green-bright); opacity: 1; }
.nav__ig { display: inline-flex; align-items: center; }
.nav__cta { margin-left: 8px; padding: 10px 18px; font-size: 0.88rem; }
.nav__burger { display: none; }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto 0; z-index: 99;
  background: rgba(8,8,8,0.97); color: #fff;
  display: none; flex-direction: column; gap: 4px;
  padding: 18px 22px 26px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  text-decoration: none; font-weight: 700; font-size: 1.15rem; padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu .btn { justify-content: center; margin-top: 14px; border-bottom: none; }

@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 44px; height: 44px; align-items: center;
    background: none; border: none; cursor: pointer;
  }
  .nav__burger span {
    display: block; width: 24px; height: 2.5px; background: #fff; border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  .nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero__bg, .cta__bg { position: absolute; inset: 0; }
.hero__bg img, .cta__bg img {
  width: 100%; height: 115%; object-fit: cover; object-position: center 62%;
  will-change: transform;
}
.hero::after, .cta::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.25) 40%, rgba(0,0,0,0.72) 100%);
}
.hero__inner {
  position: relative; z-index: 2; width: 100%;
  max-width: 1180px; margin: 0 auto; padding: calc(var(--nav-h) + 24px) 20px 90px;
}
.hero__badge { height: 110px; width: auto; margin-bottom: 18px; filter: drop-shadow(0 4px 18px rgba(0,0,0,0.5)); }
.hero__eyebrow {
  font-size: 0.85rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.18em; color: #fff; margin-bottom: 1.2rem;
  line-height: 2.4; max-width: fit-content;
}
.hero__eyebrow span {
  background: rgba(6, 10, 9, 0.72);
  border-left: 3px solid var(--green-bright);
  padding: 7px 14px 7px 11px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.hero__sub { font-size: clamp(1.05rem, 2.4vw, 1.35rem); margin-top: 1.2rem; max-width: 40ch; text-wrap: balance; }
.hero__sub strong { color: var(--green-bright); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }
.hero__scroll {
  position: absolute; z-index: 2; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 28px; height: 46px; border: 2px solid rgba(255,255,255,0.7); border-radius: 16px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 9px; width: 4px; height: 9px; margin-left: -2px;
  background: #fff; border-radius: 2px; animation: scrollcue 1.8s ease-in-out infinite;
}
@keyframes scrollcue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}
@media (max-width: 640px) { .bp { display: none; } }

.hero__proof {
  margin-top: 1.4rem; font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.85); letter-spacing: 0.02em;
}

/* ---------- page head (subpages) ---------- */
.page-head {
  background: var(--black); color: #fff;
  padding: calc(var(--nav-h) + clamp(2.5rem, 7vw, 5rem)) 0 clamp(2rem, 5vw, 3.5rem);
}
.page-head h1 { font-size: clamp(2.4rem, 7vw, 4.6rem); }
.page-head .eyebrow { color: var(--green-bright); }

/* ---------- why tiles ---------- */
.why { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); margin-top: 2rem; }
.why__tile {
  background: rgba(14, 16, 15, 0.82); border: 1px solid rgba(255,255,255,0.1);
  border-top: 4px solid var(--green); border-radius: 14px; padding: 24px 24px 26px;
  backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px);
}
.why__tile h3 { margin-bottom: 10px; color: var(--green-bright); font-size: 1.25rem; }
.why__tile p { font-size: 0.95rem; color: rgba(255,255,255,0.85); }
.why__tile b { color: #fff; }
.why__tile a { color: var(--green-bright); font-weight: 700; text-decoration: none; }
.why__tile a:hover { text-decoration: underline; }

/* ---------- glance price strip ---------- */
.glance-price {
  margin-top: 30px; background: var(--black); color: #fff;
  border-radius: 16px; padding: clamp(22px, 4vw, 34px);
  display: grid; gap: 18px;
}
.glance-price__figure {
  font-family: var(--display); font-size: clamp(1.8rem, 5vw, 2.6rem);
  color: var(--green-bright); margin-right: 8px;
}
.glance-price p { max-width: none; font-size: 1.05rem; }
.glance-price__links { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.link-more { font-weight: 700; color: var(--green-dark); text-underline-offset: 3px; }
.section--dark .link-more { color: var(--green-bright); }
@media (min-width: 860px) {
  .glance-price { grid-template-columns: 1fr auto; align-items: center; }
}

/* ---------- register band ---------- */
.register-band { background: var(--green); color: #fff; padding: 26px 0; }
.register-band__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.register-band p { font-size: 1.05rem; max-width: 56ch; }
.register-band .btn--wa { box-shadow: 0 6px 24px rgba(0,0,0,0.25); }

.section--divide { border-top: 1px solid #e7e7e2; }
.footer__nav { margin-top: 10px; font-size: 0.88rem; }
.footer__nav a { color: rgba(255,255,255,0.75); }

/* ---------- split (who we are) ---------- */
.split { display: grid; gap: clamp(28px, 5vw, 64px); align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1.1fr 0.9fr; } }
.split__media { border-radius: 18px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.18); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.6rem; }
.chips li {
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--green); color: var(--green-dark);
}

/* ---------- teams ---------- */
.banner {
  display: block; width: fit-content;
  background: var(--green); color: #fff; font-weight: 800;
  padding: 12px 22px; border-radius: 12px; margin: 0 0 2.2rem;
  font-size: 1.02rem;
}
.banner a { color: #fff; text-underline-offset: 3px; }
.cards { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card {
  background: #161616; border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--green); }
.card picture img, .card__placeholder { width: 100%; height: 230px; object-fit: cover; }
.card__placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: radial-gradient(ellipse at center, #123a33 0%, #0c1f1b 75%);
  color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.card__body { padding: 18px 20px 22px; }
.card__body h3 { margin-bottom: 6px; display: flex; align-items: center; gap: 10px; }
.card__body p { font-size: 0.94rem; color: rgba(255,255,255,0.75); }
.tag {
  font-family: var(--body); font-size: 0.68rem; font-weight: 800;
  background: var(--green); color: #fff; padding: 4px 10px; border-radius: 999px;
  letter-spacing: 0.06em;
}

/* ---------- sessions ---------- */
.sessions { display: grid; gap: 22px; margin-bottom: 34px; }
@media (min-width: 760px) { .sessions { grid-template-columns: 1fr 1fr; } }
.session {
  background: #fff; border-radius: 16px; padding: 26px 28px;
  border-top: 5px solid var(--green);
  box-shadow: 0 10px 34px rgba(0,0,0,0.07);
}
.session__head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.session__age {
  font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em;
  background: var(--black); color: #fff; padding: 6px 13px; border-radius: 999px;
}
.session ul { list-style: none; display: grid; gap: 12px; }
.session li { padding-left: 26px; position: relative; }
.session li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--green);
}
.session__note { margin-top: 16px; font-size: 0.9rem; color: #555; }
.maps { display: grid; gap: 22px; }
@media (min-width: 760px) { .maps { grid-template-columns: 1fr 1fr; } }
.map { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 10px 34px rgba(0,0,0,0.07); }
.map iframe { width: 100%; height: 280px; border: 0; display: block; }
.map figcaption { padding: 13px 18px; font-size: 0.88rem; font-weight: 600; }

/* ---------- pricing ---------- */
.price-card {
  background: #141414; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: clamp(26px, 5vw, 46px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.price-card__figures { display: flex; flex-wrap: wrap; gap: clamp(24px, 6vw, 64px); margin-bottom: 26px; }
.price { font-size: clamp(3rem, 8vw, 4.6rem); color: var(--green-bright); display: block; }
.per { font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.65); }
.ticks { list-style: none; display: grid; gap: 11px; margin-bottom: 24px; }
@media (min-width: 640px) { .ticks { grid-template-columns: 1fr 1fr; } }
.ticks li { padding-left: 30px; position: relative; font-weight: 600; }
.ticks li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green-bright); font-weight: 800;
}
.price-card__kit { font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.price-card__kit a { color: var(--green-bright); }
.price-card__taster {
  margin-top: 18px; padding: 14px 18px; border-radius: 12px;
  background: rgba(31, 194, 159, 0.12); border: 1px solid rgba(31, 194, 159, 0.4);
  font-size: 0.98rem;
}
.price-card__taster b { color: var(--green-bright); }

/* ---------- proven ---------- */
.proven { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.proven__item { border-radius: 16px; overflow: hidden; background: #fff; box-shadow: 0 10px 34px rgba(0,0,0,0.08); }
.proven__item img { width: 100%; height: 210px; object-fit: cover; }
.proven__item figcaption { padding: 16px 18px 20px; font-size: 0.9rem; color: #444; }
.proven__item b { color: var(--ink); display: inline-block; margin-bottom: 2px; }

/* ---------- gallery ---------- */
.gallery {
  columns: 2; column-gap: 10px; padding: 10px;
  max-width: 1400px; margin: 24px auto 0;
}
@media (min-width: 700px) { .gallery { columns: 3; } }
@media (min-width: 1000px) { .gallery { columns: 4; } }
.gallery img {
  width: 100%; margin-bottom: 10px; border-radius: 10px;
  break-inside: avoid;
}

/* ---------- faqs ---------- */
.faqs { display: grid; gap: 12px; }
.faqs details {
  background: #fff; border-radius: 14px; border: 1px solid #e6e6e2;
  overflow: hidden;
}
.faqs details[open] { border-color: var(--green); }
.faqs summary {
  cursor: pointer; font-weight: 700; padding: 18px 52px 18px 22px;
  list-style: none; position: relative; font-size: 1.02rem;
}
.faqs summary::-webkit-details-marker { display: none; }
.faqs summary::after {
  content: "+"; position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%); font-size: 1.5rem; font-weight: 400; color: var(--green);
  transition: transform 0.2s ease;
}
.faqs details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faqs details p { padding: 0 22px 20px; color: #444; }

/* ---------- instagram ---------- */
.ig-handle {
  font-weight: 800; font-size: 1.2rem; color: var(--green-bright);
  text-decoration: none;
}
.ig-handle:hover { text-decoration: underline; }
.ig-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px;
  max-width: 1000px; margin: 26px auto 0; padding: 0 10px;
}
@media (max-width: 640px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-grid a { display: block; overflow: hidden; border-radius: 8px; }
.ig-grid img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform 0.3s ease; }
.ig-grid a:hover img { transform: scale(1.05); }

/* ---------- final cta ---------- */
.cta {
  position: relative; min-height: 100svh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff; overflow: hidden;
}
.cta::after { background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(0,0,0,0.65)); }
.cta__inner { position: relative; z-index: 2; padding: 90px 20px; }
.cta__inner h2 { font-size: clamp(2.8rem, 9vw, 6rem); }
.cta__inner > p { font-size: clamp(1.05rem, 2.5vw, 1.3rem); margin: 1rem auto 2rem; max-width: 52ch; }
.cta__number { margin-top: 1.8rem; font-size: 1rem; opacity: 0.95; }
.cta__number a { color: #fff; text-decoration: none; font-size: 1.3rem; }
.cta__number a:hover { color: var(--green-bright); }

/* ---------- footer ---------- */
.footer { background: #080808; color: rgba(255,255,255,0.8); padding: 60px 0 30px; }
.footer__grid { display: grid; gap: 34px; }
@media (min-width: 800px) { .footer__grid { grid-template-columns: 1.5fr 1fr; } }
.footer h3 { color: #fff; font-size: 1rem; margin-bottom: 10px; }
.footer p { font-size: 0.9rem; }
.footer img { margin-bottom: 12px; }
.footer a { color: var(--green-bright); text-decoration: none; }
.footer__hint { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer a:hover { text-decoration: underline; }
.footer__legal {
  text-align: center; margin-top: 44px; font-size: 0.8rem; color: rgba(255,255,255,0.45);
}

/* ---------- floating whatsapp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- reveal animations ---------- */
.reveal, .reveal-img {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-img { transform: translateY(0) scale(0.97); }
.reveal.is-in, .reveal-img.is-in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.12s; }
.d2 { transition-delay: 0.24s; }
.d3 { transition-delay: 0.36s; }
