/* ==========================================================================
   JHONNY PERSONAL TRAINER — LANDING PAGE
   Design tokens
   -------------------------------------------------------------------------
   Color:
     --black:       #0a0908  (base background)
     --black-soft:  #141210  (raised surfaces)
     --red-deep:    #5c0f14  (shadow / gradient base)
     --red:         #8f1219  (primary brand red)
     --red-bright:  #c81e2c  (accent / CTA / highlights)
     --bone:        #f3ede4  (primary text, warm off-white)
     --bone-dim:    #a89f93  (secondary text)
     --line:        #2a2521  (hairlines on dark)
   Type:
     Display  — 'Anton'            (huge condensed headlines, used with restraint)
     Body     — 'Manrope'          (paragraphs, UI text)
     Utility  — 'JetBrains Mono'   (eyebrows, stats, labels — "tracked progress" feel)
   Signature:
     Diagonal red "motion streak" dividers (barbell-path) between sections +
     radiating "sinais" diagram around a central photo.
   ========================================================================== */

:root {
  --black: #0a0908;
  --black-soft: #141210;
  --black-soft-2: #1c1815;
  --red-deep: #5c0f14;
  --red: #8f1219;
  --red-bright: #c81e2c;
  --red-glow: #e6394a;
  --bone: #f3ede4;
  --bone-dim: #a89f93;
  --bone-dim-2: #766d63;
  --line: #2a2521;

  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1240px;
  --pad: clamp(20px, 5vw, 64px);
}

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

html { scroll-behavior: smooth; }

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

body {
  background: var(--black);
  color: var(--bone);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

::selection { background: var(--red-bright); color: var(--bone); }

:focus-visible {
  outline: 2px solid var(--red-glow);
  outline-offset: 3px;
}

/* ---------- Utility type ---------- */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--red-glow);
  display: inline-block;
}

.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.005em;
  color: var(--bone);
}

.section-title--xl { font-size: clamp(40px, 7vw, 84px); }
.section-title--lg { font-size: clamp(34px, 5.4vw, 58px); }

.section-title em {
  font-style: normal;
  color: var(--red-bright);
}

.lede {
  font-size: clamp(16px, 1.9vw, 19px);
  color: var(--bone-dim);
  max-width: 56ch;
  line-height: 1.7;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
}

.section-pad { padding: clamp(72px, 11vw, 140px) 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 19px 34px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: var(--bone);
  box-shadow: 0 8px 30px -8px rgba(200, 30, 44, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px -8px rgba(200, 30, 44, 0.75); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--bone);
  border-color: rgba(243, 237, 228, 0.28);
}
.btn--ghost:hover { border-color: var(--red-glow); color: var(--red-glow); }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.35s ease, padding 0.35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(10, 9, 8, 0.86);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 21px;
  letter-spacing: 0.03em;
  display: flex;
  flex-direction: column;
  line-height: 0.95;
}
.logo span { font-size: 10.5px; font-family: var(--font-mono); letter-spacing: 0.24em; color: var(--red-glow); margin-top: 4px; font-weight: 500; }

.nav-desktop {
  display: flex;
  gap: 38px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-desktop a { color: var(--bone-dim); transition: color .2s; position: relative; }
.nav-desktop a:hover { color: var(--bone); }

.header-cta { display: flex; align-items: center; gap: 22px; }
.header-cta .btn { padding: 13px 22px; font-size: 12px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--bone); display: block; transition: transform .3s, opacity .3s; }

@media (max-width: 860px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-cta .btn--ghost { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
  padding-top: 120px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 16%;
  opacity: 0.9;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.35) 0%, rgba(10,9,8,0.35) 30%, rgba(10,9,8,0.94) 82%, var(--black) 100%),
    linear-gradient(90deg, rgba(10,9,8,0.96) 0%, rgba(10,9,8,0.25) 42%, rgba(10,9,8,0.1) 62%, rgba(10,9,8,0.85) 100%);
}

