/* ============================================================
   Sasha Santiago — official site
   Palette: bone #F4F0E8 / band #EBE5D8 / ink #14110F / gold #7a5c14
   ============================================================ */

:root {
  --bone: #F4F0E8;
  --band: #EBE5D8;
  --ink: #14110F;
  --muted: #474038;
  --muted-2: #4C453B;
  --gold: #7a5c14;
  --gold-soft: rgba(212, 175, 82, 0.22);
  --rule: #f2ede2;
  --maxw: 1280px;
  --gutter: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* hold the poster frame instead of looping footage */
  .hero-photo .hero-video { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

a { color: var(--ink); text-decoration: none; transition: color .25s; }
a:hover { color: #a8842c; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

img { display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 96px var(--gutter); }
.serif-display { font-family: 'Marcellus', Georgia, serif; }

/* ---------- animations ---------- */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes ember {
  0%   { transform: translateY(0) translateX(0) scale(.6); opacity: 0; }
  12%  { opacity: .9; }
  70%  { opacity: .55; }
  100% { transform: translateY(-420px) translateX(var(--dx, 0px)) scale(1.1); opacity: 0; }
}

/* Reveal is opt-in: the .js-reveal class is added by app.js only once the
   observer is wired, so if JS fails to load the content stays fully visible. */
.js-reveal [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
}
.js-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(244, 240, 232, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gold-soft);
}
.site-header .inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand {
  font-family: 'Marcellus', Georgia, serif;
  font-size: 19px; letter-spacing: 0.14em; text-transform: uppercase;
}
.site-nav {
  display: flex; flex-wrap: wrap; gap: 28px;
  font-size: 15px; letter-spacing: 0.08em; text-transform: uppercase;
}
.site-nav a { color: var(--muted); }
.site-nav a:hover { color: var(--gold); }

/* ---------- hero ---------- */
.hero {
  position: relative; display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 84vh; overflow: hidden;
}
.hero-glow {
  position: absolute; left: -10%; top: 10%;
  width: 820px; height: 820px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,82,0.18) 0%, rgba(212,175,82,0.07) 40%, rgba(244,240,232,0) 70%);
  pointer-events: none;
}
.embers { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.embers span {
  position: absolute; border-radius: 50%;
  box-shadow: 0 0 10px rgba(232,140,52,0.65);
  opacity: 0;
}
.hero-copy {
  position: relative; z-index: 2;
  padding: 88px 56px 88px max(var(--gutter), calc((100vw - var(--maxw)) / 2));
  display: flex; flex-direction: column; justify-content: center;
}
.kicker {
  font-size: 15px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2);
}
.hero h1 {
  font-size: clamp(56px, 8vw, 104px); line-height: 0.9;
  letter-spacing: -0.04em; margin: 28px 0 0; text-transform: uppercase;
}
.hero .rule { height: 2px; background: var(--gold); margin: 32px 0 26px; }
.hero .roles { font-size: 20px; line-height: 1.5; margin: 0; color: var(--muted); max-width: 34ch; }
.hero .quote { font-size: clamp(22px, 3vw, 30px); line-height: 1.3; font-weight: 500; margin: 40px 0 0; max-width: 22ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 44px; }
.btn {
  border: 1px solid var(--rule); padding: 14px 26px;
  font-size: 15px; letter-spacing: 0.1em; text-transform: uppercase;
  transition: border-color .25s, color .25s, transform .25s;
}
.btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--ghost { border-color: var(--gold-soft); color: var(--muted); }
.hero-photo { min-height: 0; overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; min-height: 84vh; object-fit: cover; object-position: 50% 14%; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--band); overflow: hidden; padding: 18px 0;
  border-top: 1px solid rgba(20,17,15,0.12);
  border-bottom: 1px solid rgba(20,17,15,0.12);
}
.marquee .track {
  display: flex; width: max-content;
  animation: marquee 34s linear infinite;
  font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase;
}
.marquee span { padding-right: 40px; }
.marquee .dot { color: var(--gold); }

