/* ============================================================
   RON MONTEIRO — BRAND DESIGN SYSTEM
   Colors: #facc15 (yellow) · #000000 (black) · #ffffff (white)
   Fonts: Montserrat (headings) · Inter (body)
   Tone: Professional · Inspiring · Action-oriented · Authentic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Dancing+Script:wght@600;700&family=Montserrat:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@400;700;800;900&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=recoleta@400,500,700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --yellow:       #facc15;
  --yellow-dark:  #d4a800;
  --yellow-glow:  rgba(250,204,21,0.18);
  --black:        #000000;
  --off-black:    #0a0a0a;
  --gray-900:     #111111;
  --gray-800:     #1a1a1a;
  --gray-100:     #f4f4f4;
  --white:        #ffffff;
  --muted:        #777777;
  --trans:        all 0.32s cubic-bezier(0.4,0,0.2,1);
  --radius:       2px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── LAYOUT ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6.5rem 0; }

/* ── TYPOGRAPHY UTILITIES ───────────────────────────────── */
.label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 1rem; display: block;
}
.section-title { font-size: clamp(2rem, 5vw, 3.25rem); margin-bottom: 1.25rem; }
.section-sub   { font-size: 1.0625rem; color: var(--muted); line-height: 1.75; max-width: 580px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2.25rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.8125rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  transition: var(--trans); border-radius: var(--radius);
}
.btn-yellow  { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 10px 32px var(--yellow-glow); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: var(--white); color: var(--black); transform: translateY(-2px); }
.btn-black   { background: var(--black); color: var(--yellow); }
.btn-black:hover { background: var(--gray-900); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(0,0,0,0.4); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--yellow); transform: translateY(-2px); }

/* ── ANIMATIONS ─────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }

/* ══════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 1.5rem 0;
  transition: var(--trans);
}
.nav.scrolled {
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(250,204,21,0.12);
  padding: 1rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.2rem; letter-spacing: 0.01em; }
.nav-logo span { color: var(--yellow); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif; font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.09em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: var(--yellow); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--yellow); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--trans); border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 8999;
  background: rgba(0,0,0,0.97); flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  font-family: 'Montserrat', sans-serif; font-size: 2rem;
  font-weight: 800; color: var(--white); transition: color 0.2s;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.nav-mobile-overlay a:hover { color: var(--yellow); }

/* ══════════════════════════════════════════════════════════
   HERO — HOMEPAGE  (Ron Tite–style layout)
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('Gemini_Generated_Image_q2k3orq2k3orq2k3.png');
  background-size: cover;
  background-position: 88% center;
  transform: scale(1.04);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  /* Dark behind left-side text, fully transparent on right so Ron is crystal clear */
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.94) 0%,
    rgba(0,0,0,0.88) 34%,
    rgba(0,0,0,0.30) 54%,
    rgba(0,0,0,0.00) 100%
  );
}
/* Content block — not inside .container, directly against viewport left edge */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 3rem 3.5rem 7vw; /* 90px clears fixed nav; 7vw from viewport edge */
  max-width: calc(7vw + 560px);   /* left padding + text width = never past ~55vw */
}
/* ── Hero headline ────────────────────────────────────────── */
.hero-title {
  font-family: 'Abril Fatface', serif;
  font-size: clamp(2.2rem, 4.8vw, 4.8rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.75rem;
}
/* Small words: "What if" / "didn't feel like" */
.hl-lead {
  display: block;
  font-size: 0.32em;
  color: rgba(255,255,255,0.82);
  line-height: 1.3;
}
/* Big words */
.hl-big {
  display: block;
  line-height: 1.05;
  color: var(--white);
  position: relative;
  z-index: 1;
}
/* Tight rectangle highlight — exactly the text width, no more */
.hl-bar {
  color: var(--black);
  background: var(--yellow);
  width: fit-content;
  padding-top: 0;
  padding-bottom: 0.12em;
}
/* ── Subtitle ────────────────────────────────────────────── */
.hero-sub {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
/* Speaker / Trainer / Author highlights */
.h-role {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--black);
  background: var(--yellow);
  padding: 0.12em 0.4em;
  display: inline-block;
  line-height: 1;
}
/* Joy / Purpose — Dancing Script cursive */
.h-script {
  font-family: 'Dancing Script', cursive;
  font-weight: 700;
  font-size: 1.45em;
  color: var(--yellow);
  display: inline-block;
  line-height: 1;
  transform: translateY(0.12em);
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: nowrap; align-items: center; }
.hero-actions .btn { white-space: nowrap; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem; font-weight: 900;
  color: var(--yellow); line-height: 1;
}
.stat-label {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.3rem;
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 7vw; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); animation: scrollBounce 2s infinite;
}
.hero-scroll-hint::after {
  content: ''; display: block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.28), transparent);
}
@keyframes scrollBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ══════════════════════════════════════════════════════════
   LOGO STRIP
   ══════════════════════════════════════════════════════════ */