.hero-streak {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.hero-streak--1 {
  top: 8%; left: -6%;
  width: 46vw; height: 3px;
  background: linear-gradient(90deg, transparent, var(--red-bright) 40%, transparent);
  transform: rotate(-14deg);
  opacity: 0.75;
}
.hero-streak--2 {
  top: 13%; left: -4%;
  width: 30vw; height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-glow), transparent);
  transform: rotate(-14deg);
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(48px, 7vw, 88px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--bone);
  font-size: clamp(58px, 13vw, 168px);
  line-height: 0.86;
  letter-spacing: -0.01em;
}
.hero-title .line-red { color: transparent; -webkit-text-stroke: 1.5px var(--red-bright); }
.hero-title .line-out {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
}

.hero-sub {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 40px;
  align-items: end;
}

.hero-claim {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--bone-dim);
  max-width: 46ch;
  line-height: 1.65;
}
.hero-claim strong { color: var(--bone); font-weight: 700; }

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(20,18,16,0.6);
}
.hero-badge b { color: var(--red-glow); font-weight: 700; }

@media (max-width: 760px) {
  .hero-sub { grid-template-columns: 1fr; gap: 26px; }
  .hero-actions { align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
}

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 28px;
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--bone-dim);
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 46px;
  background: linear-gradient(180deg, var(--bone-dim), transparent);
}
@media (max-width: 760px) { .scroll-cue { display: none; } }

/* ==========================================================================
   SIGNATURE DIVIDER (motion streak)
   ========================================================================== */

.divider {
  position: relative;
  height: 84px;
  background: var(--black);
  overflow: hidden;
}
.divider::before {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 120%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red-bright) 50%, var(--red) 80%, transparent);
  transform: rotate(-2.2deg);
}
.divider::after {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 120%; height: 1px;
  margin-top: 10px;
  background: linear-gradient(90deg, transparent, rgba(200,30,44,0.35) 30%, rgba(200,30,44,0.35) 70%, transparent);
  transform: rotate(-2.2deg);
}

/* ==========================================================================
   ABOUT
   ========================================================================== */

.about { background: var(--black); }
.about .container {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}

.about-media { position: relative; }
.about-media-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.about-media-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(200deg, rgba(143,18,25,0.28), transparent 55%);
  mix-blend-mode: multiply;
  opacity: .7;
}
.about-media-tag {
  position: absolute;
  bottom: -1px; left: -1px;
  background: var(--red-bright);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 18px;
  font-weight: 600;
}
.about-media-frame-border {
  position: absolute;
  top: 18px; left: 18px; right: -18px; bottom: -18px;
  border: 1px solid var(--red-bright);
  border-radius: 6px;
  z-index: -1;
}

.about-body p { color: var(--bone-dim); margin-top: 18px; font-size: 16.5px; line-height: 1.75; max-width: 58ch; }
.about-body p strong { color: var(--bone); font-weight: 700; }
.about-body .btn { margin-top: 34px; }

@media (max-width: 860px) {
  .about .container { grid-template-columns: 1fr; }
  .about-media-frame-border { display: none; }
}

/* ==========================================================================
   METHODOLOGY PILLARS
   ========================================================================== */

.method { background: var(--black-soft); position: relative; }
.method-intro { max-width: 66ch; }
.method-intro p { color: var(--bone-dim); font-size: 17px; line-height: 1.75; margin-top: 20px; }
.method-intro p strong { color: var(--bone); }

.method-carousel-wrap { margin-top: 64px; }

.method-carousel {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: var(--line);
  border: 1px solid var(--line);
}
.method-carousel::-webkit-scrollbar { display: none; }