/* ---------- section headers ---------- */
.sec-head {
  display: flex; justify-content: space-between; align-items: baseline;
  border-bottom: 2px solid var(--rule); padding-bottom: 16px;
}
.sec-head .label { font-size: 15px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.sec-head .num { font-size: 15px; font-weight: 600; color: var(--gold); }
.band { background: var(--band); }
.band .sec-head { border-bottom-color: rgba(20,17,15,0.22); }
.band .sec-head .label { color: var(--gold); }

.lede { font-size: 19px; color: var(--muted-2); margin: 20px 0 0; }
.h2-big { font-size: clamp(34px, 5vw, 52px); line-height: 1.06; letter-spacing: -0.03em; margin: 44px 0 40px; max-width: 18ch; }
.h2-caps { font-size: clamp(38px, 6vw, 64px); line-height: 1.02; letter-spacing: -0.03em; margin: 44px 0 0; text-transform: uppercase; }

/* ---------- artist ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1000px; }
.two-col p { font-size: 19px; line-height: 1.6; margin: 0; }
.two-col p + p { color: var(--muted); }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
.pillar .frame { overflow: hidden; }
.pillar img { width: 100%; height: 420px; object-fit: cover; object-position: 50% 0%; transition: transform .6s; }
.pillar .frame:hover img { transform: scale(1.04); }
.pillar .tag { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-top: 20px; }
.pillar p { font-size: 19px; line-height: 1.55; margin: 10px 0 0; }

/* ---------- watch ---------- */
.videos { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.video-frame { position: relative; aspect-ratio: 16 / 9; background: #0b0907; overflow: hidden; }
.video-frame button.play {
  position: absolute; inset: 0; padding: 0; border: 0; background: none;
  cursor: pointer; display: block; width: 100%; height: 100%;
}
.video-frame button.play img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .82; transition: transform .6s, opacity .3s;
}
.video-frame button.play:hover img { transform: scale(1.04); opacity: 1; }
.video-frame .play-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 76px; height: 76px; border: 1px solid var(--bone); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone); font-size: 22px; background: rgba(11,9,7,0.45); backdrop-filter: blur(2px);
}
.video-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  display: block; animation: fadeIn .4s ease;
}
.video-meta {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  margin-top: 18px; border-top: 1px solid rgba(20,17,15,0.16); padding-top: 16px;
}
.video-meta .kicker-sm { font-size: 13px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.video-meta .title { font-family: 'Marcellus', Georgia, serif; font-size: 22px; line-height: 1.3; margin-top: 6px; }
.video-meta a { color: var(--muted); font-size: 14px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; white-space: nowrap; }
.video-meta a:hover { color: var(--gold); }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; margin-top: 40px; }
.gallery button {
  padding: 0; border: 0; background: #0e0a06; cursor: pointer; overflow: hidden;
  display: block; height: 420px;
}
.gallery img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%;
  transition: transform .6s, opacity .3s;
}
.gallery button:hover img { transform: scale(1.06); opacity: .88; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 50; background: rgba(11,9,7,0.94);
  display: flex; align-items: center; justify-content: center; padding: 48px;
  animation: fadeIn .25s ease; cursor: zoom-out;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 100%; max-height: 100%; object-fit: contain; }
.lightbox button {
  position: absolute; background: none; border: 1px solid rgba(242,237,226,0.5);
  color: #f2ede2; width: 52px; height: 52px; cursor: pointer;
  transition: border-color .25s, color .25s;
}
.lightbox button:hover { border-color: var(--gold); color: var(--gold); }
.lightbox .lb-prev { left: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }
.lightbox .lb-next { right: 24px; top: 50%; transform: translateY(-50%); font-size: 24px; }
.lightbox .lb-close { top: 24px; right: 24px; font-size: 18px; }

/* ---------- at a glance ---------- */
.glance { width: 100%; border-collapse: collapse; font-size: 19px; margin-top: 8px; }
.glance tr { border-bottom: 1px solid var(--gold-soft); }
.glance tr:last-child { border-bottom: none; }
.glance th {
  width: 220px; padding: 22px 32px 22px 0; vertical-align: top; text-align: left;
  font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); line-height: 1.9; font-weight: 400;
}
.glance td { padding: 22px 0; vertical-align: top; }

