:root {
  --ink: #0b0b0b;
  --muted: #66635f;
  --paper: #f1eee7;
  --paper-2: #e5e1d8;
  --red: #e02c25;
  --red-dark: #b91f1a;
  --wa: #25d366;
  --line: rgba(11, 11, 11, 0.17);
  --display: "Barlow Condensed", Impact, sans-serif;
  --body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--body); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 200; left: 20px; top: -60px; background: white; padding: 12px 18px; }
.skip-link:focus { top: 20px; }

.site-header { position: absolute; z-index: 50; top: 0; left: 0; width: 100%; height: 86px; display: flex; align-items: center; padding: 0 4vw; color: white; border-bottom: 1px solid rgba(255,255,255,.18); }
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { display: block; max-width: 100%; height: auto; }
.header-logo { width: 170px; }
.desktop-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 45px); margin-left: auto; margin-right: clamp(26px, 4vw, 64px); }
.desktop-nav a { position: relative; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px; background: var(--red); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { display: flex; align-items: center; gap: 30px; border: 1px solid rgba(255,255,255,.45); padding: 13px 16px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; transition: .2s; }
.header-cta:hover { background: white; color: black; }
.header-cta.whatsapp-cta { border-color: var(--wa); background: var(--wa); color: #07170c; }
.header-cta.whatsapp-cta:hover { border-color: #43e47a; background: #43e47a; }
.menu-toggle, .mobile-nav { display: none; }

.hero { position: relative; min-height: 780px; height: 100svh; color: white; overflow: hidden; background: #090909; }
.hero-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,5,5,.95) 0%, rgba(5,5,5,.62) 36%, rgba(5,5,5,.05) 74%), linear-gradient(0deg, rgba(0,0,0,.45), transparent 35%), url("assets/hero/hero-mma.webp") center/cover no-repeat; animation: heroIn 1.2s cubic-bezier(.2,.65,.25,1) both; }
.hero-grain { pointer-events: none; position: absolute; inset: 0; opacity: .14; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.36'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; height: 100%; padding-top: 75px; }
.eyebrow, .section-kicker { display: flex; align-items: center; gap: 12px; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 24px; height: 2px; background: var(--red); }
.hero h1, .section h2 { margin: 18px 0; font: 900 clamp(68px, 9.4vw, 132px)/.76 var(--display); letter-spacing: -.045em; text-transform: uppercase; }
.hero h1 em, .section h2 em { color: var(--red); font-style: italic; }
.hero p { max-width: 515px; margin: 14px 0 31px; color: rgba(255,255,255,.76); font-size: clamp(15px, 1.4vw, 18px); line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 40px; min-height: 53px; padding: 0 22px; border: 0; cursor: pointer; font-size: 11px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s, background .2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: white; }
.btn-primary:hover { background: #f13a31; }
.btn-whatsapp { background: var(--wa); color: #07170c; }
.btn-whatsapp:hover { background: #43e47a; }
.btn-dark { width: 100%; background: var(--ink); color: white; }
.btn-dark:hover { background: #2a2928; }
.text-link { display: inline-flex; gap: 25px; align-items: center; border-bottom: 1px solid currentColor; padding: 0 0 8px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.text-link.light { color: white; border-color: rgba(255,255,255,.42); }
.hero-footer { position: absolute; z-index: 2; bottom: 25px; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; color: rgba(255,255,255,.65); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.availability { display: flex; align-items: center; gap: 9px; }
.availability i { width: 7px; height: 7px; border-radius: 50%; background: #61d077; box-shadow: 0 0 0 4px rgba(97,208,119,.13); }
.scroll-note span { margin-left: 16px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); }
.stat { min-height: 165px; display: flex; flex-direction: column; justify-content: center; align-items: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat strong { font: 800 52px/1 var(--display); }
.stat sup { color: var(--red); font-size: 22px; }
.stat span { margin-top: 8px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.section { padding-block: 120px; }
.section-kicker { color: #64615d; margin-bottom: 45px; }
.section-kicker span { color: var(--red); }
.section-kicker.inverse { color: #8b8984; }
.manifesto-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 8vw; align-items: end; }
.manifesto h2 { font-size: clamp(65px, 7.5vw, 105px); margin: 0; }
.manifesto-copy { padding-bottom: 9px; }
.manifesto-copy p { color: var(--muted); line-height: 1.75; font-size: 14px; }
.manifesto-copy .lead { color: var(--ink); font: 600 23px/1.35 var(--display); text-transform: uppercase; }
.manifesto-copy .text-link { margin-top: 23px; }
.values-row { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 100px; border-top: 1px solid var(--line); }
.values-row article { position: relative; padding: 32px 7% 0 0; }
.values-row article + article { padding-left: 9%; border-left: 1px solid var(--line); }
.value-icon { display: grid; place-items: center; width: 34px; height: 34px; margin-bottom: 25px; border-radius: 50%; background: var(--ink); color: white; font: 700 11px var(--display); }
.values-row h3 { margin: 0 0 10px; font: 700 24px var(--display); text-transform: uppercase; }
.values-row p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.disciplines, .training { background: var(--ink); color: white; }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 55px; }
.section-heading h2 { font-size: clamp(64px, 7.4vw, 106px); margin: 0; }
.section-heading > p { width: 310px; margin: 0 0 5px; color: #999691; line-height: 1.7; font-size: 13px; }
.discipline-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 1px; background: #333; }
.discipline-card { position: relative; min-width: 0; height: 490px; overflow: hidden; background: #111; }
.discipline-card::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08) 20%, rgba(0,0,0,.18) 52%, rgba(0,0,0,.94) 100%); transition: background .35s; }
.card-no { position: absolute; z-index: 3; top: 20px; left: 20px; color: #6a6865; font: 600 11px var(--display); }
.discipline-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.65,.25,1), filter .35s; }
.card-content { position: absolute; z-index: 4; left: 24px; right: 24px; bottom: 25px; }
.card-content .tag { display: inline-block; margin-bottom: 12px; padding: 5px 7px; color: white; background: var(--red); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.card-content h3 { margin: 0; font: 800 42px/1 var(--display); letter-spacing: -.02em; }
.card-content p { min-height: 38px; margin: 9px 0 18px; color: #b5b2ad; font-size: 11px; line-height: 1.55; }
.card-content a, .component-label { display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid #3a3938; color: #bbb9b4; font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.discipline-card:hover .discipline-photo { transform: scale(1.035); filter: saturate(1.08); }
.discipline-card:hover::after { background: linear-gradient(180deg, rgba(0,0,0,.02) 20%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.9) 100%); }
.discipline-card:hover .card-content a, .discipline-card:hover .component-label { color: var(--red); }

.schedule-heading > p { color: var(--muted); }
.schedule-note { color: var(--muted); font-size: 11px; margin-top: 18px; }
.schedule-note strong { color: var(--red); text-transform: uppercase; }
.schedule-board { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.day-card { position: relative; min-width: 0; padding: 30px; border-right: 1px solid var(--line); }
.day-card:last-child { border-right: 0; }
.day-card-heading { display: flex; align-items: center; gap: 13px; min-height: 43px; padding-bottom: 20px; border-bottom: 2px solid var(--ink); }
.day-card-heading > span { display: grid; place-items: center; width: 28px; height: 28px; color: white; background: var(--ink); border-radius: 50%; font: 700 9px var(--display); }
.day-card-heading h3 { margin: 0; font: 800 29px/1 var(--display); }
.day-card-heading strong { margin-left: auto; padding: 6px 8px; color: white; background: var(--red); font-size: 8px; letter-spacing: .12em; }
.day-card ul { list-style: none; margin: 0; padding: 0; }
.day-card li { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 12px; min-height: 57px; border-bottom: 1px solid var(--line); font: 700 19px var(--display); }
.day-card li time:last-child { text-align: right; }
.day-card li span { color: #aaa6a0; font: 400 11px var(--body); }
.day-card > p { margin: 18px 0 0; color: var(--red); font: italic 800 20px var(--display); text-transform: uppercase; }
.sparring-day { color: white; background: var(--ink); }
.sparring-day .day-card-heading { border-color: #555; }
.sparring-day .day-card-heading > span { color: var(--ink); background: white; }
.sparring-day li { border-color: #343434; }
.schedule-bottom { display: flex; justify-content: space-between; align-items: flex-start; gap: 25px; margin-top: 18px; }
.schedule-bottom .schedule-note { margin: 0; }

.training { padding-top: 120px; }
.exercise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.exercise-card { overflow: hidden; background: #151515; }
.exercise-visual { position: relative; height: 275px; overflow: hidden; background: #111; }
.exercise-visual::after { content: ""; position: absolute; z-index: 2; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 55%, rgba(15,15,15,.72) 100%); }
.exercise-visual > span { position: absolute; z-index: 3; left: 18px; top: 13px; color: rgba(255,255,255,.6); font: 700 11px var(--display); }
.exercise-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.65,.25,1), filter .35s; }
.exercise-card:hover .exercise-visual img { transform: scale(1.035); filter: saturate(1.08); }
.visual-bag img { object-position: 54% center; }
.exercise-info { padding: 25px; border-top: 2px solid var(--red); }
.exercise-info > span { color: var(--red); font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.exercise-info h3 { margin: 7px 0; font: 800 31px var(--display); }
.exercise-info p { min-height: 55px; margin: 0; color: #999; font-size: 11px; line-height: 1.65; }
.exercise-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.exercise-tags span { padding: 6px 8px; border: 1px solid #383838; color: #aaa7a2; font-size: 8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.testimonial { position: relative; display: flex; justify-content: center; padding: 115px 24px; overflow: hidden; text-align: center; background: var(--paper-2); }
.quote-mark { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); color: rgba(224,44,37,.1); font: 900 250px/1 Georgia; }
.testimonial blockquote { position: relative; z-index: 2; max-width: 840px; margin: 0; }
.testimonial blockquote > p { margin: 0; font: italic 700 clamp(31px, 4vw, 53px)/1.15 var(--display); text-transform: uppercase; }
.testimonial footer { display: flex; justify-content: center; gap: 11px; margin-top: 30px; font-size: 9px; letter-spacing: .1em; text-transform: uppercase; }
.testimonial footer strong { color: var(--red); }
.testimonial footer span { color: var(--muted); }

.trial { position: relative; overflow: hidden; color: white; background: radial-gradient(circle at 18% 45%, #252525 0%, #101010 42%, #080808 78%); border-bottom: 1px solid #292929; }
.trial-angle { position: absolute; width: 42%; height: 160%; top: -20%; right: 0; background: rgba(224,44,37,.58); transform: skew(-13deg) translateX(25%); }
.trial-grid { position: relative; display: grid; grid-template-columns: 1fr 470px; gap: 10vw; align-items: center; }
.trial h2 { color: white; font-size: clamp(70px, 8vw, 112px); margin: 0; }
.trial h2 em { color: var(--ink); }
.trial h2.trial-title { margin-bottom: 15px; line-height: .82; }
.trial-wordmark { display: block; width: min(100%, 460px); height: auto; margin: 0 0 24px; filter: drop-shadow(0 8px 14px rgba(0,0,0,.28)); }
.trial-copy > p { max-width: 480px; line-height: 1.7; font-size: 14px; }
.trial-copy ul { list-style: none; padding: 0; margin: 25px 0 0; }
.trial-copy li { margin: 11px 0; font-size: 12px; }
.trial-copy li span { display: inline-grid; place-items: center; width: 19px; height: 19px; margin-right: 10px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 9px; }
.trial-form { padding: 35px; color: var(--ink); background: var(--paper); box-shadow: 15px 15px 0 rgba(0,0,0,.12); }
.form-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 24px; }
.form-heading span { font: 800 28px var(--display); text-transform: uppercase; }
.form-heading small { color: var(--muted); font-size: 9px; }
.trial-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 14px; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.trial-form input, .trial-form select { width: 100%; height: 47px; padding: 0 13px; border: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; font-size: 12px; }
.trial-form input:focus, .trial-form select:focus { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.trial-form .btn { width: 100%; margin-top: 5px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 9px; line-height: 1.55; text-align: center; }
.form-success { margin: 14px 0 0; color: #198337; text-align: center; font-size: 11px; font-weight: 700; }
.form-success a { text-decoration: underline; text-underline-offset: 3px; }

.site-footer { padding-top: 75px; color: white; background: #090909; }
.footer-main { display: grid; grid-template-columns: 2fr 1fr 1fr .65fr; gap: 60px; padding-bottom: 65px; }
.footer-brand { width: 225px; margin-bottom: 18px; }
.footer-main p { color: #858585; font-size: 11px; line-height: 1.7; }
.footer-main h3 { margin: 0 0 18px; color: #666; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-main a:not(.brand) { color: #b9b9b9; font-size: 10px; text-decoration: underline; text-underline-offset: 4px; }
.socials { display: flex; gap: 8px; }
.socials a { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid #333; text-decoration: none !important; }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 20px; border-top: 1px solid #242424; color: #5f5f5f; font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom div { display: flex; gap: 25px; }
.whatsapp-float { position: fixed; z-index: 80; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 18px; border-radius: 30px; background: var(--wa); color: #07170c; box-shadow: 0 8px 30px rgba(0,0,0,.32); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; transition: transform .2s, background .2s; }
.whatsapp-float:hover { transform: translateY(-3px); background: #43e47a; }
.whatsapp-float svg { width: 25px; height: 25px; fill: currentColor; }

@keyframes heroIn { from { transform: scale(1.05); opacity: .45; } to { transform: scale(1); opacity: 1; } }
@keyframes rowIn { from { opacity: 0; transform: translateY(5px); } }

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header { justify-content: space-between; height: 72px; }
  .menu-toggle { display: block; position: relative; z-index: 3; width: 42px; height: 42px; border: 0; background: transparent; }
  .menu-toggle span { position: absolute; right: 5px; width: 26px; height: 2px; background: white; transition: .25s; }
  .menu-toggle span:first-child { top: 15px; }
  .menu-toggle span:last-child { top: 24px; width: 18px; }
  .menu-toggle.open span:first-child { top: 20px; transform: rotate(45deg); }
  .menu-toggle.open span:last-child { top: 20px; width: 26px; transform: rotate(-45deg); }
  .header-logo { width: 150px; }
  .mobile-nav { display: flex; position: fixed; visibility: hidden; opacity: 0; inset: 0; padding: 110px 28px 35px; flex-direction: column; gap: 20px; background: #0b0b0b; transform: translateY(-12px); transition: .25s; }
  .mobile-nav.open { visibility: visible; opacity: 1; transform: none; }
  .mobile-nav > a:not(.btn) { font: 700 38px var(--display); text-transform: uppercase; }
  .mobile-nav .btn { margin-top: auto; }
  .manifesto-grid, .trial-grid { grid-template-columns: 1fr; }
  .manifesto-copy { max-width: 620px; }
  .discipline-card { height: 500px; }
  .exercise-visual { height: 240px; }
  .trial-grid { gap: 60px; }
  .trial-form { width: min(100%, 570px); }
}

@media (max-width: 650px) {
  .wrap { width: min(100% - 30px, 1180px); }
  .hero { min-height: 700px; }
  .hero-image { background-position: 60% center; }
  .hero h1 { font-size: clamp(62px, 22vw, 94px); }
  .hero p { width: 90%; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 25px; }
  .hero-footer { width: calc(100% - 30px); }
  .scroll-note { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 125px; border-bottom: 1px solid var(--line); }
  .stat:nth-child(2) { border-right: 0; }
  .stat strong { font-size: 42px; }
  .section { padding-block: 80px; }
  .section-kicker { margin-bottom: 30px; }
  .manifesto-grid { gap: 35px; }
  .manifesto h2, .section-heading h2 { font-size: clamp(58px, 18vw, 85px); }
  .values-row { grid-template-columns: 1fr; margin-top: 65px; }
  .values-row article, .values-row article + article { padding: 28px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .section-heading { display: block; }
  .section-heading > p { width: auto; margin-top: 24px; }
  .discipline-grid { grid-template-columns: 1fr; }
  .discipline-card { height: 465px; }
  .schedule-board { grid-template-columns: 1fr; }
  .day-card { border-right: 0; border-bottom: 1px solid var(--line); }
  .day-card:last-child { border-bottom: 0; }
  .schedule-bottom { align-items: flex-start; flex-direction: column; }
  .exercise-grid { grid-template-columns: 1fr; }
  .exercise-visual { height: 275px; }
  .testimonial { padding-block: 85px; }
  .trial-angle { display: none; }
  .trial h2 { font-size: clamp(65px, 20vw, 92px); }
  .trial-wordmark { width: min(100%, 390px); margin-bottom: 20px; }
  .trial-form { padding: 25px 20px; box-shadow: 8px 8px 0 rgba(0,0,0,.12); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-heading small { display: none; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 15px; }
  .whatsapp-float { right: 15px; bottom: 15px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