.pillar {
  flex: none;
  width: clamp(240px, 27vw, 320px);
  scroll-snap-align: start;
  background: var(--black-soft);
  padding: 40px 32px;
  position: relative;
  transition: background .3s ease;
}
.pillar:hover { background: var(--black-soft-2); }
.pillar-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red-glow);
  letter-spacing: 0.1em;
}
.pillar h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 400;
  margin-top: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.pillar p { color: var(--bone-dim); font-size: 15px; line-height: 1.65; }

.method-carousel-wrap .carousel-nav { margin-top: 26px; }

@media (max-width: 760px) {
  .pillar { width: 78vw; }
}

/* ==========================================================================
   SIGNS / RADIATING DIAGRAM
   ========================================================================== */

.signs { background: var(--black); position: relative; overflow: hidden; }
.signs .section-head { text-align: center; align-items: center; margin-bottom: 24px; }
.signs .lede { max-width: 52ch; margin: 0 auto; text-align: center; }

.signs-diagram {
  margin-top: 72px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
}

.signs-col { display: flex; flex-direction: column; gap: 20px; }
.signs-col--right { align-items: flex-end; }

.sign-item {
  max-width: 300px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s ease, transform .6s ease;
}
.sign-item.is-visible { opacity: 1; transform: translateY(0); }
.signs-col--right .sign-item { flex-direction: row-reverse; text-align: right; }

.sign-dot {
  flex: none;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red-bright);
  margin-top: 7px;
  box-shadow: 0 0 0 4px rgba(200,30,44,0.15);
}
.sign-item p { font-size: 14.5px; color: var(--bone-dim); line-height: 1.5; }
.sign-item p strong { color: var(--bone); font-weight: 700; }

.signs-center {
  position: relative;
  width: clamp(220px, 24vw, 300px);
}
.signs-center-frame {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 14px rgba(20,18,16,0.5), 0 30px 80px -20px rgba(200,30,44,0.35);
}
.signs-center-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; filter: saturate(0.92) contrast(1.05); }
.signs-center-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent 45%, rgba(10,9,8,0.5) 100%);
}
.signs-center-ring {
  position: absolute;
  inset: -22px;
  border: 1px dashed rgba(200,30,44,0.35);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.signs-cta { text-align: center; margin-top: 56px; }

@media (max-width: 860px) {
  .signs-diagram { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .signs-col, .signs-col--right { align-items: center; }
  .sign-item, .signs-col--right .sign-item { flex-direction: row; text-align: left; max-width: 420px; }
  .signs-center { order: -1; margin-bottom: 12px; }
}

/* ==========================================================================
   SERVICES (Online / Presencial)
   ========================================================================== */

.service { position: relative; overflow: hidden; }
.service--online { background: var(--black-soft); }
.service--presencial { background: var(--black); }

.service .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.service--presencial .container { direction: rtl; }
.service--presencial .container > * { direction: ltr; }

.service-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-glow);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
  display: block;
}

