/* ============================================================
   ROOTS BJJ — Real Jiu-Jitsu
   Palette: gi-black / mat-red / logo-gold / bone
   Type: Big Shoulders Display (display) · Pirata One (blackletter
   accent) · Archivo (body)
   ============================================================ */

:root {
  /* ═══ Palette: "lineage house" ═══
     Warm parchment grounds in three depths, espresso ink, clay red and
     antique brass. Softer and deeper than the original poster palette —
     the sophistication comes from tonal range, not from more contrast. */

  /* neutral ground (temporário — o pergaminho quente está comentado abaixo) */
  --paper:      #F4F4F2;   /* primary ground */
  --paper-2:    #EAEAE7;   /* second band — this is what kills flat fields */
  --paper-3:    #DDDDD9;   /* inset / deepest light tone */
  /* pergaminho quente anterior:  #F1EDE5 / #E7E0D4 / #DAD1C1 */
  --panel-dark: #232326;   /* dark anchors: footer, map board */
  --panel-warm: #2E2E32;   /* lifted dark, for cards on dark */
  --hero-bg:    #232326;   /* ← placeholder do herói; troca por vídeo depois */

  --ink:        #262626;   /* headings */
  --smoke:      #63636A;   /* body copy */
  --bone:       #F6F2EA;   /* type on dark / on clay */

  --red:        #A6323A;   /* the softened ROOTS red — clay, not siren */
  --red-deep:   #7C2329;
  --red-wash:   rgba(166, 50, 58, 0.035);

  --gold:       #B08D52;   /* antique brass, replaces the signage yellow */
  --gold-soft:  #C7A570;
  --gold-ink:   #8A6B36;   /* brass, legible as text on light */

  --olive:      #5B6151;   /* tertiary depth — tatami / eucalyptus */

  --ink-2:      #E7E0D4;   /* back-compat alias for the old card ground */
  --line:       rgba(28, 28, 30, 0.11);
  --line-firm:  rgba(28, 28, 30, 0.21);

  --font-display: "Bricolage Grotesque", "Archivo", sans-serif;
  --font-label: "Big Shoulders Display", sans-serif;
  --font-script: "Pirata One", serif;
  --font-body: "Archivo", sans-serif;

  --pad: clamp(1.25rem, 5vw, 5rem);
  --nav-h: 7.4rem;   /* alta o bastante para o logo grande nao cortar */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* film grain over everything */
body::after {
  content: "";
  position: fixed; inset: -50%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 25% { transform: translate(-2%,3%); }
  50% { transform: translate(3%,-2%); } 75% { transform: translate(-3%,-3%); }
}

/* ============ Belt progress (signature) ============ */
.belt-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 6px; z-index: 1002;
  background: rgba(27,22,17,0.1);
}
.belt-progress__fill {
  height: 100%; width: 100%;
  transform: scaleX(0); transform-origin: left;
}
.belt-progress__bar {
  display: block; height: 100%;
  background: var(--belt-color, #f2eee6);
  box-shadow: 0 0 12px rgba(200,16,46,0.35);
  transition: background 0.6s ease;
}
.belt-progress__label {
  position: fixed; bottom: 14px; right: 14px;
  font-family: var(--font-display);
  font-weight: 800; font-size: 0.7rem; letter-spacing: 0.18em;
  color: var(--smoke);
  background: rgba(251,249,244,0.92);
  border: 1px solid var(--line);
  padding: 0.3rem 0.6rem; border-radius: 2px;
  opacity: 0; transform: translateY(-4px);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.belt-progress__label.is-visible { opacity: 1; transform: none; }

/* the footer keeps the plated logo — reads as a gi patch on the dark band */
.footer__brand img {
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

/* ============ Buttons ============ */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95rem 1.9rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(.2,.9,.3,1.4), background 0.25s, color 0.25s, border-color 0.25s;
  will-change: transform;
}
.btn--gold { background: var(--gold); color: var(--ink); }
.btn--gold:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--bone); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--bone); }
.btn--dark:hover { background: var(--red); color: var(--bone); transform: translateY(-2px); }
/* ghost buttons that live on dark imagery keep their light face */
.hero .btn--ghost, .world__reset { border-color: var(--bone); color: var(--bone); }
.hero .btn--ghost:hover, .world__reset:hover { background: var(--bone); color: var(--ink); }
.btn--small { font-size: 0.85rem; padding: 0.65rem 1.2rem; }

/* ============ Nav ============ */
.nav {
  position: fixed; top: 6px; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; gap: 2rem;
  height: var(--nav-h);
  padding: 0 var(--pad);
  transition: background 0.4s, backdrop-filter 0.4s, height 0.4s, box-shadow 0.4s;
}
.nav.is-scrolled {
  background: rgba(244,244,242,0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  height: 4.8rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav__logo img {
  /* o logo manda no tamanho — a barra cresce para caber (ver --nav-h) */
  height: clamp(4.4rem, 7.5vw, 6.6rem);
  transition: height 0.4s, filter 0.4s;
  filter: drop-shadow(0 6px 18px rgba(27,22,17,0.22));
}
.nav.is-scrolled .nav__logo img { height: 3.6rem; }
/* over the dark photo hero the crest gets a light halo so the black
   boomerang and lettering never sink into the image */
.has-dark-hero .nav:not(.is-scrolled) .nav__logo img {
  /* the crest's boomerang is black — on a dark hero it needs a real halo */
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,0.95))
    drop-shadow(0 0 3px rgba(255,255,255,0.8))
    drop-shadow(0 0 10px rgba(255,255,255,0.55))
    drop-shadow(0 0 26px rgba(255,255,255,0.3));
}
.nav__links {
  display: flex; gap: 1.8rem; margin-left: auto;
}
.nav__links a {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  position: relative; padding: 0.3rem 0;
}
/* over the dark photo hero, nav links stay light until scroll (desktop) */
@media (min-width: 901px) {
  .has-dark-hero .nav:not(.is-scrolled) .nav__links a,
  .has-dark-hero .nav:not(.is-scrolled) .nav__droptrigger { color: var(--bone); }
}
.has-dark-hero .nav:not(.is-scrolled) .nav__burger span { background: var(--bone); }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s ease;
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { white-space: nowrap; }

/* nav dropdown (About) */
.nav__drop { position: relative; }
.nav__droptrigger {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
  padding: 0.3rem 0;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.nav__droptrigger::after {
  content: "";
  width: 0.45em; height: 0.45em;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
}
.nav__drop.is-open .nav__droptrigger::after,
.nav__drop:hover .nav__droptrigger::after { transform: rotate(225deg) translateY(-2px); }
.nav__dropmenu {
  position: absolute; top: calc(100% + 0.9rem); left: -1.2rem;
  min-width: 15rem;
  background: rgba(251,249,244,0.98);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  box-shadow: 0 18px 40px rgba(27,22,17,0.12);
  padding: 0.7rem 0;
  display: grid;
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.nav__drop.is-open .nav__dropmenu,
.nav__drop:hover .nav__dropmenu,
.nav__drop:focus-within .nav__dropmenu {
  opacity: 1; transform: none; pointer-events: auto;
}
.nav__dropmenu a {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: 0.55rem 1.2rem;
}
.nav__dropmenu a:hover { background: var(--red); color: var(--bone); }
.nav__burger {
  display: none;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
  margin-left: auto;
}
.nav__burger span {
  width: 26px; height: 2px; background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: -12% 0;
  z-index: -3;
  will-change: transform;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: saturate(0.9) contrast(1.05);
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(12,10,9,0.72) 0%, rgba(12,10,9,0.45) 40%, rgba(12,10,9,0.9) 100%),
    radial-gradient(90% 60% at 50% 45%, transparent 30%, rgba(12,10,9,0.55) 100%);
}
.hero__content {
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 5rem;
  max-width: 68rem;
}
.hero__eyebrow {
  font-family: var(--font-display);
  font-weight: 700; font-size: clamp(0.8rem, 1.6vw, 1rem);
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.4rem, 16.5vw, 13.5rem);
  line-height: 0.86;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
}
.hero__line { display: block; overflow: hidden; }
.hero__line span {
  display: block;
  transform: translateY(110%);
  animation: riseUp 0.9s cubic-bezier(.2,.75,.2,1) forwards;
}
.hero__line:nth-child(2) span { animation-delay: 0.12s; }
.hero__line--outline span {
  color: transparent;
  -webkit-text-stroke: 2px var(--bone);
}
@keyframes riseUp { to { transform: translateY(0); } }

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  color: var(--gold);
  margin: 1.2rem 0 1rem;
  rotate: -2deg;
}
.hero__sub {
  max-width: 44rem;
  margin: 0 auto 2.2rem;
  color: var(--bone);
  opacity: 0.85;
}
.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scrollcue {
  position: absolute; bottom: 2rem; left: 50%;
  translate: -50% 0;
  width: 26px; height: 42px;
  border: 2px solid rgba(242,238,230,0.4);
  border-radius: 20px;
}
.hero__scrollcue span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px; border-radius: 4px;
  background: var(--gold);
  translate: -50% 0;
  animation: cue 1.8s ease-in-out infinite;
}
@keyframes cue { 0%,100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(14px); opacity: 0.2; } }

/* ============ Marquee ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--red);
  overflow: hidden;
  padding: 0.9rem 0;
  rotate: 0deg;
}
.marquee__track {
  display: flex; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__group {
  display: flex; align-items: baseline; gap: 2.2rem;
  padding-right: 2.2rem;
  white-space: nowrap;
}
.marquee__group em {
  font-family: var(--font-script);
  font-style: normal;
  font-size: 2rem;
  color: var(--ink);
}
.marquee__group b {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.9rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--bone);
}
.marquee__group i { color: var(--gold); font-size: 1.2rem; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Why real jiu-jitsu ============ */
.why {
  padding: clamp(4rem, 8vw, 6.5rem) var(--pad);
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(70% 80% at 50% 0%, rgba(200,16,46,0.06) 0%, transparent 60%),
    var(--paper);
}
.why__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.92; text-transform: uppercase;
}
.why__title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.why__lead {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  color: var(--gold-ink);
  rotate: -1.5deg;
  margin: 1rem 0 2.6rem;
}
.why__list {
  list-style: none;
  display: grid; gap: 1.05rem;
  max-width: 58rem; margin: 0 auto;
}
.why__list li {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--smoke);
}
.why__list b { color: var(--ink); font-weight: 800; }
.why__list li:nth-child(2) { transition-delay: 0.08s; }
.why__list li:nth-child(3) { transition-delay: 0.16s; }
.why__list li:nth-child(4) { transition-delay: 0.24s; }
.why__list li:nth-child(5) { transition-delay: 0.32s; }
.why__list li:nth-child(6) { transition-delay: 0.4s; }
.why__become {
  margin-top: 2.8rem;
  font-size: 1.05rem;
  color: var(--smoke);
}
.why__become span {
  display: inline-block;
  margin-top: 0.3rem;
  font-family: var(--font-script);
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  color: var(--red);
  rotate: -2deg;
}

