/* ==========================================================================
   FN-Calisthenics Coaching — Global Stylesheet
   Dark, disciplined, monastic. Stone, ink, shadow. Built to feel alive.
   ========================================================================== */

:root {
  --bg: #0D0D0D;
  --bg-deep: #080808;
  --bg-raised: #131311;
  --bg-card: #18181500;
  --card: #16150F;
  --ink: #E8E4DC;
  --ink-muted: #A39E92;
  --ink-faint: #6A655B;
  --gold: #C9A84C;
  --gold-soft: #d9bb63;
  --gold-dim: #8a7434;
  --line: #262420;
  --line-soft: #1c1b17;
  --font-display: "Bebas Neue", "Inter", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1180px;
  --radius: 5px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; }

/* ---------- Typography ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.02;
  text-transform: uppercase;
}

h1 { font-size: clamp(3.2rem, 9vw, 6.5rem); }
h2 { font-size: clamp(2.3rem, 5.5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); letter-spacing: 0.05em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.18rem; color: var(--ink-muted); max-width: 44rem; }
.gold { color: var(--gold); }

/* ---------- Layout ---------- */

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 6rem 0; position: relative; }
.section-divider { border: none; border-top: 1px solid var(--line); max-width: var(--max); margin: 0 auto; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.muted { color: var(--ink-muted); }

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1rem 2.3rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--gold);
  color: #0D0D0D;
  font-size: 1.05rem;
  padding: 1.15rem 2.9rem;
  box-shadow: 0 10px 30px -12px rgba(201, 168, 76, 0.5);
}
.btn-primary:hover { background: var(--gold-soft); box-shadow: 0 16px 40px -12px rgba(201, 168, 76, 0.65); }
/* subtle shimmer */
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s var(--ease);
}
.btn-primary:hover::after { left: 130%; }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink-faint); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost { background: transparent; color: var(--ink-muted); text-decoration: underline; text-underline-offset: 5px; }
.btn-ghost:hover { color: var(--gold); }

.btn-block { display: block; width: 100%; }

/* ---------- Navigation ---------- */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.nav.scrolled { background: rgba(10, 10, 10, 0.94); border-bottom-color: var(--line); }

.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 1.5rem;
  height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 1.5rem; letter-spacing: 0.07em; color: var(--ink); white-space: nowrap;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a {
  color: var(--ink-muted); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.03em;
  transition: color 0.2s ease; position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a.nav-ig { color: var(--ink-faint); font-size: 0.85rem; }
.nav-links a.nav-ig:hover { color: var(--gold); }
.nav-links a.nav-cta {
  background: var(--gold); color: #0D0D0D; font-weight: 600; padding: 0.6rem 1.4rem;
  border-radius: var(--radius); text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.07em;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-links a.nav-cta:hover { background: var(--gold-soft); color: #0D0D0D; transform: translateY(-2px); }

.nav-toggle { display: none; background: none; border: none; color: var(--ink); font-size: 1.6rem; cursor: pointer; line-height: 1; }

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute; top: 74px; left: 0; right: 0;
    background: var(--bg-deep); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start; padding: 1.5rem; gap: 1.3rem;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Hero (home) ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.08) translateY(0); }
  to   { transform: scale(1.18) translateY(-2%); }
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.72) 45%, rgba(8,8,8,0.45) 100%),
    linear-gradient(0deg, var(--bg) 2%, transparent 35%);
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { margin-bottom: 0; }
.hero-sub { font-size: 1.15rem; color: var(--ink-muted); max-width: 36rem; margin: 1.6rem 0 2.6rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 1.7rem; left: 50%; transform: translateX(-50%); z-index: 2;
  color: var(--ink-faint); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero-scroll span { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Page hero (sub-pages) */
.page-hero {
  position: relative; padding: 8.5rem 0 4.5rem; overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.page-hero.with-img .hero-bg { animation: none; transform: scale(1.04); }
.page-hero.with-img .hero-bg::after {
  background: linear-gradient(90deg, rgba(8,8,8,0.94) 0%, rgba(8,8,8,0.7) 55%, rgba(8,8,8,0.55) 100%);
}
.page-hero .container { position: relative; z-index: 2; }

/* ---------- Marquee ticker ---------- */

.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-raised); overflow: hidden; padding: 1.1rem 0;
  white-space: nowrap; position: relative;
}
.marquee-track { display: inline-flex; gap: 0; will-change: transform; animation: scroll-x 32s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted); padding: 0 1.6rem; display: inline-flex; align-items: center; gap: 1.6rem;
}
.marquee-track .sep { color: var(--gold); }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats counters ---------- */

.stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display); font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--ink); line-height: 1; letter-spacing: 0.02em;
}
.stat .num .gold { color: var(--gold); }
.stat .label {
  font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); margin-top: 0.7rem;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; gap: 2.5rem 1rem; } }

/* ---------- Editorial media rows ---------- */

.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.media-row.reverse .media-text { order: 2; }
.media-row.reverse .media-img { order: 1; }
@media (max-width: 880px) {
  .media-row, .media-row.reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .media-row.reverse .media-text, .media-row.reverse .media-img { order: initial; }
}

