@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400;1,9..144,500&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --ink:    #1B2640;
  --ink-2:  #565E76;
  --ink-3:  #939AAE;
  --gold:   #B0883C;
  --gold-2: #8F6C2C;
  --gold-soft: #F4EBD7;
  --gold-line: #E6D6B0;
  --cream:  #FCFAF6;
  --sand:   #F5EFE3;
  --mist:   #EDF0F6;
  --white:  #FFFFFF;
  --line:   #EBE6D9;
  --line-2: #E2DCCD;
  --shadow-sm: 0 6px 24px rgba(27,38,64,0.07);
  --shadow-md: 0 20px 56px rgba(27,38,64,0.12);
  --shadow-lg: 0 34px 90px rgba(27,38,64,0.18);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --t: 0.3s cubic-bezier(0.4,0,0.2,1);
  --maxw: 1180px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
em { font-style: italic; }
::selection { background: var(--gold-soft); }

/* ── shared ── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-2);
}
.eyebrow::before { content:''; width: 26px; height: 1px; background: var(--gold); display:inline-block; }
.eyebrow.center { justify-content: center; }
.section { padding: 120px 0; position: relative; }
.section.tight { padding: 92px 0; }
.h2 { font-size: clamp(36px, 4.8vw, 60px); margin: 20px 0 0; font-weight: 400; }
.h2 em { color: var(--gold-2); }
.lead { font-size: 19px; color: var(--ink-2); max-width: 600px; margin-top: 22px; line-height: 1.72; }
.lead strong { color: var(--ink); font-weight: 600; }
.ksub { font-size: 18px; font-weight: 600; color: var(--ink); margin-top: 14px; line-height: 1.5; }
.center-head { text-align: center; }
.center-head .lead { margin-left: auto; margin-right: auto; }

/* ── buttons ── */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: inherit; font-size: 15px; font-weight: 600; padding: 15px 28px; border-radius: 100px; cursor: pointer; border: none; transition: var(--t); white-space: nowrap; letter-spacing: 0.01em; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #2A3658; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 26px rgba(176,136,60,0.32); }
.btn-gold:hover { background: var(--gold-2); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(176,136,60,0.4); }
.btn-soft { background: var(--white); color: var(--ink); border: 1.5px solid var(--line-2); }
.btn-soft:hover { border-color: var(--gold); color: var(--gold-2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.32); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 16px; }

/* ── nav ── */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: var(--t); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 24px 32px; display: flex; align-items: center; justify-content: space-between; transition: var(--t); }
.nav.scrolled { background: rgba(252,250,246,0.86); backdrop-filter: blur(18px); box-shadow: 0 1px 0 var(--line); }
.nav.scrolled .nav-inner { padding: 15px 32px; }
.brand { font-family: 'Fraunces', serif; font-size: 23px; font-weight: 600; letter-spacing: -0.01em; }
.brand .dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a:not(.btn) { font-size: 14.5px; font-weight: 500; color: var(--ink-2); transition: var(--t); position: relative; }
.nav-links a:not(.btn)::after { content:''; position:absolute; left:0; bottom:-5px; width:0; height:1.5px; background: var(--gold); transition: var(--t); }
.nav-links a:not(.btn):hover { color: var(--ink); }
.nav-links a:not(.btn):hover::after { width: 100%; }
.hamb { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; z-index: 110; }
.hamb span { width: 25px; height: 2px; background: var(--ink); border-radius: 2px; transition: var(--t); }