.logo-strip {
  background: var(--gray-100);
  padding: 3.5rem 0;
  border-top: 1px solid #e5e5e5; border-bottom: 1px solid #e5e5e5;
}
.logo-strip-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: #aaa; margin-bottom: 2.25rem;
}
.logo-track-outer {
  overflow: hidden; position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}
.logo-track {
  display: flex; align-items: center; gap: 5rem;
  animation: logoScroll 55s linear infinite;
  width: max-content;
}
.logo-track:hover { animation-play-state: paused; }
.logo-item { flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.logo-item img {
  height: 52px; width: auto; max-width: 180px; object-fit: contain;
  filter: grayscale(100%) opacity(0.45);
  transition: filter 0.4s ease, transform 0.3s ease;
}
.logo-item:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.08); }
.logo-item--multiply { mix-blend-mode: multiply; }
@keyframes logoScroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════
   VIDEO REEL
   ══════════════════════════════════════════════════════════ */
.video-section { background: var(--off-black); padding: 6rem 0; }
.video-section .container { text-align: center; }
.video-section .section-sub { margin: 0 auto; }
.video-wrap {
  position: relative; margin-top: 3rem;
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  border: 1px solid rgba(250,204,21,0.12);
  background: #000;
  aspect-ratio: 16/9;
}
.video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 84px; height: 84px;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  box-shadow: 0 0 0 0 rgba(250,204,21,0.5);
  animation: videoPulse 2.2s infinite;
  z-index: 5;
}
.video-play-btn:hover { transform: translate(-50%,-50%) scale(1.12); animation: none; box-shadow: 0 0 0 18px rgba(250,204,21,0); }
.video-play-btn svg { width: 30px; height: 30px; fill: var(--black); margin-left: 5px; }
.video-play-btn.hidden { display: none; }
.video-unmute-btn {
  position: absolute; top: 1rem; right: 1rem; z-index: 6;
  display: none; align-items: center; gap: 0.45rem;
  background: rgba(0,0,0,0.72); color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 2rem;
  padding: 0.45rem 0.9rem 0.45rem 0.6rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 600; letter-spacing: 0.06em; cursor: pointer;
  backdrop-filter: blur(6px); transition: background 0.2s, transform 0.2s;
}
.video-unmute-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.video-unmute-btn:hover { background: rgba(0,0,0,0.9); transform: scale(1.04); }
.video-unmute-btn.visible { display: flex; }