/* ============ Stats ============ */
.stats { padding: clamp(3rem, 6.5vw, 5.5rem) var(--pad); }
.stats__grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 76rem; margin: 0 auto;
}
.stat { border-left: 3px solid var(--red); padding-left: 1.4rem; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.4rem, 6.5vw, 5.5rem);
  line-height: 1;
  color: var(--ink);
}
.stat__num sup { font-size: 0.4em; color: var(--gold-ink); }
.stat__label {
  display: block; margin-top: 0.6rem;
  font-size: 0.92rem; color: var(--smoke);
  max-width: 16rem;
}

/* ============ Section basics ============ */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}
.section-eyebrow--bone { color: var(--bone); opacity: 0.8; }
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 56rem;
}
.section-sub { color: var(--smoke); margin-top: 1rem; }

/* ============ Story (the red wall) ============ */
.story {
  background: var(--red);
  color: var(--ink);
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad) 0;
  position: relative;
  overflow: hidden;
}
.story::before {
  /* giant wall type, like the academy's painted wall */
  content: "ROOTS BJJ";
  position: absolute; top: 0.5rem; left: 50%;
  translate: -50% 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(6rem, 21vw, 19rem);
  letter-spacing: 0.02em;
  color: rgba(242,238,230,0.1);
  white-space: nowrap;
  pointer-events: none;
}
.story__inner { max-width: 74rem; margin: 0 auto; position: relative; }
.story__statement {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 5.6vw, 4.4rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 2.6rem;
}
.story__statement .w {
  display: inline-block;
  opacity: 0.22;
  transition: opacity 0.35s ease;
}
.story__statement .w.is-lit { opacity: 1; }
.story__cols {
  display: grid; gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  font-weight: 500;
  color: rgba(12,10,9,0.92);
}
.story__link {
  display: inline-block; margin-top: 2.4rem;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 0.2rem;
}
.story__link:hover { color: var(--bone); border-color: var(--bone); }
.story__photo {
  max-width: 74rem;
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  translate: 0 clamp(2rem, 6vw, 4.5rem);
  will-change: transform;
}
.story__photo img {
  width: 100%;
  border: 6px solid var(--ink);
  box-shadow: 0 30px 60px rgba(12,10,9,0.4);
}
.story__photo figcaption {
  font-size: 0.85rem; color: rgba(12,10,9,0.75);
  padding-top: 0.6rem; font-weight: 500;
}

/* ============ Pillars ============ */
.pillars {
  padding: clamp(7rem, 14vw, 10.5rem) var(--pad) clamp(3.5rem, 8vw, 6rem);
  max-width: 88rem; margin: 0 auto;
}
.pillars__list {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 3rem;
}
.pillar {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
  padding: 2.4rem 2rem 2.2rem;
  box-shadow: 0 10px 30px rgba(27,22,17,0.05);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(27,22,17,0.3);
  box-shadow: 0 18px 40px rgba(27,22,17,0.1);
}
.pillar__belt {
  display: block; width: 4.5rem; height: 0.9rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.pillar__belt::after {
  /* rank bar on the belt */
  content: ""; position: absolute; right: 0.6rem; top: 0;
  width: 1rem; height: 100%;
  background: var(--red);
}
.pillar__belt--white { background: var(--bone); border: 1px solid rgba(27,22,17,0.25); }
.pillar__belt--red { background: var(--red); }
.pillar__belt--red::after { background: var(--bone); }
.pillar__belt--black { background: #262220; }
.pillar h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.9rem; text-transform: uppercase;
  letter-spacing: 0.04em; margin-bottom: 0.8rem;
}
.pillar p { color: var(--smoke); font-size: 0.98rem; }

/* ============ Programs accordion ============ */
.programs {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  max-width: 88rem; margin: 0 auto;
}
.acc {
  display: flex; gap: 0.8rem;
  margin-top: 2.6rem;
  min-height: 30rem;
}
.acc__item {
  position: relative;
  flex: 1;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12,10,9,0.25) 0%, rgba(12,10,9,0.88) 78%),
    var(--img, linear-gradient(160deg, #221d1a, #0c0a09)) center/cover;
  cursor: pointer;
  transition: flex 0.65s cubic-bezier(.25,.8,.25,1);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.6rem;
  color: var(--bone); /* program cards sit on photos / brand colours */
}
.acc__item.is-open { flex: 3.2; }
.acc__item--red {
  background:
    linear-gradient(180deg, rgba(12,10,9,0.05) 0%, rgba(12,10,9,0.5) 80%),
    linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
}
.acc__item--gold {
  background:
    linear-gradient(180deg, rgba(12,10,9,0.02) 0%, rgba(12,10,9,0.38) 80%),
    linear-gradient(160deg, var(--gold) 0%, #b8860b 100%);
}
.acc__item header {
  display: flex; align-items: flex-end; justify-content: space-between;
}
.acc__item h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  text-transform: uppercase; line-height: 1;
  writing-mode: vertical-rl; rotate: 180deg;
  transition: writing-mode 0s, rotate 0s;
}
.acc__item.is-open h3 { writing-mode: horizontal-tb; rotate: 0deg; }
.acc__index {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.acc__item--gold .acc__index,
.acc__item--red .acc__index { color: var(--ink); }
.acc__body {
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(.25,.8,.25,1), opacity 0.45s 0.1s;
}
.acc__item.is-open .acc__body { max-height: 16rem; opacity: 1; }
.acc__body p {
  margin: 1rem 0 1.2rem;
  max-width: 30rem;
  font-size: 0.98rem;
  color: var(--bone);
}
.acc__item--red .acc__body p,
.acc__item--gold .acc__body p { color: var(--ink); font-weight: 500; }

/* ============ Professor / lineage ============ */
.professor {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(4rem, 9vw, 8rem) var(--pad);
  max-width: 82rem; margin: 0 auto;
  align-items: center;
}
.professor__photo { position: relative; will-change: transform; }
.professor__photo::before {
  content: ""; position: absolute; inset: 1.4rem -1.4rem -1.4rem 1.4rem;
  border: 2px solid var(--red);
  z-index: -1;
}
.professor__photo img { width: 100%; filter: saturate(0.92); }
.professor__bio { color: var(--smoke); margin: 1.4rem 0 2.2rem; max-width: 36rem; }

.lineage {
  list-style: none;
  border-left: 3px solid var(--red);
  display: grid; gap: 1.3rem;
  padding-left: 1.6rem;
  position: relative;
  margin-bottom: 2rem;
}
.lineage li { position: relative; }
.lineage li::before {
  content: "";
  position: absolute; left: calc(-1.6rem - 3px - 5px); top: 0.42em;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--paper); border: 3px solid var(--red);
}
.lineage__who {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.35rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.lineage__what { display: block; font-size: 0.9rem; color: var(--smoke); }
.lineage__you .lineage__who { color: var(--gold-ink); }
.lineage__you::before { background: var(--gold); border-color: var(--gold); }
.professor__team { font-size: 0.95rem; color: var(--smoke); max-width: 36rem; }

/* ============ Locations ============ */
.locations {
  padding: clamp(3.5rem, 8vw, 6rem) var(--pad);
  max-width: 88rem; margin: 0 auto;
}
.loc__btns { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.locations__grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  margin-top: 2.6rem;
}
.loc {
  border: 1px solid var(--line);
  background: #fff;
  padding: 2.4rem 2.2rem;
  box-shadow: 0 10px 30px rgba(27,22,17,0.05);
  transition: transform 0.35s ease, border-color 0.35s;
}
.loc:hover { transform: translateY(-6px); border-color: var(--red); }
.loc__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.2rem;
}
.loc h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.6rem; text-transform: uppercase; line-height: 1;
}
.loc__addr { color: var(--ink); margin: 0.5rem 0 1.2rem; font-weight: 500; }
.loc ul { list-style: none; display: grid; gap: 0.5rem; margin-bottom: 1.8rem; }
.loc li { color: var(--smoke); font-size: 0.95rem; padding-left: 1.2rem; position: relative; }
.loc li::before { content: "»"; position: absolute; left: 0; color: var(--red); }
.loc__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  border-top: 1px solid var(--line); padding-top: 1.3rem;
}
.loc__foot span { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.08em; }

/* ============ Voices ============ */
.voices {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
  color: var(--ink);
}
.voices__stage { position: relative; max-width: 54rem; margin: 1rem auto 0; min-height: 14rem; }
.voice {
  position: absolute; inset: 0;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
  display: grid; align-content: center; gap: 1.2rem;
}
.voice.is-active { opacity: 1; transform: none; pointer-events: auto; }
.voice p {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.5rem, 3.4vw, 2.5rem);
  line-height: 1.15; text-transform: uppercase;
}
.voice cite { font-style: normal; color: var(--gold-ink); font-size: 0.95rem; }
.voices__nav { display: flex; gap: 0.7rem; justify-content: center; margin-top: 2rem; }
.voices__dot {
  width: 2.6rem; height: 0.55rem;
  background: rgba(27,22,17,0.16);
  border: 0; cursor: pointer;
  transition: background 0.3s;
}
.voices__dot.is-active { background: var(--red); }
.voices__dot:hover { background: var(--smoke); }
.voices__more { margin-top: 1.6rem; color: var(--smoke); font-size: 0.95rem; }
.voices__more a { color: var(--gold-ink); text-decoration: none; font-weight: 600; }
.voices__more a:hover { text-decoration: underline; }
.voice cite a { color: var(--gold-ink); }

