/* ==========================================================================
   Luke Heys — Portfolio
   One stylesheet, five sub-brands. Each page sets a theme class on <body>:
   theme-home · theme-acting · theme-voice · theme-heyzy · theme-teaching
   Built by HR Website Design
   ========================================================================== */

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{margin:0;min-height:100vh;display:flex;flex-direction:column;
  font-family:'Schibsted Grotesk',system-ui,-apple-system,'Segoe UI',sans-serif;
  font-size:17px;line-height:1.6;background:var(--bg);color:var(--fg);
  -webkit-font-smoothing:antialiased}
img,svg,video,iframe{display:block;max-width:100%}
h1,h2,h3,p{margin:0}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit}
:focus-visible{outline:2px solid var(--accent);outline-offset:3px}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.skip{position:absolute;left:16px;top:-60px;z-index:100;padding:10px 16px;background:var(--fg);color:var(--bg);border-radius:6px}
.skip:focus{top:16px}
main{flex:1}

/* ---------- Themes ---------- */
.theme-home{
  --bg:#F2EEE6;--fg:#141312;--muted:#5F584C;--soft:#3A362F;--line:#D9D2C4;
  --surface:#E4DDCF;--ph-line:#A89F8D;--accent:#8A5A1F;--accent-2:#D9A865;
  --btn-bg:#141312;--btn-fg:#F2EEE6;
  --display:'Instrument Serif',Georgia,serif;--display-weight:400;--display-track:-.02em;
  --radius:4px;--pill:999px}
.theme-acting{
  --bg:#0E0D0C;--fg:#EDE6D6;--muted:#9A9282;--soft:#B9B1A0;--line:#2F2A24;
  --surface:#1A1816;--ph-line:#4A4338;--accent:#C9A45C;--accent-2:#E0C07E;
  --btn-bg:#C9A45C;--btn-fg:#0E0D0C;
  --display:'Cormorant Garamond',Georgia,serif;--display-weight:500;--display-track:-.02em;
  --radius:2px;--pill:999px}
.theme-voice{
  --bg:#0F1B2D;--fg:#E8EEF6;--muted:#8796AC;--soft:#C7D2E0;--line:#22334D;
  --surface:#16263D;--ph-line:#33476A;--accent:#FF8A33;--accent-2:#FFB37A;
  --btn-bg:#FF8A33;--btn-fg:#0F1B2D;
  --display:'Space Grotesk',system-ui,sans-serif;--display-weight:700;--display-track:-.04em;
  --mono:'JetBrains Mono',ui-monospace,monospace;
  --radius:10px;--pill:8px}
.theme-heyzy{
  --bg:#0B0B12;--fg:#FFFFFF;--muted:#9496AA;--soft:#C9CBD8;--line:#2A2A3A;
  --surface:#13131D;--ph-line:#3A3A50;--accent:#E1262D;--accent-2:#2F5BEA;
  --red-text:#FF5A5F;--blue-text:#7E9BFF;
  --btn-bg:#E1262D;--btn-fg:#FFFFFF;
  --display:'Anton',Impact,sans-serif;--display-weight:400;--display-track:0;
  --radius:6px;--pill:4px}
.theme-teaching{
  --bg:#F6F1E7;--fg:#1B2B24;--muted:#5E6B63;--soft:#3E4E46;--line:#D8CDB8;
  --surface:#E9E0CF;--ph-line:#A7987C;--accent:#B4532A;--accent-2:#F2B58C;
  --green:#1F4D3E;--green-soft:#CFE0D7;
  --btn-bg:#1F4D3E;--btn-fg:#F6F1E7;
  --display:'Fraunces',Georgia,serif;--display-weight:600;--display-track:-.025em;
  --radius:16px;--pill:999px}

/* ---------- Layout ---------- */
.wrap{width:100%;max-width:1440px;margin:0 auto;padding-inline:clamp(16px,5.5vw,80px)}
.section{padding-block:clamp(64px,9vw,120px)}
.section--tight{padding-block:clamp(40px,6vw,72px)}
.grid-12{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));column-gap:24px;row-gap:40px}
.stack{display:flex;flex-direction:column}
.eyebrow{font-size:13px;font-weight:600;letter-spacing:.18em;text-transform:uppercase;color:var(--muted)}
.accent{color:var(--accent)}
.display{font-family:var(--display);font-weight:var(--display-weight);letter-spacing:var(--display-track);line-height:.95}
.lead{font-size:clamp(18px,1.6vw,21px);line-height:1.6;color:var(--soft);max-width:620px}
.muted{color:var(--muted)}

