/* ==========================================================================
   COZART CREATIONS — luxury art studio
   Design language: warm gallery ivory, artful serif display, generous space.
   Palette lives in CSS variables below — reskin the whole site from here.
   ========================================================================== */

:root {
  /* — DAY mode: light & airy gallery, but lit with Tina's own colours.
       (The whole site reskins from here; html.blacklight flips it after dark.) — */

  /* — Surfaces (light) — */
  --bg:        #FBF8F3;   /* warm alabaster (page) */
  --bg-2:      #F3ECE1;   /* deeper sand (alternating sections) */
  --paper:     #FFFFFF;

  /* — Ink (warm violet-black, ties to the brand accent) — */
  --ink:       #1D1822;   /* headings */
  --ink-soft:  #4B4550;   /* body copy */
  --muted:     #8C8492;   /* secondary / labels */
  --line:      #E7DFD2;   /* hairlines */

  /* — Accent: her UV violet (primary) + teal & amber punctuation.
       Named --gold for legacy refs; the VALUE is now electric violet. — */
  --gold:      #6A2BE0;   /* electric violet — her blacklight signature, day-weight */
  --gold-deep: #4716AE;   /* deep violet — hover / emphasis */
  --accent-cyan:    #0E96A8;  /* jewel teal — her murals & sky */
  --accent-amber:   #E0791C;  /* warm amber — her body-paint glow */
  --accent-magenta: #D81E6A;  /* magenta — her body-paint pinks */
  --accent-lilac:   #B98CFF;  /* bright UV violet — emphasis on dark grounds (legible day & night) */

  /* — Painterly bloom hues (vivid, pulled from her work; soft washes in .frame--*).
       Legacy names kept; values are now her real art chroma. — */
  --c-terracotta: #E8773A;   /* amber-coral */
  --c-sage:       #15B0A3;   /* jewel teal (was sage) */
  --c-blush:      #E85AA0;   /* body-paint magenta */
  --c-slate:      #4668D8;   /* electric blue */
  --c-gold:       #E0A21F;   /* amber-gold */
  --c-ink:        #6A2BE0;   /* violet */

  /* — Type — */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* — Rhythm — */
  --pad:   clamp(1.4rem, 5vw, 7rem);   /* horizontal page padding */
  --gap-section: clamp(5rem, 12vw, 11rem);
  --maxw: 1440px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----------------------------------------------------------------- reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ---- art protection: deter casual saving of imagery -------------------------
   Blocks the iOS long-press "Save Image" menu and drag-to-save on every image,
   site-wide. (Right-click + drag are also blocked in script.js.) This only
   DETERS casual saving — it can't truly prevent download (the browser must load
   images to display them), and web images are low-res; prints come from the
   high-res originals. */