/* ============ Trial CTA ============ */
.trial {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) var(--pad);
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.trial__mark {
  position: absolute; z-index: -1;
  top: 50%; left: 50%;
  translate: -50% -50%;
  rotate: -8deg;
  font-family: var(--font-script);
  font-size: clamp(16rem, 42vw, 34rem);
  line-height: 1;
  color: var(--red);
  opacity: 0.07;
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
}
.trial__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.4vw, 2.3rem);
  color: var(--gold-ink);
  rotate: -2deg;
  margin-bottom: 0.8rem;
}
.trial__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.4rem, 10vw, 8rem);
  line-height: 0.9; text-transform: uppercase;
  margin-bottom: 2.6rem;
}
.trial__form { max-width: 46rem; margin: 0 auto; }
.trial__row {
  display: flex; gap: 0.8rem; margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.trial__row input,
.trial__row select {
  flex: 1 1 200px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
}
.trial__row select { appearance: none; }
.trial__row select:invalid { color: var(--smoke); }
.trial__row option { color: var(--ink); }
.trial__row input::placeholder { color: var(--smoke); }
.trial__row input:focus, .trial__row select:focus {
  outline: 2px solid var(--gold); outline-offset: 1px;
}
.trial__submit { flex: 1 1 220px; border: 0; }
.trial__ok { color: var(--gold-ink); margin-top: 1.2rem; font-weight: 500; }
.trial__ok a { color: var(--ink); }
.trial__alt { margin-top: 1.6rem; color: var(--smoke); font-size: 0.95rem; }
.trial__alt a { color: var(--gold-ink); text-decoration: none; font-weight: 600; }
.trial__alt a:hover { text-decoration: underline; }

/* ============ Footer ============ */
.footer {
  border-top: 1px solid var(--line);
  background: #080706;
  padding: clamp(3rem, 7vw, 5rem) var(--pad) 2rem;
}
.footer__top {
  display: grid; gap: 3rem;
  grid-template-columns: 2fr repeat(3, 1fr);
  max-width: 82rem; margin: 0 auto;
}
.footer__brand img { height: 4.4rem; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--smoke); font-size: 0.95rem; max-width: 26rem; }
.footer__col h4 {
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.9rem; color: var(--gold);
  margin-bottom: 1rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a {
  color: var(--smoke); text-decoration: none; font-size: 0.95rem;
  width: fit-content;
}
.footer__col a:hover { color: var(--bone); }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: 82rem; margin: 3rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--smoke); font-size: 0.85rem;
}
.footer__values { font-family: var(--font-script); font-size: 1.05rem; color: var(--red); }

/* ============================================================
   Team Roots Worldwide (academies.html)
   ============================================================ */
.world {
  padding: calc(var(--nav-h) + 4rem) var(--pad) clamp(3rem, 7vw, 5rem);
  max-width: 82rem; margin: 0 auto;
  text-align: center;
}
.world__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  line-height: 0.88; text-transform: uppercase;
}
.world__title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.world__script {
  font-family: var(--font-script);
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  color: var(--gold-ink);
  rotate: -2deg;
  margin: 1rem 0;
}
.world__sub { max-width: 44rem; margin: 0 auto; color: var(--smoke); }

.world__mapwrap {
  /* the map stays a dark command-board panel — brand anchor on the light page */
  position: relative;
  margin: clamp(2rem, 5vw, 3.5rem) auto 0;
  max-width: 72rem;
  border: 1px solid rgba(27,22,17,0.2);
  background:
    radial-gradient(80% 90% at 50% 40%, rgba(200,16,46,0.09) 0%, transparent 60%),
    var(--panel-dark);
  padding: clamp(0.8rem, 2vw, 1.8rem);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27,22,17,0.16);
}
.world__map svg { width: 100%; height: auto; display: block; }
.world__map path, .world__map polygon {
  fill: #2b2521;
  stroke: #100d0b;
  stroke-width: 0.5;
  transition: fill 0.3s ease, opacity 0.5s ease;
}
.world__map .is-roots,
.world__map .is-roots path,
.world__map .is-roots polygon { fill: var(--red); cursor: pointer; }
.world__map .is-roots:hover,
.world__map .is-roots:hover path,
.world__map .is-roots:hover polygon { fill: #e2334f; }
.world__map .is-dim { opacity: 0.35; }

.marker { cursor: pointer; outline: none; }
.marker circle { vector-effect: non-scaling-stroke; }
.marker__dot { fill: var(--gold); stroke: var(--ink); stroke-width: 1.5; }
.marker__pulse {
  fill: none; stroke: var(--gold); stroke-width: 2;
  transform-origin: center;
  transform-box: fill-box;
  animation: mpulse 2.2s ease-out infinite;
}
.marker__hit { fill: transparent; }
.marker:hover .marker__dot, .marker:focus-visible .marker__dot { fill: var(--bone); }
.marker:focus-visible .marker__pulse { stroke: var(--bone); }
@keyframes mpulse {
  0% { transform: scale(0.35); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

.world__tip {
  position: absolute;
  translate: -50% calc(-100% - 18px);
  background: var(--ink);
  border: 1px solid var(--gold);
  padding: 0.55rem 0.9rem;
  pointer-events: none;
  white-space: nowrap;
  z-index: 5;
  text-align: left;
}
.world__tip strong {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 1rem; color: var(--bone);
}
.world__tip { font-size: 0.8rem; color: var(--gold); background: var(--panel-dark); }
.world__reset {
  position: absolute; top: 1rem; left: 1rem; z-index: 6;
  background: var(--panel-dark);
}
.world__reset[hidden], .world__tip[hidden] { display: none; }
.world__maperr { color: var(--smoke); padding: 3rem; }

.world__chips {
  display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap;
  margin-top: 1.6rem;
}
.chip {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}
.chip:hover { transform: translateY(-2px); border-color: var(--smoke); }
.chip.is-active { border-color: var(--red); }
.chip.is-active .chip__flag { background: var(--red); color: var(--bone); }
.chip__flag {
  background: var(--ink);
  color: var(--bone);
  font-size: 0.75rem; letter-spacing: 0.12em;
  padding: 0.25rem 0.45rem;
  transition: background 0.3s;
}
.chip em {
  font-style: normal; font-family: var(--font-body);
  font-weight: 500; font-size: 0.8rem; text-transform: none;
  letter-spacing: 0; color: var(--smoke);
}

/* country sections */
.country {
  padding: clamp(3.5rem, 8vw, 6.5rem) var(--pad);
  max-width: 82rem; margin: 0 auto;
  scroll-margin-top: 5rem;
}
.country--line {
  border-top: 1px solid var(--line);
}
.country__head { margin-bottom: 2.4rem; }

.world__count {
  margin-top: 1.4rem;
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: var(--red);
}

/* region sub-headers inside a country (Incheon, Gyeonggi-do, …) */
.region-h {
  display: flex; align-items: baseline; gap: 1rem;
  margin: 3.2rem 0 1.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}
.region-h:first-of-type { margin-top: 0; border-top: 0; padding-top: 0; }
.region-h b {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  letter-spacing: 0.04em; text-transform: uppercase;
  position: relative;
  padding-left: 1.2rem;
}
.region-h b::before {
  content: ""; position: absolute; left: 0; top: 0.18em; bottom: 0.14em;
  width: 5px; background: var(--red);
}
.region-h em {
  font-style: normal; color: var(--smoke);
  font-size: 0.95rem;
}

.acad__grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.acad__grid--solo { grid-template-columns: minmax(300px, 44rem); }
.acad {
  border: 1px solid var(--line);
  background: #fff;
  padding: 2rem 1.9rem 1.9rem;
  box-shadow: 0 10px 30px rgba(27,22,17,0.05);
  transition: transform 0.35s ease, border-color 0.35s;
  position: relative;
}
.acad:hover { transform: translateY(-4px); border-color: var(--red); }
.acad--hq { border-color: rgba(242,183,27,0.45); }
.acad--hq:hover { border-color: var(--gold); }
.acad__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 0.25rem 0.6rem;
  margin-bottom: 1rem;
}
.acad h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.9rem; text-transform: uppercase; line-height: 1;
}
.acad h3 small {
  display: block;
  font-size: 0.55em; font-weight: 700;
  color: var(--smoke); letter-spacing: 0.06em;
  margin-top: 0.2rem;
}
.acad__where {
  font-family: var(--font-script);
  color: var(--red);
  font-size: 1.15rem;
  margin: 0.35rem 0 1.1rem;
}
.acad__meta { list-style: none; display: grid; gap: 0.55rem; }
.acad__meta li {
  font-size: 0.92rem; color: var(--ink);
  display: grid; grid-template-columns: 5.4rem 1fr; gap: 0.6rem;
}
.acad__meta li span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--smoke);
  padding-top: 0.18em;
}
.acad__meta a { color: var(--gold-ink); text-decoration: none; }
.acad__meta a:hover { text-decoration: underline; }
.acad__foot { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 1.6rem; }

.worldcta {
  text-align: center;
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  border-top: 1px solid var(--line);
  background: var(--ink-2);
}
.worldcta .section-title { max-width: none; }
.worldcta__btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-top: 2.2rem;
}
.professor__worldlink { color: var(--gold-ink); text-decoration: none; font-weight: 600; }
.professor__worldlink:hover { text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .marker__pulse { animation: none; opacity: 0; }
}

/* ============================================================
   Own a Roots — franchise (franchise.html)
   ============================================================ */
.fr-hero {
  position: relative;
  min-height: 88svh;
  display: grid; place-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
  padding: calc(var(--nav-h) + 3rem) var(--pad) 4rem;
}
.fr-hero__mark { opacity: 0.055; }
.fr-hero .hero__script { color: var(--gold-ink); }
.fr-hero .hero__line--outline span { -webkit-text-stroke-color: var(--red); }
.fr-hero__content { max-width: 64rem; }
.fr-hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 10.5vw, 8.6rem);
  line-height: 0.9;
  text-transform: uppercase;
}
.fr-hero__sub {
  max-width: 42rem;
  margin: 0 auto 2.2rem;
  color: var(--smoke);
}

.stats--line { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--ink-2); }
.pillars--tight { padding-top: clamp(4rem, 9vw, 7rem); }