/* ---------- positioning / team ---------- */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
.three-col .tag { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.three-col p { font-size: 19px; line-height: 1.6; margin: 14px 0 0; }

.assets-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; }
.asset-link {
  display: flex; justify-content: space-between; gap: 20px;
  border-bottom: 1px solid var(--gold-soft); padding: 22px 0; font-size: 21px;
  transition: padding-left .25s, color .25s;
}
.asset-link:hover { color: var(--gold); padding-left: 8px; }
.asset-link .arrow { color: var(--gold); }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 48px; }
.team-grid .name { font-family: 'Marcellus', Georgia, serif; font-size: 30px; letter-spacing: 0.04em; }
.team-grid .dash { height: 2px; background: var(--gold); width: 72px; margin: 16px 0; }
.team-grid p { font-size: 18px; line-height: 1.55; color: var(--muted); margin: 0; }
.team-note { font-size: 19px; line-height: 1.6; margin: 48px 0 0; max-width: 70ch; }


/* ---------- label section ---------- */
.label-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 64px; margin-top: 48px; }
.label-lead { font-size: 22px; line-height: 1.5; margin: 0 0 22px; }
.label-body { font-size: 19px; line-height: 1.6; margin: 0 0 22px; color: var(--muted); }
.label-body:last-of-type { margin-bottom: 0; }
.label-more {
  display: inline-block; margin-top: 26px; font-size: 18px; color: var(--gold);
  border-bottom: 1px solid rgba(122,92,20,0.5); padding-bottom: 2px;
}
.focus-list { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 14px; font-size: 20px; line-height: 1.35; }
.focus-list li { padding-left: 18px; border-left: 2px solid rgba(122,92,20,0.5); }

/* ---------- contact block ---------- */
.contact-block { margin-top: 56px; padding-top: 32px; border-top: 2px solid rgba(20,17,15,0.22); }
.contact-block > .label { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 32px; }
.contact-people .who { font-weight: 600; font-size: 26px; }
.contact-people p { font-size: 17px; line-height: 1.5; margin: 8px 0 0; max-width: 34ch; }
.contact-people .contact-list { gap: 8px; margin-top: 16px; font-size: 17px; }
.contact-links { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 36px; font-size: 18px; }
.contact-links a:hover { color: var(--gold); }

/* ---------- footer ---------- */
.site-footer { background: var(--band); color: var(--ink); }
.site-footer h2 { font-size: clamp(34px, 5vw, 56px); line-height: 1.06; letter-spacing: -0.03em; margin: 26px 0 0; max-width: 18ch; }
.contact-grid {
  margin-top: 56px; padding-top: 32px; border-top: 2px solid rgba(20,17,15,0.22);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-grid .label { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; }
.contact-grid .who { font-weight: 600; font-size: 30px; margin-top: 12px; }
.contact-grid p { font-size: 18px; line-height: 1.55; margin: 10px 0 0; max-width: 46ch; }
.contact-list { display: flex; flex-direction: column; gap: 12px; font-size: 19px; }
.contact-list a:hover { color: var(--gold); }
.colophon { margin-top: 64px; font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.55; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery button { height: 340px; }
}

@media (max-width: 900px) {
  :root { --gutter: 22px; }
  .wrap { padding: 64px var(--gutter); }

  .site-header .inner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 14px var(--gutter); }
  .site-nav { gap: 18px; font-size: 13px; }

  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 56px var(--gutter) 48px; order: 2; }
  .hero-photo { order: 1; height: 62vh; }
  .hero-photo img { min-height: 0; height: 100%; }
  .hero .roles, .hero .quote { max-width: none; }

  .two-col, .pillars, .videos, .three-col, .assets-grid, .team-grid,
  .contact-grid, .label-grid, .contact-people {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .assets-grid { gap: 0; }
  .pillar img { height: 300px; }

  .label-lead { font-size: 19px; }
  .focus-list { font-size: 18px; }
  .glance { font-size: 17px; }
  .glance th, .glance td { display: block; width: auto; padding: 0; }
  .glance th { padding-top: 18px; line-height: 1.5; }
  .glance td { padding: 6px 0 18px; }

  .lightbox { padding: 16px; }
  .lightbox .lb-prev { left: 8px; }
  .lightbox .lb-next { right: 8px; }
}

