/* ============================================================
   JARED SHAW — rebrand 2026
   Palette: near-black + off-white + coral-red accent
   Type: Oswald (display/condensed) + Inter (body)
   ============================================================ */

:root {
  --bg:        #0a0a0b;
  --bg-2:      #121215;
  --panel:     #131316;
  --ink:       #f5f4f1;
  --muted:     #9a9aa2;
  --line:      rgba(255,255,255,.10);
  --accent:    #ff463a;
  --accent-2:  #e2362b;
  --maxw:      1180px;
  --ease:      cubic-bezier(.16,1,.3,1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* global background lift so the lower half is never flat black */
body::before {
  content: ''; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(130% 80% at 50% 0%, #17171c 0%, #0d0d10 45%, #0a0a0b 100%),
    radial-gradient(90% 60% at 100% 100%, rgba(255,70,58,.05), transparent 60%);
}
body::after {
  content: ''; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  opacity: .04; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

body.is-loading { overflow: hidden; height: 100vh; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--accent); color: #fff; }

h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; font-weight: 600; line-height: 1; }

/* ---------------- Metronome (shared) ---------------- */
.metronome { color: var(--ink); overflow: visible; }
.metronome__pendulum { transform-box: fill-box; transform-origin: bottom center; }
/* symmetric sine-style swing — smooth, equal both ways, no real-metronome snap */
.metronome--hero .metronome__pendulum,
.metronome--lg  .metronome__pendulum { animation: tick 1.6s cubic-bezier(.37,0,.63,1) infinite alternate; }
.metronome__pendulum--tilt { transform: rotate(14deg); }

@keyframes tick {
  0%   { transform: rotate(-16deg); }
  100% { transform: rotate(16deg); }
}
@media (prefers-reduced-motion: reduce) {
  .metronome__pendulum { animation: none !important; transform: rotate(10deg); }
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 9998;
  background: transparent;
  pointer-events: none;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.hero-metronome-wrapper {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero acts as the load screen — metronome + TICKING sit in final position the whole time */
body.is-loading .hero {
  position: relative;
  z-index: 10000;
  background: var(--bg);
}
body.is-loading .hero__media,
body.is-loading .hero__scroll { opacity: 0; pointer-events: none; }
body.is-loading .hero__name {
  opacity: 0;
  transition: none !important;
}
body.is-loading #main-metronome {
  opacity: 0;
  transform: translateY(8px) scale(.92);
  animation: loaderIn .9s var(--ease) .1s forwards;
}

.hero__intro { position: relative; }
.hero__loader-word {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(calc(-50% + .24em));
  width: max-content;
  font-family: 'Oswald'; font-weight: 400; letter-spacing: .48em; font-size: 11px;
  color: var(--muted); text-transform: uppercase;
  margin: 0;
  white-space: nowrap;
  text-align: center;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
body.is-loading .hero__loader-word {
  display: block;
  animation: loaderWord 1.4s var(--ease) .6s forwards;
}
.hero__loader-word.is-done {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s var(--ease);
}

.loader__dots::after { content: ''; animation: loaderDots 1.8s infinite; color: var(--accent); }
@keyframes loaderIn { to { opacity: 1; transform: none; } }
@keyframes loaderWord { to { opacity: 1; clip-path: inset(0 0 0 0); } }
@keyframes loaderDots {
  0%, 25% { content: ''; }
  26%, 50% { content: '.'; }
  51%, 75% { content: '..'; }
  76%, 100% { content: '...'; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: transparent;
  transition: background .4s var(--ease), border-color .4s, backdrop-filter .4s;
  pointer-events: none;
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav.is-scrolled::before {
  background: rgba(10,10,11,.82);
  backdrop-filter: blur(14px) saturate(140%);
}
.nav__wrap {
  max-width: var(--maxw); margin: 0 auto; padding: 16px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 12px; }
.metronome--sm { width: 24px; height: 34px; color: var(--accent); }
.brand__name {
  font-family: 'Oswald'; font-weight: 600; font-size: 19px;
  letter-spacing: .26em; padding-left: .26em;
}
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a {
  font-family: 'Oswald'; font-weight: 400; font-size: 14px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
  transition: color .25s; position: relative; padding: 4px 0;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  border: 1px solid var(--accent); color: var(--ink) !important;
  padding: 8px 18px !important; border-radius: 100px;
  transition: background .25s, color .25s !important;
}
.nav__cta:hover { background: var(--accent); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; transition: background .7s var(--ease); }
.is-loaded .hero { background: transparent; }
.is-loaded .hero__media,
.is-loaded .hero__scroll { opacity: 1; transition: opacity 1s var(--ease); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__video { filter: brightness(1.25) saturate(1.05) contrast(1.02); }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(200,200,210,.05) 0%, rgba(10,10,11,.05) 50%, rgba(10,10,11,.6) 100%),
    radial-gradient(120% 95% at 50% 22%, rgba(150,150,155,.05) 0%, rgba(10,10,11,.2) 100%);
}
/* subtle gray scratch/film texture so the back never reads as flat black */
.grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .14; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grainShift 6s steps(6) infinite;
}
@keyframes grainShift {
  0%{transform:translate(0,0);} 20%{transform:translate(-4%,3%);} 40%{transform:translate(3%,-4%);}
  60%{transform:translate(-3%,2%);} 80%{transform:translate(4%,-2%);} 100%{transform:translate(0,0);}
}

.hero__content {
  position: relative; z-index: 2; max-width: var(--maxw); width: 100%;
  margin: 0 auto; padding: 120px 28px 60px; text-align: center;
}
/* sequential, slow animate-in, fired after the loader by body.is-loaded */
.hero__anim { opacity: 0; transform: translateY(26px); will-change: transform, opacity; }
.hero__anim--l { transform: translateX(-56px); }
.hero__anim--r { transform: translateX(56px); }
.hero__anim--pop { transform: scale(.5); }
.is-loaded .hero__anim {
  opacity: 1; transform: none;
  transition: opacity .9s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0s);
}
.is-loaded .hero__name.hero__anim {
  transition: opacity .85s var(--ease), transform 1.65s var(--ease);
}
@media (prefers-reduced-motion: reduce){ .hero__anim{opacity:1; transform:none;} }
.hero__kicker {
  display: inline-block;
  font-family: 'Oswald'; font-size: 13px; letter-spacing: .34em; padding-left: .34em;
  color: var(--muted); text-transform: uppercase; margin-bottom: 26px;
}
.tick {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(255,70,58,.6); animation: pulse 1.05s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,70,58,.55); }
  100% { box-shadow: 0 0 0 12px rgba(255,70,58,0); }
}

.hero__title {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(8px, 2vw, 26px); flex-wrap: nowrap;
  font-weight: 700; letter-spacing: .04em;
  font-size: clamp(48px, 12vw, 150px);
}
.hero__name { white-space: nowrap; text-shadow: 0 8px 40px rgba(0,0,0,.5); }
.metronome--hero { width: clamp(54px, 11vw, 132px); height: auto; flex: 0 0 auto; opacity: 1; animation: none; }
.metronome--hero .metronome__weight { fill: var(--accent); }

.hero__subtitle {
  font-family: 'Oswald'; font-weight: 300; text-transform: uppercase;
  letter-spacing: .42em; padding-left: .42em;
  font-size: clamp(14px, 2.4vw, 24px); margin-top: 16px; color: var(--ink);
}
.hero__subtitle .dot { color: var(--accent); }

.hero__actions { display: flex; gap: 16px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: 'Oswald'; font-size: 11px; letter-spacing: .3em; color: var(--muted);
  opacity: 0;
}
.is-loaded .hero__scroll { opacity: 1; transition: opacity .8s var(--ease) .9s; }
@media (prefers-reduced-motion: reduce){ .hero__scroll{opacity:1;} }
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--accent), transparent); animation: scrollline 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes scrollline { 0%{transform:scaleY(0);} 50%{transform:scaleY(1);} 100%{transform:scaleY(0); transform-origin:bottom;} }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Oswald'; font-weight: 500; font-size: 14px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 100px; cursor: pointer;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { border-color: rgba(255,255,255,.35); color: var(--ink); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(255,255,255,.06); }