/* what you get — red wall treatment */
.fr-get {
  background: var(--red);
  color: var(--ink);
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
}
.fr-get__inner { max-width: 62rem; margin: 0 auto; }
.fr-get__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1; text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 2.4rem;
  max-width: 46rem;
}
.fr-get__list { list-style: none; display: grid; gap: 1.1rem; }
.fr-get__list li {
  display: grid;
  grid-template-columns: minmax(11rem, 15rem) 1fr;
  gap: 1.2rem;
  border-top: 2px solid rgba(12,10,9,0.35);
  padding-top: 1.1rem;
  font-weight: 500;
  color: rgba(12,10,9,0.92);
}
.fr-get__list b {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.25rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--bone);
}
@media (max-width: 640px) {
  .fr-get__list li { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* steps — a real sequence, so numbers carry meaning */
.fr-steps {
  padding: clamp(4rem, 9vw, 7rem) var(--pad);
  max-width: 82rem; margin: 0 auto;
}
.steps {
  list-style: none;
  margin-top: 2.6rem;
  display: grid; gap: 0;
}
.step {
  display: grid;
  grid-template-columns: minmax(5rem, 9rem) 1fr;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.step h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.7rem; text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.step p { color: var(--smoke); max-width: 40rem; }

/* booking form */
.fr-book {
  border-top: 1px solid var(--line);
  background: var(--ink-2);
  padding: clamp(4rem, 9vw, 7.5rem) var(--pad);
  scroll-margin-top: 4rem;
}
.fr-book__inner {
  max-width: 82rem; margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1.4fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.fr-book__sub { color: var(--smoke); margin-top: 1.2rem; max-width: 30rem; }
.fr-book__sub a { color: var(--gold-ink); text-decoration: none; }
.fr-book__sub a:hover { text-decoration: underline; }

.fr-form {
  border: 1px solid var(--line);
  background: #fff;
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: 0 18px 44px rgba(27,22,17,0.08);
}
.fr-form__grid {
  display: grid; gap: 1.1rem;
  grid-template-columns: 1fr 1fr;
}
.fr-field { display: grid; gap: 0.4rem; }
.fr-field--full { grid-column: 1 / -1; }
.fr-field label {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--smoke);
}
.fr-field input,
.fr-field select,
.fr-field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1rem;
  width: 100%;
  resize: vertical;
}
.fr-field select { appearance: none; }
.fr-field select:invalid { color: var(--smoke); }
.fr-field option { color: var(--ink); }
.fr-field input::placeholder, .fr-field textarea::placeholder { color: rgba(163,156,145,0.6); }
.fr-field input:focus, .fr-field select:focus, .fr-field textarea:focus {
  outline: 2px solid var(--gold); outline-offset: 1px;
}
.fr-field input[type="date"] { color-scheme: light; }
.fr-form__submit { width: 100%; margin-top: 1.4rem; border: 0; }

@media (max-width: 900px) {
  .fr-book__inner { grid-template-columns: 1fr; }
  .fr-form__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Content pages — About / Instructors / FAQs
   ============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 4.5rem) var(--pad) clamp(2.5rem, 5vw, 4rem);
  max-width: 82rem; margin: 0 auto;
}
.page-hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9; text-transform: uppercase;
  max-width: 60rem;
}
.page-hero__title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--red);
}
.page-hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  color: var(--gold-ink);
  rotate: -1.5deg;
  margin-top: 1rem;
  width: fit-content;
}

.prose {
  max-width: 76rem; margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 8vw, 6rem);
}
.prose__grid {
  display: grid; gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: start;
}
.prose h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  text-transform: uppercase; letter-spacing: 0.03em;
  line-height: 1;
  margin: 2.6rem 0 1rem;
  padding-left: 1.1rem;
  position: relative;
}
.prose h2::before {
  content: ""; position: absolute; left: 0; top: 0.12em; bottom: 0.1em;
  width: 5px; background: var(--red);
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--smoke); margin-bottom: 1.1rem; max-width: 46rem; }
.prose p strong, .prose p b { color: var(--ink); }
.prose blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.4rem;
  margin: 1.8rem 0;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.35rem; text-transform: uppercase; line-height: 1.2;
  color: var(--ink);
  max-width: 42rem;
}
.prose__figure { position: relative; margin: 2rem 0 2.6rem; max-width: 44rem; }
.prose__figure img {
  width: 100%;
  border: 1px solid var(--line);
  filter: saturate(0.92);
}
.prose__figure::before {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 2px solid var(--red);
  z-index: -1;
}
.prose__figure figcaption {
  font-size: 0.85rem; color: var(--smoke); padding-top: 0.7rem;
}
/* photo strip — small gallery under an article */
.photo-row {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.photo-row figure { position: relative; }
.photo-row img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border: 1px solid var(--line);
  filter: saturate(0.95);
  box-shadow: 0 10px 26px rgba(27,22,17,0.08);
}
.photo-row figcaption { font-size: 0.82rem; color: var(--smoke); padding-top: 0.55rem; }

.page-cta {
  text-align: center;
  border-top: 1px solid var(--line);
  padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad);
  background: var(--ink-2);
}
.page-cta .btn { margin-top: 1.6rem; }

/* belt ladder (grading page) */
.belts {
  list-style: none;
  display: grid; gap: 1rem;
  max-width: 46rem;
  margin: 2.4rem 0;
}
.belts li {
  display: grid;
  grid-template-columns: minmax(8rem, 12rem) 1fr;
  gap: 1.2rem; align-items: center;
}
.belt-bar {
  height: 1.7rem;
  position: relative;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.belt-bar::after {
  /* rank bar with stripe slots */
  content: ""; position: absolute; right: 0.9rem; top: 0;
  width: 1.6rem; height: 100%;
  background: var(--rank, #111);
}
.belt-bar--white { background: #ece7dd; }
.belt-bar--blue { background: #1e5aa8; }
.belt-bar--purple { background: #6a2d8f; }
.belt-bar--brown { background: #5b3a24; }
.belt-bar--black { background: #171412; --rank: #c8102e; }
.belts h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.belts p { color: var(--smoke); font-size: 0.92rem; margin: 0.15rem 0 0; }

/* FAQ accordion */
.faq {
  max-width: 56rem; margin: 0 auto;
  padding: 0 var(--pad) clamp(4rem, 8vw, 6rem);
}
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.5rem;
  padding: 1.4rem 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  text-transform: uppercase; letter-spacing: 0.03em;
  transition: color 0.25s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-weight: 700;
  color: var(--red);
  font-size: 1.4em; line-height: 0.8;
  flex-shrink: 0;
  transition: rotate 0.3s;
}
.faq details[open] summary { color: var(--gold-ink); }
.faq details[open] summary::after { rotate: 45deg; }
.faq details p {
  color: var(--smoke);
  padding: 0 0 1.5rem;
  max-width: 44rem;
}

/* instructor profiles */
.coach {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem) var(--pad);
  max-width: 82rem; margin: 0 auto;
}
.coach + .coach { border-top: 1px solid var(--line); }
.coach:nth-child(even) .coach__photo { order: 2; }
.coach__photo { position: relative; }
.coach__photo img {
  width: 100%;
  border: 1px solid var(--line);
  filter: saturate(0.95);
}
.coach__photo::before {
  content: ""; position: absolute; inset: 1.3rem -1.3rem -1.3rem 1.3rem;
  border: 2px solid var(--red);
  z-index: -1;
}
.coach__tag {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 0.3rem 0.7rem;
  margin-bottom: 1rem;
}
.coach h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 0.95; text-transform: uppercase;
}
.coach__rank {
  font-family: var(--font-script);
  color: var(--red);
  font-size: 1.3rem;
  margin: 0.4rem 0 1.2rem;
}
.coach__bio { color: var(--smoke); margin-bottom: 1.6rem; max-width: 40rem; }
.coach__bio strong { color: var(--ink); }
.coach h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.05rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-ink);
  margin: 1.6rem 0 0.8rem;
}
.coach ul { list-style: none; display: grid; gap: 0.45rem; }
.coach li {
  color: var(--ink); font-size: 0.95rem;
  padding-left: 1.2rem; position: relative;
}
.coach li::before { content: "»"; position: absolute; left: 0; color: var(--red); }
.coach blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.3rem;
  margin-top: 1.6rem;
  font-style: italic;
  color: var(--ink);
  max-width: 38rem;
}
@media (max-width: 820px) {
  .coach { grid-template-columns: 1fr; }
  .coach:nth-child(even) .coach__photo { order: 0; }
}

/* ============================================================
   Ad landing — free trial (landing.html)
   One goal: the booking form, above the fold.
   ============================================================ */
.ld { padding-bottom: 4.5rem; } /* room for the sticky bar */

.ld-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--pad);
  max-width: 76rem; margin: 0 auto;
}
.ld-top__logo { height: clamp(3.6rem, 7vw, 5rem); filter: drop-shadow(0 4px 12px rgba(27,22,17,0.18)); }
.ld-top__call { text-decoration: none; color: var(--ink); text-align: right; line-height: 1.15; }
.ld-top__call-label { display: block; font-size: 0.72rem; color: var(--smoke); }
.ld-top__call strong {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.15rem; letter-spacing: 0.05em;
}

.ld-hero {
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(300px, 0.9fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(0.5rem, 2vw, 2rem) var(--pad) clamp(2rem, 4vw, 3.5rem);
}
.ld-eyebrow {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.9rem;
}
.ld-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 8.5vw, 6.2rem);
  line-height: 0.9; text-transform: uppercase;
}
.ld-h1 span { color: transparent; -webkit-text-stroke: 2px var(--red); }
.ld-sub { color: var(--smoke); margin: 1.1rem 0 1.3rem; max-width: 34rem; }
.ld-sub strong { color: var(--ink); }
.ld-props { list-style: none; display: grid; gap: 0.5rem; margin-bottom: 1.4rem; }
.ld-props li {
  padding-left: 1.7rem; position: relative;
  font-weight: 500; font-size: 0.98rem;
}
.ld-props li::before {
  content: "\2713";
  position: absolute; left: 0; top: 0;
  color: var(--red); font-weight: 700;
}
.ld-proofrow {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  font-size: 0.92rem; color: var(--smoke);
}
.ld-stars { color: var(--gold-soft); letter-spacing: 0.12em; font-size: 1.05rem; }
.ld-proofrow a { color: var(--ink); font-weight: 600; }

/* the booking card — the single most important element on the page */
.ld-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--gold);
  box-shadow: 0 26px 60px rgba(27,22,17,0.16);
  padding: clamp(1.5rem, 3.5vw, 2.2rem);
}
.ld-card__script {
  font-family: var(--font-script);
  font-size: 1.5rem; color: var(--gold-ink);
  rotate: -1.5deg;
}
.ld-card__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  text-transform: uppercase; line-height: 1;
  margin: 0.2rem 0 1.2rem;
}
.ld-chips { border: 0; margin-bottom: 1rem; }
.ld-chips legend {
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--smoke);
  margin-bottom: 0.6rem;
}
.ld-chips { display: block; }
.ld-chips label { display: inline-block; margin: 0 0.45rem 0.45rem 0; cursor: pointer; }
.ld-chips input { position: absolute; opacity: 0; pointer-events: none; }
.ld-chips span {
  display: inline-block;
  border: 1.5px solid var(--line);
  padding: 0.45rem 0.85rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.06em; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.ld-chips span em { font-style: normal; color: var(--smoke); font-family: var(--font-body); font-size: 0.78rem; }
.ld-chips input:checked + span {
  background: var(--ink); color: var(--bone); border-color: var(--ink);
}
.ld-chips input:checked + span em { color: var(--gold); }
.ld-chips input:focus-visible + span { outline: 2px solid var(--gold); outline-offset: 2px; }
.ld-field { margin-bottom: 0.8rem; }
.ld-field input {
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--font-body); font-size: 1.05rem;
  padding: 0.95rem 1.05rem;
}
.ld-field input::placeholder { color: var(--smoke); }
.ld-field input:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.ld-card__submit { width: 100%; border: 0; font-size: 1.15rem; padding: 1.05rem 1.5rem; }
.ld-card__micro { font-size: 0.82rem; color: var(--smoke); margin-top: 0.8rem; }
.ld-card__micro a { color: var(--gold-ink); font-weight: 600; }
.ld-card__ok h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.6rem; text-transform: uppercase;
  margin: 0.2rem 0 1rem;
}
.ld-card__ok ol { list-style: none; display: grid; gap: 0.8rem; }
.ld-card__ok li { padding-left: 1.9rem; position: relative; font-size: 0.98rem; color: var(--smoke); }
.ld-card__ok li b { color: var(--ink); }
.ld-card__ok li::before {
  content: counter(ok-step); counter-increment: ok-step;
  position: absolute; left: 0; top: 0.05em;
  font-family: var(--font-display); font-weight: 800;
  color: var(--red); font-size: 1.15rem;
}
.ld-card__ok ol { counter-reset: ok-step; }