/* ── Custom video controls ─────────────────────────────── */
.video-controls {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 4;
  padding: 2.5rem 1.25rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  opacity: 0; transition: opacity 0.28s ease;
}
.video-wrap:hover .video-controls { opacity: 1; }
/* Seek / timeline */
.vc-seek {
  display: block; width: 100%; margin-bottom: 0.7rem;
  -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px; cursor: pointer; outline: none;
  background: rgba(255,255,255,0.22);
}
.vc-seek::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: var(--yellow); cursor: pointer;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
}
.vc-seek::-moz-range-thumb {
  width: 14px; height: 14px; border: none;
  border-radius: 50%; background: var(--yellow); cursor: pointer;
}
/* Bottom bar */
.vc-bar { display: flex; align-items: center; justify-content: space-between; }
.vc-left, .vc-right { display: flex; align-items: center; gap: 0.6rem; }
.vc-btn {
  background: none; border: none; color: var(--white);
  cursor: pointer; padding: 0.2rem; display: flex; align-items: center;
  opacity: 0.85; transition: opacity 0.2s;
}
.vc-btn:hover { opacity: 1; }
.vc-btn svg { width: 20px; height: 20px; }
.vc-time {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem;
  color: rgba(255,255,255,0.75); letter-spacing: 0.04em; white-space: nowrap;
}
/* Volume slider */
.vc-volume {
  width: 72px; -webkit-appearance: none; appearance: none;
  height: 4px; border-radius: 2px; cursor: pointer; outline: none;
  background: rgba(255,255,255,0.22);
}
.vc-volume::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  border-radius: 50%; background: var(--white); cursor: pointer;
}
.vc-volume::-moz-range-thumb {
  width: 12px; height: 12px; border: none;
  border-radius: 50%; background: var(--white); cursor: pointer;
}
/* Icon toggling handled by JS */
.vc-play .icon-pause,
.vc-mute .icon-mute { display: none; }

@keyframes videoPulse {
  0%   { box-shadow: 0 0 0 0 rgba(250,204,21,0.5); }
  70%  { box-shadow: 0 0 0 22px rgba(250,204,21,0); }
  100% { box-shadow: 0 0 0 0 rgba(250,204,21,0); }
}