/* ============================================================
   SECTIONS (shared)
   ============================================================ */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(24px, 4vw, 48px) 28px; }
.section__head { margin-bottom: clamp(20px, 3vw, 32px); }
.section__index {
  display: inline-block; font-family: 'Oswald'; font-size: 13px;
  letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px;
}
.section__title {
  font-size: clamp(40px, 8vw, 96px); text-transform: uppercase; letter-spacing: .01em;
}
.section__title .slash { color: var(--accent); font-weight: 300; }
.section__sub { color: var(--muted); margin-top: 18px; font-size: 17px; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none;} }

/* ============================================================
   MUSICIAN
   ============================================================ */
.musician { border-top: 1px solid var(--line); }
.musician__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(30px, 6vw, 80px); align-items: start; }
.musician__media { display: flex; flex-direction: column; gap: 14px; position: static; align-self: start; }
.musician__media-main { display: none; }
.musician__media-main, .musician__media-sub { position: relative; margin: 0; border-radius: 8px; overflow: hidden; }
.musician__media-main img { width: 100%; aspect-ratio: 3/2; object-fit: cover; object-position: center 32%; filter: contrast(1.04); transition: transform .8s var(--ease); }
.musician__media-sub img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center bottom;
  display: block; filter: grayscale(1) contrast(1.05);
  transform: scale(1.12); transform-origin: center bottom;
  transition: transform .8s var(--ease);
}
.musician__media-main:hover img { transform: scale(1.04); }
.musician__media-sub:hover img { transform: scale(1.16); }
.musician__media-main::after, .musician__media-sub::after { content:''; position:absolute; inset:0; border:1px solid var(--line); border-radius:8px; pointer-events:none; }
.musician__media-tag {
  position: absolute; left: 14px; bottom: 14px; z-index: 2;
  font-family: 'Oswald'; font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 6px 12px; border-radius: 4px;
}
@media (min-width: 861px) {
  .musician__grid { align-items: center; }
  .musician__media { align-self: center; }
}
.musician__body .lead { font-size: clamp(18px, 2.3vw, 23px); color: var(--ink); line-height: 1.5; }
.musician__body p { color: var(--muted); margin-top: 20px; font-size: 16px; }
.musician__body p strong { color: var(--ink); font-weight: 600; }
.fw-semi { font-weight: 500 !important; }
.musician__body .lead strong { color: var(--ink); }