/* ── hero ── */
.hero { position: relative; padding: 178px 0 110px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; background:
   radial-gradient(900px 540px at 88% 0%, var(--sand) 0%, transparent 58%),
   radial-gradient(760px 540px at 0% 60%, #F3F1EA 0%, transparent 55%); }
.hero-grid { display: grid; grid-template-columns: 1.12fr 0.88fr; gap: 72px; align-items: center; }
.hero h1 { font-size: clamp(48px, 6vw, 84px); margin: 26px 0 0; font-weight: 400; letter-spacing: -0.02em; }
.hero h1 em { color: var(--gold-2); }
.hero-sub { font-size: 19.5px; color: var(--ink-2); max-width: 540px; margin-top: 28px; line-height: 1.72; }
.hero-cta { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); max-width: 520px; }
.hero-trust-line { font-size: 14px; color: var(--ink-3); line-height: 1.6; }
.hero-trust-line strong { color: var(--ink-2); font-weight: 600; }

.hero-photo { position: relative; padding: 18px 18px 0 0; }
.hero-photo::before { content:''; position: absolute; right: 0; top: 0; bottom: 38px; left: 46px; background: linear-gradient(160deg, var(--sand), var(--gold-soft)); border-radius: var(--r-lg); z-index: 0; }
.hero-photo .frame { position: relative; z-index: 2; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; border: 1px solid rgba(255,255,255,0.6); }
.hero-photo .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.hero-photo .blob { display: none; }
.hero-badge-float { position: absolute; z-index: 3; background: rgba(255,255,255,0.94); backdrop-filter: blur(8px); border: 1px solid var(--gold-line); border-radius: 14px; box-shadow: var(--shadow-md); padding: 15px 19px; display: flex; align-items: center; gap: 13px; }
.hero-badge-float.b1 { bottom: 26px; left: -26px; }
.hero-badge-float .ic { width: 42px; height: 42px; border-radius: 11px; background: var(--gold-soft); display: grid; place-items: center; color: var(--gold-2); flex-shrink: 0; }
.hero-badge-float .ic svg { width: 21px; height: 21px; }
.hero-badge-float .bt { font-size: 20px; font-weight: 600; font-family: 'Fraunces',serif; line-height: 1; color: var(--ink); }
.hero-badge-float .bl { font-size: 12px; color: var(--ink-3); margin-top: 4px; }

/* ── stats strip ── */
.strip { background: var(--ink); }
.strip-inner { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 52px 0; text-align: center; }
.strip .num { font-family: 'Fraunces',serif; font-size: clamp(34px,3.8vw,48px); font-weight: 500; color: #fff; line-height: 1; }
.strip .num span { color: var(--gold); }
.strip .lbl { font-size: 13px; color: #9AA1BA; margin-top: 11px; letter-spacing: 0.03em; }
.strip > div > div { border-right: 1px solid rgba(255,255,255,0.12); }

/* ── feature / keynote ── */
.alt { background: var(--white); }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; }
.feat-media { position: relative; padding: 16px 0 0 16px; }
.feat-media::before { content:''; position:absolute; left:0; top:0; width: 62%; height: 62%; background: var(--gold-soft); border-radius: var(--r-md); z-index:0; }
.feat-media img { position: relative; z-index: 1; border-radius: var(--r-md); box-shadow: var(--shadow-md); width: 100%; }
.feat-media .tag { position: absolute; z-index: 2; left: 32px; bottom: 22px; background: rgba(27,38,64,0.82); backdrop-filter: blur(6px); color:#fff; padding: 9px 17px; border-radius: 100px; font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 28px; }
.pill { font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: 100px; background: var(--gold-soft); color: var(--gold-2); border: 1px solid var(--gold-line); }

/* ── apex cards ── */
.apex-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; margin-top: 60px; }
.apex { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-md); padding: 34px 28px; transition: var(--t); }
.apex:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-line); background: #fff; }
.apex .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 22px; background: var(--ink); color: var(--gold); }
.apex .ic svg { width: 25px; height: 25px; }
.apex .letter { font-family:'Fraunces',serif; font-size: 13px; font-weight:600; color: var(--gold-2); letter-spacing:0.12em; text-transform:uppercase; }
.apex h3 { font-size: 22px; margin: 5px 0 11px; font-weight: 500; }
.apex p { font-size: 14.5px; color: var(--ink-2); line-height: 1.62; }

/* ── coaching engines ── */
.tint-sand { background: var(--sand); }
.engines { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; margin-top: 60px; }
.engine { background: var(--white); border-radius: var(--r-lg); padding: 46px 42px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; border: 1px solid var(--line); }
.engine::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; }
.engine.grow::before { background: var(--ink); }
.engine.calm::before { background: var(--gold); }
.engine .ehead { display:flex; align-items:center; gap:15px; margin-bottom:8px; }
.engine .ej { width: 50px; height:50px; border-radius:13px; display:grid; place-items:center; flex-shrink:0; }
.engine.grow .ej { background: var(--ink); color: var(--gold); }
.engine.calm .ej { background: var(--gold-soft); color:var(--gold-2); }
.engine .ej svg { width:24px; height:24px; }
.engine h3 { font-size: 28px; font-weight: 500; }
.engine .esub { font-size: 13px; color: var(--ink-3); margin-bottom: 26px; font-weight:600; letter-spacing: 0.04em; text-transform: uppercase; }
.engine ul { list-style: none; display: flex; flex-direction: column; gap: 17px; }
.engine li { display: flex; gap: 14px; font-size: 15.5px; color: var(--ink-2); line-height:1.52; }
.engine li svg { width: 22px; height:22px; flex-shrink:0; margin-top:1px; color: var(--gold); }
.engine li strong { color: var(--ink); font-weight:600; }