@media (max-width: 560px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery button { height: 260px; }
  .video-meta { flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ---------- print ---------- */
@media print {
  .site-header, .marquee, .embers, .hero-glow, .lightbox { display: none !important; }
  body { background: #fff; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   ASK SASHA — assistant orb   (orb.js)
   Design language matched to the TEC Leimert guide.
   ============================================================ */
.orb-root { position: fixed; right: 26px; bottom: 26px; z-index: 60; }

/* ---------------- the orb ---------------- */
.orb-btn {
  position: relative; width: 88px; height: 88px; border-radius: 50%;
  border: 0; padding: 0; background: none; cursor: pointer; display: block; margin-left: auto;
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
  color: #f6e3ae;
}
.orb-btn:hover { transform: translateY(-3px) scale(1.03); }
.orb-btn.is-active { transform: scale(.95); }

.orb-halo {
  position: absolute; inset: -26px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212,175,82,0.34) 0%, rgba(212,175,82,0.12) 42%, rgba(212,175,82,0) 70%);
}
.orb-ring {
  position: absolute; border-radius: 50%; pointer-events: none;
  border: 1px solid rgba(212,175,82,0.42);
}
.orb-ring--1 { inset: -6px;  animation: orbRing 4.2s ease-out infinite; }
.orb-ring--2 { inset: -16px; animation: orbRing 4.2s ease-out infinite 1.4s; }
@keyframes orbRing {
  0%   { transform: scale(.88); opacity: .9; }
  75%  { transform: scale(1.22); opacity: 0; }
  100% { transform: scale(1.22); opacity: 0; }
}

.orb-sphere {
  position: absolute; inset: 8px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  /* Dark core so the gold wordmark reads; the glow stays on the rim. */
  background:
    radial-gradient(circle at 34% 26%, rgba(226,194,116,0.42) 0%, rgba(122,92,20,0.30) 26%, rgba(30,24,14,0.98) 62%, #14110F 100%),
    #14110F;
  box-shadow:
    0 12px 34px rgba(122,92,20,0.42),
    0 2px 10px rgba(20,17,15,0.35),
    inset 0 0 0 1px rgba(212,175,82,0.35),
    inset 0 -8px 18px rgba(20,17,15,0.7),
    inset 0 6px 16px rgba(255,238,190,0.14);
}
.orb-sphere .orb-wordmark { width: 74%; height: auto; display: block; }

/* ---------------- hint ---------------- */
.orb-hint {
  position: absolute; right: 102px; bottom: 26px; white-space: nowrap;
  background: var(--ink); color: #f6e3ae;
  font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 10px 15px; border-radius: 999px;
  border: 1px solid rgba(212,175,82,0.3);
  opacity: 0; transform: translateX(10px); pointer-events: none;
  transition: opacity .45s, transform .45s;
}
.orb-hint.is-visible { opacity: 1; transform: none; }

/* ---------------- panel ---------------- */
.orb-panel {
  position: absolute; right: 0; bottom: 106px;
  width: 372px; max-width: calc(100vw - 32px);
  height: 540px; max-height: calc(100vh - 160px);
  background: #14110F;
  border: 1px solid rgba(212,175,82,0.26);
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(20,17,15,0.45), 0 0 0 1px rgba(212,175,82,0.06);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none;
  transition: opacity .28s cubic-bezier(.2,.7,.3,1), transform .28s cubic-bezier(.2,.7,.3,1);
}
.orb-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }

.orb-head {
  display: flex; align-items: center; gap: 11px;
  padding: 16px 14px 15px 16px;
  border-bottom: 1px solid rgba(212,175,82,0.16);
}
.orb-head-text { flex: 1; min-width: 0; display: block; }
.orb-head-text .orb-wordmark { width: 96px; height: auto; display: block; margin-bottom: 4px; }
.orb-head-sub {
  display: block; font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(212,175,82,0.8); margin-top: 3px;
}
.orb-icon-btn {
  background: none; border: 0; color: #F4F0E8; opacity: .5;
  cursor: pointer; padding: 6px; line-height: 0;
  transition: opacity .2s, color .2s;
}
.orb-icon-btn svg { width: 16px; height: 16px; display: block; }
.orb-icon-btn:hover { opacity: 1; }
.orb-icon-btn.is-on { opacity: 1; color: #d4af52; }

/* ---------------- log ---------------- */
.orb-log { flex: 1; overflow-y: auto; padding: 16px; }
.orb-log::-webkit-scrollbar { width: 6px; }
.orb-log::-webkit-scrollbar-thumb { background: rgba(212,175,82,0.22); border-radius: 3px; }

.orb-msg { display: flex; margin-bottom: 10px; }
.orb-msg--user { justify-content: flex-end; }
.orb-bubble {
  max-width: 88%; padding: 12px 14px; border-radius: 14px;
  font-size: 14px; line-height: 1.55; color: #EDE7DA;
}
.orb-msg--bot .orb-bubble {
  background: rgba(244,240,232,0.06);
  border: 1px solid rgba(212,175,82,0.14);
  border-bottom-left-radius: 5px;
}
.orb-msg--user .orb-bubble {
  background: rgba(212,175,82,0.16);
  border: 1px solid rgba(212,175,82,0.3);
  color: #F4F0E8; border-bottom-right-radius: 5px;
}
.orb-bubble b, .orb-bubble strong { color: #e2c274; font-weight: 600; }
.orb-bubble a { color: #d4af52; border-bottom: 1px solid rgba(212,175,82,0.45); }
.orb-bubble a:hover { color: #f0d68a; }

.orb-typing { display: flex; gap: 5px; padding: 15px 14px; }
.orb-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: #d4af52;
  opacity: .35; animation: orbDot 1.15s infinite;
}
.orb-typing span:nth-child(2) { animation-delay: .16s; }
.orb-typing span:nth-child(3) { animation-delay: .32s; }
@keyframes orbDot { 0%,60%,100% { opacity:.25; transform: translateY(0); } 30% { opacity:.95; transform: translateY(-3px); } }

/* primary action */
.orb-cta {
  display: block; text-align: center; margin: 2px 0 12px;
  background: linear-gradient(180deg, #e2c274 0%, #c9a24a 100%);
  color: #14110F; font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 14px; border-radius: 999px;
  transition: filter .2s, transform .2s;
}
.orb-cta:hover { filter: brightness(1.08); transform: translateY(-1px); color: #14110F; }

.orb-chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 2px 0 12px; }
.orb-chip {
  background: none; border: 1px solid rgba(212,175,82,0.3); color: #EDE7DA;
  border-radius: 999px; padding: 8px 13px; font-size: 12px; cursor: pointer;
  font-family: inherit; transition: border-color .2s, color .2s, background .2s;
}
.orb-chip:hover { border-color: #d4af52; color: #f0d68a; background: rgba(212,175,82,0.1); }

.orb-note {
  font-size: 12px; color: rgba(237,231,218,0.75); text-align: center;
  padding: 0 16px 10px;
}

/* ---------------- input ---------------- */
.orb-form {
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px 14px;
}
.orb-input {
  flex: 1; min-width: 0; border: 1px solid rgba(212,175,82,0.28); border-radius: 999px;
  padding: 12px 16px; font-size: 13.5px; font-family: inherit;
  color: #F4F0E8; background: rgba(244,240,232,0.05); outline: none;
  transition: border-color .2s, background .2s;
}
.orb-input::placeholder { color: rgba(237,231,218,0.4); }
.orb-input:focus { border-color: #d4af52; background: rgba(244,240,232,0.08); }

.orb-round {
  width: 38px; height: 38px; flex-shrink: 0; border: 0; border-radius: 50%;
  cursor: pointer; line-height: 0;
  display: flex; align-items: center; justify-content: center;
  transition: filter .2s, transform .2s, box-shadow .2s;
}
.orb-round svg { width: 17px; height: 17px; display: block; }
.orb-mic {
  background: rgba(212,175,82,0.16); color: #e2c274;
  border: 1px solid rgba(212,175,82,0.34);
}
.orb-mic:hover { background: rgba(212,175,82,0.26); }
.orb-mic.is-live {
  background: #d4af52; color: #14110F;
  box-shadow: 0 0 0 0 rgba(212,175,82,0.6); animation: orbLive 1.4s infinite;
}
@keyframes orbLive {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,82,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(212,175,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,82,0); }
}
.orb-send { background: linear-gradient(180deg, #e2c274 0%, #c9a24a 100%); color: #14110F; }
.orb-send:hover { filter: brightness(1.1); transform: translateY(-1px); }

@media (max-width: 560px) {
  .orb-root { right: 16px; bottom: 16px; }
  .orb-btn { width: 72px; height: 72px; }
  .orb-panel { height: 70vh; bottom: 92px; }
  .orb-panel.is-max { height: 100vh; height: 100dvh; bottom: 0; }
  .orb-hint { right: 86px; bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .orb-ring { animation: none; opacity: .45; }
  .orb-typing span, .orb-mic.is-live { animation: none; }
}

@media print { .orb-root { display: none !important; } }

/* per-answer play button + system notes */
.orb-msg--bot .orb-bubble { position: relative; padding-right: 34px; }
.orb-play {
  position: absolute; top: 9px; right: 8px;
  width: 22px; height: 22px; padding: 0; line-height: 0;
  border: 1px solid rgba(212,175,82,0.3); border-radius: 50%;
  background: rgba(212,175,82,0.12); color: #e2c274; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.orb-play svg { width: 11px; height: 11px; }
.orb-play:hover { background: rgba(212,175,82,0.28); border-color: #d4af52; transform: scale(1.08); }
.orb-sysnote {
  font-size: 11.5px; line-height: 1.45; color: #e2c274;
  background: rgba(212,175,82,0.10); border: 1px solid rgba(212,175,82,0.25);
  border-radius: 10px; padding: 9px 12px; margin: 0 0 10px;
}

.orb-voice-toggle { display: flex; align-items: center; gap: 5px; opacity: .62; }
.orb-voice-label { font-size: 9.5px; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1; }
.orb-voice-toggle.is-on { opacity: 1; color: #d4af52; }

/* ============================================================
   MUSIC — mini streaming player
   ============================================================ */
.player {
  margin-top: 36px; border: 1px solid var(--gold-soft); border-radius: 14px;
  overflow: hidden; background: rgba(255,255,255,0.35);
}
.track-list { display: block; }
.track {
  display: grid; grid-template-columns: 34px 30px 1fr auto 52px;
  align-items: center; gap: 14px; width: 100%;
  padding: 15px 20px; background: none; border: 0;
  border-bottom: 1px solid rgba(212,175,82,0.18);
  font-family: inherit; text-align: left; cursor: pointer;
  transition: background .2s;
}
.track:last-child { border-bottom: none; }
.track:hover { background: rgba(212,175,82,0.08); }
.track.is-current { background: rgba(212,175,82,0.12); }
.track-i { font-size: 12px; letter-spacing: 0.1em; color: var(--muted-2); }
.track-play {
  width: 28px; height: 28px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  border: 1px solid var(--gold-soft); color: var(--gold);
  transition: background .2s, border-color .2s;
}
.track-play svg { width: 11px; height: 11px; }
.track:hover .track-play, .track.is-current .track-play { border-color: var(--gold); background: rgba(212,175,82,0.18); }
.track.is-playing .track-play { background: var(--gold); color: var(--bone); }
.track-t { font-size: 18px; color: var(--ink); }
.track-n { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.track-d { font-size: 13px; color: var(--muted-2); text-align: right; }

.now-playing {
  display: grid; grid-template-columns: auto auto auto minmax(0,1fr) minmax(0,2fr) auto;
  align-items: center; gap: 14px;
  padding: 14px 20px; background: var(--ink); color: var(--bone);
  opacity: .55; transition: opacity .3s;
}
.now-playing.is-active { opacity: 1; }
.np-btn {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(212,175,82,0.35);
  background: none; color: #e2c274; cursor: pointer; line-height: 0;
  display: flex; align-items: center; justify-content: center; transition: background .2s;
}
.np-btn svg { width: 13px; height: 13px; }
.np-btn:hover { background: rgba(212,175,82,0.2); }
.np-btn--main { width: 42px; height: 42px; background: #e2c274; color: var(--ink); border-color: #e2c274; }
.np-btn--main svg { width: 15px; height: 15px; }
.np-btn--main:hover { filter: brightness(1.1); background: #e2c274; }
.np-meta { min-width: 0; }
.np-title { font-size: 15px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.np-note { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #c9a24a; margin-top: 2px; }
.np-seek { -webkit-appearance: none; appearance: none; width: 100%; height: 3px; border-radius: 2px;
  background: rgba(212,175,82,0.3); outline: none; cursor: pointer; }
.np-seek::-webkit-slider-thumb { -webkit-appearance: none; width: 12px; height: 12px; border-radius: 50%; background: #e2c274; cursor: pointer; }
.np-seek::-moz-range-thumb { width: 12px; height: 12px; border: 0; border-radius: 50%; background: #e2c274; cursor: pointer; }
.np-time { font-size: 11.5px; color: #c9a24a; white-space: nowrap; font-variant-numeric: tabular-nums; }

/* self-hosted video fills the 16:9 frame */
.video-frame video { position: absolute; inset: 0; width: 100%; height: 100%; background: #0b0907; }

@media (max-width: 900px) {
  .track { grid-template-columns: 26px 26px 1fr 44px; gap: 10px 10px; padding: 13px 14px; }
  .track-t { font-size: 16px; grid-column: 3; }
  .track-n { grid-column: 3; grid-row: 2; margin-top: -6px; }
  .track-d { grid-row: 1; }
  .now-playing { grid-template-columns: auto auto auto 1fr; grid-template-areas:
      "prev main next meta" "seek seek seek seek"; row-gap: 10px; padding: 12px 14px; }
  #np-prev { grid-area: prev; } #np-toggle { grid-area: main; } #np-next { grid-area: next; }
  .np-meta { grid-area: meta; } .np-seek { grid-area: seek; }
  .np-time { display: none; }
}

/* hero motion — replaces the still in the first section */
.hero-photo .hero-video {
  width: 100%; height: 100%; min-height: 84vh;
  object-fit: cover; object-position: 50% 30%;
  display: block; background: var(--band);
}
@media (max-width: 900px) {
  .hero-photo .hero-video { min-height: 0; height: 100%; }
}

/* ============================================================
   INQUIRY FORM  (Netlify Forms — no backend)
   ============================================================ */
.inquiry {
  margin-top: 44px; padding-top: 36px;
  border-top: 1px solid rgba(20,17,15,0.18);
}
.inquiry-head .label { font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.inquiry-head p { font-size: 17px; line-height: 1.5; margin: 10px 0 0; color: var(--muted); max-width: 52ch; }

.inquiry-form { margin-top: 26px; max-width: 720px; }
.hp { position: absolute; left: -9999px; }         /* honeypot */
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: block; margin-bottom: 18px; }
.field > span {
  display: block; font-size: 11.5px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--gold-soft); border-radius: 8px;
  padding: 12px 14px; outline: none; transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); background: #fff;
}
.inquiry-send {
  background: var(--ink); color: var(--bone); border: 0; border-radius: 999px;
  padding: 14px 30px; font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s;
}
.inquiry-send:hover { background: var(--gold); transform: translateY(-1px); }
.inquiry-send[disabled] { opacity: .55; cursor: default; transform: none; }
.inquiry-status { font-size: 15px; margin: 14px 0 0; min-height: 1.2em; }
.inquiry-status.ok  { color: var(--gold); }
.inquiry-status.err { color: #b3261e; }

@media (max-width: 900px) { .f-row { grid-template-columns: 1fr; gap: 0; } }

/* chat-collected inquiry */
.orb-form-inline { padding: 2px 0 12px; }
.orb-input-sm {
  width: 100%; margin-bottom: 7px; font-family: inherit; font-size: 13.5px;
  color: #F4F0E8; background: rgba(244,240,232,0.06);
  border: 1px solid rgba(212,175,82,0.3); border-radius: 9px;
  padding: 10px 12px; outline: none;
}
.orb-input-sm::placeholder { color: rgba(237,231,218,0.42); }
.orb-input-sm:focus { border-color: #d4af52; }

/* ---------------- subscribe bar ---------------- */
.subscribe {
  margin-top: 44px; padding: 26px 28px;
  border: 1px solid var(--gold-soft); border-radius: 14px;
  background: rgba(255,255,255,0.45);
  display: grid; grid-template-columns: 1fr auto; gap: 20px 32px; align-items: center;
}
.sub-copy .label { font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); }
.sub-copy p { font-size: 16px; margin: 6px 0 0; color: var(--muted); }
.sub-form { display: flex; gap: 10px; }
.sub-form input[type="email"] {
  width: 280px; max-width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--gold-soft); border-radius: 999px;
  padding: 12px 18px; outline: none; transition: border-color .2s;
}
.sub-form input[type="email"]:focus { border-color: var(--gold); }
.sub-form button {
  background: var(--gold); color: var(--bone); border: 0; border-radius: 999px;
  padding: 12px 26px; font-family: inherit; font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: background .2s, transform .2s; white-space: nowrap;
}
.sub-form button:hover { background: var(--ink); transform: translateY(-1px); }
.sub-form button[disabled] { opacity: .55; transform: none; cursor: default; }
.sub-status { grid-column: 1 / -1; font-size: 14.5px; margin: 0; min-height: 1.1em; }
.sub-status.ok  { color: var(--gold); }
.sub-status.err { color: #b3261e; }

@media (max-width: 900px) {
  .subscribe { grid-template-columns: 1fr; }
  .sub-form { flex-direction: column; }
  .sub-form input[type="email"] { width: 100%; }
}

/* ---------------- styled select (replaces the OS popup) ---------------- */
.sel { position: relative; }
.sel-native {
  position: absolute; opacity: 0; pointer-events: none;
  width: 100%; height: 100%; left: 0; top: 0;
}
.sel-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: inherit; font-size: 16px; color: var(--ink); text-align: left;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--gold-soft); border-radius: 8px;
  padding: 12px 14px; cursor: pointer;
  transition: border-color .2s, background .2s;
}
.sel-btn:hover { border-color: rgba(212,175,82,0.5); }
.sel.is-open .sel-btn, .sel-btn:focus-visible { border-color: var(--gold); background: #fff; }
.sel-chev { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; transition: transform .2s; }
.sel.is-open .sel-chev { transform: rotate(180deg); }

.sel-list {
  position: absolute; z-index: 30; left: 0; right: 0; top: calc(100% + 6px);
  margin: 0; padding: 6px; list-style: none;
  background: var(--bone);
  border: 1px solid var(--gold-soft); border-radius: 10px;
  box-shadow: 0 18px 44px rgba(20,17,15,0.16);
  max-height: 280px; overflow-y: auto;
}
.sel-opt {
  padding: 11px 13px; border-radius: 7px; font-size: 15.5px; color: var(--ink);
  cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.sel-opt:hover, .sel-opt.is-active { background: rgba(212,175,82,0.14); }
.sel-opt.is-selected { color: var(--gold); font-weight: 500; }
.sel-opt.is-selected::after {
  content: ""; width: 13px; height: 8px; flex-shrink: 0;
  border-left: 1.8px solid currentColor; border-bottom: 1.8px solid currentColor;
  transform: rotate(-45deg) translateY(-2px);
}

/* ---------------------------------------------------------------
   Full-screen chat. The orb panel is deliberately small, but long
   answers plus follow-up chips need room. The expand button in the
   panel header toggles .is-max.
   --------------------------------------------------------------- */
.orb-panel.is-max {
  position: fixed;
  inset: 0;
  right: 0; bottom: 0;
  width: 100vw; max-width: 100vw;
  height: 100vh; height: 100dvh;
  max-height: 100vh; max-height: 100dvh;
  border-radius: 0;
  border-left: none; border-right: none;
  box-shadow: none;
  z-index: 9999;
}

/* Give the conversation the extra width without letting lines run
   uncomfortably long on a wide monitor. */
.orb-panel.is-max .orb-log,
.orb-panel.is-max .orb-form,
.orb-panel.is-max .orb-note,
.orb-panel.is-max .orb-head {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.orb-panel.is-max .orb-head { padding-top: max(16px, env(safe-area-inset-top)); }
.orb-panel.is-max .orb-form { padding-bottom: max(12px, env(safe-area-inset-bottom)); }

/* Stop the page behind from scrolling while full screen is open. */
body.orb-maxed { overflow: hidden; }

.orb-expand { display: inline-flex; }
@media (max-width: 560px) {
  /* On a phone the panel is already near full-bleed; keep the control
     but make the expanded state edge-to-edge. */
  .orb-panel.is-max { border: none; }
}