.chips { margin: 34px 0 30px; }
.chips__label { font-family: 'Oswald'; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--accent); }
.chips ul { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; list-style: none; }
.chips li {
  font-size: 13px; padding: 7px 14px; border: 1px solid var(--line); border-radius: 100px;
  color: var(--muted); transition: border-color .25s, color .25s, background .25s;
}
.chips li:hover { border-color: var(--accent); color: var(--ink); background: rgba(255,70,58,.07); }

/* credits / experience */
.cred { margin-top: clamp(40px, 5vw, 60px); }
.cred__head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 30px; }
.cred__title { font-size: clamp(26px, 4vw, 40px); text-transform: uppercase; letter-spacing: .08em; }
.cred__download {
  display: inline-flex; align-items: center; gap: 9px; font-family: 'Oswald';
  font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  border: 1px solid var(--line); padding: 9px 16px; border-radius: 100px;
  transition: color .25s, border-color .25s, background .25s;
}
.cred__download:hover { color: var(--ink); border-color: var(--accent); background: rgba(255,70,58,.08); }
.cred__download-ic { width: 14px; height: 14px; position: relative; flex: 0 0 auto; }
.cred__download-ic::before { content:''; position:absolute; left:6px; top:0; width:2px; height:9px; background:var(--accent); }
.cred__download-ic::after { content:''; position:absolute; left:3px; top:5px; width:8px; height:8px; border-right:2px solid var(--accent); border-bottom:2px solid var(--accent); transform:rotate(45deg); }