.ld-strip {
  display: flex; gap: 1.4rem; align-items: center; justify-content: center; flex-wrap: wrap;
  background: var(--ink); color: var(--bone);
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.85rem var(--pad);
  text-align: center;
}
.ld-strip i { color: var(--gold); font-style: normal; }

.ld-section {
  max-width: 76rem; margin: 0 auto;
  padding: clamp(3rem, 6.5vw, 5rem) var(--pad);
}
.ld-section--tint {
  max-width: none;
  background: var(--ink-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ld-section--tint > * { max-width: 72rem; margin-left: auto; margin-right: auto; }

.ld-progs {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2.4rem;
}
.ld-prog {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(27,22,17,0.06);
  display: flex; flex-direction: column;
}
.ld-prog img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.ld-prog > div { padding: 1.5rem 1.5rem 1.6rem; display: grid; gap: 0.7rem; align-content: start; }
.ld-prog h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.5rem; text-transform: uppercase; line-height: 1;
}
.ld-prog h3 small { display: block; font-size: 0.6em; color: var(--gold-ink); letter-spacing: 0.08em; margin-top: 0.25rem; }
.ld-prog p { color: var(--smoke); font-size: 0.95rem; }
.ld-prog .btn { justify-self: start; }

.ld-coach {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ld-coach__photo { position: relative; }
.ld-coach__photo::before {
  content: ""; position: absolute; inset: 1.2rem -1.2rem -1.2rem 1.2rem;
  border: 2px solid var(--red); z-index: -1;
}
.ld-coach__photo img { width: 100%; border: 1px solid var(--line); }
.ld-coach__bio { color: var(--smoke); margin: 1.2rem 0; max-width: 40rem; }
.ld-coach__bio strong { color: var(--ink); }
.ld-coach__line {
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red);
}
.ld-coach__line b { color: var(--gold-ink); }

.ld-quotes {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 2.4rem;
}
.ld-quote {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 1.5rem;
  box-shadow: 0 10px 30px rgba(27,22,17,0.05);
}
.ld-quote p { font-weight: 500; margin-bottom: 0.9rem; }
.ld-quote cite { font-style: normal; color: var(--gold-ink); font-size: 0.9rem; }

.ld-final {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.ld-final__addr { color: var(--smoke); margin: 0.8rem 0 1.4rem; }
.ld-final__btns { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.ld-final__big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.9; text-transform: uppercase;
  margin: 0.4rem 0 1.6rem;
}
.ld-foot {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  max-width: 76rem; margin: 0 auto;
  padding: 1.6rem var(--pad);
  border-top: 1px solid var(--line);
  color: var(--smoke); font-size: 0.85rem;
}

/* sticky mobile CTA — appears whenever the form is off screen */
.ld-sticky {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  display: flex; gap: 0.7rem; align-items: center;
  padding: 0.7rem var(--pad);
  background: rgba(251,249,244,0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(27,22,17,0.12);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.ld-sticky.is-shown { transform: none; }
.ld-sticky__book { flex: 1; text-align: center; }
.ld-sticky__call {
  flex: 0 0 auto;
  display: grid; place-items: center;
  width: 3.1rem; height: 3.1rem;
  border: 1.5px solid var(--ink);
  color: var(--ink); text-decoration: none;
  font-size: 1.3rem;
}

@media (max-width: 860px) {
  .ld-hero { grid-template-columns: 1fr; padding-top: 0.5rem; }
  .ld-h1 { font-size: clamp(2.8rem, 12vw, 4.2rem); }
  .ld-sub { font-size: 0.98rem; }
  .ld-coach { grid-template-columns: 1fr; }
}

/* ============================================================
   Paulo — AI avatar stage (transparent video, 3D depth)
   ============================================================ */
.pv {
  position: relative;
  perspective: 1400px;
  perspective-origin: 50% 40%;
  display: grid;
  place-items: end center;
  min-height: clamp(26rem, 46vw, 40rem);
  isolation: isolate;
}

/* depth layers behind him */
.pv__depth {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}
.pv__halo {
  position: absolute; left: 50%; top: 46%;
  width: min(34rem, 88%); aspect-ratio: 1;
  translate: -50% -50%;
  background: radial-gradient(circle, rgba(200,16,46,0.16) 0%, rgba(200,16,46,0.05) 42%, transparent 68%);
  filter: blur(6px);
  transform: translateZ(-220px) scale(1.25);
}
.pv__ring {
  position: absolute; left: 50%; top: 47%;
  width: min(27rem, 74%); aspect-ratio: 1;
  translate: -50% -50%;
  border: 2px solid rgba(27,22,17,0.1);
  border-radius: 50%;
  transform: translateZ(-160px);
}
.pv__ring::after {
  content: ""; position: absolute; inset: 12%;
  border: 1px solid rgba(200,16,46,0.18);
  border-radius: 50%;
}
.pv__word {
  position: absolute; left: 50%; top: 30%;
  translate: -50% -50%;
  font-family: var(--font-script);
  font-size: clamp(6rem, 17vw, 13rem);
  line-height: 1;
  color: var(--red);
  opacity: 0.08;
  white-space: nowrap;
  transform: translateZ(-300px);
}

/* the figure itself */
.pv__figure {
  position: relative; z-index: 2;
  width: min(30rem, 100%);
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(.2,.8,.3,1);
}
.pv__figure video,
.pv__figure img {
  display: block; width: 100%; height: auto;
  /* grounded contact shadow so he doesn't float flatly on the paper */
  filter: drop-shadow(0 26px 34px rgba(27,22,17,0.28))
          drop-shadow(0 4px 8px rgba(27,22,17,0.14));
}
.pv__figure video { background: transparent; }
.pv__poster { position: absolute; inset: 0; }
.pv__figure.is-live .pv__poster { opacity: 0; transition: opacity 0.5s; }

/* floor ellipse — sells the 3D grounding */
.pv__floor {
  position: absolute; z-index: 1;
  left: 50%; bottom: 4%;
  width: min(20rem, 62%); height: 2.4rem;
  translate: -50% 0;
  background: radial-gradient(ellipse, rgba(27,22,17,0.26) 0%, rgba(27,22,17,0.08) 45%, transparent 72%);
  filter: blur(7px);
  transform: rotateX(72deg);
}

/* speech caption under him */
.pv__caption {
  position: absolute; z-index: 3;
  left: 50%; bottom: -0.5rem;
  translate: -50% 0;
  width: min(30rem, 94%);
  background: rgba(27,22,17,0.92);
  color: var(--bone);
  padding: 0.85rem 1.1rem;
  font-size: 0.98rem; line-height: 1.35;
  text-align: center;
  border-left: 3px solid var(--gold);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
  pointer-events: none;
}
.pv__caption.is-on { opacity: 1; transform: none; }

/* sound toggle */
.pv__sound {
  position: absolute; z-index: 4;
  right: 4%; top: 6%;
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--ink); color: var(--bone);
  border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.6rem 0.9rem;
  box-shadow: 0 10px 24px rgba(27,22,17,0.22);
  animation: pvPulse 2.6s ease-in-out infinite;
}
.pv__sound.is-on { animation: none; background: var(--red); }
@keyframes pvPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(27,22,17,0.22), 0 0 0 0 rgba(200,16,46,0.5); }
  60% { box-shadow: 0 10px 24px rgba(27,22,17,0.22), 0 0 0 14px rgba(200,16,46,0); }
}

/* hero variant: Paulo on the left, form on the right */
.ld-hero--paulo { align-items: end; }
.ld-hero--paulo .pv { align-self: end; }

@media (max-width: 860px) {
  .pv { min-height: 22rem; }
  .pv__figure { width: min(20rem, 76%); }
  .pv__caption { font-size: 0.9rem; bottom: 0.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .pv__figure { transition: none; }
  .pv__sound { animation: none; }
}

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.75,.2,1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ============ Responsive ============ */
@media (max-width: 1060px) {
  .nav__links {
    position: fixed; inset: 0;
    background: rgba(251,249,244,0.97);
    backdrop-filter: blur(10px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.2rem; font-size: 1.4rem;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s;
    margin: 0;
  }
  .nav__links.is-open { opacity: 1; pointer-events: auto; }
  .nav__links a { font-size: 1.6rem; }
  .nav__drop { text-align: center; }
  .nav__droptrigger { font-size: 1.6rem; }
  .nav__dropmenu {
    position: static;
    background: none; border: 0;
    opacity: 1; transform: none; pointer-events: auto;
    display: none;
    padding: 0.4rem 0 0;
    gap: 0.3rem;
  }
  .nav__drop.is-open .nav__dropmenu { display: grid; }
  .nav__dropmenu a { font-size: 1.05rem; color: var(--red); text-align: center; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; z-index: 1001; }
  .nav__burger.is-open span { background: var(--ink) !important; }
  .nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__burger.is-open span:nth-child(2) { opacity: 0; }
  .nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .acc { flex-direction: column; min-height: 0; }
  .acc__item { min-height: 5.4rem; padding: 1.3rem; }
  .acc__item.is-open { min-height: 20rem; }
  .acc__item h3 { writing-mode: horizontal-tb; rotate: 0deg; }

  .professor { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .belt-progress__label { display: none; }
}

@media (max-width: 520px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .stat__num { font-size: 2.8rem; }
}

/* ████████████████████████████████████████████████████████████████████
   REFORMULATION LAYER
   Softer palette (tokens above), quieter typography, and a material
   ground so no section is a flat empty field.
   ████████████████████████████████████████████████████████████████████ */

/* ─── 1. Material: woven gi texture over the whole page ───────────────
   The gi is woven cotton — a faint twill reads as brand material and
   removes the "blank screen" feel without adding visual noise. */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8'%3E%3Cpath d='M0 8L8 0M-2 2L2 -2M6 10L10 6' stroke='rgba(28,28,30,0.05)' stroke-width='1'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6' height='6'%3E%3Crect width='3' height='3' fill='rgba(28,28,30,0.02)'/%3E%3Crect x='3' y='3' width='3' height='3' fill='rgba(28,28,30,0.02)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }
/* the old animated film grain reads as noise on a soft palette */
body::after { display: none; }

/* ─── 2. Typography: from sports poster to editorial ──────────────────
   Sentence case is the single biggest sophistication lever — it drops
   the shouting without losing scale or authority. */
.hero__title, .section-title, .story__statement, .why__title, .trial__title,
.world__title, .page-hero__title, .fr-hero__title, .fr-get__title,
.ld-h1, .ld-final__big, .ld-card__title, .voice p, .ld-quote p,
.prose h2, .coach h2, .acad h3, .loc h3, .pillar h3, .step h3,
.faq summary, .belts h3, .ld-prog h3, .region-h b, .lineage__who,
.crm-top h1, .crm-block__head h2, .acad__where, .why__list li,
.footer__col h4, .stat__num, .why__become span {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: -0.014em;
  font-weight: 700;
}
.hero__title, .ld-h1, .trial__title, .ld-final__big,
.page-hero__title, .fr-hero__title, .world__title {
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
}
/* the outline device was pure poster — solid clay reads far more refined */
.why__title span, .world__title span,
.page-hero__title span, .ld-h1 span, .fr-hero .hero__line--outline span {
  color: var(--red);
  -webkit-text-stroke: 0;
}
/* over photography clay goes muddy — brass holds on a darkened frame */
.hero__line--outline span {
  color: var(--gold-soft);
  -webkit-text-stroke: 0;
}
.hero__eyebrow {
  color: rgba(246,242,234,0.7);
  font-size: 0.68rem; letter-spacing: 0.26em;
  margin-bottom: 1rem;
}
.hero__script {
  color: var(--gold-soft);
  font-size: clamp(1.15rem, 2.2vw, 1.65rem);
  margin: 0.8rem 0 0.9rem;
}
.hero__sub {
  color: rgba(246,242,234,0.86); opacity: 1;
  font-size: 0.95rem; line-height: 1.6;
  max-width: 30rem; margin-bottom: 1.8rem;
}
/* dial the display sizes back — scale without shouting */
.hero__title { font-size: clamp(2.7rem, 7.4vw, 5.6rem); }
.section-title { font-size: clamp(2.1rem, 4.4vw, 3.5rem); line-height: 1.04; }
.story__statement { font-size: clamp(1.9rem, 4vw, 3.1rem); line-height: 1.1; }
.why__title { font-size: clamp(2.3rem, 5.4vw, 4.2rem); }
.trial__title, .ld-final__big { font-size: clamp(2.6rem, 6.6vw, 5rem); }
.page-hero__title { font-size: clamp(2.6rem, 6.4vw, 5rem); }
.ld-h1 { font-size: clamp(2.6rem, 6.6vw, 4.8rem); }
.why__list li { font-size: clamp(1.15rem, 2.1vw, 1.5rem); letter-spacing: -0.008em; }
.voice p { font-size: clamp(1.25rem, 2.5vw, 1.9rem); line-height: 1.28; }
.faq summary { font-size: clamp(1.05rem, 1.9vw, 1.3rem); }

/* labels, eyebrows, buttons and tags keep the condensed athletic voice */
.section-eyebrow, .ld-eyebrow, .nav__links a, .nav__droptrigger,
.nav__dropmenu a, .btn, .loc__tag, .acad__tag, .coach__tag, .chip,
.acad__meta li span, .coach h3, .stat__label, .crm-card h3,
.ld-chips span, .ld-chips legend, .fr-field label, .step__num,
.crm-badge, .crm-flag, .region-h em, .ld-strip {
  font-family: var(--font-label);
}
.section-eyebrow, .ld-eyebrow { letter-spacing: 0.3em; font-size: 0.78rem; }
.btn { letter-spacing: 0.13em; font-size: 0.95rem; }
.stat__num { font-family: var(--font-display); letter-spacing: -0.03em; }
.step__num { -webkit-text-stroke: 0; color: var(--red); opacity: 0.28; }

/* ─── 3. Buttons: clay is the primary action, brass is an accent ──── */
.btn--gold { background: var(--red); color: var(--bone); }
.btn--gold:hover { background: var(--ink); color: var(--bone); }
.btn--ghost { border-color: var(--line-firm); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); }
.btn { border-radius: 2px; }

/* ─── 4. Tonal bands: never two flat sections in a row ───────────── */
.why,
.locations,
.fr-steps,
.ld-section:not(.ld-section--tint) {
  background: var(--paper);
}
.stats,
.programs,
.professor,
.prose,
.country,
.coach,
.faq {
  background: linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}
.pillars,
.voices,
.ld-section--tint,
.page-cta,
.worldcta,
.ld-final {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* a soft wash at the top of tinted bands so the seam reads as light,
   not as a hard rule */
.pillars, .voices, .page-cta, .worldcta, .ld-section--tint {
  position: relative;
}
.pillars::after, .voices::after, .page-cta::after,
.worldcta::after, .ld-section--tint::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 9rem;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}
.pillars > *, .voices > *, .page-cta > *, .worldcta > *,
.ld-section--tint > * { position: relative; z-index: 1; }

/* content-page heroes were the emptiest screens on the site */
.page-hero, .ld-hero, .fr-hero, .world__head {
  background:
    radial-gradient(120% 80% at 12% 0%, var(--red-wash) 0%, transparent 55%),
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 78%);
  border-bottom: 1px solid var(--line);
}
.page-hero { padding-bottom: clamp(3rem, 6vw, 4.5rem); }

/* ─── 5. Cards: warm paper stock, not white screens ──────────────── */
.pillar, .loc, .acad, .ld-prog, .ld-quote, .fr-form, .ld-card,
.crm-card, .chip {
  background: #FCFCFB;
  border-color: var(--line);
  box-shadow: 0 1px 2px rgba(28,28,30,0.05), 0 12px 28px rgba(28,28,30,0.07);
}
.pillar:hover, .loc:hover, .acad:hover {
  border-color: var(--line-firm);
  box-shadow: 0 2px 4px rgba(28,28,30,0.06), 0 20px 44px rgba(28,28,30,0.11);
}
.ld-card { border-top: 4px solid var(--red); }
.acad--hq { border-color: rgba(176,141,82,0.5); }

/* ─── 6. Dark anchors softened to espresso ───────────────────────── */
.footer, .ld-strip { background: var(--panel-dark); }
.world__mapwrap { background:
  radial-gradient(80% 90% at 50% 40%, rgba(166,50,58,0.10) 0%, transparent 62%),
  var(--panel-dark); }
.world__map path, .world__map polygon { fill: #3A332C; stroke: #241F1B; }
.pv__caption { background: rgba(36,31,27,0.94); }
/* A faixa vermelha ficava pesada. Grafite editorial no lugar — casa com
   o herói e o footer, e a foto passa a ler como chapa de impressão. */
.story {
  background:
    radial-gradient(90% 70% at 15% 0%, rgba(166,50,58,0.16) 0%, transparent 60%),
    var(--panel-dark);
  padding-bottom: clamp(3.5rem, 8vw, 6rem);
}
/* o bug: a foto era empurrada para baixo e o overflow da seção cortava */
.story__photo { translate: none; margin-top: clamp(2.5rem, 6vw, 4rem); }
.story__photo img {
  border: 1px solid rgba(246,242,234,0.16);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.story__statement { color: var(--bone); }
.story__statement .w.is-lit { opacity: 1; }
.fr-get { background: var(--red); }
.story__cols, .fr-get__list li { color: rgba(246,242,234,0.88); }
.story__cols strong, .fr-get__list b { color: var(--bone); }
.story__photo figcaption { color: rgba(246,242,234,0.7); }
.story__link { color: var(--bone); border-color: rgba(246,242,234,0.5); }
.story__link:hover { color: var(--bone); border-color: var(--bone); }
.fr-get__list li { border-top-color: rgba(246,242,234,0.22); }
.story__photo img { border-color: var(--panel-dark); }
.trial__mark, .fr-hero__mark { opacity: 0.05; }
.story::before { color: rgba(246,242,234,0.09); }

/* ─── 7. Quieter chrome ──────────────────────────────────────────── */
.prose h2::before, .region-h b::before {
  width: 3px; background: var(--gold);
}
.faq summary::after { color: var(--gold-ink); font-weight: 400; }
.marquee { background: var(--olive); }
.marquee__group b { color: var(--bone); }
.marquee__group em { color: rgba(246,242,234,0.75); }
.marquee__group i { color: var(--gold-soft); }
.hero__scrim {
  background:
    linear-gradient(180deg, rgba(36,31,27,0.62) 0%, rgba(36,31,27,0.34) 42%, rgba(36,31,27,0.86) 100%),
    radial-gradient(90% 60% at 50% 45%, transparent 32%, rgba(36,31,27,0.5) 100%);
}
.belt-progress { height: 4px; }
/* clay on espresso is too close in value — brass carries the brand line */
.footer__values { color: var(--gold-soft); }

/* motor de agendamento dentro da seção de trial da home */
.trial__lead {
  max-width: 34rem; margin: 0 auto 2rem;
  color: var(--smoke); font-size: 1rem;
}
.trial__engine {
  margin: 0 auto; text-align: left;
  background: #FCFCFB; border: 1px solid var(--line);
  box-shadow: 0 2px 4px rgba(28,28,30,0.05), 0 22px 50px rgba(28,28,30,0.09);
  padding: clamp(1.3rem, 3vw, 2.2rem);
}
.trial__engine .bk { max-width: none; }

/* ═══ BOOKING WIDGET — calendário + aulas reais ═══════════════════ */
.bk { max-width: 56rem; }
.bk__step { margin-bottom: 1.9rem; }
.bk__step.is-missing .bk__cal { outline: 2px solid var(--red); outline-offset: 6px; }
.bk__step.is-missing .bk__legend::after {
  content: 'pick a day and a class first';
  margin-left: 0.7rem; color: var(--red);
  font-size: 0.66rem; letter-spacing: 0.1em;
}
.bk__legend {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--smoke); margin: 0 0 0.85rem;
}
.bk__legend i {
  display: grid; place-items: center; font-style: normal;
  width: 1.5rem; height: 1.5rem; flex: 0 0 auto;
  background: var(--ink); color: var(--bone);
  font-size: 0.78rem; letter-spacing: 0;
}

/* programas */
.bk__progs { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.bk__prog {
  cursor: pointer; text-align: left;
  background: #FCFCFB; border: 1.5px solid var(--line);
  padding: 0.6rem 0.9rem; transition: border-color 0.2s, background 0.2s;
}
.bk__prog b {
  display: block; font-family: var(--font-label); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink);
}
.bk__prog span { display: block; font-size: 0.72rem; color: var(--smoke); }
.bk__prog:hover { border-color: var(--line-firm); }
.bk__prog.is-on { background: var(--ink); border-color: var(--ink); }
.bk__prog.is-on b { color: var(--bone); }
.bk__prog.is-on span { color: var(--gold-soft); }

/* idade → programa */
.bk__age {
  display: flex; align-items: center; gap: 0.7rem; flex-wrap: wrap;
  margin-top: 0.8rem; padding: 0.6rem 0.8rem;
  background: var(--paper-2); border-left: 2px solid var(--gold);
  transition: background 0.4s;
}
.bk__age.is-matched { background: var(--red-wash); border-left-color: var(--red); }
.bk__age span { font-size: 0.82rem; color: var(--smoke); flex: 1 1 14rem; }
.bk__age input {
  width: 5rem; padding: 0.45rem 0.6rem;
  background: #FCFCFB; border: 1px solid var(--line);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
}

/* calendário */
.bk__cal { background: #FCFCFB; border: 1px solid var(--line); padding: 0.9rem; }
.bk__calhead {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.7rem;
}
.bk__calhead strong {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.1rem; letter-spacing: -0.01em; color: var(--ink);
}
.bk__nav {
  cursor: pointer; background: none; border: 1px solid var(--line);
  width: 2rem; height: 2rem; color: var(--ink); font-size: 0.9rem;
}
.bk__nav:disabled { opacity: 0.3; cursor: default; }
.bk__nav:not(:disabled):hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.bk__dow, .bk__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.bk__dow span {
  text-align: center; padding-bottom: 0.35rem;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--smoke);
}
.bk__cell {
  position: relative; aspect-ratio: 1; display: grid; place-items: center;
  border: 1px solid transparent; background: none;
  font-size: 0.88rem; color: var(--ink);
}
.bk__cell.is-blank { visibility: hidden; }
.bk__cell.is-off { color: rgba(38,38,38,0.26); }
.bk__cell.has { cursor: pointer; border-color: var(--line); font-weight: 600; }
.bk__cell.has i {
  position: absolute; bottom: 16%; width: 4px; height: 4px; border-radius: 50%;
  background: var(--red);
}
.bk__cell.has em { display: none; }
.bk__cell.has:hover { border-color: var(--line-firm); background: var(--paper-2); }
.bk__cell.is-today { text-decoration: underline; text-underline-offset: 3px; }
.bk__cell.is-on { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.bk__cell.is-on i { background: var(--gold-soft); }
.bk__callegend {
  display: flex; align-items: center; gap: 0.4rem;
  margin: 0.7rem 0 0; font-size: 0.75rem; color: var(--smoke);
}
.bk__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); display: inline-block; }

/* trilha de dias (variante compacta) */
.bk__strip { display: flex; gap: 0.4rem; overflow-x: auto; padding-bottom: 0.4rem; }
.bk__sday {
  flex: 0 0 auto; cursor: pointer; text-align: left;
  background: #FCFCFB; border: 1.5px solid var(--line); padding: 0.5rem 0.75rem;
}
.bk__sday b {
  display: block; font-family: var(--font-label); font-weight: 700;
  font-size: 0.84rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink);
}
.bk__sday span { display: block; font-size: 0.66rem; color: var(--smoke); }
.bk__sday.is-on { background: var(--ink); border-color: var(--ink); }
.bk__sday.is-on b { color: var(--bone); }
.bk__sday.is-on span { color: var(--gold-soft); }

/* horários */
.bk__slots { display: grid; gap: 0.45rem; }
.bk__slot {
  position: relative; cursor: pointer; text-align: left;
  display: grid; grid-template-columns: 8rem 1fr; align-items: center; gap: 0.8rem;
  background: #FCFCFB; border: 1.5px solid var(--line); padding: 0.7rem 0.9rem;
  transition: border-color 0.2s, background 0.2s;
}
.bk__slot:hover { border-color: var(--line-firm); }
.bk__slot.is-on { border-color: var(--red); background: var(--red-wash); }
.bk__slot.is-on::after {
  content: "\2713"; position: absolute; right: 0.9rem; top: 50%;
  translate: 0 -50%; color: var(--red); font-weight: 700;
}
.bk__time {
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.03em; color: var(--ink);
}
.bk__what { font-size: 0.88rem; color: var(--ink); line-height: 1.25; }
.bk__what em { display: block; font-style: normal; font-size: 0.74rem; color: var(--smoke); }
.bk__flag {
  grid-column: 1 / -1;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-ink);
}
.bk__hint, .bk__none { font-size: 0.84rem; color: var(--smoke); margin: 0.6rem 0 0; }
.bk__hint { border-left: 2px solid var(--gold); padding-left: 0.7rem; }
.bk__hint b { color: var(--ink); }
.bk__hint button, .bk__none a {
  background: none; border: 0; padding: 0; cursor: pointer; font: inherit;
  color: var(--gold-ink); font-weight: 700; text-decoration: underline; text-underline-offset: 2px;
}