/* ---------- Buttons ---------- */
.btns{display:flex;flex-wrap:wrap;gap:12px}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:48px;
  padding:14px 26px;border-radius:var(--pill);font-weight:600;font-size:16px;line-height:1.2;
  border:1px solid transparent;transition:transform .15s ease,background-color .15s ease,color .15s ease}
.btn:hover{transform:translateY(-1px)}
.btn--solid{background:var(--btn-bg);color:var(--btn-fg)}
.btn--ghost{border-color:currentColor}
.btn svg{width:16px;height:16px}

/* ---------- Header / nav ---------- */
.site-header{position:sticky;top:0;z-index:50;background:var(--bg);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;gap:24px;min-height:84px}
.brand{font-family:var(--display);font-size:28px;font-weight:var(--display-weight);letter-spacing:.01em;line-height:1}
.nav-links{display:flex;align-items:center;gap:32px;list-style:none;margin:0;padding:0;font-size:15px;font-weight:500}
.nav-links a{color:var(--soft);transition:color .15s}
.nav-links a:hover,.nav-links a[aria-current="page"]{color:var(--accent)}
.nav-links .btn{color:inherit;padding:10px 20px;min-height:44px;font-size:15px}
.nav-toggle{display:none;width:48px;height:48px;border:1px solid var(--line);border-radius:10px;background:transparent;cursor:pointer;align-items:center;justify-content:center}
.nav-toggle svg{width:22px;height:22px}

@media (max-width:900px){
  .nav-toggle{display:inline-flex}
  .nav-links{position:absolute;left:0;right:0;top:100%;flex-direction:column;align-items:stretch;gap:0;
    background:var(--bg);border-bottom:1px solid var(--line);padding:8px clamp(16px,5.5vw,80px) 24px;display:none}
  .nav-links.is-open{display:flex}
  .nav-links li a{display:block;padding:14px 0;font-size:18px;border-bottom:1px solid var(--line)}
  .nav-links li:last-child a{margin-top:16px;border-bottom:1px solid currentColor;text-align:center}
}

/* ---------- Placeholders (swap for <img>) ---------- */
.ph{position:relative;display:flex;align-items:flex-end;padding:20px;background:var(--surface);
  border:1px dashed var(--ph-line);border-radius:var(--radius);color:var(--muted);
  font-size:12px;letter-spacing:.12em;text-transform:uppercase;overflow:hidden}
.ph img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.photo{width:100%;height:100%;object-fit:cover;border-radius:var(--radius)}

/* ---------- Footer ---------- */
.site-footer{border-top:1px solid var(--line);padding-block:32px;font-size:14px;color:var(--muted)}
.site-footer .wrap{display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px}
.site-footer a:hover{color:var(--accent)}
.social{display:flex;flex-wrap:wrap;gap:8px 24px;list-style:none;margin:0;padding:0}

/* ==========================================================================
   HOME
   ========================================================================== */
.home-hero{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));column-gap:24px;row-gap:48px;align-items:center}
.home-hero__text{grid-column:span 7;display:flex;flex-direction:column;gap:28px}
.home-hero__title{font-size:clamp(56px,9.2vw,132px);line-height:.92}
.home-hero__title em{color:var(--accent)}
.home-hero__img{grid-column:span 5;aspect-ratio:4/5}

.facts{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;padding-block:28px;border-block:1px solid var(--line)}
.fact{display:flex;flex-direction:column;gap:4px}
.fact__label{font-size:12px;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.fact__value{font-family:var(--display);font-size:clamp(22px,2vw,26px);line-height:1.2}

.section-head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:48px}
.section-head h2{font-size:clamp(44px,5vw,72px)}
.section-head p{max-width:420px;color:var(--soft)}