.cred__cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); }
.cred__cat {
  font-family: 'Oswald'; font-size: 13px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--accent); margin: 26px 0 4px; padding-bottom: 8px;
}
.cred__cat:first-child { margin-top: 0; }
.cred__list { list-style: none; }
.cred__list li {
  display: grid; grid-template-columns: 92px 1fr; gap: 18px; align-items: baseline;
  padding: 13px 0; border-bottom: 1px solid var(--line);
  transition: padding-left .3s var(--ease);
}
.cred__list li:hover { padding-left: 8px; }
.cred__yr { font-family: 'Oswald'; font-size: 12px; letter-spacing: .1em; color: var(--muted); white-space: nowrap; }
.cred__what { color: var(--ink); font-size: 16px; line-height: 1.35; }
.cred__what strong { font-weight: 600; }

/* marquee */
.marquee { margin-top: clamp(36px, 5vw, 56px); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee__track { display: inline-flex; align-items: center; gap: 28px; white-space: nowrap; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: 'Oswald'; font-weight: 400; font-size: clamp(22px, 3vw, 34px); text-transform: uppercase; letter-spacing: .05em; color: var(--ink); }
.marquee__dot { color: var(--accent); font-size: 12px !important; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   MEDIA
   ============================================================ */
.media { border-top: 1px solid var(--line); }
.media__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

.carousel__nav { display: flex; gap: 12px; }
.carousel__btn {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--accent);
  background: rgba(255,70,58,.1); color: var(--ink); font-size: 20px; cursor: pointer;
  transition: background .25s, border-color .25s, transform .2s, opacity .25s;
}
.carousel__btn:hover:not(:disabled) { background: var(--accent); color: #fff; transform: translateY(-2px); }
.carousel__btn:disabled { opacity: .3; cursor: default; }

.carousel { overflow: hidden; border-radius: 12px; }
.carousel__track { display: flex; transition: transform .6s var(--ease); }
.vslide { flex: 0 0 100%; cursor: pointer; position: relative; overflow: hidden; border-radius: 12px; }
.vslide__media {
  position: relative; overflow: hidden; border-radius: 12px; background: var(--panel);
  aspect-ratio: 16/9;
}
.vslide__media img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) grayscale(1); transition: transform .8s var(--ease), filter .5s; }
.vslide:hover .vslide__media img { transform: scale(1.04); filter: brightness(.45) grayscale(1); }
.vcard__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 76px; height: 76px; border-radius: 50%; background: var(--accent); border: 0; cursor: pointer;
  display: grid; place-items: center; transition: transform .3s var(--ease), background .3s;
  box-shadow: 0 12px 40px rgba(255,70,58,.35);
  z-index: 4;
}
.vcard__play::after { content: ''; border-left: 22px solid #fff; border-top: 13px solid transparent; border-bottom: 13px solid transparent; margin-left: 6px; }
.vslide:hover .vcard__play { transform: translate(-50%,-50%) scale(1.1); background: var(--accent-2); }

/* Carole King "featured" pop-up on the Beautiful slide */
.vslide__pop {
  position: absolute; top: 18px; left: 18px; z-index: 5;
  font-family: 'Oswald'; font-size: 13px; letter-spacing: .06em;
  background: var(--accent); color: #fff; padding: 9px 15px; border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  animation: popIn .6s var(--ease) .3s both, popFloat 3.5s ease-in-out 1s infinite;
  transform-origin: left center;
}
@keyframes popIn { from { opacity: 0; transform: translateY(-8px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes popFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

@media (min-width: 861px) {
  .vslide__info {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 60px 28px 24px;
    background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.6) 40%, transparent 100%);
    border-bottom-left-radius: 12px; border-bottom-right-radius: 12px;
    pointer-events: none; z-index: 3;
  }
}
@media (max-width: 860px) {
  .vslide__info { padding: 22px 4px 0; }
}
.vslide__tag {
  font-family: 'Oswald'; font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent);
}
.vslide__title { font-size: clamp(24px, 4vw, 40px); text-transform: uppercase; letter-spacing: .02em; margin: 8px 0 6px; }
.vslide__sub { color: var(--muted); font-size: 16px; }

.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 26px; }
.carousel__dot { width: 9px; height: 9px; border-radius: 50%; border: 0; background: rgba(255,255,255,.22); cursor: pointer; transition: background .25s, transform .25s; padding: 0; }
.carousel__dot.is-active { background: var(--accent); transform: scale(1.25); }