.media-img {
  position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  aspect-ratio: 4/5; background: var(--bg-raised);
}
.media-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.media-img:hover img { transform: scale(1.05); }
.media-img .tag {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 2;
  background: rgba(8,8,8,0.7); backdrop-filter: blur(6px);
  border: 1px solid var(--line); color: var(--ink);
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 3px;
}

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
@media (max-width: 880px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

/* ---------- Quote / problem ---------- */

.quote-block {
  border-left: 2px solid var(--gold);
  padding: 0.4rem 0 0.4rem 2rem; margin: 2rem 0;
  font-size: 1.35rem; line-height: 1.7; color: var(--ink); max-width: 46rem; font-style: italic;
}
.quote-attribution {
  font-style: normal; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-top: 1rem;
}

/* ---------- Path cards ---------- */

.paths-grid { display: grid; gap: 1.6rem; margin-top: 3.5rem; }
.path-card {
  background: linear-gradient(180deg, var(--card), #100F0B);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.6rem 2.3rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.path-card:hover { border-color: var(--ink-faint); transform: translateY(-4px); }
.path-card .btn { margin-top: auto; align-self: flex-start; }
.path-card h3 .gold { color: var(--gold); }
.path-card p { color: var(--ink-muted); }

.path-card.featured {
  border: 1px solid var(--gold-dim);
  background: linear-gradient(180deg, rgba(201,168,76,0.08), transparent 45%), linear-gradient(180deg, var(--card), #100F0B);
  padding: 3.2rem 2.6rem; position: relative; box-shadow: 0 20px 60px -30px rgba(201,168,76,0.45);
}
.path-card.featured:hover { border-color: var(--gold); }
.badge {
  position: absolute; top: -0.85rem; left: 2.6rem;
  background: var(--gold); color: #0D0D0D; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 0.32rem 0.95rem; border-radius: 3px;
}
.paths-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; }
@media (max-width: 760px) { .paths-secondary { grid-template-columns: 1fr; } }

/* ---------- Check lists ---------- */

.check-list { list-style: none; display: grid; gap: 1rem; }
.check-list li { padding-left: 2rem; position: relative; color: var(--ink-muted); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 0.62em;
  width: 11px; height: 11px; border: 1.5px solid var(--gold); border-top: 0; border-right: 0;
  transform: rotate(-45deg); transform-origin: center;
}
.check-list li strong { color: var(--ink); font-weight: 600; }

/* ---------- Gallery (physique / skills) ---------- */

.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 3rem;
}
.gallery a {
  position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius);
  border: 1px solid var(--line); display: block;
}
.gallery a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), filter 0.5s ease; filter: grayscale(0.15) contrast(1.02); }
.gallery a:hover img { transform: scale(1.07); filter: grayscale(0) contrast(1.05); }
.gallery a::after {
  content: attr(data-label); position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.9rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: linear-gradient(0deg, rgba(8,8,8,0.85), transparent);
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery a:hover::after { opacity: 1; transform: translateY(0); }
@media (max-width: 760px) { .gallery { grid-template-columns: 1fr 1fr; gap: 0.6rem; } }

/* ---------- Full-bleed parallax band ---------- */

.band {
  position: relative; padding: 9rem 0; overflow: hidden; text-align: center;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.band-bg { position: absolute; inset: -12% 0; z-index: 0; background-size: cover; background-position: center; will-change: transform; }
.band-bg::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,8,0.78); }
.band .container { position: relative; z-index: 2; }
.band .quote { font-style: italic; color: var(--ink); font-size: clamp(1.3rem, 3vw, 2rem); max-width: 40rem; margin: 0 auto; line-height: 1.5; }
.band .quote-attribution { color: var(--gold); margin-top: 1.4rem; }

/* ---------- Testimonials ---------- */

.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card {
  background: linear-gradient(180deg, var(--card), #100F0B);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem; display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-card:hover { border-color: var(--ink-faint); transform: translateY(-4px); }
.testimonial-card .stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.85rem; }
.testimonial-card blockquote { color: var(--ink-muted); font-style: italic; flex: 1; }
.testimonial-card .t-name { font-weight: 600; color: var(--ink); }
.testimonial-card .t-result { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.2rem; }

/* ---------- Instagram grid ---------- */

.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin: 3rem 0 2rem; }
.ig-grid a {
  position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--line); display: block;
}
.ig-grid a img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.ig-grid a:hover img { transform: scale(1.08); }
.ig-grid a.ig-empty {
  display: flex; align-items: center; justify-content: center; background: var(--bg-raised);
  color: var(--ink-faint); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 760px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Video embed ---------- */

.video-wrap {
  position: relative; aspect-ratio: 16/9; background: var(--bg-raised);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 2.5rem 0;
}
.video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.7rem; color: var(--ink-faint); font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.video-placeholder .play-icon { width: 66px; height: 66px; border: 1px solid var(--ink-faint); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--gold); }

/* ---------- Embeds / forms ---------- */

