/* ============================================================
   Samantha Turner, Radiant Stage
   Pure static CSS. No build step.
   Palette themes are swapped via [data-theme] on <html>.
   ============================================================ */

/* ---- Fonts loaded via <link> in HTML for non-blocking render ---- */

/* ====================== TOKENS ====================== */
:root {
  /* type */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-script: 'Pinyon Script', cursive;

  /* default palette, "One Love" (warm persimmon + lush green on ivory/wine) */
  --bg:          #FBF4EA;
  --surface:     #FFFFFF;
  --text:        #2C1620;
  --text-soft:   #6A5560;
  --line:        rgba(44,22,32,0.12);

  --accent:      #E8502A;   /* persimmon, the jumpsuit */
  --accent-deep: #C53C18;
  --accent-2:    #2F7D4F;   /* lush hedge green */
  --gold:        #E7C13C;   /* neon-sign glow */

  --deep:        #23101A;   /* dramatic dark-room wine */
  --deep-2:      #311a24;   /* raised card on deep */
  --deep-text:   #F6E9DD;
  --deep-soft:   #C9AEB6;
  --deep-line:   rgba(255,255,255,0.12);

  /* shape */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 32px;
  --pill: 999px;

  --shadow:    0 22px 60px -28px rgba(60,20,30,0.45);
  --shadow-sm: 0 8px 24px -14px rgba(60,20,30,0.40);

  --page-max: 1200px;
  --pad: clamp(20px, 5vw, 64px);
  --section: clamp(64px, 9vw, 132px);

  --ease: cubic-bezier(.2,.6,.2,1);
}

/* ---- Theme: Garden Bloom (magenta-rose + green) ---- */
:root[data-theme="bloom"] {
  --bg:        #FBF0F2;
  --text:      #2B1320;
  --text-soft: #6A4757;
  --accent:    #C8336B;
  --accent-deep: #A8245A;
  --accent-2:  #2F7D4F;
  --gold:      #E7B73C;
  --deep:      #201327;
  --deep-2:    #2d1c34;
  --deep-soft: #C3A7C5;
  --line:      rgba(43,19,32,0.12);
}

/* ---- Theme: Spotlight (amber/gold-forward, darker, dramatic) ---- */
:root[data-theme="spotlight"] {
  --bg:        #F6EDE0;
  --surface:   #FFFBF4;
  --text:      #221610;
  --text-soft: #6A584A;
  --accent:    #D98A28;
  --accent-deep: #B96E16;
  --accent-2:  #B23A1E;     /* warm brick as secondary */
  --gold:      #EBC84A;
  --deep:      #17110D;
  --deep-2:    #241a13;
  --deep-text: #F7ECDC;
  --deep-soft: #CBB59C;
  --line:      rgba(34,22,16,0.12);
}

/* ---- Theme: Sapphire (blue, her favorite: navy + warm gold radiance) ---- */
:root[data-theme="sapphire"] {
  --bg:        #EEF2F9;
  --surface:   #FFFFFF;
  --text:      #14233B;
  --text-soft: #51617D;
  --accent:    #2D6CD1;
  --accent-deep: #1F51A6;
  --accent-2:  #D99A2B;
  --gold:      #ECC65A;
  --deep:      #0E1B33;
  --deep-2:    #18294A;
  --deep-text: #EAF1FB;
  --deep-soft: #A7B9D6;
  --deep-line: rgba(255,255,255,0.12);
  --line:      rgba(20,35,59,0.12);
}

/* ====================== BASE ====================== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .5s var(--ease), color .5s var(--ease);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

h1,h2,h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.04; margin: 0; letter-spacing: -0.01em; }

.wrap { max-width: var(--page-max); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section); }

/* kicker (legible label; was a hard-to-read script before) */
.kicker {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1;
  display: inline-block;
}
:where(.on-deep) .kicker { color: var(--gold); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.on-deep .eyebrow { color: var(--deep-soft); }

.lead { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--text-soft); }
.on-deep, .on-deep .lead { color: var(--deep-text); }
.on-deep .lead { color: var(--deep-soft); }

/* ====================== BUTTONS ====================== */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-body); font-weight: 700; font-size: 0.98rem;
  padding: 0.92em 1.5em; border-radius: var(--pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .12s var(--ease), background-color .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-deep); }