/* ============================================================
   LESSONS
   ============================================================ */
.lessons { border-top: 1px solid var(--line); }
.lessons__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.lessons__text .lead { font-size: clamp(18px, 2.3vw, 23px); color: var(--ink); line-height: 1.5; margin-bottom: 18px; }
.lessons__text > p { color: var(--muted); margin-bottom: 24px; font-size: 16px; }
.lessons__list { list-style: none; display: grid; gap: 13px; margin-bottom: 26px; }
.lessons__list li { position: relative; padding-left: 26px; color: var(--muted); font-size: 16px; }
.lessons__list li::before { content: ''; position: absolute; left: 0; top: 11px; width: 13px; height: 2px; background: var(--accent); }
.lessons__list strong { color: var(--ink); font-weight: 600; }
.lessons__list em { font-style: normal; display: block; margin-top: 4px; font-size: 15px; }
.text-link { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(255,255,255,.2); text-underline-offset: 3px; transition: color .2s, text-decoration-color .2s; }
.text-link--red { color: var(--accent); text-decoration-color: rgba(255,70,58,.3); }
.text-link:hover { color: var(--accent-2); text-decoration-color: var(--accent-2); }

.lessons__masterclass {
  margin-top: 36px; padding: 22px 26px; border-radius: 8px;
  background: rgba(255,70,58,.04); border-left: 2px solid var(--accent);
}
.lessons__masterclass h3 { font-family: 'Oswald'; font-size: 14px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.lessons__masterclass p { font-size: 15px; color: var(--muted); line-height: 1.5; margin: 0; }

.lessons__card {
  border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px, 3vw, 38px);
  background: linear-gradient(165deg, rgba(255,255,255,.05), transparent 70%);
  position: sticky; top: 96px;
}
.lessons__price { margin-bottom: 22px; border-bottom: 1px solid var(--line); padding-bottom: 22px; }
.lessons__free { display: block; font-family: 'Oswald'; font-weight: 500; font-size: clamp(22px, 3.2vw, 30px); color: var(--ink); line-height: 1.2; margin-bottom: 8px; }
.lessons__free em { color: var(--accent); font-style: normal; font-weight: 600; }
.lessons__rates { display: block; font-size: 14px; color: var(--muted); letter-spacing: .06em; }
.lessons__amt { display: block; font-family: 'Oswald'; font-weight: 700; font-size: clamp(46px, 6vw, 64px); color: var(--ink); line-height: 1; }
.lessons__amt span { font-size: 18px; color: var(--muted); font-weight: 400; letter-spacing: .03em; }
.lessons__formats { list-style: none; display: grid; gap: 14px; margin-bottom: 28px; }
.lessons__formats li { display: flex; align-items: center; gap: 12px; color: var(--ink); font-size: 15px; }
.lessons__ic { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: 0 0 auto; }
.lessons__cta { width: 100%; justify-content: center; }
@media (max-width: 860px){
  .lessons__grid { grid-template-columns: 1fr; }
  .lessons__card { position: static; }
}

/* ============================================================
   CONTENT CREATOR
   ============================================================ */