/* ══════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════ */
.about-section { background: var(--white); padding: 7rem 0; color: var(--black); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 6rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap::before {
  content: ''; position: absolute; top: -18px; left: -18px; right: 18px; bottom: 18px;
  background: var(--yellow); z-index: 0;
}
.about-img-wrap img {
  position: relative; z-index: 1;
  width: 100%; height: 580px; object-fit: cover; object-position: center top;
}
.about-content .label { color: rgba(0,0,0,0.4); }
.about-content .section-title { color: var(--black); }
.about-content p { color: #4a4a4a; font-size: 1.05rem; line-height: 1.82; margin-bottom: 1.4rem; }
.about-values {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 2rem 0 2.5rem;
}
.value-tag {
  padding: 0.45rem 1.15rem;
  border: 2px solid rgba(0,0,0,0.18);
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(0,0,0,0.65); transition: var(--trans); border-radius: var(--radius);
}
.value-tag:hover { background: var(--black); color: var(--yellow); border-color: var(--black); }

/* ══════════════════════════════════════════════════════════
   THREE PILLARS
   ══════════════════════════════════════════════════════════ */
.pillars-section { background: var(--black); padding: 7rem 0; }
.pillars-header { text-align: center; margin-bottom: 4.5rem; }
.pillars-header .section-sub { margin: 0 auto; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
.pillar-card {
  background: var(--gray-800); padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.35s, transform 0.35s;
}
.pillar-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:hover { background: #242424; transform: translateY(-6px); }
.pillar-big-num {
  font-family: 'Montserrat', sans-serif; font-size: 5rem; font-weight: 900;
  color: rgba(250,204,21,0.07); line-height: 1; margin-bottom: 1.5rem;
  transition: color 0.35s;
}
.pillar-card:hover .pillar-big-num { color: rgba(250,204,21,0.13); }
.pillar-icon {
  width: 54px; height: 54px; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.75rem;
}
.pillar-icon svg { width: 26px; height: 26px; fill: var(--black); }
.pillar-title { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.pillar-desc { color: var(--muted); font-size: 0.9375rem; line-height: 1.72; margin-bottom: 2rem; }
.pillar-link {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow);
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.3s;
}
.pillar-link:hover { gap: 0.85rem; }

/* ══════════════════════════════════════════════════════════
   TV PRESENCE / MEDIA
   ══════════════════════════════════════════════════════════ */
.tv-section { background: var(--gray-900); padding: 7rem 0; }
.tv-header { margin-bottom: 3.5rem; }
.media-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.media-card {
  background: var(--gray-800); border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden; transition: var(--trans);
}
.media-card:hover { border-color: rgba(250,204,21,0.3); transform: translateY(-5px); box-shadow: 0 20px 55px rgba(0,0,0,0.5); }
.media-thumb { position: relative; overflow: hidden; }
.media-thumb .embed-ratio {
  position: relative; padding-bottom: 56.25%; background: #000;
}
.media-thumb .embed-ratio iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.media-thumb-img { position: relative; height: 200px; overflow: hidden; }
.media-thumb-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.media-card:hover .media-thumb-img img { transform: scale(1.06); }
.media-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.media-card:hover .media-overlay { opacity: 1; }
.play-circle {
  width: 58px; height: 58px; background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.play-circle svg { width: 22px; height: 22px; fill: var(--black); margin-left: 4px; }
.media-body { padding: 1.5rem; }
.media-source {
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--yellow); margin-bottom: 0.5rem;
}
.media-title { font-size: 0.9875rem; font-weight: 700; font-family: 'Montserrat', sans-serif; margin-bottom: 0.5rem; line-height: 1.35; color: var(--white); }
.media-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.media-link {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem;
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--yellow);
  transition: gap 0.25s;
}
.media-link:hover { gap: 0.65rem; }
.media-link-btn { background: none; border: none; padding: 0; cursor: pointer; text-decoration: none; }
.media-thumb-play { cursor: pointer; }

/* ══════════════════════════════════════════════════════════
   VIDEO LIGHTBOX
   ══════════════════════════════════════════════════════════ */
.video-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.video-lightbox.is-open { opacity: 1; pointer-events: all; }
.vl-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,0.88);
  cursor: pointer;
}
.vl-content {
  position: relative; width: min(90vw, 1100px);
  transform: scale(0.95); transition: transform 0.3s ease;
}
.video-lightbox.is-open .vl-content { transform: scale(1); }
.vl-iframe-wrap { position: relative; width: 100%; padding-top: 56.25%; border-radius: 4px; overflow: hidden; }
.vl-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; display: block; }
.vl-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none; cursor: pointer;
  color: #fff; opacity: 0.8; transition: opacity 0.2s;
  display: flex; align-items: center;
}
.vl-close:hover { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   BOOK SECTION
   ══════════════════════════════════════════════════════════ */
.book-section { background: var(--yellow); padding: 7rem 0; color: var(--black); }
.book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: center; }
.book-cover-wrap { position: relative; display: flex; justify-content: center; }
.book-cover-wrap img {
  max-width: 300px; width: 100%;
  box-shadow: 28px 28px 70px rgba(0,0,0,0.28);
  transform: rotate(-3deg);
  transition: transform 0.45s ease;
}
.book-cover-wrap:hover img { transform: rotate(0deg) scale(1.03); }
.book-content .label { color: rgba(0,0,0,0.4); }
.book-content h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--black); margin-bottom: 1.5rem; }
.book-content p { font-size: 1.05rem; color: rgba(0,0,0,0.7); line-height: 1.8; margin-bottom: 1.4rem; }
.book-meta { display: flex; gap: 2.5rem; margin: 2rem 0; }
.book-meta-item { display: flex; flex-direction: column; }
.book-meta-key {
  font-family: 'Montserrat', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: rgba(0,0,0,0.45);
}
.book-meta-val { font-size: 0.9rem; font-weight: 600; color: var(--black); margin-top: 0.2rem; }
.book-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ══════════════════════════════════════════════════════════
   PODCAST
   ══════════════════════════════════════════════════════════ */