.btn-ghost { border-color: currentColor; color: var(--text); background: transparent; }
.on-deep .btn-ghost { color: var(--deep-text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }
.on-deep .btn-ghost:hover { background: var(--deep-text); color: var(--deep); }
.btn .arr { transition: transform .15s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

/* ====================== NAV ====================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem var(--pad);
  transition: background-color .35s var(--ease), box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.brand { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: -0.01em; color: var(--text); white-space: nowrap; }
.brand b { color: var(--accent); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.1rem); }
.nav-links a { font-weight: 600; font-size: 0.95rem; color: var(--text); position: relative; padding: 0.2em 0; white-space: nowrap; }
.nav-links a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-2px; height:2px;
  background: var(--accent); transition: right .25s var(--ease);
}
.nav-links a:hover::after { right: 0; }
.nav-links .btn { padding: 0.6em 1.15em; }
.nav-toggle { display:none; background:none; border:0; cursor:pointer; padding:8px; color:var(--text); }
.nav-toggle svg { width:26px; height:26px; }

/* ====================== HERO ====================== */
.hero {
  background: var(--deep);
  color: var(--deep-text);
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 92px) clamp(56px, 8vw, 104px);
}
.hero::before { /* soft neon glow */
  content:""; position:absolute; inset:auto -10% -30% 30%; height:70%;
  background: radial-gradient(60% 60% at 50% 50%, color-mix(in srgb, var(--gold) 45%, transparent), transparent 70%);
  filter: blur(40px); opacity:.5; pointer-events:none;
}
.hero-grid {
  position: relative; z-index:1;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.hero h1 {
  color: #fff;
  font-size: clamp(3.1rem, 8.5vw, 6.6rem);
  margin: 0.12em 0 0.18em;
}
.hero h1 .em { color: var(--gold); font-style: italic; }
.hero-tag {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.25rem); letter-spacing: 0.02em;
  color: var(--gold);
  display:flex; flex-wrap:wrap; gap: 0.5em 0.9em; align-items:center;
}
.hero-tag span { white-space: nowrap; }
.hero-tag .dot { width:6px; height:6px; border-radius:50%; background: var(--accent); display:inline-block; }
.hero p.intro { color: var(--deep-soft); max-width: 46ch; margin: 1.3rem 0 2rem; font-size: 1.12rem; }
.hero-cta { display:flex; gap: 0.8rem; flex-wrap:wrap; }

.hero-photo { position: relative; }
.hero-photo .frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7);
  aspect-ratio: 1080 / 1075;
  border: 1px solid var(--deep-line);
}
.hero-photo .frame img { width:100%; height:100%; object-fit: cover; object-position: center 28%; }
.hero-badge {
  position:absolute; left:-18px; bottom:24px;
  background: var(--accent); color:#fff;
  font-family: var(--font-script); font-size: 2.1rem; line-height:1;
  padding: 0.35em 0.7em 0.5em; border-radius: var(--r);
  box-shadow: var(--shadow-sm); transform: rotate(-4deg);
}

/* ====================== SECTION HEADER ====================== */
.sec-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3.4rem); }
.sec-head h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-top: 0.1em; }
.sec-head .lead { margin-top: 1rem; }

/* ====================== ABOUT ====================== */
.about-grid {
  display:grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.portrait {
  border-radius: var(--r-lg); overflow:hidden; box-shadow: var(--shadow);
  aspect-ratio: 1080/980; position: sticky; top: 96px;
}
.portrait img { width:100%; height:100%; object-fit: cover; object-position: center 22%; }
.about-body p { margin: 0 0 1.15em; }
.about-body p:first-of-type { font-size: 1.18rem; }
.pull {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.28;
  color: var(--text); margin: 1.6rem 0; padding-left: 1.1rem;
  border-left: 3px solid var(--accent);
}
.facts { display:flex; flex-wrap:wrap; gap: 0.7rem; margin-top: 2.1rem; }
.fact {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--pill);
  padding: 0.8em 1.4em; font-weight: 600; font-size: 1.02rem;
  display:inline-flex; gap:.65em; align-items:center; box-shadow: var(--shadow-sm);
  transition: transform .15s var(--ease), box-shadow .2s;
}
.fact:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.fact::before { content:""; width:8px; height:8px; border-radius:50%; background: var(--accent); flex:0 0 auto; }
.fact b { color: var(--accent); font-weight: 800; }