/* dados + envio */
.bk__fields { display: grid; gap: 0.6rem; grid-template-columns: 1fr 1fr; }
.bk__in {
  background: #FCFCFB; border: 1px solid var(--line); color: var(--ink);
  font-family: var(--font-body); font-size: 1rem; padding: 0.85rem 1rem; width: 100%;
}
.bk__in--wide { grid-column: 1 / -1; }
.bk__in:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.bk__summary {
  background: var(--ink); color: var(--bone);
  padding: 0.85rem 1rem; margin-bottom: 0.9rem; font-size: 0.95rem;
}
.bk__summary b { color: var(--gold-soft); }
.bk__summary span { display: block; font-size: 0.78rem; color: rgba(246,242,234,0.6); margin-top: 0.15rem; }
.bk__submit { width: 100%; border: 0; font-size: 1.08rem; padding: 1rem 1.5rem; }
.bk__micro { font-size: 0.8rem; color: var(--smoke); margin-top: 0.7rem; text-align: center; }

/* confirmação */
.bk__done-kicker {
  font-family: var(--font-script); font-size: 1.6rem; color: var(--gold-ink); rotate: -1.5deg;
}
.bk__ticket {
  border: 1px solid var(--line); border-left: 4px solid var(--red);
  background: var(--paper); padding: 1.1rem 1.2rem; margin: 0.8rem 0 1.4rem;
}
.bk__t-day {
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--smoke);
}
.bk__t-time {
  font-family: var(--font-display); font-weight: 800;
  font-size: 2.1rem; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); margin: 0.15rem 0 0.3rem;
}
.bk__t-what { font-size: 0.95rem; color: var(--ink); }
.bk__t-where { font-size: 0.82rem; color: var(--smoke); margin-top: 0.35rem; }
.bk__next { list-style: none; display: grid; gap: 0.7rem; counter-reset: bk; }
.bk__next li { padding-left: 1.9rem; position: relative; font-size: 0.95rem; color: var(--smoke); }
.bk__next li b { color: var(--ink); }
.bk__next li::before {
  content: counter(bk); counter-increment: bk;
  position: absolute; left: 0; top: 0;
  font-family: var(--font-display); font-weight: 800; color: var(--red); font-size: 1.1rem;
}
.bk__done-acts { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.3rem; }