.podcast-section { background: var(--gray-900); padding: 7rem 0; }
.podcast-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.podcast-img-wrap { position: relative; }
.podcast-img-wrap img { width: 100%; aspect-ratio: 1; object-fit: cover; border: 3px solid var(--yellow); }
.podcast-badge {
  position: absolute; bottom: -1.25rem; right: -1.25rem;
  width: 95px; height: 95px; background: var(--yellow); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  color: var(--black); font-size: 0.62rem; text-transform: uppercase;
  letter-spacing: 0.04em; text-align: center; line-height: 1.3;
  padding: 0.5rem;
}
.podcast-badge strong { font-size: 1.3rem; line-height: 1; display: block; }
.podcast-content p { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.podcast-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--white); padding: 7rem 0; color: var(--black); }
.testimonials-header { text-align: center; margin-bottom: 4rem; }
.testimonials-header .section-title { color: var(--black); }
.testimonials-header .section-sub { margin: 0 auto; color: #666; }
.testimonials-carousel-wrap { position: relative; display: flex; align-items: center; gap: 0.75rem; }
.testimonials-track {
  display: flex; gap: 2rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  flex: 1;
  /* hide scrollbar */
  scrollbar-width: none; -ms-overflow-style: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track .testimonial-card {
  flex: 0 0 calc(33.333% - 1.35rem); min-width: 0;
  scroll-snap-align: start;
}
.t-arrow {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 2px solid var(--yellow); background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); color: var(--black);
}
.t-arrow:hover { background: var(--yellow); }
.t-arrow svg { width: 18px; height: 18px; }
.testimonial-card {
  background: var(--gray-100); padding: 2.5rem;
  border-left: 4px solid var(--yellow); transition: var(--trans);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
.t-quote-mark {
  font-size: 3.5rem; color: var(--yellow); font-family: Georgia, serif;
  line-height: 1; margin-bottom: 1rem;
}
.t-text { font-size: 0.9375rem; line-height: 1.78; color: #444; font-style: italic; margin-bottom: 2rem; }
.t-author { display: flex; align-items: center; gap: 1rem; }
.t-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem;
  color: var(--black); flex-shrink: 0;
}
.t-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--black); }
.t-role { font-size: 0.8rem; color: #888; margin-top: 0.15rem; }

/* ══════════════════════════════════════════════════════════
   CTA BANNER
   ══════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--black); padding: 8rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(250,204,21,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section .section-title { max-width: 720px; margin: 0 auto 1.25rem; font-size: clamp(2rem, 5vw, 3.75rem); }
.cta-section .section-sub { margin: 0 auto 3rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: #050505; padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand h3 { font-size: 1.4rem; margin-bottom: 1rem; }
.footer-brand h3 span { color: var(--yellow); }
.footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 0.875rem; margin-top: 1.5rem; }
.footer-social-link {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: var(--muted); transition: var(--trans);
  border-radius: var(--radius);
}
.footer-social-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.footer-col h4 {
  font-family: 'Montserrat', sans-serif; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--white); margin-bottom: 1.5rem;
}
.footer-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-nav-list a { font-size: 0.875rem; color: var(--muted); transition: color 0.25s; }
.footer-nav-list a:hover { color: var(--yellow); }
.footer-contact-row { font-size: 0.875rem; color: var(--muted); margin-bottom: 0.75rem; display: flex; gap: 0.75rem; }
.footer-contact-row strong { color: var(--yellow); flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.25);
}
.footer-bottom a { color: var(--yellow); transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.75; }

/* ══════════════════════════════════════════════════════════
   SPEAKING PAGE — HERO
   ══════════════════════════════════════════════════════════ */
.spk-hero {
  position: relative; min-height: 72vh; display: flex; align-items: center;
  overflow: hidden;
}
.spk-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 30% center;
}
.spk-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
}
.spk-hero-content {
  position: relative; z-index: 2;
  padding: 90px 3rem 3.5rem 7vw;
  max-width: calc(7vw + 580px);
}
.spk-hero-content .section-title { font-size: clamp(2.2rem, 6vw, 4.2rem); color: var(--white); }

/* ══════════════════════════════════════════════════════════
   SPEAKING — SIGNATURE TALKS
   ══════════════════════════════════════════════════════════ */