.embed-frame { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 0.6rem; margin: 2rem 0; }
.embed-frame iframe { width: 100%; border: 0; min-height: 560px; border-radius: 3px; display: block; }
.embed-placeholder { min-height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; text-align: center; color: var(--ink-faint); padding: 2rem; }

/* ---------- Steps ---------- */

.steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-top: 3rem; }
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card {
  background: linear-gradient(180deg, var(--card), #100F0B);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 2.6rem 2.3rem;
  transition: border-color 0.3s var(--ease);
}
.step-card:hover { border-color: var(--ink-faint); }
.step-num { font-family: var(--font-display); font-size: 1rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.8rem; }

/* ---------- Pricing ---------- */

.price-box {
  background: linear-gradient(180deg, rgba(201,168,76,0.07), transparent 40%), linear-gradient(180deg, var(--card), #100F0B);
  border: 1px solid var(--gold-dim); border-radius: var(--radius);
  padding: 3.2rem 2.6rem; text-align: center; max-width: 500px; margin: 3rem auto 1.5rem;
  box-shadow: 0 24px 70px -38px rgba(201,168,76,0.5);
}
.price-box .price { font-family: var(--font-display); font-size: 4rem; color: var(--ink); line-height: 1; }
.price-box .price-note { color: var(--ink-muted); font-size: 0.95rem; margin: 0.9rem auto 1.4rem; max-width: 26rem; }
.price-box .price-frame { color: var(--gold); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.8rem; }

/* ---------- Scarcity ---------- */

.scarcity { text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 2.8rem 1.5rem; max-width: var(--max); margin: 0 auto; }
.scarcity p { font-size: 1.1rem; color: var(--ink-muted); font-style: italic; max-width: 38rem; margin: 0 auto; }
.scarcity strong { color: var(--gold); font-style: normal; }

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; padding: 7.5rem 0; background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(201,168,76,0.06), transparent), var(--bg); }
.final-cta .hero-ctas { justify-content: center; margin-top: 2.6rem; }
.final-cta .quote { font-style: italic; color: var(--ink-muted); font-size: 1.15rem; max-width: 38rem; margin: 2.6rem auto 0; }

/* ---------- Footer ---------- */

footer { border-top: 1px solid var(--line); padding: 4.5rem 0 2.5rem; background: var(--bg-deep); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.07em; color: var(--ink); margin-bottom: 0.9rem; }
.footer-logo img { height: 40px; }
.footer-logo span { color: var(--gold); }
footer p { color: var(--ink-faint); font-size: 0.9rem; }
.footer-heading { font-size: 0.74rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
.footer-links { list-style: none; display: grid; gap: 0.6rem; }
.footer-links a { color: var(--ink-muted); font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 2rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.8rem; color: var(--ink-faint); }
.footer-bottom a { color: var(--ink-faint); } .footer-bottom a:hover { color: var(--gold); }

/* ---------- Sticky mobile CTA ---------- */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; padding: 0.7rem 1rem; gap: 0.7rem;
  background: rgba(8,8,8,0.95); backdrop-filter: blur(10px); border-top: 1px solid var(--line);
  transform: translateY(100%); transition: transform 0.4s var(--ease);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 0.85rem 1rem; font-size: 0.9rem; }
@media (max-width: 720px) { .sticky-cta { display: flex; } body { padding-bottom: 4.5rem; } }

/* ---------- Testimonials: screenshots (masonry) + videos ---------- */

.proof-masonry { columns: 3 280px; column-gap: 1rem; margin-top: 3rem; }
.proof-masonry figure {
  break-inside: avoid; margin: 0 0 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-raised);
  transition: border-color 0.3s var(--ease);
}
.proof-masonry figure:hover { border-color: var(--gold-dim); }
.proof-masonry img { width: 100%; display: block; }
@media (max-width: 620px) { .proof-masonry { columns: 2 150px; column-gap: 0.6rem; } }

.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.video-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 720px; margin-left: auto; margin-right: auto; }
@media (max-width: 560px) { .video-grid.two { grid-template-columns: 1fr; } }

.video-card { display: flex; flex-direction: column; gap: 0.8rem; }
.video-card .frame {
  position: relative; aspect-ratio: 9 / 16; background: #000;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.video-card:hover .frame { border-color: var(--gold-dim); }
.video-card .frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vplay {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0; cursor: pointer; padding: 0;
  background-color: #000; background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
}
.vplay::before { content: ""; position: absolute; inset: 0; background: rgba(8,8,8,0.3); transition: background 0.3s var(--ease); }
.vplay:hover::before { background: rgba(8,8,8,0.12); }
.vplay span {
  position: relative; z-index: 1; width: 62px; height: 62px; border-radius: 50%;
  background: rgba(13,13,13,0.55); border: 1px solid var(--gold); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; padding-left: 4px;
  backdrop-filter: blur(4px); transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.vplay:hover span { transform: scale(1.1); background: var(--gold); color: #0D0D0D; }
.video-card .cap { text-align: center; font-size: 0.8rem; color: var(--ink-faint); letter-spacing: 0.04em; }
.video-card .cap strong { display: block; color: var(--ink); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem; }

/* ---------- Scroll reveal ---------- */

html.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
  .hero-scroll span { animation: none; }
}