@media (max-width: 620px) {
  .bk__fields { grid-template-columns: 1fr; }
  .bk__slot { grid-template-columns: 1fr; gap: 0.15rem; }
  .bk__cell { font-size: 0.8rem; }
}

/* ═══ TIMETABLE — a semana inteira, alimentada por schedule.js ═════ */
.tt { max-width: 82rem; margin: 0 auto; padding: clamp(2rem, 4vw, 3rem) var(--pad) clamp(3rem, 6vw, 4.5rem); }
.tt__legend { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.tt__key {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
}
.tt__key i { width: 0.85rem; height: 0.85rem; border: 1px solid rgba(28,28,30,0.2); }
.tt__key em {
  font-style: normal; font-family: var(--font-body);
  font-size: 0.72rem; letter-spacing: 0; text-transform: none; color: var(--smoke);
}
.tt__key--ninjas i { background: #CBD9B8; }
.tt__key--kids i   { background: #EFD79A; }
.tt__key--teens i  { background: #E6B79A; }
.tt__key--adults i { background: #C7D2DE; }

.tt__grid { display: grid; gap: 1px; grid-template-columns: repeat(6, 1fr); background: var(--line); }
.tt__col { background: var(--paper); display: flex; flex-direction: column; gap: 1px; }
.tt__day {
  font-family: var(--font-label); font-weight: 800;
  font-size: 0.86rem; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--ink); color: var(--bone);
  padding: 0.7rem 0.6rem; text-align: center; margin: 0;
}
.tt__cls {
  display: block; text-decoration: none;
  padding: 0.7rem 0.65rem;
  border-left: 3px solid transparent;
  transition: filter 0.2s, transform 0.2s;
}
.tt__cls:hover { filter: brightness(0.95); transform: translateX(2px); }
.tt__time {
  display: block;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.82rem; letter-spacing: 0.02em; color: var(--ink);
}
.tt__name { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink); line-height: 1.2; }
.tt__ages { display: block; font-size: 0.7rem; color: rgba(28,28,30,0.62); }
.tt__beg {
  display: block; margin-top: 0.25rem;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-ink);
}
.tt__cls--ninjas { background: #DCE7CD; border-left-color: #7E9C5C; }
.tt__cls--kids   { background: #F6E7BB; border-left-color: #C9A23C; }
.tt__cls--teens  { background: #F0CDB6; border-left-color: #C2764A; }
.tt__cls--adults { background: #DCE4ED; border-left-color: #6F8AA8; }
.tt__note { margin-top: 1.6rem; font-size: 0.88rem; color: var(--smoke); max-width: 44rem; }
.tt__note b { color: var(--ink); }

@media (max-width: 900px) {
  .tt__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tt__grid { grid-template-columns: 1fr; }
}

/* ═══ BOOKING ENGINE — seleção de aula real ═══════════════════════ */
.ld-slots, .ld-who { border: 0; margin: 0 0 1rem; padding: 0; }
.ld-slots legend, .ld-who legend, .ld-chips legend {
  font-family: var(--font-label);
  font-weight: 700; font-size: 0.74rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--smoke); margin-bottom: 0.6rem;
}
.ld-slots.is-missing legend { color: var(--red); }
.ld-slots.is-missing .ld-slots__list { animation: ldNudge 0.4s ease; }
@keyframes ldNudge {
  0%,100% { transform: none; } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); }
}

/* trilha de dias */
.ld-slots__days {
  display: flex; gap: 0.4rem; overflow-x: auto;
  padding-bottom: 0.5rem; margin-bottom: 0.6rem;
  scrollbar-width: thin;
}
.ld-day {
  flex: 0 0 auto; cursor: pointer;
  background: var(--paper); border: 1.5px solid var(--line);
  padding: 0.5rem 0.75rem; text-align: left;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.ld-day b {
  display: block;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.86rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
}
.ld-day span { display: block; font-size: 0.68rem; color: var(--smoke); }
.ld-day:hover { border-color: var(--line-firm); }
.ld-day.is-on { background: var(--ink); border-color: var(--ink); }
.ld-day.is-on b { color: var(--bone); }
.ld-day.is-on span { color: var(--gold-soft); }

/* cartões de horário */
.ld-slots__list { display: grid; gap: 0.45rem; }
.ld-slot {
  position: relative; cursor: pointer; text-align: left;
  display: grid; grid-template-columns: 7.6rem 1fr; align-items: center; gap: 0.8rem;
  background: var(--paper); border: 1.5px solid var(--line);
  padding: 0.7rem 0.85rem;
  transition: border-color 0.2s, background 0.2s;
}
.ld-slot:hover { border-color: var(--line-firm); }
.ld-slot.is-on { border-color: var(--red); background: var(--red-wash); }
.ld-slot.is-on::after {
  content: "\2713"; position: absolute; right: 0.8rem; top: 50%;
  translate: 0 -50%; color: var(--red); font-weight: 700;
}
.ld-slot__time {
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.95rem; letter-spacing: 0.03em; color: var(--ink);
}
.ld-slot__what { font-size: 0.86rem; color: var(--ink); line-height: 1.25; }
.ld-slot__what em {
  display: block; font-style: normal;
  font-size: 0.74rem; color: var(--smoke);
}
.ld-slot__flag {
  grid-column: 1 / -1;
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-ink);
}
.ld-slots__hint {
  margin: 0.6rem 0 0;
  font-size: 0.82rem; line-height: 1.45; color: var(--smoke);
  border-left: 2px solid var(--gold); padding-left: 0.7rem;
}
.ld-slots__hint b { color: var(--ink); }
.ld-slots__hint button {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--gold-ink); font-weight: 700;
  text-decoration: underline; text-underline-offset: 2px;
}
.ld-slots__empty { font-size: 0.9rem; color: var(--smoke); }
.ld-slots__empty a { color: var(--gold-ink); font-weight: 600; }

/* bilhete de confirmação */
.ld-ticket {
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  background: var(--paper);
  padding: 1rem 1.1rem; margin: 0.9rem 0 1.4rem;
}
.ld-ticket__day {
  font-family: var(--font-label); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--smoke);
}
.ld-ticket__time {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.9rem; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin: 0.15rem 0 0.3rem;
}
.ld-ticket__what { font-size: 0.92rem; color: var(--ink); }
.ld-ticket__where { font-size: 0.8rem; color: var(--smoke); margin-top: 0.35rem; }
.ld-ok__acts { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-top: 1.2rem; }

@media (max-width: 420px) {
  .ld-slot { grid-template-columns: 1fr; gap: 0.15rem; }
}

/* ═══ WHY REAL JIU-JITSU — full-bleed wall, uma palavra por quadro ═══
   Substitui a lista de texto: sem margens laterais, o visual carrega o
   argumento e a legenda entrega só a palavra-chave. */
.why {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem);
  background: var(--panel-dark);
  border-bottom: 0;
  text-align: center;
}
.why::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(75% 55% at 50% 0%, rgba(166,50,58,0.2) 0%, transparent 62%);
  pointer-events: none;
}
.why { position: relative; }
.why__head { position: relative; padding: 0 var(--pad); margin-bottom: clamp(2rem, 4vw, 3rem); }
.why__title { color: var(--bone); }
.why__title span { color: var(--gold-soft); }
.why__lead {
  font-family: var(--font-script);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  color: rgba(246,242,234,0.66);
  rotate: -1.5deg; margin: 0.7rem 0 0;
}