img {
  -webkit-touch-callout: none;   /* iOS: no long-press "Save Image" */
  -webkit-user-drag: none;       /* no drag-to-save */
  -webkit-user-select: none;
  user-select: none;
}
img::selection { background: transparent; }
  background: var(--bg);
  color: var(--ink-soft);
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(1rem, 0.55vw + 0.9rem, 1.075rem);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* film grain overlay ------------------------------------------------------ */
.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: 0.035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ----------------------------------------------------------------- type */
h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 400; line-height: 1.04; letter-spacing: -0.01em; }
em { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.section-title { font-size: clamp(2.1rem, 5vw, 4rem); }
.section-lede  { color: var(--muted); max-width: 46ch; font-size: 1.05rem; }

/* ----------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 1.05em 1.9em; border-radius: 100px;
  transition: all 0.4s var(--ease); cursor: pointer; border: 1px solid transparent;
  white-space: nowrap;
}
.btn-solid { background: var(--ink); color: var(--bg); }
.btn-solid:hover { background: var(--gold-deep); transform: translateY(-2px); }
.btn-line { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-line:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }

/* ----------------------------------------------------------------- header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: clamp(1rem, 2vw, 1.7rem) var(--pad);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 247, 241, 0.82);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  padding-top: 0.85rem; padding-bottom: 0.85rem;
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark-name { font-family: var(--serif); font-size: 1.45rem; color: var(--ink); letter-spacing: 0.01em; }
.wordmark-sub  { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-top: 0.4em; }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.4vw, 2.6rem); }
.nav a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); position: relative; padding: 0.3em 0; transition: color 0.3s; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--gold-deep); transition: width 0.4s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { border: 1px solid var(--ink); border-radius: 100px; padding: 0.7em 1.4em; transition: all 0.4s var(--ease); }
.nav-cta:hover { background: var(--ink); color: var(--bg); }

.nav-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 1.5px; background: var(--ink); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.6rem;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--ink); }

/* ----------------------------------------------------------------- layout */
.section { max-width: var(--maxw); margin: 0 auto; padding: var(--gap-section) var(--pad); }
.section-head { max-width: 760px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head .eyebrow { margin-bottom: 1.4rem; }
.section-head .section-title { margin-bottom: 1.6rem; }

/* ----------------------------------------------------------------- hero */
.hero {
  position: relative; max-width: var(--maxw); margin: 0 auto;
  padding: clamp(8rem, 16vh, 12rem) var(--pad) clamp(4rem, 8vw, 7rem);
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center;
}
.hero-text { max-width: 36ch; }
.eyebrow { display: inline-block; }
.hero .eyebrow { margin-bottom: 1.8rem; }
.hero-title {
  font-size: clamp(2.9rem, 7.5vw, 6rem); line-height: 0.98; letter-spacing: -0.02em; color: var(--ink);
  margin-bottom: 2rem;
}
.hero-title em { color: var(--gold-deep); font-style: italic; }
.hero-lede { color: var(--ink-soft); font-size: 1.12rem; max-width: 42ch; margin-bottom: 2.6rem; }
.hero-lede strong { color: var(--ink); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-art { aspect-ratio: 4 / 5; width: 100%; }

.scroll-cue {
  position: absolute; left: var(--pad); bottom: clamp(1.5rem, 3vw, 2.5rem);
  display: flex; align-items: center; gap: 1rem; font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.scroll-line { width: 56px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.scroll-line::after { content: ""; position: absolute; inset: 0; background: var(--gold-deep); transform: translateX(-100%); animation: slide 2.6s var(--ease) infinite; }
@keyframes slide { 0%{ transform: translateX(-100%);} 55%,100%{ transform: translateX(100%);} }

/* ----------------------------------------------------------------- frames (art placeholders) */
.frame {
  position: relative; overflow: hidden; border-radius: 2px;
  background: linear-gradient(150deg, var(--bg-2), #fff);
  box-shadow: 0 30px 60px -40px rgba(33, 30, 26, 0.4);
}
/* painterly soft-gradient placeholder, shown only when no <img> present */
.frame::before {
  content: ""; position: absolute; inset: 0; opacity: 0.92;
  background:
    radial-gradient(120% 80% at 20% 15%, var(--hue, var(--c-sage)) 0%, transparent 55%),
    radial-gradient(90% 90% at 85% 80%, color-mix(in srgb, var(--hue, var(--c-sage)) 65%, #fff) 0%, transparent 60%),
    radial-gradient(60% 60% at 60% 35%, #ffffff 0%, transparent 70%),
    linear-gradient(160deg, color-mix(in srgb, var(--hue, var(--c-sage)) 30%, #fff), #fbf8f3);
}
.frame::after { /* subtle inner edge */
  content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35); pointer-events: none;
}
.frame > img { position: relative; z-index: 2; width: 100%; height: 100%; object-fit: cover; }
.frame[data-medium]::after { /* placard */ }
.frame[data-medium]:not(:has(img))::after {
  content: attr(data-medium); inset: auto auto 1.1rem 1.2rem; box-shadow: none;
  font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(33,30,26,0.55); background: rgba(255,255,255,0.55); padding: 0.45em 0.9em; border-radius: 100px;
  position: absolute; backdrop-filter: blur(2px);
}

.frame--terracotta { --hue: var(--c-terracotta); }
.frame--sage       { --hue: var(--c-sage); }
.frame--blush      { --hue: var(--c-blush); }
.frame--slate      { --hue: var(--c-slate); }
.frame--gold       { --hue: var(--c-gold); }
.frame--ink        { --hue: var(--c-ink); }
.frame--portrait   { --hue: var(--c-blush); }

/* ----------------------------------------------------------------- ticker */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 1.5rem 0; overflow: hidden; }
.ticker-track { display: flex; align-items: center; gap: 2.5rem; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track span { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.3rem); color: var(--ink); white-space: nowrap; }
.ticker-track .dot { color: var(--gold); font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- disciplines */
.disciplines { background: linear-gradient(var(--bg), var(--bg)); }
.discipline-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.discipline { background: var(--bg); padding: clamp(2rem, 3vw, 3.2rem); transition: background 0.5s var(--ease); }
.discipline:hover { background: var(--paper); }
.discipline-no { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); }
.discipline h3 { font-size: 1.7rem; margin: 1.4rem 0 0.9rem; }
.discipline p { color: var(--muted); font-size: 0.97rem; }
.discipline a { color: var(--gold-deep); border-bottom: 1px solid var(--line); transition: border-color 0.3s; }
.discipline a:hover { border-color: var(--gold-deep); }

/* ----------------------------------------------------------------- work gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 17vw; gap: clamp(0.8rem, 1.5vw, 1.6rem); }
.gallery-item { position: relative; grid-row: span 1; }
.gallery-item.tall { grid-row: span 2; }
.gallery-item figcaption {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.4rem 1.2rem; color: #fff; font-size: 0.8rem; letter-spacing: 0.04em;
  background: linear-gradient(transparent, rgba(33,30,26,0.55));
  opacity: 0; transform: translateY(8px); transition: all 0.5s var(--ease);
}
.gallery-item figcaption span { display: block; font-family: var(--serif); font-style: italic; font-size: 1.25rem; margin-bottom: 0.15rem; }
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item::before, .gallery-item::after { transition: transform 0.7s var(--ease); }
.gallery-item:hover::before { transform: scale(1.05); }
.gallery-note { margin-top: 1.8rem; font-size: 0.82rem; color: var(--muted); }
.gallery-note code { font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.78rem; background: var(--bg-2); padding: 0.15em 0.5em; border-radius: 4px; }

/* ----------------------------------------------------------------- about */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; background: var(--bg-2); max-width: none; }
.about > * { }
.about-portrait { aspect-ratio: 4 / 5; }
.about-text { max-width: 52ch; }
.about-text .eyebrow { margin-bottom: 1.3rem; }
.about-text .section-title { margin-bottom: 1.8rem; }
.about-text p { margin-bottom: 1.3rem; color: var(--ink-soft); }
.about-text a { color: var(--gold-deep); border-bottom: 1px solid var(--line); }
.about-text a:hover { border-color: var(--gold-deep); }
.about-text .btn { margin-top: 1rem; }
/* bleed the about section full-width with inner max-width */
.about { padding-left: var(--pad); padding-right: var(--pad); }
.about-inner-fix { }

/* ----------------------------------------------------------------- process */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 3vw, 3rem); counter-reset: step; }
.step { border-top: 1px solid var(--ink); padding-top: 1.6rem; }
.step-no { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 1.2rem; }
.step h3 { font-size: 1.4rem; margin-bottom: 0.8rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ----------------------------------------------------------------- prints */
.prints { background: var(--bg-2); max-width: none; }
.prints-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.prints-text { max-width: 40ch; }
.prints-text .eyebrow { margin-bottom: 1.3rem; }
.prints-text .section-title { margin-bottom: 1.6rem; }
.prints-text p { color: var(--ink-soft); margin-bottom: 2.2rem; }
.prints-art { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.8rem, 1.5vw, 1.4rem); }
.print-frame { aspect-ratio: 3 / 4; }
.print-frame:nth-child(2) { transform: translateY(2rem); }

/* ----------------------------------------------------------------- airbrush */
.airbrush { background: var(--bg-2); max-width: none; }
.airbrush-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.airbrush-text { max-width: 44ch; }
.airbrush-text .eyebrow { margin-bottom: 1.3rem; }
.airbrush-text .section-title { margin-bottom: 1.6rem; }
.airbrush-text p { color: var(--ink-soft); margin-bottom: 1.7rem; }
.airbrush-list { list-style: none; padding: 0; margin: 0 0 2.3rem; display: grid; gap: 0.75rem; }
.airbrush-list li { position: relative; padding-left: 1.5rem; color: var(--ink); font-size: 1rem; }
.airbrush-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.airbrush-frame { aspect-ratio: 4 / 5; }

/* ----------------------------------------------------------------- contact */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }
.contact-head { max-width: 22ch; }
.contact-head .eyebrow { margin-bottom: 1.4rem; }
.contact-head .section-title { margin-bottom: 1.6rem; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 1.4rem; }
.field { display: flex; flex-direction: column; gap: 0.55rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 0.7rem 0; transition: border-color 0.3s;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-deep); }
.field select { appearance: none; cursor: pointer; }
.form-footer { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.5rem; }
.form-status { font-size: 0.85rem; color: var(--gold-deep); }

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #D9D2C7; padding: clamp(3.5rem, 7vw, 6rem) var(--pad) 2.5rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-word { font-family: var(--serif); font-size: 2rem; color: #fff; }
.footer-tag { color: #97907F; font-size: 0.95rem; margin-top: 0.6rem; }
.footer-nav, .footer-social { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-nav a, .footer-social a { font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; color: #C9C1B4; transition: color 0.3s; }
.footer-nav a:hover, .footer-social a:hover { color: var(--gold); }
.footer-base { max-width: var(--maxw); margin: 3.5rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.78rem; color: #8B8474; }
.footer-base a { color: #B0A892; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-base a:hover { color: var(--gold); }

/* ----------------------------------------------------------------- reveal motion */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ----------------------------------------------------------------- responsive */
@media (max-width: 1000px) {
  .discipline-list { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 30vw; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 760px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .hero-text { max-width: none; order: 2; }
  .hero-art { order: 1; aspect-ratio: 16 / 13; }
  .scroll-cue { display: none; }
  .about { grid-template-columns: 1fr; }
  .about-portrait { aspect-ratio: 16 / 13; order: 2; }
  .prints-inner { grid-template-columns: 1fr; }
  .print-frame:nth-child(2) { transform: none; }
  .airbrush-inner { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-base { flex-direction: column; }
}
@media (max-width: 480px) {
  .discipline-list { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 64vw; }
  .gallery-item.tall { grid-row: span 1; }
  .steps { grid-template-columns: 1fr; }
  .prints-art { grid-template-columns: repeat(3, 1fr); }
}

/* ===================================================================
   SERVICE / DISCIPLINE PAGES + shared components
   =================================================================== */

/* homepage discipline cards become links */
.discipline { display: block; color: inherit; position: relative; }
.discipline-go { display: inline-block; margin-top: 1.5rem; font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); opacity: 0; transform: translateY(4px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
.discipline:hover .discipline-go { opacity: 1; transform: none; }

/* breadcrumb */
.crumb { color: var(--gold-deep); border-bottom: 1px solid var(--line); transition: border-color 0.3s; }
.crumb:hover { border-color: var(--gold-deep); }

/* service hero */
.svc-hero { position: relative; max-width: var(--maxw); margin: 0 auto; padding: clamp(8rem, 15vh, 11rem) var(--pad) clamp(3rem, 6vw, 5rem); display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.svc-hero-text { max-width: 44ch; }
.svc-hero .eyebrow { display: inline-block; margin-bottom: 1.6rem; }
.svc-title { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 0.98; letter-spacing: -0.02em; margin-bottom: 1.6rem; }
.svc-lede { font-size: 1.15rem; color: var(--ink-soft); max-width: 42ch; margin-bottom: 2.4rem; }
.svc-hero-art { aspect-ratio: 4 / 5; width: 100%; }

/* intro + "what you can commission" */
.svc-intro-grid { display: grid; grid-template-columns: 1.5fr 0.9fr; gap: clamp(2.5rem, 6vw, 6rem); }
.svc-intro-copy p { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.svc-intro-copy p:last-child { margin-bottom: 0; }
.svc-includes { border-top: 1px solid var(--ink); padding-top: 1.6rem; }
.svc-includes .eyebrow { margin-bottom: 1.4rem; }
.svc-includes ul { list-style: none; padding: 0; display: grid; gap: 0.85rem; }
.svc-includes li { position: relative; padding-left: 1.5rem; color: var(--ink); }
.svc-includes li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* approach / "why" / "what to expect" trio */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.approach-card { background: var(--bg); padding: clamp(1.8rem, 3vw, 2.8rem); transition: background 0.5s var(--ease); }
.approach-card:hover { background: var(--paper); }
.approach-no { font-family: var(--serif); font-size: 2.2rem; color: var(--gold); display: block; line-height: 1; margin-bottom: 1rem; }
.approach-card h3 { font-size: 1.45rem; margin-bottom: 0.8rem; }
.approach-card p { color: var(--muted); font-size: 0.97rem; }

/* feature band (image + text, full-bleed alt background; add --reverse to flip) */
.feature-band { background: var(--bg-2); padding: var(--gap-section) var(--pad); }
.feature-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.feature-text { max-width: 46ch; }
.feature-text .eyebrow { margin-bottom: 1.3rem; }
.feature-text h2 { margin-bottom: 1.4rem; }
.feature-text p { color: var(--ink-soft); margin-bottom: 1.3rem; }
.feature-text p:last-child { margin-bottom: 0; }
.feature-art { aspect-ratio: 4 / 5; }
.feature-band--reverse .feature-art { order: 2; }

/* FAQ */
.faq { max-width: 820px; }
.faq-item { border-top: 1px solid var(--line); padding: 1.7rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.faq-item p { color: var(--muted); }

/* brand pull-quote */
.quote-band { background: var(--bg-2); padding: var(--gap-section) var(--pad); text-align: center; }
.quote-band blockquote { max-width: 900px; margin: 0 auto; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.25; color: var(--ink); }
.quote-band cite { display: block; margin-top: 1.6rem; font-family: var(--sans); font-style: normal; font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }

/* related disciplines */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.related-card { background: var(--bg); padding: clamp(1.8rem, 3vw, 2.6rem); position: relative; transition: background 0.5s var(--ease); color: inherit; display: block; }
.related-card:hover { background: var(--paper); }
.related-card h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }
.related-card p { color: var(--muted); font-size: 0.88rem; }
.related-go { display: inline-block; margin-top: 1.4rem; font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); }

/* closing CTA band */
.cta-band { background: var(--ink); color: #D9D2C7; text-align: center; padding: clamp(4.5rem, 10vw, 8rem) var(--pad); }
.cta-band .eyebrow { color: var(--gold); margin-bottom: 1.4rem; }
.cta-band h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 0 auto 2.4rem; max-width: 20ch; }
.cta-band .btn-solid { background: var(--bg); color: var(--ink); }
.cta-band .btn-solid:hover { background: var(--gold); color: var(--ink); }

/* footer — 4 columns */
.footer-inner--wide { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
.footer-h { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8B8474; margin-bottom: 1.1rem; }

@media (max-width: 1000px) {
  .approach-grid, .related-grid { grid-template-columns: 1fr; }
  .svc-intro-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .svc-hero { grid-template-columns: 1fr; padding-top: 7rem; }
  .svc-hero-text { order: 2; max-width: none; }
  .svc-hero-art { order: 1; aspect-ratio: 16 / 13; }
  .feature-inner { grid-template-columns: 1fr; }
  .feature-band--reverse .feature-art { order: 0; }
  .footer-inner--wide { grid-template-columns: 1fr; }
}

/* ===================================================================
   v2 — LUXURY HOMEPAGE LAYER (editorial, full-bleed, oversized)
   =================================================================== */

/* shared display type */
.kicker { font-family: var(--sans); font-size: 0.72rem; font-weight: 400; letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold-deep); display: inline-block; }
.display { font-family: var(--serif); font-weight: 400; color: var(--ink); line-height: 0.95; letter-spacing: -0.025em; font-size: clamp(3rem, 9vw, 9rem); }
.display em { font-style: italic; color: var(--gold-deep); }

/* ---- full-bleed cinematic hero ---- */
.lux-hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.lux-hero-media { position: absolute; inset: 0; z-index: 0; }
.lux-hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: heroIn 2.4s var(--ease) forwards; }
@keyframes heroIn { to { transform: scale(1); } }
.lux-hero-media::after { content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(28,25,21,0.78) 1%, rgba(28,25,21,0.22) 36%, rgba(28,25,21,0) 60%),
    linear-gradient(180deg, rgba(28,25,21,0.42) 0%, rgba(28,25,21,0) 20%); }
.lux-hero-inner { position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(4rem, 9vh, 8rem); }
.lux-hero .kicker { margin-bottom: 2rem; }
.lux-hero .display { max-width: 15ch; margin-bottom: 2.6rem; }
.lux-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.lux-hero .scroll-cue { position: absolute; left: auto; right: var(--pad); bottom: clamp(4rem, 9vh, 8rem); }
/* hero sits on a darkened image → light type & controls */
.lux-hero .display { color: #fff; }
.lux-hero .display em { color: #C9D2BC; font-style: italic; }
.lux-hero .kicker { color: rgba(255,255,255,0.85); }
.lux-hero .btn-solid { background: #fff; color: var(--ink); }
.lux-hero .btn-solid:hover { background: var(--gold); color: var(--ink); }
.lux-hero .btn-line { border-color: rgba(255,255,255,0.6); color: #fff; }
.lux-hero .btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }
.lux-hero .scroll-cue { color: rgba(255,255,255,0.85); }
.lux-hero .scroll-line { background: rgba(255,255,255,0.55); }
.lux-hero .scroll-line::after { background: #fff; }
/* homepage: light nav while still over the hero (before scroll) */
body.home .site-header:not(.scrolled), body.dark-hero .site-header:not(.scrolled) .wordmark-name,
body.home .site-header:not(.scrolled), body.dark-hero .site-header:not(.scrolled) .nav a,
body.home .site-header:not(.scrolled), body.dark-hero .site-header:not(.scrolled) .nav-cta { color: #fff; }
body.home .site-header:not(.scrolled), body.dark-hero .site-header:not(.scrolled) .wordmark-sub { color: rgba(255,255,255,0.72); }
body.home .site-header:not(.scrolled), body.dark-hero .site-header:not(.scrolled) .nav-cta { border-color: rgba(255,255,255,0.55); }
body.home .site-header:not(.scrolled), body.dark-hero .site-header:not(.scrolled) .nav-toggle span { background: #fff; }

/* ---- manifesto ---- */
.manifesto { max-width: 1180px; margin: 0 auto; padding: clamp(6rem, 15vw, 13rem) var(--pad); }
.manifesto .kicker { margin-bottom: 2.2rem; }
.manifesto-line { font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 4.4vw, 3.5rem); line-height: 1.16; letter-spacing: -0.01em; color: var(--ink); }
.manifesto-line em { font-style: italic; color: var(--gold-deep); }
.manifesto-line .muted { color: var(--muted); }

/* ---- discipline index (editorial, hover-reveal) ---- */
.discipline-index { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad) clamp(4rem, 9vw, 8rem); }
.dx-head { display: flex; justify-content: space-between; align-items: baseline; gap: 2rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); flex-wrap: wrap; }
.dx-head h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); color: var(--ink); }
.dx-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); padding: clamp(1.3rem, 2.6vw, 2.4rem) 0; border-top: 1px solid var(--line); position: relative; color: inherit; }
.dx-row:last-child { border-bottom: 1px solid var(--line); }
.dx-num { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.2em; color: var(--gold-deep); }
.dx-name { font-family: var(--serif); font-size: clamp(1.9rem, 5.2vw, 4rem); line-height: 1; color: var(--ink); transition: transform 0.5s var(--ease), color 0.4s var(--ease); }
.dx-meta { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); text-align: right; transition: color 0.4s; }
.dx-thumb { position: absolute; top: 50%; right: 16%; width: 230px; aspect-ratio: 4 / 5; transform: translateY(-50%) scale(0.94) rotate(-2deg); opacity: 0; pointer-events: none; z-index: 6; box-shadow: 0 40px 70px -30px rgba(33,30,26,0.55); transition: opacity 0.45s var(--ease), transform 0.6s var(--ease); overflow: hidden; border-radius: 2px; }
.dx-thumb img { width: 100%; height: 100%; object-fit: cover; }
.dx-row:hover .dx-name { transform: translateX(1.5rem); color: var(--gold-deep); }
.dx-row:hover .dx-meta { color: var(--ink); }
.dx-row:hover .dx-thumb { opacity: 1; transform: translateY(-50%) scale(1) rotate(-2deg); }

/* ---- full-bleed art moment ---- */
.bleed-figure { position: relative; margin: clamp(4rem, 8vw, 7rem) 0; overflow: hidden; }
.bleed-figure img { width: 100%; height: clamp(60vh, 78vh, 90vh); object-fit: cover; display: block; }
.bleed-figure figcaption { position: absolute; left: var(--pad); bottom: clamp(1.6rem, 4vw, 3rem); color: #fff; max-width: 30ch; }
.bleed-figure figcaption .kicker { color: rgba(255,255,255,0.85); margin-bottom: 0.6rem; }
.bleed-figure figcaption p { font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2vw, 1.5rem); line-height: 1.3; text-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.bleed-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(33,30,26,0.5), rgba(33,30,26,0) 45%); pointer-events: none; }

/* ---- selected work, asymmetric ---- */
.work-ed { max-width: var(--maxw); margin: 0 auto; padding: clamp(4rem, 9vw, 8rem) var(--pad); }
.we-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.2rem, 2.4vw, 2.6rem) clamp(1.2rem, 2.4vw, 2.4rem); }
.we-fig { position: relative; overflow: hidden; }
.we-fig img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.9s var(--ease); }
.we-fig:hover img { transform: scale(1.04); }
.we-fig figcaption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.4rem 1.2rem; color: #fff; font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.04em; background: linear-gradient(transparent, rgba(33,30,26,0.6)); opacity: 0; transform: translateY(8px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.we-fig:hover figcaption { opacity: 1; transform: none; }
.we-fig figcaption b { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: 1.2rem; color: #fff; letter-spacing: 0; margin-bottom: 0.1rem; }
.we-a { grid-column: 1 / 7; aspect-ratio: 4 / 5; }
.we-b { grid-column: 8 / 13; aspect-ratio: 3 / 4; align-self: end; }
.we-c { grid-column: 1 / 5; aspect-ratio: 1 / 1; margin-top: clamp(1rem, 5vw, 5rem); }
.we-d { grid-column: 6 / 13; aspect-ratio: 16 / 10; }
.we-e { grid-column: 3 / 9; aspect-ratio: 3 / 2; margin-top: clamp(1rem, 4vw, 4rem); }

/* ---- about, dark dramatic ---- */
.about-dark { background: var(--ink); color: #E7E0D4; padding: clamp(5rem, 11vw, 10rem) var(--pad); }
.about-dark-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.about-dark .kicker { color: var(--gold); margin-bottom: 1.6rem; }
.about-dark h2 { font-family: var(--serif); font-weight: 400; color: #fff; font-size: clamp(2.4rem, 5.5vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; margin-bottom: 1.8rem; }
.about-dark p { color: #BDB5A6; margin-bottom: 1.3rem; max-width: 48ch; }
.about-dark a.inline { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); }
.about-dark a.inline:hover { border-color: var(--gold); }
.about-dark .portrait { aspect-ratio: 4 / 5; overflow: hidden; }
.about-dark .portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-dark .btn-line { border-color: rgba(255,255,255,0.55); color: #fff; margin-top: 1rem; }
.about-dark .btn-line:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ---- refined contact (home) ---- */
.contact-lux { max-width: var(--maxw); margin: 0 auto; padding: clamp(5rem, 11vw, 10rem) var(--pad); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: start; }
.contact-lux .display { font-size: clamp(2.4rem, 6vw, 5rem); }

/* responsive */
@media (max-width: 900px) {
  .about-dark-inner { grid-template-columns: 1fr; }
  .about-dark .portrait { order: -1; }
}
@media (max-width: 760px) {
  .lux-hero { align-items: flex-end; }
  .lux-hero-media::after { background: linear-gradient(0deg, var(--bg) 14%, rgba(250,247,241,0.82) 36%, rgba(250,247,241,0.1) 62%, rgba(250,247,241,0) 80%); }
  .lux-hero .scroll-cue { display: none; }
  .dx-thumb { display: none; }
  .dx-name { font-size: clamp(1.7rem, 9vw, 2.6rem); }
  .we-a, .we-b, .we-c, .we-d, .we-e { grid-column: 1 / 13; margin-top: 0; align-self: auto; aspect-ratio: 4 / 3; }
  .contact-lux { grid-template-columns: 1fr; }
}

/* ---- mantra ribbon (recurring meditative anchor) ---- */
.mantra { text-align: center; padding: clamp(4rem, 9vw, 8.5rem) var(--pad); }
.mantra p { font-family: var(--serif); font-style: italic; font-weight: 300; font-size: clamp(1.25rem, 3vw, 2.2rem); line-height: 1.5; color: var(--ink); letter-spacing: 0.005em; }
.mantra .sep { font-style: normal; color: var(--gold); margin: 0 0.55em; font-size: 0.72em; position: relative; top: -0.12em; }

/* ===================================================================
   BLACK LIGHT MODE — "turn off the lights, watch it glow"
   Tina's body paint & murals are UV-reactive. The toggle flips the whole
   studio under black light. Built on the CSS variables so it cascades.
   =================================================================== */
html.blacklight {
  --bg: #08060F;
  --bg-2: #0E0A1A;
  --paper: #0A0714;
  --ink: #F3EEFF;
  --ink-soft: #C9BCEA;
  --muted: #8E80B2;
  --line: rgba(150,110,255,0.22);
  --gold: #B98CFF;        /* electric UV violet — her signature glow */
  --gold-deep: #5BE7FF;   /* electric cyan glow */
  --accent-cyan:    #5BE7FF;
  --accent-amber:   #FF9D3C;
  --accent-magenta: #FF4FA3;
}
/* deep aubergine ground with a faint violet aurora — a gallery after dark */
.blacklight body { background:
    radial-gradient(120% 90% at 50% -10%, #241149 0%, transparent 55%),
    radial-gradient(90% 70% at 85% 110%, rgba(30,120,220,0.18) 0%, transparent 55%),
    var(--bg); }
/* art pops under UV */
.blacklight img { filter: saturate(1.55) contrast(1.12) brightness(1.04); }
.blacklight .lux-hero-media img, .blacklight .bleed-figure img { filter: saturate(1.7) contrast(1.16) brightness(1.06); }
.blacklight .frame { box-shadow: 0 0 42px -8px rgba(130,90,255,0.4), 0 30px 60px -40px rgba(0,0,0,0.85); }
/* glow on display type (soft violet) + accents (electric cyan) */
.blacklight .display, .blacklight .svc-title, .blacklight .dx-name, .blacklight .manifesto-line, .blacklight h1, .blacklight h2 {
  text-shadow: 0 0 26px rgba(150,110,255,0.30), 0 0 60px rgba(70,200,255,0.18);
}
.blacklight em, .blacklight .display em, .blacklight .manifesto-line em {
  color: var(--gold-deep); text-shadow: 0 0 14px rgba(91,231,255,0.85), 0 0 36px rgba(150,110,255,0.55);
}
.blacklight .kicker { color: var(--gold-deep); text-shadow: 0 0 12px rgba(91,231,255,0.75); }
.blacklight .mantra .sep, .blacklight .related-go, .blacklight .discipline-go { color: var(--gold-deep); text-shadow: 0 0 12px rgba(91,231,255,0.8); }
/* nav legible on the dark ground */
.blacklight .site-header .wordmark-name, .blacklight .site-header .nav a, .blacklight .site-header .nav-cta { color: var(--ink); }
.blacklight .site-header.scrolled { background: rgba(10,7,20,0.82); box-shadow: 0 1px 0 var(--line); }
.blacklight .nav-cta { border-color: rgba(150,110,255,0.5); }
.blacklight .nav a::after { background: var(--gold-deep); }
.blacklight .nav-toggle span { background: var(--ink); }
/* at the top of the page the header is transparent over the hero; in blacklight
   its light text can fall on a LIGHT hero area (bright murals) and wash out.
   Make the non-scrolled header text bright with a soft dark halo so it stays
   crisp over anything — light or dark — without touching daylight or the
   scrolled (solid-dark) state. */
.blacklight .site-header:not(.scrolled) .wordmark-name,
.blacklight .site-header:not(.scrolled) .nav a,
.blacklight .site-header:not(.scrolled) .nav-cta {
  color: #fff;
  text-shadow: 0 1px 11px rgba(7,4,16,0.92), 0 0 2px rgba(7,4,16,0.85);
}
.blacklight .site-header:not(.scrolled) .wordmark-sub {
  color: rgba(255,255,255,0.86);
  text-shadow: 0 1px 9px rgba(7,4,16,0.9);
}
.blacklight .site-header:not(.scrolled) .nav-toggle span {
  box-shadow: 0 0 6px rgba(7,4,16,0.9);
}
/* buttons */
.blacklight .btn-solid { background: var(--gold-deep); color: #06120C; }
.blacklight .btn-solid:hover { background: var(--gold); color: #06120C; }
.blacklight .btn-line { border-color: rgba(150,255,200,0.5); color: var(--ink); }
.blacklight .btn-line:hover { background: var(--gold-deep); color: #06120C; border-color: var(--gold-deep); }
/* hardcoded dark grounds → unify to the UV black */
.blacklight .about-dark, .blacklight .cta-band, .blacklight .quote-band, .blacklight .feature-band { background: #0A0714; }
/* grain becomes a faint glow texture */
.blacklight .grain { mix-blend-mode: screen; opacity: 0.06; }

/* ---- the "Two Lights" day/night switch (built by script.js on every page) ----
   Her work lives in two lights — daylight murals & blacklight glow. This switch
   is the signature: a sliding sun⇄moon that flips the whole studio after dark. */
.bl-toggle { position: fixed; left: clamp(1rem,3vw,2rem); bottom: clamp(1rem,3vw,2rem); z-index: 10000;
  display: inline-flex; align-items: center; gap: 0.6em; padding: 0.55em 0.9em 0.55em 0.95em; border-radius: 100px;
  background: rgba(255,255,255,0.72); color: var(--ink); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 10px 30px -14px rgba(40,30,60,0.5);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .5s var(--ease), border-color .5s var(--ease), color .5s var(--ease); }
.bl-toggle:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -14px rgba(40,30,60,0.6); }
.bl-label { font-weight: 500; opacity: 0.9; min-width: 5.4em; text-align: left; }
.bl-ico { display: inline-flex; width: 15px; height: 15px; flex: 0 0 auto; transition: color .4s, opacity .4s, filter .4s; }
.bl-ico svg { width: 100%; height: 100%; display: block; }
.bl-sun  { color: var(--accent-amber); opacity: 1; }
.bl-moon { color: var(--muted); opacity: 0.45; }
.bl-track { position: relative; width: 40px; height: 22px; border-radius: 100px; flex: 0 0 auto;
  background: color-mix(in srgb, var(--accent-amber) 22%, #fff); border: 1px solid var(--line);
  transition: background .5s var(--ease), border-color .5s var(--ease); }
.bl-knob { position: absolute; top: 50%; left: 3px; width: 15px; height: 15px; border-radius: 50%;
  transform: translateY(-50%); background: var(--accent-amber);
  box-shadow: 0 0 10px -1px var(--accent-amber); transition: left .42s var(--ease), background .42s, box-shadow .42s; }
/* night state — the studio under black light */
html.blacklight .bl-toggle { background: rgba(14,9,26,0.74); border-color: rgba(150,110,255,0.4); color: var(--ink);
  box-shadow: 0 0 30px -6px rgba(130,90,255,0.55), 0 14px 34px -16px #000; }
html.blacklight .bl-sun  { color: var(--muted); opacity: 0.4; }
html.blacklight .bl-moon { color: var(--gold); opacity: 1; filter: drop-shadow(0 0 6px rgba(150,110,255,0.95)); }
html.blacklight .bl-track { background: color-mix(in srgb, var(--gold) 32%, #0A0714); border-color: rgba(150,110,255,0.5); }
html.blacklight .bl-knob { left: 22px; background: var(--gold); box-shadow: 0 0 12px 1px rgba(150,110,255,0.95);
  animation: blPulse 2.2s ease-in-out infinite; }
@keyframes blPulse { 0%,100% { box-shadow: 0 0 12px 1px rgba(150,110,255,0.95); } 50% { box-shadow: 0 0 20px 3px rgba(91,231,255,0.9); } }
@media (max-width: 600px) { .bl-toggle .bl-label { display: none; } .bl-toggle { padding: 0.5em; } }

/* ---- shared video lightbox (Vimeo / YouTube) ----------------------------- */
.vid-lb { position: fixed; inset: 0; z-index: 9999; background: rgba(8,7,9,0.95); display: none; align-items: center; justify-content: center; padding: 5vmin; opacity: 0; transition: opacity 0.3s ease; }
.vid-lb.open { display: flex; opacity: 1; }
.vid-lb-frame { position: relative; width: min(100%, 1180px); aspect-ratio: 16 / 9; background: #000; box-shadow: 0 50px 130px rgba(0,0,0,0.7); border-radius: 3px; }
.vid-lb-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: 3px; }
.vid-lb-close { position: absolute; top: -2.9rem; right: -0.2rem; background: none; border: 0; color: #fff; font-size: 2.1rem; line-height: 1; cursor: pointer; opacity: 0.82; transition: opacity 0.25s ease; }
.vid-lb-close:hover { opacity: 1; }