/* ── testimonials ── */
.tgrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 58px; }
.tcard { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 34px 32px; display: flex; flex-direction: column; transition: var(--t); }
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gold-line); }
.tcard .stars { color: var(--gold); font-size: 14px; letter-spacing: 3px; margin-bottom: 18px; }
.tcard .res { font-family:'Fraunces',serif; font-size: 21px; font-weight:600; color: var(--ink); margin-bottom: 13px; line-height:1.22; }
.tcard .quote { font-size: 15px; color: var(--ink-2); line-height: 1.64; flex: 1; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }
.tcard .av { width: 46px; height:46px; border-radius: 50%; display:grid; place-items:center; font-weight:700; font-size:15px; color:#fff; flex-shrink:0; background: var(--ink); font-family: 'Plus Jakarta Sans', sans-serif; }
.tcard .av.gold { background: var(--gold); }
.tcard .nm { font-size: 14.5px; font-weight:700; color: var(--ink); line-height:1.2; }
.tcard .ti { font-size: 12.5px; color: var(--ink-3); margin-top:3px; }
.feat-quote { position: relative; background: var(--ink); border-radius: var(--r-lg); padding: 64px; text-align:center; max-width: 880px; margin: 0 auto; overflow: hidden; }
.feat-quote .qmark { font-family:'Fraunces',serif; font-size: 90px; line-height: 0.5; color: var(--gold); opacity: 0.45; display:block; margin-bottom: 8px; }
.feat-quote .q { font-family:'Fraunces',serif; font-size: clamp(24px,3vw,34px); font-weight:500; font-style:italic; line-height:1.42; color: #fff; }
.feat-quote .q span { color: var(--gold); font-style: normal; }
.fq-who { margin-top: 30px; display:flex; align-items:center; justify-content:center; gap:13px; }
.fq-who .nm { color:#fff; font-weight:700; font-size: 15px; }
.fq-who .ti { color:#9AA1BA; font-size: 13px; }

/* ── book ── */
.tint-cream { background: linear-gradient(180deg, var(--cream), var(--sand)); }
.book-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 76px; align-items: center; }
.book-cover-wrap { display: grid; place-items: center; perspective: 1500px; }
.book-cover-wrap img { border-radius: 4px 10px 10px 4px; box-shadow: -12px 20px 56px rgba(27,38,64,0.32), -3px 0 0 rgba(0,0,0,0.14); transform: rotateY(-18deg) rotateX(4deg); transition: var(--t); }
.book-cover-wrap img:hover { transform: rotateY(-7deg); }
.book-retail { display: flex; gap: 13px; flex-wrap: wrap; margin-top: 32px; }

/* ── about dark ── */
.dark { background: var(--ink); color: #C5CCE0; position: relative; overflow: hidden; }
.dark::before { content:''; position:absolute; inset:0; background: radial-gradient(680px 460px at 82% 12%, rgba(176,136,60,0.16), transparent 60%); }
.dark .wrap { position: relative; z-index: 1; }
.dark .eyebrow { color: var(--gold); }
.dark .eyebrow::before { background: var(--gold); }
.dark h2, .dark h3 { color: #fff; }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 70px; align-items: center; }
.about-media { position: relative; padding: 16px 16px 0 0; }
.about-media::before { content:''; position:absolute; right:0; top:0; width: 70%; height: 84%; border: 1px solid rgba(176,136,60,0.4); border-radius: var(--r-lg); z-index:0; }
.about-media img { position: relative; z-index:1; border-radius: var(--r-lg); width: 100%; box-shadow: var(--shadow-lg); }
.about-media .glow { display:none; }
.about p { color: #B6BED6; font-size: 17px; line-height: 1.76; margin-top: 20px; }
.about p em { color: #fff; font-style: italic; }
.about .sig { font-family:'Fraunces',serif; font-style:italic; font-size: 27px; color:var(--gold); margin-top: 28px; line-height: 1.35; }
.about-stats { display:flex; gap: 40px; margin-top: 34px; flex-wrap:wrap; }
.about-stats .n { font-family:'Fraunces',serif; font-size: 36px; font-weight:600; color:#fff; line-height:1; }
.about-stats .n span { color: var(--gold); }
.about-stats .l { font-size: 13px; color:#9AA1BA; margin-top:7px; }

/* ── contact ── */
.tint-contact { background:
   radial-gradient(620px 440px at 10% 16%, var(--sand) 0%, transparent 58%),
   radial-gradient(620px 440px at 92% 86%, var(--gold-soft) 0%, transparent 58%),
   var(--cream); }
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 70px; align-items: start; }
.contact-info h2 { font-size: clamp(34px,4.2vw,52px); font-weight: 400; }
.cmethods { margin-top: 38px; display:flex; flex-direction:column; gap: 16px; }
.cmethod { display:flex; align-items:center; gap:16px; transition: var(--t); }
.cmethod:hover { transform: translateX(4px); }
.cmethod .ci { width: 50px; height:50px; border-radius: 13px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); display:grid; place-items:center; color: var(--gold-2); flex-shrink:0; }
.cmethod .ci svg { width: 21px; height:21px; }
.cmethod .ck { font-size: 12px; color: var(--ink-3); letter-spacing:0.08em; text-transform:uppercase; font-weight:600; }
.cmethod .cv { font-size: 17px; font-weight:600; color: var(--ink); }
.form-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 44px; border: 1px solid var(--line); }
.form-card h3 { font-size: 25px; margin-bottom: 6px; font-weight: 500; }
.form-card .fsub { font-size: 14.5px; color: var(--ink-2); margin-bottom: 26px; }
.field { margin-bottom: 17px; }
.field label { display:block; font-size: 12.5px; font-weight:600; color: var(--ink-2); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: var(--r-sm); background: var(--cream);
  transition: var(--t); outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 4px var(--gold-soft); }
.field textarea { resize: vertical; min-height: 116px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card button { width: 100%; justify-content: center; margin-top: 10px; }

/* ── footer ── */
.footer { background: var(--ink); color: #A7AFC8; padding: 64px 0 36px; }
.footer-top { display:flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer .brand { color:#fff; font-size: 26px; }
.footer .brand .dot { color: var(--gold); }
.footer-tag { font-size: 14.5px; color:#868EAC; margin-top: 12px; max-width: 330px; line-height: 1.6; }
.footer-nav { display:flex; gap: 32px; flex-wrap:wrap; }
.footer-nav a { font-size: 14.5px; color:#A7AFC8; transition: var(--t); }
.footer-nav a:hover { color:var(--gold); }
.footer-bot { display:flex; justify-content:space-between; align-items:center; gap:16px; flex-wrap:wrap; padding-top: 30px; font-size: 13px; color:#767E9E; }
.footer-social { display:flex; gap: 12px; }
.footer-social a { width: 40px; height:40px; border-radius: 50%; background: rgba(255,255,255,0.07); display:grid; place-items:center; color:#C0C7DE; transition: var(--t); }
.footer-social a:hover { background: var(--gold); color:var(--ink); transform: translateY(-2px); }
.footer-social svg { width:17px; height:17px; }

/* ── reveal ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── second keynote / mirrored media ── */
.feat-media.right { padding: 16px 16px 0 0; }
.feat-media.right::before { left: auto; right: 0; }
.kdivide { height: 1px; background: var(--line); margin: 92px 0; max-width: 80px; margin-left: auto; margin-right: auto; position: relative; }
.kdivide::after { content:''; position:absolute; left:50%; top:50%; transform: translate(-50%,-50%); width:7px; height:7px; border-radius:50%; background: var(--gold); }
.warn { display: flex; align-items: flex-start; gap: 14px; margin-top: 28px; padding: 18px 22px; background: var(--gold-soft); border: 1px solid var(--gold-line); border-radius: var(--r-md); }
.warn .wl { font-family:'Fraunces',serif; font-weight:600; font-size:14px; letter-spacing:0.06em; text-transform:uppercase; color: var(--gold-2); flex-shrink:0; padding-top:1px; }
.warn .wt { font-size: 15px; color: var(--ink-2); line-height:1.6; }
.warn .wt em { color: var(--ink); font-style: italic; }

/* ── responsive ── */
@media (max-width: 940px) {
  .hero-grid, .feat-grid, .book-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .feat-grid .feat-media { order: -1; }
  .engines { grid-template-columns: 1fr; }
  .apex-grid { grid-template-columns: 1fr 1fr; }
  .tgrid { grid-template-columns: 1fr 1fr; }
  .hero-photo { max-width: 460px; }
  .about-media { max-width: 480px; }
  .book-cover-wrap { max-width: 300px; margin: 0 auto; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 0; flex-direction: column; justify-content: center; background: var(--cream); transform: translateX(100%); transition: var(--t); }
  .nav-links.open { transform: none; }
  .nav-links a:not(.btn) { font-size: 21px; }
  .hamb { display: flex; }
  .hamb.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamb.x span:nth-child(2) { opacity: 0; }
  .hamb.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .section { padding: 84px 0; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 34px 10px; }
  .strip > div > div:nth-child(2n) { border-right: none; }
  .apex-grid, .tgrid { grid-template-columns: 1fr; }
  .frow { grid-template-columns: 1fr; }
  .feat-quote, .form-card { padding: 36px 26px; }
  .engine { padding: 34px 28px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .hero { padding: 140px 0 80px; }
}

/* ── speaker reel: youtube facade + lightbox ── */
.reel-stage { max-width: 880px; margin: 0 auto; }
.ytlite { position: relative; display: block; width: 100%; aspect-ratio: 16/9; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.6); background: var(--ink); }
.ytlite img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease, opacity .3s ease; }
.ytlite:hover img { transform: scale(1.04); opacity: 0.9; }
.ytlite .ytplay { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; background: rgba(200,164,90,0.96); display: grid; place-items: center; color: #1B2640; box-shadow: 0 10px 34px rgba(0,0,0,0.34); transition: transform .25s ease, background .25s ease; }
.ytlite:hover .ytplay, .ytlite:focus-visible .ytplay { transform: translate(-50%,-50%) scale(1.08); background: var(--gold); }
.ytlite .ytplay svg { width: 34px; height: 34px; margin-left: 4px; }
.ytlite:focus-visible { outline: 3px solid var(--gold-2); outline-offset: 3px; }
.reel-cap { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; margin-top: 24px; font-size: 14px; color: var(--ink-3); }
.reel-cap span { display: inline-flex; align-items: center; gap: 8px; }
.reel-cap svg { width: 16px; height: 16px; color: var(--gold-2); }

.ytmodal { position: fixed; inset: 0; z-index: 999; background: rgba(8,12,24,0.86); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 24px; }
.ytmodal.open { display: flex; }
.ytmodal-inner { position: relative; width: min(960px, 94vw); aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden; box-shadow: 0 30px 90px rgba(0,0,0,0.6); background: #000; }
.ytmodal-inner iframe { width: 100%; height: 100%; border: 0; display: block; }
.ytclose { position: absolute; top: 22px; right: 22px; width: 42px; height: 42px; border-radius: 50%; border: none; background: rgba(255,255,255,0.16); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s ease; }
.ytclose:hover { background: rgba(255,255,255,0.3); }
.ytclose svg { width: 20px; height: 20px; }

/* ── media grid ── */
.media-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 46px; }
.media-card { display: flex; align-items: center; gap: 16px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px 22px; text-decoration: none; transition: var(--t); }
.media-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.media-card .mic { width: 46px; height: 46px; border-radius: 11px; background: var(--gold-soft); color: var(--gold-2); display: grid; place-items: center; flex-shrink: 0; }
.media-card .mic svg { width: 22px; height: 22px; }
.media-card .mbody { flex: 1; min-width: 0; }
.media-card .mk { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-2); }
.media-card .mt { font-size: 15.5px; font-weight: 600; color: var(--ink); margin-top: 3px; line-height: 1.35; }
.media-card .marrow { color: var(--ink-3); flex-shrink: 0; transition: transform .2s ease, color .2s ease; }
.media-card:hover .marrow { color: var(--gold-2); transform: translateX(3px); }
.media-card .marrow svg { width: 18px; height: 18px; }

@media (max-width: 760px) {
  .media-grid { grid-template-columns: 1fr; }
  .ytlite .ytplay { width: 64px; height: 64px; }
  .ytlite .ytplay svg { width: 26px; height: 26px; }
}

/* ── media: podcast video grid ── */
.vid-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: 52px; }
.vid-card { display: flex; flex-direction: column; }
.vid-card .ytlite { box-shadow: var(--shadow-md); border-radius: var(--r-md); border: 1px solid var(--line); }
.vid-card .ytlite:hover { box-shadow: var(--shadow-lg); }
.vid-card .ytplay { width: 58px; height: 58px; }
.vid-card .ytplay svg { width: 24px; height: 24px; margin-left: 3px; }
.vid-card figcaption { padding: 16px 2px 0; }
.vid-card .vk { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 5px; }
.vid-card .vt { display: block; font-family: 'Fraunces', serif; font-size: 18px; font-weight: 600; color: var(--ink); line-height: 1.32; }
@media (max-width: 980px) { .vid-grid { grid-template-columns: 1fr 1fr; gap: 22px; } }
@media (max-width: 600px) { .vid-grid { grid-template-columns: 1fr; } }