.why__wall {
  position: relative;
  display: grid; gap: 2px;
  grid-template-columns: repeat(6, 1fr);
}
.why__tile { position: relative; margin: 0; overflow: hidden; }
.why__tile img {
  width: 100%; height: clamp(19rem, 34vw, 30rem);
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.06) brightness(0.72);
  transition: filter 0.6s ease, transform 0.9s cubic-bezier(.2,.8,.25,1);
  transform: scale(1.02);
}
.why__tile:hover img { filter: grayscale(0) contrast(1.02) brightness(0.9); transform: scale(1.07); }
.why__tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(20,20,22,0.82) 100%);
  pointer-events: none;
}
.why__tile figcaption {
  position: absolute; z-index: 2; left: 0; right: 0; bottom: 0;
  padding: 1.3rem 1.1rem;
  text-align: left;
}
.why__tile figcaption b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.15rem, 1.7vw, 1.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-wrap: balance;
}
.why__tile figcaption span {
  display: block; margin-top: 0.3rem;
  font-size: 0.8rem; line-height: 1.3;
  color: rgba(246,242,234,0.6);
}
/* uma tarja de latão cresce sob a palavra no hover */
.why__tile figcaption::before {
  content: ""; position: absolute; left: 1.1rem; top: 0.55rem;
  width: 0; height: 2px; background: var(--gold-soft);
  transition: width 0.45s cubic-bezier(.2,.8,.25,1);
}
.why__tile:hover figcaption::before { width: 2.6rem; }

.why__become {
  position: relative;
  margin: clamp(2.4rem, 5vw, 3.4rem) auto 0;
  padding: 0 var(--pad);
  color: rgba(246,242,234,0.62);
  font-size: 1rem;
}
.why__become span {
  display: inline-block; margin-top: 0.4rem;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  color: var(--gold-soft);
  rotate: -1.5deg;
}

@media (max-width: 1000px) {
  .why__wall { grid-template-columns: repeat(3, 1fr); }
  .why__tile img { height: clamp(15rem, 30vw, 20rem); }
}
@media (max-width: 620px) {
  .why__wall { grid-template-columns: repeat(2, 1fr); }
  .why__tile img { height: 13rem; }
  .why__tile figcaption { padding: 0.9rem 0.8rem; }
  .why__tile figcaption span { display: none; }
}

/* ═══ Escada de graduação — inclui as faixas acima da preta ═══ */
.belt-bar--coral {
  /* coral 7º grau: segmentos alternados vermelho e preto */
  background: repeating-linear-gradient(90deg,
    var(--red) 0 14%, #1C1C1E 14% 28%);
  --rank: #1C1C1E;
}
.belt-bar--coral-white {
  /* coral 8º grau: vermelho e branco */
  background: repeating-linear-gradient(90deg,
    var(--red) 0 14%, #EFEDE8 14% 28%);
  --rank: var(--red);
}
.belt-bar--redbelt { background: var(--red); --rank: #EFEDE8; }
.belts h3 small {
  display: block;
  font-family: var(--font-label);
  font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-top: 0.2rem;
}
.belts__note {
  max-width: 34rem; margin-top: 1.8rem;
  font-size: 0.92rem; color: var(--smoke);
  border-top: 1px solid var(--line); padding-top: 1.1rem;
}

/* ─── Faixas: branca c/ tarja preta · preta c/ tarja vermelha ·
       vermelha c/ tarja branca (a progressão real do BJJ) ─────────── */
.pillar__belt--white { background: #EFEDE8; border: 1px solid rgba(28,28,30,0.28); }
.pillar__belt--white::after { background: #1C1C1E; }
.pillar__belt--black { background: #1C1C1E; border: 1px solid rgba(28,28,30,0.5); }
.pillar__belt--black::after { background: var(--red); }
.pillar__belt--red { background: var(--red); border: 1px solid rgba(124,35,41,0.6); }
.pillar__belt--red::after { background: #EFEDE8; }

/* ─── Marquee: amarelo do logo, texto preto ─────────────────────── */
.marquee { background: #EFC22C; border-color: rgba(28,28,30,0.18); }
.marquee__group b { color: #1C1C1E; }
.marquee__group em { color: rgba(28,28,30,0.8); }
.marquee__group i { color: rgba(28,28,30,0.45); }
.stat { border-left-width: 2px; }
.loc__tag, .acad__tag, .coach__tag { background: var(--gold); color: var(--ink); }

/* ─── 7a. Hero: left-aligned over a flat placeholder ───────────────
   The photo is out and a solid colour holds the slot. When the video
   lands, drop a <video> into .hero__bg, unhide it, and everything else
   (scrim, alignment, nav treatment) already works. */
.hero {
  background: var(--hero-bg);
  place-items: center start;
}
.hero__bg { display: none; }          /* ← unhide when the video is in */
.hero__scrim {
  /* kept: it is what will make type legible over moving footage */
  background:
    linear-gradient(90deg, rgba(20,20,22,0.55) 0%, rgba(20,20,22,0.15) 62%, transparent 100%),
    linear-gradient(180deg, rgba(20,20,22,0.35) 0%, transparent 38%, rgba(20,20,22,0.45) 100%);
}
.hero__content {
  text-align: left;
  max-width: 46rem;
  margin: 0;
  padding: calc(var(--nav-h) + 4rem) var(--pad) 6rem;
}
.hero__sub { margin-left: 0; margin-right: 0; max-width: 34rem; }
.hero__ctas { justify-content: flex-start; }
.hero__script { width: fit-content; }
.hero__title { text-wrap: balance; }
@media (max-width: 700px) {
  .hero__content { padding-bottom: 5rem; }
  .hero__scrim { background:
    linear-gradient(180deg, rgba(20,20,22,0.45) 0%, transparent 30%, rgba(20,20,22,0.5) 100%); }
}

/* ─── 7b. Condensed labels must not break mid-phrase ─────────────── */
.btn { white-space: nowrap; }
.loc__foot, .acad__foot, .ld-final__btns, .worldcta__btns, .hero__ctas {
  flex-wrap: wrap; gap: 0.75rem;
}
.loc__foot span, .acad__foot span { flex: 1 1 100%; }
@media (max-width: 560px) {
  .btn { white-space: normal; }
}

/* ─── 8. Body copy comfort ───────────────────────────────────────── */
body { font-size: 1.045rem; line-height: 1.68; }
.prose p, .coach__bio, .ld-sub, .section-sub, .pillar p, .acad__meta li {
  color: var(--smoke);
}
::selection { background: var(--red); color: var(--bone); }

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body::after { animation: none; }
  .marquee__track { animation-duration: 120s; }
  .hero__line span { animation: none; transform: none; }
  .hero__scrollcue span { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  [data-parallax] { transform: none !important; }
  .story__statement .w { opacity: 1; }
}