.stages{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.stage{min-height:400px;padding:clamp(28px,3vw,44px);border-radius:4px;display:flex;flex-direction:column;justify-content:space-between;gap:48px;transition:transform .2s ease}
.stage:hover{transform:translateY(-4px)}
.stage__meta{display:flex;justify-content:space-between;gap:12px;font-size:13px;letter-spacing:.18em;text-transform:uppercase}
.stage__body{display:flex;flex-direction:column;gap:14px}
.stage__title{font-size:clamp(52px,5.4vw,80px);line-height:.95}
.stage__desc{font-size:17px;line-height:1.5;max-width:460px}
.stage__cta{font-size:15px;font-weight:600}
.stage--acting{background:#0E0D0C;color:#EDE6D6}
.stage--acting .stage__meta,.stage--acting .stage__cta{color:#C9A45C}
.stage--acting .stage__title{font-family:'Cormorant Garamond',serif;font-style:italic;font-weight:500}
.stage--acting .stage__desc{color:#B9B1A0}
.stage--voice{background:#0F1B2D;color:#E8EEF6}
.stage--voice .stage__meta,.stage--voice .stage__cta{color:#FF8A33}
.stage--voice .stage__meta{font-family:'Space Grotesk',sans-serif}
.stage--voice .stage__title{font-family:'Space Grotesk',sans-serif;font-weight:700;letter-spacing:-.03em}
.stage--voice .stage__desc{color:#A9B6C8}
.stage--heyzy{background:#0B0B12;color:#fff;border-top:6px solid #E1262D;border-bottom:6px solid #2F5BEA}
.stage--heyzy .stage__meta{color:#FF5A5F}
.stage--heyzy .stage__cta{color:#7E9BFF}
.stage--heyzy .stage__title{font-family:'Anton',sans-serif;font-weight:400;text-transform:uppercase}
.stage--heyzy .stage__desc{color:#B4B6C6}
.stage--teaching{background:#1F4D3E;color:#F6F1E7}
.stage--teaching .stage__meta,.stage--teaching .stage__cta{color:#F2B58C}
.stage--teaching .stage__title{font-family:'Fraunces',serif;font-weight:600;letter-spacing:-.02em}
.stage--teaching .stage__desc{color:#CFE0D7}

.about__side{grid-column:span 4;display:flex;flex-direction:column;gap:16px}
.about__side .ph{aspect-ratio:4/5}
.about__text{grid-column:6 / span 7;display:flex;flex-direction:column;gap:24px}
.about__intro{font-family:var(--display);font-size:clamp(28px,2.8vw,40px);line-height:1.2}
.about__text p:not(.about__intro){font-size:18px;line-height:1.7;color:var(--soft)}

.contact{background:#141312;color:#F2EEE6;--line:#3A362F;--muted:#9C9585}
.contact__head{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:32px}
.contact__title{font-size:clamp(56px,6.8vw,96px)}
.contact__title em{color:#D9A865}
.contact .btn--solid{background:#F2EEE6;color:#141312}
.reps{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:24px;margin-top:56px;padding-top:36px;border-top:1px solid var(--line)}
.rep{display:flex;flex-direction:column;gap:6px}
.rep__label{font-size:12px;letter-spacing:.14em;text-transform:uppercase}
.rep__name{font-size:18px}
.rep__detail{font-size:14px;color:var(--muted)}
.site-footer--dark{background:#141312;color:#9C9585;border-color:#3A362F}
.site-footer--dark a:hover{color:#D9A865}

/* ==========================================================================
   ACTING
   ========================================================================== */
.theme-acting .brand{font-weight:600;letter-spacing:.04em}
.theme-acting .site-header{border-bottom-color:transparent}
.act-hero__top{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:40px}
.act-hero__title{font-style:italic;font-size:clamp(72px,11.6vw,168px);line-height:.85}
.act-hero__top p{max-width:380px;color:var(--soft);font-size:18px}
.eyebrow--gold{color:var(--accent);letter-spacing:.22em}
.reel{position:relative;aspect-ratio:16/9;background:var(--surface);border:1px solid var(--line);border-radius:2px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:20px;overflow:hidden}
.reel iframe,.reel video{position:absolute;inset:0;width:100%;height:100%;border:0}
.reel__play{width:clamp(72px,7vw,104px);height:clamp(72px,7vw,104px);border-radius:50%;border:1px solid var(--accent);
  background:transparent;color:var(--accent);display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background .2s,color .2s}
.reel__play:hover{background:var(--accent);color:var(--bg)}
.reel__play svg{width:30%;height:30%}
.reel__label{font-size:13px;letter-spacing:.2em;text-transform:uppercase;color:var(--muted)}

.stats{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));border-block:1px solid var(--line)}
.stat{padding:26px 24px;display:flex;flex-direction:column;gap:6px;border-left:1px solid var(--line)}
.stat:first-child{border-left:0;padding-left:0}
.stat__label{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--muted)}
.stat__value{font-family:var(--display);font-size:clamp(24px,2.1vw,30px);line-height:1.15}

.split__label{grid-column:span 3}
.split__label h2{font-style:italic;font-size:clamp(44px,4.4vw,64px);line-height:1}
.split__body{grid-column:5 / span 8;display:flex;flex-direction:column;gap:56px}
.credits h3{font-size:13px;font-weight:500;letter-spacing:.22em;text-transform:uppercase;color:var(--accent);padding-bottom:16px;border-bottom:1px solid var(--accent)}
.credits table{width:100%;border-collapse:collapse}
.credits td{padding:18px 16px 18px 0;border-bottom:1px solid var(--line);vertical-align:baseline;font-size:15px}
.credits td:first-child{width:72px;color:var(--muted)}
.credits .title{font-family:var(--display);font-size:24px;line-height:1.2;color:var(--fg)}
.credits .role{color:var(--soft)}
.credits .co{color:var(--muted)}
.skills-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:48px}
.skills-grid h3{font-size:13px;font-weight:500;letter-spacing:.22em;text-transform:uppercase;color:var(--accent);margin-bottom:14px}
.training-name{font-family:var(--display);font-size:32px;line-height:1.15}
.chips{display:flex;flex-wrap:wrap;gap:10px;list-style:none;margin:0;padding:0}
.chips li{padding:9px 16px;border:1px solid var(--ph-line);border-radius:999px;font-size:14px}
.gallery{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.gallery .ph{aspect-ratio:4/5}
.casting{border-top:1px solid var(--accent);padding-top:56px;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:32px}
.casting__name{font-family:var(--display);font-size:clamp(44px,5vw,72px);line-height:1}
.theme-acting .btn--ghost{color:var(--accent)}

/* ==========================================================================
   VOICE
   ========================================================================== */
.theme-voice .brand{font-size:26px;letter-spacing:-.02em}
.theme-voice .brand span{color:var(--accent)}
.theme-voice .btn{border-radius:8px}
.mono{font-family:var(--mono);letter-spacing:.06em}
.rec{display:flex;align-items:center;gap:12px;font-size:14px;color:var(--accent)}
.rec::before{content:"";width:10px;height:10px;border-radius:50%;background:#FF3B3B;animation:blink 1.6s infinite}
@keyframes blink{50%{opacity:.25}}
.vo-hero{align-items:end}
.vo-hero__text{grid-column:span 8;display:flex;flex-direction:column;gap:28px}
.vo-hero__title{font-size:clamp(56px,8.6vw,124px);line-height:.92}
.vo-hero__title span{color:var(--accent)}
.vo-hero__quote{grid-column:9 / span 4;display:flex;flex-direction:column;gap:14px}
.vo-hero__quote blockquote{margin:0;font-size:20px;line-height:1.55;color:var(--soft)}
.vo-hero__quote cite{font-style:normal;font-size:13px;color:var(--muted)}

.reels-head{display:flex;justify-content:space-between;align-items:baseline;margin-bottom:24px}
.reels-head h2{font-size:clamp(34px,3vw,44px);letter-spacing:-.02em}
.track{display:grid;grid-template-columns:64px minmax(180px,280px) 1fr 72px;gap:28px;align-items:center;
  padding:24px 28px;background:var(--surface);border:1px solid var(--line);border-radius:10px;margin-bottom:16px}
.track__btn{width:64px;height:64px;border-radius:50%;border:0;background:var(--accent);color:var(--bg);display:flex;align-items:center;justify-content:center;cursor:pointer}
.track__btn svg{width:22px;height:22px}
.track__btn .i-pause{display:none}
.track.is-playing .track__btn .i-play{display:none}
.track.is-playing .track__btn .i-pause{display:block}
.track__title{font-family:var(--display);font-size:22px;font-weight:700;line-height:1.2}
.track__sub{font-size:14px;color:var(--muted)}
.wave{display:flex;align-items:center;gap:3px;height:64px;cursor:pointer}
.wave span{flex:1;min-width:1px;background:#3A5178;border-radius:2px;transition:background .1s}
.wave span.on{background:var(--accent)}
.track__time{font-family:var(--mono);font-size:14px;color:var(--muted);text-align:right}

.spec-cards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:24px}
.spec{padding:36px;border:1px solid var(--line);border-radius:10px;display:flex;flex-direction:column;gap:22px}
.spec__num{font-size:13px;color:var(--accent)}
.spec h3{font-family:var(--display);font-size:28px;font-weight:700;line-height:1.1;letter-spacing:-.01em}
.tags{display:flex;flex-wrap:wrap;gap:8px;list-style:none;margin:0;padding:0}
.tags li{padding:8px 14px;background:#1F3150;border-radius:6px;font-size:14px}
.kit{margin:0;display:flex;flex-direction:column;font-family:var(--mono);font-size:14px}
.kit div{display:flex;justify-content:space-between;gap:12px;padding:10px 0;border-bottom:1px solid var(--line)}
.kit div:last-child{border-bottom:0}
.kit dt{color:var(--muted)}
.kit dd{margin:0;text-align:right;color:var(--soft)}
.logos{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.logos .ph{height:96px;align-items:center;justify-content:center;border-radius:8px;text-transform:none;letter-spacing:0;font-size:14px}
.cta-band{background:var(--accent);color:var(--bg);border-radius:14px;padding:clamp(32px,5vw,64px);display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:32px}
.cta-band h2{font-family:var(--display);font-size:clamp(44px,4.6vw,64px);font-weight:700;letter-spacing:-.03em;line-height:1}
.cta-band p{font-size:19px;max-width:560px;margin-top:14px}
.cta-band__actions{display:flex;flex-direction:column;gap:12px;align-items:flex-end}
.cta-band .btn--solid{background:var(--bg);color:#fff}
.cta-band .link{font-weight:600;font-size:15px;text-decoration:underline}

/* ==========================================================================
   HEYZY DARTS
   ========================================================================== */
.stripe{display:flex;height:6px}
.stripe span{flex:1;background:#E1262D}
.stripe span+span{background:#2F5BEA}
.theme-heyzy .site-header{border-bottom-color:transparent}
.theme-heyzy .brand{font-size:30px;text-transform:uppercase;letter-spacing:.02em}
.theme-heyzy .brand span{color:var(--accent)}
.theme-heyzy .nav-links a[aria-current="page"],.theme-heyzy .nav-links a:hover{color:#fff}
.theme-heyzy .btn{text-transform:uppercase;letter-spacing:.06em;font-size:15px;font-weight:700}
.btn--blue{background:#2F5BEA;color:#fff}
.live{display:inline-flex;align-self:flex-start;align-items:center;gap:10px;padding:8px 14px;background:#1A1A26;border:1px solid var(--line);border-radius:4px;font-size:13px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
.live::before{content:"";width:9px;height:9px;border-radius:50%;background:var(--accent);animation:blink 1.4s infinite}
.hz-hero{align-items:center}
.hz-hero__text{grid-column:span 7;display:flex;flex-direction:column;gap:26px}
.hz-hero__title{font-size:clamp(88px,13vw,188px);line-height:.86;text-transform:uppercase}
.hz-hero__title .r{color:#E1262D}.hz-hero__title .b{color:#2F5BEA}
.hz-hero__logo{grid-column:8 / span 5;aspect-ratio:1;display:flex;align-items:center;justify-content:center}
.hz-hero__logo img{width:100%;height:auto}
.hz-stats{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}
.hz-stat{padding:28px;background:var(--surface);border-radius:6px;border-top:4px solid #E1262D}
.hz-stat:nth-child(even){border-top-color:#2F5BEA}
.hz-stat__num{font-family:var(--display);font-size:clamp(40px,4vw,56px);line-height:1}
.hz-stat__label{margin-top:6px;font-size:14px;letter-spacing:.1em;text-transform:uppercase;color:var(--muted)}
.theme-heyzy .section-head h2{text-transform:uppercase}
.videos{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}
.video{display:flex;flex-direction:column;gap:12px}
.video .ph{aspect-ratio:16/9;align-items:center;justify-content:center}
.video h3{font-size:20px;font-weight:700;line-height:1.3}
.video p a{color:var(--blue-text);font-weight:600}
.yt{position:relative;aspect-ratio:16/9;border-radius:6px;overflow:hidden;background:#000}
.yt img,.yt iframe{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;border:0}
.yt__play{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:76px;height:54px;border:0;border-radius:14px;background:rgba(225,38,45,.95);color:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:transform .15s,background .15s;box-shadow:0 8px 30px rgba(0,0,0,.45)}
.yt__play:hover{transform:translate(-50%,-50%) scale(1.08);background:#E1262D}
.yt__play svg{width:26px;height:26px}
.yt__tag{position:absolute;left:14px;top:14px;padding:6px 10px;border-radius:4px;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase;color:#fff}
.yt__tag--red{background:#E1262D}.yt__tag--blue{background:#2F5BEA}
.tt-feature{display:grid;grid-template-columns:minmax(0,380px) minmax(0,1fr);gap:clamp(32px,6vw,96px);align-items:center;padding:clamp(24px,4vw,56px);background:var(--surface);border-radius:8px;border-left:6px solid #E1262D}
.tt-phone{border-radius:24px;overflow:hidden;background:#000;border:6px solid #1F1F2C;box-shadow:0 20px 60px rgba(0,0,0,.5);aspect-ratio:9/16}
.tt-phone video{width:100%;height:100%;object-fit:cover;background:#000}
.tt-copy{display:flex;flex-direction:column;gap:24px}
.tt-title{font-family:var(--display);font-weight:400;font-size:clamp(44px,5vw,76px);line-height:.95;text-transform:uppercase}
.tt-title .r{color:#E1262D;display:block}
.video p{font-size:14px;color:var(--muted)}
.platforms{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:16px}
.platform{padding:28px;border:1px solid var(--line);border-radius:6px;display:flex;flex-direction:column;gap:8px;transition:border-color .15s,transform .15s}
.platform:hover{border-color:currentColor;transform:translateY(-2px)}
.platform__name{font-size:13px;font-weight:700;letter-spacing:.12em;text-transform:uppercase}
.platform:nth-child(odd) .platform__name{color:var(--red-text)}
.platform:nth-child(even) .platform__name{color:var(--blue-text)}
.platform__handle{font-size:22px;font-weight:700}
.platform__count{font-size:14px;font-weight:600;color:var(--fg)}
.platform__desc{font-size:14px;color:var(--muted)}
.partner{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));column-gap:24px;row-gap:32px;padding:clamp(32px,5vw,64px);background:var(--surface);border-radius:8px}
.partner__title{grid-column:span 6;display:flex;flex-direction:column;gap:18px}
.partner__title h2{font-family:var(--display);font-size:clamp(48px,5vw,72px);line-height:.95;text-transform:uppercase}
.partner__offer{grid-column:8 / span 5;display:flex;flex-direction:column;gap:22px;justify-content:flex-end}
.partner__offer ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:10px;font-size:17px;color:var(--soft)}
.partner__offer li::before{content:"— "}
.theme-heyzy .btn--ghost{border-color:#2F5BEA}
.red-text{color:var(--red-text)}.blue-text{color:var(--blue-text)}

/* ==========================================================================
   TEACHING
   ========================================================================== */
.theme-teaching .site-header{border-bottom-color:transparent}
.theme-teaching .brand em{font-style:italic;font-weight:500;color:var(--accent)}
.theme-teaching .nav-links a[aria-current="page"]{color:var(--green);font-weight:600}
.theme-teaching .eyebrow{color:var(--accent);letter-spacing:.14em}
.t-hero{align-items:center}
.t-hero__text{grid-column:span 7;display:flex;flex-direction:column;gap:28px}
.t-hero__title{font-size:clamp(56px,7.2vw,104px);line-height:.98}
.t-hero__title em{font-style:italic;font-weight:500;color:var(--green)}
.t-hero__img{grid-column:9 / span 4;aspect-ratio:5/7;border-radius:200px 200px 16px 16px;justify-content:center}
.theme-teaching .btn--ghost{color:var(--green)}
.theme-teaching h2.display{font-size:clamp(40px,4.2vw,60px)}
.offers{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;margin-top:40px}
.offer{padding:36px;background:#fff;border-radius:16px;display:flex;flex-direction:column;gap:12px}
.offer__num{font-family:var(--display);font-style:italic;font-weight:500;font-size:44px;line-height:1;color:var(--accent)}
.offer h3{font-family:var(--display);font-size:28px;font-weight:600;line-height:1.15}
.offer p{font-size:16px;color:var(--muted)}
.offer--dark{background:var(--green);color:#F6F1E7}
.offer--dark .offer__num{color:var(--accent-2)}
.offer--dark p{color:var(--green-soft)}
.who{grid-column:span 5;display:flex;flex-direction:column;gap:24px}
.who ul{list-style:none;margin:0;padding:0;font-size:20px}
.who li{display:flex;justify-content:space-between;padding:18px 0;border-bottom:1px solid var(--line)}
.who li::after{content:"→";color:var(--accent)}
.proof{grid-column:7 / span 6;display:flex;flex-direction:column;gap:20px}
.quote{margin:0;padding:48px;background:var(--surface);border-radius:16px;display:flex;flex-direction:column;gap:22px}
.quote p{font-family:var(--display);font-style:italic;font-weight:500;font-size:clamp(24px,2.4vw,34px);line-height:1.3}
.quote footer{font-size:15px;font-weight:600;color:var(--muted)}
.creds{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.cred{padding:28px;border:1px solid var(--line);border-radius:16px}
.cred__label{font-size:13px;letter-spacing:.12em;text-transform:uppercase;color:var(--muted)}
.cred__value{font-family:var(--display);font-size:24px;font-weight:600;margin-top:6px}
.t-cta{background:var(--green);color:#F6F1E7;border-radius:24px;padding:clamp(32px,5vw,72px);display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:32px}
.t-cta h2{font-family:var(--display);font-size:clamp(40px,4.6vw,64px);font-weight:600;letter-spacing:-.02em;line-height:1}
.t-cta h2 em{font-style:italic;font-weight:500;color:var(--accent-2)}
.t-cta p{font-size:19px;color:var(--green-soft);max-width:600px;margin-top:14px}
.t-cta .btn--solid{background:var(--accent-2);color:var(--fg)}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1100px){
  .stages{grid-template-columns:1fr}
  .stats{grid-template-columns:repeat(3,minmax(0,1fr))}
  .stat:nth-child(4){border-left:0;padding-left:0}
  .stat:nth-child(n+4){border-top:1px solid var(--line)}
  .spec-cards,.offers{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hz-stats,.reps{grid-template-columns:repeat(2,minmax(0,1fr))}
  .platforms{grid-template-columns:repeat(3,minmax(0,1fr))}
  .logos{grid-template-columns:repeat(3,minmax(0,1fr))}
  .track{grid-template-columns:64px 1fr 72px}
  .track .wave{grid-column:1 / -1;order:4}
}
@media (max-width:900px){
  .home-hero__text,.home-hero__img,.about__side,.about__text,.split__label,.split__body,
  .vo-hero__text,.vo-hero__quote,.hz-hero__text,.hz-hero__logo,.t-hero__text,.t-hero__img,
  .partner__title,.partner__offer,.who,.proof{grid-column:1 / -1}
  .home-hero__img,.t-hero__img{max-width:520px}
  .hz-hero__logo{max-width:360px}
  .facts{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery{grid-template-columns:repeat(2,minmax(0,1fr))}
  .gallery .ph:last-child{display:none}
  .tt-feature{grid-template-columns:1fr}
  .tt-phone{max-width:340px;width:100%;margin:0 auto}
  .skills-grid{grid-template-columns:1fr}
  .credits tr{display:grid;grid-template-columns:64px 1fr;padding:16px 0;border-bottom:1px solid var(--line)}
  .credits td{border:0;padding:2px 0}
  .credits td:nth-child(n+3){grid-column:2}
  .cta-band__actions{align-items:flex-start}
}
@media (max-width:600px){
  body{font-size:16px}
  .stats{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stat,.stat:first-child{border-left:0;padding-left:0;padding-right:12px}
  .stat:nth-child(n+3){border-top:1px solid var(--line)}
  .spec-cards,.offers,.creds,.hz-stats,.platforms,.reps,.gallery,.videos{grid-template-columns:1fr}
  .gallery .ph:last-child{display:flex}
  .logos{grid-template-columns:repeat(2,minmax(0,1fr))}
  .stage{min-height:340px}
  .stage__meta span:last-child{display:none}
  .track{padding:20px;gap:16px 20px;grid-template-columns:56px 1fr auto}
  .track__btn{width:56px;height:56px}
  .wave{gap:2px;overflow:hidden}
  .quote{padding:28px}
  .btns .btn{flex:1 1 auto}
}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important;scroll-behavior:auto!important}
}