.service-visual {
  position: relative;
  border-radius: 8px;
  aspect-ratio: 5/4;
  overflow: hidden;
  background: linear-gradient(150deg, var(--red-deep), var(--black-soft-2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-visual .service-icon { width: 92px; height: 92px; opacity: 0.9; }
.service-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(-45deg, rgba(243,237,228,0.035) 0 2px, transparent 2px 26px);
}
.service-tag {
  position: absolute;
  top: 22px; left: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  border: 1px solid rgba(243,237,228,0.35);
  padding: 8px 14px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(10,9,8,0.25);
}

.service-body h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.02;
  margin-bottom: 22px;
}
.service-body h3 em { font-style: normal; color: var(--red-bright); }
.service-body p { color: var(--bone-dim); font-size: 16px; line-height: 1.75; margin-bottom: 16px; max-width: 54ch; }
.service-body p strong { color: var(--bone); }
.service-body .btn { margin-top: 20px; }

.service-list { list-style: none; margin: 26px 0 8px; display: flex; flex-direction: column; gap: 12px; }
.service-list li { display: flex; gap: 12px; font-size: 15px; color: var(--bone-dim); align-items: flex-start; }
.service-list li svg { flex: none; width: 18px; height: 18px; margin-top: 2px; color: var(--red-bright); }

@media (max-width: 860px) {
  .service .container { grid-template-columns: 1fr; }
  .service--presencial .container { direction: ltr; }
  .service--presencial .container .service-visual { order: -1; }
}

/* ==========================================================================
   RESULTS / CAROUSELS
   ========================================================================== */

.results { background: var(--black-soft); }

.results-tabs {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-bottom: 44px;
}
.results-tab {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 999px;
  background: transparent;
  color: var(--bone-dim);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s, color .25s;
}
.results-tab.is-active {
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  color: var(--bone);
}

.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-panel { display: none; }
.carousel-panel.is-active { display: flex; }

.r-card {
  flex: none;
  width: min(320px, 78vw);
  scroll-snap-align: start;
  background: var(--black);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.r-card-img { aspect-ratio: 4/5; overflow: hidden; }
.r-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }
.r-card-body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.r-card-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-glow);
  margin-bottom: 10px;
}
.r-card-body h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 19px; line-height: 1.15; margin-bottom: 10px; letter-spacing: 0.005em; }
.r-card-body p { font-size: 14px; color: var(--bone-dim); line-height: 1.6; }
.r-card-result {
  margin-top: auto;
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone);
  letter-spacing: 0.02em;
}
.r-card-result strong { color: var(--red-glow); }

.carousel-nav { display: flex; gap: 10px; margin-top: 26px; }
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--bone);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.carousel-btn:hover { border-color: var(--red-bright); background: var(--black-soft-2); }
.carousel-btn svg { width: 18px; height: 18px; }

/* ==========================================================================
   STATS BAR
   ========================================================================== */

.stats {
  background: linear-gradient(120deg, var(--red-deep), #3d0a0e 55%, var(--black));
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(-8deg, rgba(243,237,228,0.03) 0 1px, transparent 1px 34px);
}
.stats .container {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px var(--pad);
}
.stat { text-align: left; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 58px);
  color: var(--bone);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.stat-num span { font-size: 0.5em; color: var(--red-glow); font-family: var(--font-mono); font-weight: 700; }
.stat-label {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(243,237,228,0.7);
}
@media (max-width: 760px) {
  .stats .container { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */

.final-cta {
  background: var(--black);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(143,18,25,0.35), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta .container { position: relative; display: flex; flex-direction: column; align-items: center; }
.final-cta .section-title { max-width: 16ch; margin: 26px 0 20px; }
.final-cta .lede { text-align: center; max-width: 50ch; margin: 0 auto 40px; }
.final-cta .btn--primary { padding: 24px 48px; font-size: 15px; }
.final-cta-note { margin-top: 22px; font-family: var(--font-mono); font-size: 12.5px; color: var(--bone-dim); display: flex; align-items: center; gap: 10px; }
.final-cta-note svg { width: 15px; height: 15px; color: var(--red-glow); }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer { background: var(--black-soft); border-top: 1px solid var(--line); padding: 52px 0 32px; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: var(--bone-dim); font-size: 14px; max-width: 34ch; }
.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: var(--bone); margin-bottom: 10px; transition: color .2s; }
.footer-col a:hover { color: var(--red-glow); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bone-dim-2);
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red-bright), var(--red-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -6px rgba(200,30,44,0.6);
  transition: transform .25s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; color: var(--bone); }

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   MOBILE NAV DRAWER
   ========================================================================== */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10,9,8,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 26px;
  padding: 0 40px;
  transform: translateX(100%);
  transition: transform .4s ease;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 32px;
  color: var(--bone);
}
.mobile-nav .btn { margin-top: 12px; }
.mobile-nav-close {
  position: absolute;
  top: 26px; right: var(--pad);
  background: none; border: none; color: var(--bone);
  cursor: pointer;
}
.mobile-nav-close svg { width: 28px; height: 28px; }