/* ====================== FEATURED ROLES ====================== */
.stage { background: var(--deep); color: var(--deep-text); }
.roles { display:grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px, 2.4vw, 28px); }
.role {
  background: var(--deep-2); border:1px solid var(--deep-line); border-radius: var(--r);
  overflow:hidden; transition: transform .3s var(--ease);
}
.role:hover { transform: translateY(-6px); }
.role .ph { aspect-ratio: 4/5; overflow:hidden; }
.role .ph img { width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.role:hover .ph img { transform: scale(1.05); }
.role .meta { padding: 1.2rem 1.3rem 1.5rem; }
.role .role-name { font-family: var(--font-display); font-size: 1.7rem; color:#fff; }
.role .show { color: var(--gold); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top:.35rem; }
.role .desc { color: var(--deep-soft); font-size: 0.96rem; margin-top: 0.7rem; }

/* ====================== CREDITS / RESUME ====================== */
.credits-grid { display:grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px,5vw,64px); }
.cred-group h3 {
  font-family: var(--font-body); font-weight: 800; font-size: 0.78rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent);
  padding-bottom: 0.8rem; margin-bottom: 0.4rem; border-bottom: 2px solid var(--line);
}
.cred {
  display:grid; grid-template-columns: 1fr auto; gap: 0.2rem 1rem;
  padding: 0.85rem 0; border-bottom: 1px solid var(--line); align-items: baseline;
}
.cred .r { font-family: var(--font-display); font-size: 1.22rem; }
.cred .p { color: var(--text-soft); font-size: 0.98rem; grid-column: 1; }
.cred .v { color: var(--text-soft); font-size: 0.86rem; font-weight: 600; text-align: right; white-space: nowrap; }
.about-body a, .cred .p a {
  color: inherit; text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 55%, transparent);
  text-underline-offset: 3px; transition: color .15s var(--ease);
}
.about-body a:hover, .cred .p a:hover { color: var(--accent); }

/* ====================== GALLERY ====================== */
.gallery { columns: 3; column-gap: clamp(12px, 1.6vw, 20px); }
.gallery figure { margin: 0 0 clamp(12px,1.6vw,20px); break-inside: avoid; border-radius: var(--r); overflow:hidden; position:relative; box-shadow: var(--shadow-sm); }
.gallery img { width:100%; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  position:absolute; left:0; right:0; bottom:0; padding: 1.4rem 1rem 0.85rem;
  background: linear-gradient(transparent, rgba(20,8,14,.82));
  color:#fff; font-weight:600; font-size:0.9rem;
  opacity:0; transform: translateY(8px); transition: opacity .3s, transform .3s;
}
.gallery figure:hover figcaption { opacity:1; transform:none; }

/* ====================== MENTORING ====================== */
.mentor-grid { display:grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,64px); align-items:center; }
.mentor-card {
  background: var(--surface); border:1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow-sm);
}
.mentor-list { list-style:none; padding:0; margin: 1.4rem 0 0; display:grid; gap:1rem; }
.mentor-list li { display:flex; gap:0.9rem; align-items:flex-start; }
.mentor-list .ic {
  flex: 0 0 auto; width:38px; height:38px; border-radius:50%;
  display:grid; place-items:center; background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}
.mentor-list .ic svg { width:20px; height:20px; }
.mentor-list b { display:block; font-size:1.02rem; }
.mentor-list span { color: var(--text-soft); font-size: 0.95rem; }