.content { border-top: 1px solid var(--line); }
.content__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 90px); align-items: center; }
.content__text .lead { font-size: clamp(18px,2.3vw,23px); color: var(--ink); margin: 22px 0; line-height: 1.5; }
.content__text p { color: var(--muted); margin-bottom: 28px; }
.content__text strong { color: var(--ink); font-weight: 600; }
.content__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ccard {
  border: 1px solid var(--line); border-radius: 10px; padding: 26px 22px;
  background: linear-gradient(160deg, rgba(255,255,255,.03), transparent);
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.ccard:hover { transform: translateY(-6px); border-color: var(--accent); background: linear-gradient(160deg, rgba(255,70,58,.10), transparent); }
.ccard__num { font-family: 'Oswald'; font-size: 13px; color: var(--accent); letter-spacing: .2em; }
.ccard h4 { font-size: 19px; text-transform: uppercase; letter-spacing: .04em; margin: 14px 0 8px; }
.ccard p { color: var(--muted); font-size: 14px; }

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.contact { border-top: 1px solid var(--line); background: radial-gradient(120% 100% at 50% 0%, rgba(255,70,58,.08), transparent 55%); }
.contact__inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(28px, 4vw, 44px) 28px clamp(40px, 5vw, 64px); text-align: center; }
.contact__kicker { display: inline-flex; align-items: center; gap: 10px; font-family: 'Oswald'; letter-spacing: .28em; text-transform: uppercase; font-size: 13px; color: var(--muted); }
.contact__big { font-size: clamp(28px, 6vw, 64px); letter-spacing: .02em; margin: 16px 0 24px; line-height: .9; }
.contact__details { display: flex; flex-direction: column; gap: 6px; align-items: center; }
.contact__line { font-family: 'Oswald'; font-weight: 300; font-size: clamp(22px,4vw,40px); color: var(--ink); transition: color .25s; }
.contact__line:hover { color: var(--accent); }
.contact__btn { margin-top: 24px; }

.contact__photo { position: relative; }
.contact__photo img { width: 100%; height: clamp(260px, 40vw, 460px); object-fit: cover; object-position: center 59%; filter: contrast(1.04); }
.contact__photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,.55), transparent 28%, transparent 68%, rgba(10,10,11,.95)); pointer-events: none; }

.contact__bar {
  border-top: 1px solid var(--line); padding: 26px 28px;
  display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap;
  font-family: 'Oswald'; font-size: 12px; letter-spacing: .22em; color: var(--muted);
}
.metronome--xs { width: 18px; height: 26px; color: var(--accent); }
.contact__copy { color: rgba(255,255,255,.3); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(5,5,6,.94); backdrop-filter: blur(8px); display: none; place-items: center; padding: 24px; }
.lightbox.is-open { display: grid; }
.lightbox__frame { width: min(960px, 92vw); aspect-ratio: 16/9; background: #000; border-radius: 8px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,.6); }
.lightbox__frame iframe, .lightbox__frame video { width: 100%; height: 100%; border: 0; }
.lightbox__placeholder { width:100%; height:100%; display:grid; place-items:center; text-align:center; gap:14px; color:var(--muted); font-family:'Oswald'; letter-spacing:.1em; padding:24px; }
.lightbox__placeholder b { color: var(--ink); font-size: 20px; letter-spacing:.04em; }
.lightbox__close { position: absolute; top: 24px; right: 30px; background: none; border: 0; color: #fff; font-size: 42px; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .2s, transform .2s; }
.lightbox__close:hover { opacity: 1; transform: rotate(90deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav__links {
    position: fixed; top: 0; bottom: 0; right: 0; left: auto; height: 100dvh; width: min(78vw, 320px);
    background: rgba(12,12,14,.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 28px; padding: 80px 40px; transform: translateX(100%);
    transition: transform .45s var(--ease); border-left: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { font-size: 18px; }
  .nav__toggle { display: flex; z-index: 901; }

  .musician__grid { grid-template-columns: 1fr; }
  .musician__media { max-width: 440px; }
  .content__grid { grid-template-columns: 1fr; }
  .cred__cols { grid-template-columns: 1fr; gap: 8px; }
  .cred__list li { grid-template-columns: 84px 1fr; gap: 14px; }
}
@media (max-width: 480px) {
  .nav__wrap { padding: 14px 18px; }
  .section { padding: 70px 18px; }
  .content__cards { grid-template-columns: 1fr; }
  .hero__title { gap: 6px; }
}