.talks-section { background: var(--white); padding: 7rem 0; color: var(--black); }
.talks-header { margin-bottom: 3.5rem; }
.talks-list { display: flex; flex-direction: column; gap: 3px; }
.talk-item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 2rem;
  align-items: center; padding: 2.25rem 2.5rem;
  background: var(--gray-100); transition: var(--trans);
  border-left: 4px solid transparent;
}
.talk-item:hover { background: var(--black); color: var(--white); border-left-color: var(--yellow); }
.talk-num {
  font-family: 'Montserrat', sans-serif; font-size: 2.75rem; font-weight: 900;
  color: var(--yellow); line-height: 1;
}
.talk-title { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.4rem; transition: color 0.25s; }
.talk-desc { font-size: 0.9rem; color: #666; line-height: 1.6; transition: color 0.25s; }
.talk-item:hover .talk-desc { color: rgba(255,255,255,0.65); }
.talk-tag {
  padding: 0.4rem 1.1rem; flex-shrink: 0;
  background: rgba(250,204,21,0.14); color: #a07800;
  font-family: 'Montserrat', sans-serif; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; transition: var(--trans);
  border-radius: var(--radius);
}
.talk-item:hover .talk-tag { background: var(--yellow); color: var(--black); }

/* ══════════════════════════════════════════════════════════
   SPEAKING — WHY RON
   ══════════════════════════════════════════════════════════ */
.why-section { background: var(--black); padding: 7rem 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.why-img { position: relative; }
.why-img img { width: 100%; height: 520px; object-fit: cover; object-position: top; }
.why-img-badge {
  position: absolute; bottom: 2rem; left: 2rem;
  background: var(--yellow); color: var(--black); padding: 1.5rem;
  max-width: 200px;
}
.why-img-badge strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 900; line-height: 1; }
.why-img-badge span { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.25rem; display: block; }
.why-features { display: flex; flex-direction: column; gap: 2rem; }
.why-feat { display: flex; gap: 1.5rem; }
.why-feat-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: rgba(250,204,21,0.08); border: 1px solid rgba(250,204,21,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.why-feat-text h4 { font-size: 1rem; color: var(--white); margin-bottom: 0.35rem; }
.why-feat-text p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   SPEAKING — FORMATS
   ══════════════════════════════════════════════════════════ */
.formats-section { background: var(--off-black); padding: 6rem 0; }
.formats-header { text-align: center; margin-bottom: 3.5rem; }
.formats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.format-card {
  background: var(--gray-800); padding: 2.75rem 2rem; text-align: center;
  border: 1px solid rgba(255,255,255,0.05); transition: var(--trans);
}
.format-card:hover { border-color: var(--yellow); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.format-icon { font-size: 2.5rem; margin-bottom: 1.5rem; }
.format-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 0.875rem; }
.format-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════════
   SPEAKING — PAST CLIENTS (reuse logo strip styles)
   ══════════════════════════════════════════════════════════ */
.clients-section { background: var(--gray-100); padding: 5rem 0; }
.clients-section .section-title { color: var(--black); }
.clients-section .label { color: rgba(0,0,0,0.4); }

/* ══════════════════════════════════════════════════════════
   SPEAKING — CTA
   ══════════════════════════════════════════════════════════ */
.spk-cta { background: var(--yellow); padding: 7rem 0; color: var(--black); text-align: center; }
.spk-cta h2 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--black); max-width: 680px; margin: 0 auto 1.25rem; }
.spk-cta p { font-size: 1.1rem; color: rgba(0,0,0,0.65); max-width: 500px; margin: 0 auto 2.75rem; line-height: 1.7; }
.spk-cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid, .book-grid, .podcast-grid, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pillars-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-track .testimonial-card { flex: 0 0 calc(50% - 1rem); }
  .media-grid, .formats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-img-wrap img { height: 400px; }
  .why-img img { height: 380px; }
}
@media (max-width: 768px) {
  .hero-content { padding: 90px 1.5rem 3rem 6vw; max-width: 100%; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 5rem); }
  .h-small { line-height: 2; }
  .hero-overlay { background: rgba(0,0,0,0.78); }
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; }
  .section { padding: 4.5rem 0; }
  .hero-stats { flex-wrap: wrap; gap: 2rem; }
  .pillars-grid, .media-grid, .formats-grid { grid-template-columns: 1fr; }
  .testimonials-track .testimonial-card { flex: 0 0 calc(100% - 0rem); }
  .t-arrow { display: none; }
  .talks-section .talk-item { grid-template-columns: 50px 1fr; }
  .talk-tag { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .book-meta { flex-wrap: wrap; gap: 1.5rem; }
  .hero-title { letter-spacing: -0.015em; }
  .why-img-badge { bottom: 1rem; left: 1rem; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions, .book-actions, .podcast-actions, .cta-actions, .spk-cta-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .hero-stats { gap: 1.5rem; }
}