/* ====================== WATCH / LISTEN ====================== */
.reel { background: var(--deep); color: var(--deep-text); }
.media-grid { display:grid; grid-template-columns: repeat(2,1fr); gap: clamp(16px,2.4vw,28px); }
.media {
  background: var(--deep-2); border:1px solid var(--deep-line); border-radius: var(--r);
  aspect-ratio: 16/9; display:grid; place-items:center; text-align:center;
  position:relative; overflow:hidden; color: var(--deep-soft);
}
.media .play {
  width:64px; height:64px; border-radius:50%; background: var(--accent); color:#fff;
  display:grid; place-items:center; margin: 0 auto 0.9rem; box-shadow: var(--shadow-sm);
}
.media .play svg { width:26px; height:26px; margin-left:3px; }
.media b { color:#fff; font-size:1.05rem; display:block; }
.media.embed { padding: 0; aspect-ratio: 16/9; }
.media.embed iframe { width: 100%; height: 100%; border: 0; display: block; border-radius: var(--r); }

/* ====================== CONTACT ====================== */
.contact { background: var(--deep); color: var(--deep-text); text-align:center; }
.contact h2 { color:#fff; font-size: clamp(2.4rem, 6vw, 4.2rem); }
.contact .lead { margin: 1.1rem auto 2.2rem; max-width: 42ch; }
.contact-actions { display:flex; gap: 0.9rem; justify-content:center; flex-wrap:wrap; }

/* ====================== FOOTER ====================== */
.footer {
  background: var(--deep); color: var(--deep-soft);
  border-top: 1px solid var(--deep-line);
  padding: clamp(2rem, 4vw, 3rem) var(--pad);
  display:flex; flex-wrap:wrap; gap:1rem 2rem; align-items:center; justify-content:space-between;
}
.footer .brand { color: var(--deep-text); }
.footer a:hover { color:#fff; }
.foot-links { display:flex; gap:1.4rem; flex-wrap:wrap; }
.foot-links a { font-weight:600; font-size:0.92rem; }

/* ====================== HERO ENTRANCE ====================== */
@media (prefers-reduced-motion: no-preference) {
  .hero-copy { opacity: 0; transform: translateY(32px); animation: curtain-rise .9s var(--ease) .15s forwards; }
  .hero-photo { opacity: 0; transform: translateY(24px) scale(.97); animation: curtain-rise .9s var(--ease) .35s forwards; }
  @keyframes curtain-rise { to { opacity: 1; transform: none; } }
}

/* ====================== PLAY BUTTON GLOW ====================== */
@media (prefers-reduced-motion: no-preference) {
  .media .play { animation: play-pulse 2.4s ease-in-out infinite; }
  @keyframes play-pulse {
    0%, 100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 40%, transparent); }
    50%      { box-shadow: 0 0 20px 6px color-mix(in srgb, var(--accent) 25%, transparent); }
  }
  .media:hover .play { animation: none; transform: scale(1.1); transition: transform .2s var(--ease); }
}

/* ====================== ACTIVE NAV LINK ====================== */
.nav-links a.active::after { right: 0; }

/* ====================== GALLERY LIGHTBOX ====================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.92); backdrop-filter: blur(8px);
  display: grid; place-items: center; padding: var(--pad);
  opacity: 0; pointer-events: none; transition: opacity .3s var(--ease);
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw; max-height: 85vh; border-radius: var(--r);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
  transform: scale(.92); transition: transform .35s var(--ease);
}
.lightbox.open img { transform: none; }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: 0; color: #fff; font-size: 2rem;
  cursor: pointer; opacity: .7; transition: opacity .2s;
  width: 48px; height: 48px; display: grid; place-items: center;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-cap {
  position: absolute; bottom: clamp(16px, 4vw, 40px); left: 50%; transform: translateX(-50%);
  color: #fff; font-weight: 600; font-size: 0.95rem; text-align: center;
  opacity: .8; white-space: nowrap;
}
.gallery figure { cursor: zoom-in; }

/* ====================== BACK TO TOP ====================== */
.footer .brand .arr-up {
  display: inline-block; margin-left: .4em; font-size: .85em;
  transition: transform .2s var(--ease); opacity: .6;
}
.footer .brand:hover .arr-up { transform: translateY(-3px); opacity: 1; }

/* ====================== HERO PARALLAX ====================== */
@media (prefers-reduced-motion: no-preference) {
  .hero-photo .frame img { will-change: transform; transition: transform .1s linear; }
}

/* ====================== REVEAL ====================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity:0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity:1; transform:none; }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo { order:-1; max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .portrait { position: static; max-width: 420px; }
  .roles { grid-template-columns: 1fr 1fr; }
  .mentor-grid { grid-template-columns: 1fr; }
  .credits-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; }
}
@media (max-width: 860px) {
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 330px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.4rem; padding: 2rem; background: var(--bg);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .35s var(--ease); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display: block; z-index: 60; }
}
@media (max-width: 680px) {
  body { font-size: 17px; }
  :root { --section: clamp(52px, 13vw, 84px); }
  .nav { padding: 0.75rem var(--pad); }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.4rem; padding: 2rem; background: var(--bg);
    box-shadow: -20px 0 60px -20px rgba(0,0,0,.4);
    transform: translateX(100%); transition: transform .35s var(--ease); }
  .nav-links.open { transform:none; }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display:block; z-index: 60; }
  .roles { grid-template-columns: 1fr; }
  .media-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero-badge { font-size: 1.6rem; left: 8px; }
  .footer { justify-content:center; text-align:center; }
  .hero { padding-block: 32px 52px; }
  .hero h1 { font-size: clamp(2.7rem, 15vw, 4rem); margin: 0.1em 0 0.22em; }
  .hero-photo { margin-inline: auto; width: 100%; }
  .hero p.intro { font-size: 1.05rem; margin: 1.1rem 0 1.6rem; }
  .sec-head h2 { font-size: clamp(1.9rem, 8.5vw, 2.7rem); }
  .sec-head { margin-bottom: 2rem; }
  .pull { font-size: 1.3rem; margin: 1.3rem 0; }
  .about-body p:first-of-type { font-size: 1.1rem; }
  .role .role-name { font-size: 1.55rem; }
  .cred { grid-template-columns: 1fr; gap: 0.1rem; padding: 0.95rem 0; }
  .cred .r { order: 1; }
  .cred .p { order: 2; grid-column: 1; }
  .cred .v { order: 3; text-align: left; grid-column: 1; margin-top: 3px; opacity: 0.85; }
  .hero-cta .btn, .contact-actions .btn, .mentor-card + * .btn { flex: 1 1 auto; justify-content: center; }
  .contact-actions .btn { width: 100%; }
}
