/* ==========================================================================
   MONARCHY — inner pages (history, divisions, connect, cases)
   Extends style.css. Light + dark via tokens. Brand case heroes stay painted.
   ========================================================================== */

/* ---------- page hero: still or film ---------- */
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #0a0a0c;
}
.page-hero.mid { min-height: 72vh; }
.page-hero video,
.page-hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.page-hero .scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(80% 70% at 18% 48%, rgba(252,80,0,.18) 0%, transparent 58%),
    linear-gradient(to bottom, rgba(10,10,12,.55) 0%, rgba(10,10,12,.18) 36%, rgba(10,10,12,.62) 68%, rgba(10,10,12,.97) 100%);
}
.page-hero .hero-in { position: relative; z-index: 2; }
.page-hero .h-display { max-width: 16ch; }
.page-hero .lede, .page-hero .hero-sub { color: var(--bone-70); }

.case-back {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--bone-55);
  margin-bottom: 1.6rem;
  border-bottom: 1px solid transparent;
}
.case-back:hover { color: var(--bone); border-bottom-color: var(--brand); }

.case-mark {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: -.03em; line-height: 1;
  margin-bottom: 1.25rem;
}
.case-mark .sub {
  display: block; margin-top: .35rem;
  font-family: var(--mono); font-size: .62rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; opacity: .72;
}

/* Wanted wordmark (logo.avif missing) */
.mark-wanted { color: #FF6196; letter-spacing: -.04em; font-weight: 800; }
.mark-wanted em { font-style: normal; font-size: .42em; letter-spacing: .28em; display: block; margin-top: .35rem; color: #fff; font-weight: 600; }
.mark-cookie { color: #FF3AAF; }
.mark-cookie .sub { color: #66DEFF; }
.mark-floor { color: #FF8A3D; }
.mark-aixf { color: #E8B84A; }

/* Brand-painted heroes stay cinematic in both themes */
.page-hero.case-wanted { background: #0B1B2B; }
.page-hero.case-wanted .scrim {
  background:
    linear-gradient(100deg, rgba(11,27,43,.92) 0%, rgba(11,27,43,.55) 42%, rgba(11,27,43,.18) 72%, transparent 90%),
    linear-gradient(to bottom, rgba(11,27,43,.4) 0%, rgba(11,27,43,.88) 100%);
}
.page-hero.case-wanted .eyebrow { color: #FF6196; }
.page-hero.case-wanted .accent { color: #FF6196; }

.page-hero.case-cookie { background: #120814; }
.page-hero.case-cookie .scrim {
  background:
    linear-gradient(100deg, rgba(18,8,20,.94) 0%, rgba(18,8,20,.5) 46%, transparent 82%),
    linear-gradient(to bottom, rgba(18,8,20,.35) 0%, rgba(18,8,20,.92) 100%);
}
.page-hero.case-cookie .eyebrow { color: #FF3AAF; }
.page-hero.case-cookie .accent { color: #FF3AAF; }
.page-hero.case-cookie .case-kicker { color: #66DEFF; margin-top: 1.4rem; }

.page-hero.case-floor { background: #140804; }
.page-hero.case-floor .scrim {
  background:
    linear-gradient(100deg, rgba(20,8,4,.94) 0%, rgba(20,8,4,.5) 46%, transparent 82%),
    linear-gradient(to bottom, rgba(20,8,4,.3) 0%, rgba(20,8,4,.92) 100%);
}
.page-hero.case-floor .eyebrow { color: #FF8A3D; }
.page-hero.case-floor .accent { color: #FC5000; }

.page-hero.case-xfactor { background: #07060f; }
.page-hero.case-xfactor .scrim {
  background:
    linear-gradient(100deg, rgba(7,6,15,.94) 0%, rgba(7,6,15,.5) 46%, transparent 82%),
    linear-gradient(to bottom, rgba(7,6,15,.3) 0%, rgba(7,6,15,.92) 100%);
}
.page-hero.case-xfactor .eyebrow { color: #E8B84A; }
.page-hero.case-xfactor .accent { color: #E8B84A; }

/* ---------- full-bleed film strip ---------- */
.film-bleed {
  position: relative; overflow: hidden;
  background: #000;
}
.film-bleed video, .film-bleed img {
  width: 100%; height: min(78vh, 48rem);
  object-fit: cover; display: block;
}
.film-bleed.tall video, .film-bleed.tall img { height: min(88vh, 56rem); }
.film-caption {
  position: absolute; left: 1.5rem; bottom: 1.5rem;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(245,242,236,.78);
  background: rgba(10,10,12,.55); border: 1px solid rgba(245,242,236,.14);
  padding: .4rem .85rem; border-radius: 999px; backdrop-filter: blur(8px);
}

.still-xl {
  border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line);
}
.still-xl img, .still-xl video {
  width: 100%; display: block; object-fit: cover;
  aspect-ratio: 16/10;
}
.still-xl.portrait img { aspect-ratio: 4/5; }

/* ---------- inner copy blocks ---------- */
.prose { max-width: 62ch; }
.prose p + p { margin-top: 1.1rem; }
.prose b, .prose strong { color: var(--bone); font-weight: 600; }
.answer-block {
  background: var(--ink-2);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 2rem 2.1rem;
}
.answer-block p { color: var(--bone-70); max-width: 74ch; }
.answer-block p + p { margin-top: 1rem; }
.answer-block strong { color: var(--bone); }

.owned-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.owned-grid .i { font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; color: var(--brand-soft); text-transform: uppercase; }
.owned-grid h3 { margin: .55rem 0 .45rem; }
.owned-grid p { color: var(--bone-70); font-size: .95rem; }
@media (max-width: 1000px) { .owned-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .owned-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; gap: 2rem;
  letter-spacing: -.015em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-family: var(--mono); font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { color: var(--bone-70); margin-top: .9rem; max-width: 72ch; }

/* ---------- divisions: cinematic rows, not a menu ---------- */
.div-row {
  display: grid; grid-template-columns: 1.08fr .92fr;
  gap: 3.2rem; align-items: center;
  padding: 5.5rem 0;
  border-bottom: 1px solid var(--line);
}
.div-row:last-child { border-bottom: 0; }
.div-row.flip { grid-template-columns: .92fr 1.08fr; }
.div-row.flip .div-copy { order: 2; }
.div-film {
  border-radius: 1.25rem; overflow: hidden;
  background: #000; border: 1px solid var(--line);
  box-shadow: 0 30px 80px -28px rgba(0,0,0,.55);
}
.div-film video, .div-film img {
  width: 100%; aspect-ratio: 16/11; object-fit: cover; display: block;
}
.div-kicker { font-family: var(--mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brand-soft); margin-bottom: 1.1rem; }
.div-stats { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: 1.8rem; }
.div-stats .v { font-family: var(--display); font-weight: 600; font-size: 1.65rem; letter-spacing: -.03em; line-height: 1; }
.div-stats .l { font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--bone-55); margin-top: .4rem; }
@media (max-width: 960px) {
  .div-row, .div-row.flip { grid-template-columns: 1fr; gap: 1.8rem; padding: 3.5rem 0; }
  .div-row.flip .div-copy { order: 0; }
}

/* ---------- enquiry form (no network) ---------- */
.enquiry {
  display: grid; gap: 1.1rem;
  max-width: 36rem;
}
.enquiry label {
  display: flex; flex-direction: column; gap: .4rem;
  font-family: var(--mono); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bone-55);
}
.enquiry input, .enquiry textarea {
  font-family: var(--sans); font-size: 1.02rem;
  color: var(--bone); background: var(--ink-2);
  border: 1px solid var(--line-strong); border-radius: var(--r-sm);
  padding: .85rem 1rem; outline: none;
}
.enquiry textarea { min-height: 8.5rem; resize: vertical; }
.enquiry input:focus, .enquiry textarea:focus { border-color: var(--brand); }
.enquiry .btn { justify-self: start; margin-top: .4rem; }
.enquiry.sent .btn { pointer-events: none; opacity: .55; }
.enquiry-note {
  font-size: .92rem; color: var(--bone-70);
  border-left: 2px solid var(--brand); padding-left: 1rem;
}
.enquiry-note[hidden] { display: none; }

.soft-block {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2rem;
}
.soft-block h3 { margin-bottom: .5rem; }
.soft-block p { color: var(--bone-70); }

/* ---------- team (names + titles only) ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card-plain {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.8rem;
}
.team-card-plain .team-name { margin-top: 0; }
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- gallery ---------- */
.gal-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.gal-2 img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r); border: 1px solid var(--line);
}
@media (max-width: 700px) { .gal-2 { grid-template-columns: 1fr; } }

/* CPL bars (Wanted — verified $60 → <$4) */
.cpl { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }
.cpl .row { display: flex; align-items: center; gap: 1.1rem; }
.cpl .lab { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; width: 6.2rem; color: var(--bone-55); flex-shrink: 0; }
.cpl .track { flex: 1; height: 22px; background: var(--ink-3); border-radius: 4px; overflow: hidden; }
.cpl .fill { display: block; height: 100%; background: var(--bone-35); }
.cpl .fill.now { background: var(--brand); }
.cpl .val { font-family: var(--display); font-weight: 600; font-size: 1.5rem; width: 4.2rem; text-align: right; }

/* hosts on cookie */
.host-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.host-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--r); padding: 2rem;
}
.host-card .role { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-soft); }
.host-card h3 { margin: .5rem 0 1rem; }
.host-card p, .host-card li { color: var(--bone-70); font-size: .95rem; }
.host-card ul { list-style: none; margin-top: 1.1rem; display: flex; flex-direction: column; gap: .45rem; }
.host-card li { padding-left: 1rem; position: relative; }
.host-card li::before { content: "—"; position: absolute; left: 0; color: var(--brand); }
@media (max-width: 800px) { .host-grid { grid-template-columns: 1fr; } }

/* connect extras */
.connect-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3.5rem; align-items: stretch; }
.connect-film {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  background: #111;
  border: 1px solid var(--line);
  min-height: 28rem;
}
.connect-film video {
  width: 100%;
  height: 100%;
  min-height: 28rem;
  object-fit: cover;
  display: block;
}
@media (min-width: 901px) {
  .connect-film { position: sticky; top: 5.5rem; min-height: 100%; }
  .connect-film video { position: absolute; inset: 0; min-height: 0; }
}
@media (max-width: 900px) { .connect-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

/* light: film heroes stay dark via .on-dark; forms/cards follow tokens */
html[data-theme="light"] .page-hero .scrim {
  /* stills in light still need a readable dark wash on photos */
}
html[data-theme="light"] .page-hero.on-dark .lede,
html[data-theme="light"] .page-hero.on-dark .hero-sub { color: rgba(244,241,234,.72); }
html[data-theme="light"] .film-caption { color: rgba(245,242,236,.82); }

/* case page inner accents */
.page-wanted .accent, .page-wanted .eyebrow { --brand: #FF6196; --brand-soft: #FF6196; }
.page-cookie .eyebrow { color: #FF3AAF; }
html[data-theme="light"] .page-cookie .eyebrow { color: #C4007F; }
.page-cookie .accent { color: #FF3AAF; }
html[data-theme="light"] .page-cookie .accent { color: #C4007F; }

.page-hero .hero-ctas .btn { box-shadow: 0 8px 24px -12px rgba(252,80,0,.7); }

.disclaimer {
  font-size: .82rem; color: var(--bone-55); max-width: 58ch; margin-top: 1.5rem;
}

.team-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .team-grid { grid-template-columns: 1fr; } }

/* Light: cream wordmark on white would vanish — swap via JS; this is the fallback. */
html[data-theme="light"] .nav-logo img[src*="horizontal-dark"],
html[data-theme="light"] .footer-logo img[src*="horizontal-dark"] {
  filter: invert(1) hue-rotate(180deg) saturate(3) brightness(.85);
}

/* ---------- team page ---------- */
.team-lead {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center;
}
.team-lead-photo { overflow: hidden; border-radius: 1.2rem; border: 1px solid var(--line); }
.team-lead-photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.team-card {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 1.1rem; padding: 1.8rem 1.7rem 2rem;
}
.team-initials {
  font-family: var(--display); font-weight: 600; font-size: 2.4rem;
  letter-spacing: -.04em; color: var(--brand); margin-bottom: 1.4rem;
}
.team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: 50% 18%;
  border-radius: .75rem; margin-bottom: 1.1rem; display: block;
}
.team-grid-public { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
@media (max-width: 900px) {
  .team-lead { grid-template-columns: 1fr; }
  .team-grid-public { grid-template-columns: 1fr; }
}

/* ---------- initiatives ---------- */
.init-hero .scrim {
  background:
    radial-gradient(70% 60% at 80% 40%, rgba(232,184,74,.28) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(10,10,12,.45) 0%, rgba(10,10,12,.88) 100%);
}
.init-kicker {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .22em;
  text-transform: uppercase; color: #E8B84A; margin-bottom: .6rem;
}
.init-points {
  list-style: none; margin-top: 1.6rem; display: flex; flex-direction: column; gap: .55rem;
}
.init-points li {
  padding-left: 1.1rem; position: relative; color: var(--bone-70);
}
.init-points li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: .45rem; height: .45rem; border-radius: 50%; background: var(--brand);
}
.init-steps {
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 1.2rem; padding: 2.2rem;
}
.init-steps ol { list-style: none; margin-top: 1.2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.init-steps li {
  font-family: var(--display); font-size: 2rem; font-weight: 600; letter-spacing: -.03em;
  border-bottom: 1px solid var(--line); padding-bottom: .8rem;
}
.init-steps li:last-child { border-bottom: 0; }
.init-also { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.init-card {
  display: block; background: var(--ink-2); border: 1px solid var(--line);
  border-radius: 1rem; padding: 1.5rem 1.4rem 1.6rem;
  transition: border-color .15s ease;
}
.init-card:hover { border-color: var(--brand); }
.init-card h3 { margin: .45rem 0 .8rem; font-size: 1.25rem; }
.init-card p:last-child { font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--brand-soft); }
@media (max-width: 960px) { .init-also { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .init-also { grid-template-columns: 1fr; } }



/* ==========================================================================
   DENTAL PAGE — porcelain / midnight universe
   ========================================================================== */
.page-hero.case-dental { background: #071018; }
.page-hero.case-dental .scrim {
  background:
    linear-gradient(100deg, rgba(7,16,24,.94) 0%, rgba(7,16,24,.5) 46%, transparent 82%),
    linear-gradient(to bottom, rgba(7,16,24,.3) 0%, rgba(7,16,24,.92) 100%);
}
.page-hero.case-dental .eyebrow { color: #A8C4C8; }
.page-hero.case-dental .accent { color: #E8E2D4; }
.mark-dental { color: #E8E2D4; }
.mark-dental .sub { color: #A8C4C8; }

.dental-proof {
  padding: 0 1.5rem 0;
  background: #071018;
  color: #F4EFE6;
}
.dental-proof .sec-in { padding: 0 0 4.5rem; }
.dental-proof .case-stats {
  margin-top: 0;
  border-color: rgba(232,226,212,.14);
}
.dental-proof .case-stat { background: rgba(14, 26, 36, .88); }
.dental-proof .case-stat .v { color: #F4EFE6; }
.dental-proof .case-stat .l { color: rgba(244,239,230,.7); }

.page-dental .cpl .fill { background: rgba(168,196,200,.35); }
.page-dental .cpl .fill.now { background: #5B7C8A; }
html[data-theme="light"] .page-dental .cpl .fill { background: rgba(91,124,138,.22); }
html[data-theme="light"] .page-dental .cpl .fill.now { background: #5B7C8A; }

.pilot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  overflow: hidden;
  background: var(--line);
}
.pilot-cell {
  background: var(--ink-2);
  padding: 1.5rem 1.25rem 1.4rem;
}
.pilot-cell .v {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}
.pilot-cell .l {
  margin-top: .55rem;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--bone-55);
}
@media (min-width: 901px) {
  .pilot-grid { grid-template-columns: repeat(12, 1fr); }
  .pilot-cell { grid-column: span 3; }
  .pilot-cell:nth-child(n+5) { grid-column: span 4; }
}
@media (max-width: 900px) {
  .pilot-grid { grid-template-columns: repeat(2, 1fr); }
}

.dental-rel { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .dental-rel { grid-template-columns: repeat(2, 1fr); } }

.page-dental .still-xl video {
  width: 100%; display: block; object-fit: cover; aspect-ratio: 16/10;
}

.dental-stills {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
  margin-top: 2.5rem;
}
.dental-stills img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--ink-2);
}
@media (max-width: 900px) {
  .dental-stills { grid-template-columns: repeat(2, 1fr); }
}


/* ==========================================================================
   LION CULTURE PAGE — LP gold editorial
   ========================================================================== */
.lion-verse {
  --ink: #FAF8F4;
  --ink-2: #F1ECE2;
  --ink-3: #E3DCCE;
  --bone: #322D22;
  --bone-70: rgba(50,45,34,.74);
  --bone-55: rgba(50,45,34,.58);
  --bone-35: rgba(50,45,34,.4);
  --line: rgba(50,45,34,.12);
  --line-strong: rgba(50,45,34,.2);
  --brand: #C9982F;
  --brand-soft: #8A6415;
  --brand-solid: #B0831F;
  background: #FAF8F4;
  color: #322D22;
}
.page-hero.case-lion { background: #2F2819; min-height: 78vh; }
.page-hero.case-lion .scrim {
  background:
    radial-gradient(70% 60% at 78% 38%, rgba(201,152,47,.38) 0%, transparent 58%),
    linear-gradient(to bottom, rgba(47,40,25,.45) 0%, rgba(47,40,25,.88) 100%);
}
.page-hero.case-lion .eyebrow { color: #E0B44A; }
.page-hero.case-lion .accent { color: #C9982F; }
.page-hero.case-lion .h-display { color: #FAF8F4; max-width: 14ch; }
.page-hero.case-lion .hero-sub,
.page-hero.case-lion .lede { color: rgba(250,248,244,.78); }
.page-hero.case-lion .case-back { color: rgba(250,248,244,.62); }
.page-hero.case-lion .chip-brand { border-color: rgba(201,152,47,.55); color: #E0B44A; }
.mark-lion { color: #C9982F; }
.mark-lion .sub { color: #E0B44A; }
.page-hero.case-lion .lion-join {
  background: #C9982F; color: #2A2318; border: none;
}
.page-hero.case-lion .lion-join:hover { background: #E0B44A; color: #2A2318; }
.page-hero.case-lion .lion-url {
  font-family: var(--mono); font-size: .72rem; letter-spacing: .14em;
  text-transform: uppercase; color: #E0B44A;
  border-bottom: 1px solid rgba(224,180,74,.45);
  align-self: center;
}
.page-hero.case-lion .lion-url:hover { color: #FAF8F4; border-bottom-color: #FAF8F4; }
.page-hero.case-lion .hero-ctas { margin-top: 1.8rem; align-items: center; }

.lion-verse .sec-alt { background: #F1ECE2; border-color: rgba(50,45,34,.1); }
.lion-verse .init-steps {
  background: #fff;
  border: 1px solid #E3DCCE;
}
.lion-verse .init-steps li { border-bottom-color: #E3DCCE; color: #322D22; }
.lion-ig {
  border-bottom: 1px solid #C9982F;
  font-weight: 600;
}
.lion-ig:hover { color: #8A6415; }

.lion-weeks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lion-week {
  background: #fff;
  border: 1px solid #E3DCCE;
  border-top: 3px solid #C9982F;
  border-radius: 1rem;
  padding: 1.7rem 1.5rem 1.8rem;
}
.lion-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.05em;
  color: #C9982F;
  line-height: 1;
  margin-bottom: .85rem;
}
.lion-week p:last-child { color: var(--bone-70); margin-top: .7rem; font-size: .98rem; }

.lion-gets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.lion-get {
  background: #fff;
  border: 1px solid #E3DCCE;
  border-top: 3px solid #C9982F;
  border-radius: 1rem;
  padding: 1.5rem 1.4rem 1.55rem;
}
.lion-get p:last-child { color: var(--bone-70); margin-top: .55rem; font-size: .95rem; }
.lion-verse .disclaimer { color: var(--bone-55); }

.lion-gold {
  background: #C9982F;
  color: #2A2318;
  padding: 6.5rem 1.5rem;
}
.lion-gold .eyebrow { color: #2A2318; }
.lion-gold .h-section { color: #2A2318; max-width: 16ch; }
.lion-gold .lede { color: rgba(42,35,24,.78); }
.lion-gold .link-arrow { color: #2A2318; border-bottom-color: #2A2318; }
.lion-gold .link-arrow:hover { color: #FAF8F4; border-bottom-color: #FAF8F4; }

.lion-gold .btn {
  background: #2A2318;
  color: #FAF8F4;
}
.lion-gold .btn:hover {
  background: #1a1610;
  color: #FAF8F4;
}

@media (max-width: 960px) {
  .lion-weeks, .lion-gets { grid-template-columns: 1fr; }
}

html[data-theme="light"] .page-hero.case-lion .h-display { color: #FAF8F4; }
html[data-theme="light"] .lion-verse .init-steps { background: #fff; }

.lion-split {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 3.2rem;
  align-items: center;
}
.lion-talk { margin: 0; }
.lion-talk video {
  display: block; width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 1rem;
  background: #2F2819;
}
.lion-talk figcaption { margin-top: .7rem; color: #8A6415; }
@media (max-width: 860px) {
  .lion-split { grid-template-columns: 1fr; gap: 2rem; }
  .lion-talk { order: -1; }
  .lion-talk video { aspect-ratio: 16/10; max-height: 28rem; }
}

/* Why me — full-height portrait bleed, not a landscape card crop */
.lion-why {
  display: grid;
  grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
  align-items: stretch;
  background: #F1ECE2;
  min-height: 36rem;
}
.lion-why-still {
  margin: 0;
  min-height: 36rem;
}
.lion-why-still img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
}
.lion-why-copy {
  max-width: 40rem;
  padding: 4.6rem 5.5vw 4.6rem 3.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lion-why-copy .h-section { color: #322D22; }
.lion-why-copy .lede { color: rgba(50,45,34,.74); }
@media (max-width: 860px) {
  .lion-why { grid-template-columns: 1fr; min-height: 0; }
  .lion-why-still { min-height: 0; max-height: 28rem; }
  .lion-why-still img { height: 28rem; }
  .lion-why-copy { padding: 2.4rem 1.25rem 4rem; }
}

/* ---------- History / Andrea story (from andreadagostini/about.html) ---------- */
.page-hero.story { min-height: 86vh; align-items: flex-end; padding: 7.5rem 0 3.2rem; }
.page-hero.story .hero-in {
  position: relative; z-index: 2;
  width: min(1120px, calc(100% - 3rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .75fr;
  gap: 2.4rem;
  align-items: end;
}
.page-hero.story .h-display { max-width: 12ch; }
.page-hero.story .lede { max-width: 44ch; color: rgba(244,241,234,.86); }
.page-hero.story .story-portrait {
  margin: 0;
  width: min(100%, 330px);
  justify-self: end;
  border-radius: .85rem;
  overflow: hidden;
  border: 1px solid rgba(244,241,234,.16);
}
.page-hero.story .story-portrait img {
  display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 60% center;
}
.page-hero.story .story-portrait figcaption {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(244,241,234,.72); padding: .55rem .75rem .65rem; background: rgba(10,10,12,.55);
}

.story-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .85rem 0;
  background: var(--ink);
}
.story-marquee-track {
  display: flex; width: max-content;
  animation: story-marquee 28s linear infinite;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--bone-55);
}
.story-marquee-track span { padding-right: 2.2rem; }
.story-marquee-track i { font-style: normal; color: var(--brand); padding: 0 .9rem; }
@keyframes story-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.story-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.2rem;
  align-items: start;
  margin-top: 3rem;
}
.story-timeline { display: grid; gap: 0; }
.t-item {
  position: relative;
  padding: 0 0 2.15rem 1.35rem;
  border-left: 1px solid var(--line);
}
.t-item:last-child { padding-bottom: 0; }
.t-item::before {
  content: "";
  position: absolute; left: -4px; top: .35rem;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
}
.t-item .year {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .35rem;
}
.t-item h4 {
  font-family: var(--display); font-weight: 600; font-size: 1.28rem;
  letter-spacing: -.02em; margin: 0 0 .45rem; color: var(--bone);
}
.t-item p { color: var(--bone-70); font-size: 1.02rem; line-height: 1.55; margin: 0; }
.t-item p strong { color: var(--bone); font-weight: 600; }

.story-aside { position: sticky; top: 6.2rem; display: grid; gap: 1.25rem; }
.story-media {
  margin: 0; border-radius: .85rem; overflow: hidden;
  border: 1px solid var(--line); background: #111;
}
.story-media img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.story-media figcaption {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-55); padding: .55rem .8rem .7rem;
}

.story-philo {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3.2rem;
  align-items: start;
}
.story-quote {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.55rem, 3.1vw, 2.35rem);
  letter-spacing: -.03em; line-height: 1.2;
  color: var(--bone); margin: 0;
}
.story-check { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 1.05rem; }
.story-check li { padding-left: 1.35rem; position: relative; color: var(--bone-70); line-height: 1.5; }
.story-check li::before {
  content: ""; position: absolute; left: 0; top: .55rem;
  width: .55rem; height: .55rem; border: 1.5px solid var(--brand); border-radius: 2px;
}
.story-check strong { color: var(--bone); }

@media (max-width: 860px) {
  .page-hero.story .hero-in,
  .story-split,
  .story-philo { grid-template-columns: 1fr; }
  .page-hero.story .story-portrait { justify-self: start; width: min(100%, 280px); }
  .story-aside { position: static; }
}

/* ---------- Team page: live monarchy.io/about structure, no face morph ---------- */
.path-sec { background: var(--ink); color: var(--bone); padding: 5.5rem 0 6rem; }
.path-sec .eyebrow { color: var(--brand); }
.path-sec .h-section { color: var(--bone); }
.path-sec .lede { color: var(--bone-70); max-width: 42rem; }
.path-sec .lede strong { color: var(--bone); }
.path-rail { position: relative; display: grid; gap: 4.6rem; margin-top: 3.2rem; }
.path-rail::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--line); transform: translateX(-.5px);
}
.path-row {
  display: grid;
  grid-template-columns: 1fr 2.2rem 1fr;
  gap: 0 1.6rem;
  align-items: center;
}
.path-copy { max-width: 32rem; }
.path-row:nth-child(odd) .path-copy { justify-self: end; text-align: right; }
.path-row:nth-child(even) .path-copy { justify-self: start; text-align: left; grid-column: 3; }
.path-row:nth-child(even) .path-card { grid-column: 1; grid-row: 1; }
.path-row:nth-child(even) .path-dot { grid-column: 2; grid-row: 1; }
.path-year {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--brand); margin: 0 0 .55rem;
}
.path-logo {
  display: block; height: 2.6rem; width: auto; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .78; margin-bottom: .7rem;
}
html[data-theme="light"] .path-logo { filter: none; opacity: .92; }
.path-row:nth-child(odd) .path-logo { margin-left: auto; }
.path-copy h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  letter-spacing: -.02em; line-height: 1.2; margin: 0 0 .55rem; color: var(--bone);
}
.path-copy p { margin: 0; color: var(--bone-70); font-size: 1.02rem; line-height: 1.55; }
.path-copy p strong { color: var(--bone); font-weight: 600; }
.path-dot {
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  display: grid; place-items: center; justify-self: center;
}
.path-dot span {
  width: .72rem; height: .72rem; border-radius: 50%;
  background: var(--brand); box-shadow: 0 0 0 4px var(--ink);
}
.path-card { margin: 0; border-radius: .9rem; overflow: hidden; border: 1px solid var(--line); }
.path-card img { display: block; width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.path-card-soon {
  display: grid; align-content: center; gap: .15rem;
  min-height: 0; aspect-ratio: 16/10; padding: 1.6rem 1.8rem;
  background: var(--ink-2);
}
.path-card-soon .soon-kicker {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--brand); margin: 0 0 .7rem;
}
.path-card-soon .soon-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -.02em;
  color: var(--bone); margin: 0;
}
.path-card-soon .soon-sub {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--bone-55); margin: 0 0 .85rem;
}

.bio-split {
  display: grid;
  grid-template-columns: minmax(220px, .78fr) 1.4fr;
  gap: 3.2rem;
  align-items: start;
}
.bio-still {
  margin: 0; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line);
  position: sticky; top: 6rem;
}
.bio-still img, .bio-still video {
  display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover;
}
.bio-copy p { color: var(--bone-70); font-size: 1.08rem; line-height: 1.7; margin: 0 0 1.15rem; }
.bio-copy p strong { color: var(--bone); font-weight: 600; }
.bio-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.4rem;
  margin-top: 1.8rem;
}
.bio-stats div { border-top: 1px solid var(--line); padding-top: .7rem; }
.bio-stats b {
  display: block; font-family: var(--display); font-size: 1.35rem; letter-spacing: -.03em; color: var(--bone);
}
.bio-stats span { font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-55); }
.bio-sign { display: block; height: 2.6rem; width: auto; margin-top: 1.6rem; filter: none; opacity: .85; }

.team-public {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.2rem 1.4rem;
}
.team-public article { text-align: center; }
.team-public .team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: 1rem; display: block; margin-bottom: .9rem;
  border: 1px solid var(--line);
}
.team-public .team-name { font-size: 1.05rem; margin: .15rem 0 .2rem; }
.team-public .team-role { color: var(--bone-55); font-size: .88rem; }

@media (max-width: 960px) {
  .path-rail::before { left: .7rem; }
  .path-row, .path-row:nth-child(even) {
    grid-template-columns: 1.4rem 1fr;
    gap: 0 1rem;
  }
  .path-row .path-dot, .path-row:nth-child(even) .path-dot { grid-column: 1; grid-row: 1 / span 2; align-self: start; margin-top: .35rem; }
  .path-row .path-copy, .path-row:nth-child(odd) .path-copy,
  .path-row:nth-child(even) .path-copy {
    grid-column: 2; grid-row: 1; justify-self: start; text-align: left; max-width: none;
  }
  .path-row:nth-child(odd) .path-logo { margin-left: 0; }
  .path-row .path-card, .path-row:nth-child(even) .path-card { grid-column: 2; grid-row: 2; }
  .bio-split { grid-template-columns: 1fr; }
  .bio-still { position: static; max-width: 22rem; }
  .team-public { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- NU Dentistry case (Work → Dental) ---------- */
.nu-hero .h-display { max-width: 12ch; }
.nu-logo {
  display: block; height: 3.2rem; width: auto; max-width: 14rem;
  object-fit: contain; margin: 0 0 1.1rem;
  filter: brightness(0) invert(1);
}
html[data-theme="light"] .nu-hero .nu-logo { filter: none; }
.nu-tags { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.1rem 0 1.4rem; }
.nu-tags span {
  font-family: var(--mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  border: 1px solid rgba(244,241,234,.28); color: rgba(244,241,234,.86);
  border-radius: 999px; padding: .28rem .75rem;
}
html[data-theme="light"] .nu-tags span { border-color: rgba(26,26,26,.18); color: rgba(26,26,26,.72); }

.nu-proof { border-bottom: 1px solid var(--line); }
.nu-proof .case-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.nu-proof .case-stat { background: var(--ink); padding: 1.6rem 1.2rem; }
.nu-proof .case-stat .v {
  font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: -.03em; line-height: 1; color: var(--bone);
}
.nu-proof .case-stat .l {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-55); margin-top: .55rem;
}

.nu-owned { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 1.4rem; margin-top: 2.2rem; }
.nu-owned article {
  border-top: 2px solid var(--brand); padding: 1.1rem 0 0;
}
.nu-owned h3 { font-size: 1.12rem; margin: 0 0 .4rem; }
.nu-owned p { color: var(--bone-70); font-size: .98rem; line-height: 1.5; margin: 0; }

.nu-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.nu-gallery figure { margin: 0; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line); }
.nu-gallery img { display: block; width: 100%; aspect-ratio: 4/5; object-fit: cover; }

.nu-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.nu-split figure { margin: 0; border-radius: 1rem; overflow: hidden; border: 1px solid var(--line); }
.nu-split img { display: block; width: 100%; aspect-ratio: 1; object-fit: cover; }

@media (max-width: 860px) {
  .nu-proof .case-stats, .nu-owned, .nu-gallery { grid-template-columns: 1fr 1fr; }
  .nu-split { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .nu-gallery { grid-template-columns: 1fr; }
}

/* ---------- Dental page: Nu + Teeth and Robots mix ---------- */
#nu, #bytr { scroll-margin-top: 5.75rem; }

.page-dental .dental-hero.page-hero {
  min-height: 78vh;
  overflow: hidden;
  align-items: flex-end;
  background: #0a0a0c;
}
.dental-hero-split {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.dental-hero-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dental-hero-split img:last-child { object-position: 55% 50%; }
.page-dental .dental-hero .scrim {
  background:
    linear-gradient(to bottom, rgba(10,10,12,.42) 0%, rgba(10,10,12,.18) 28%, rgba(10,10,12,.72) 62%, rgba(10,10,12,.97) 100%),
    radial-gradient(70% 55% at 12% 80%, rgba(252,80,0,.18) 0%, transparent 58%);
}
.page-dental .dental-hero .hero-in {
  padding-top: 10.5rem;
  padding-bottom: 4.25rem;
}
.page-dental .dental-hero .h-display {
  max-width: 14ch;
}
.page-dental .dental-hero .lede {
  max-width: 42ch;
  margin-top: 1.15rem;
}

.dental-lockups {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin: .35rem 0 1.35rem;
  flex-wrap: wrap;
}
.dental-hero .nu-logo {
  filter: none;
  margin: 0;
  height: 2.65rem;
  max-width: 12rem;
}
.lockup-rule {
  width: 1px;
  height: 2.4rem;
  background: rgba(244,241,234,.28);
  flex: none;
}
.lockup-bytr .bytr-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: -.03em;
  line-height: 1;
  margin: 0;
  color: var(--bone);
}
.lockup-bytr .bytr-aka,
.bytr-chapter .bytr-aka {
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--bone-55);
  margin: .35rem 0 0;
}

.dental-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.5rem;
}
.dental-jumps a {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(244,241,234,.86);
  border: 1px solid rgba(244,241,234,.28);
  border-radius: 999px;
  padding: .42rem .9rem;
  transition: border-color .15s, color .15s, background .15s;
}
.dental-jumps a:hover {
  color: #fff;
  border-color: #fc5000;
  background: rgba(252,80,0,.14);
}
.page-dental .dental-hero .hero-ctas {
  margin-top: 1.5rem;
}

.bytr-chapter .bytr-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -.03em;
  line-height: 1;
  margin: .35rem 0 0;
}
.bytr-chapter .bytr-aka { margin: .4rem 0 1.1rem; }
.bytr-chapter .h-section { margin-top: .2rem; }
.bytr-split { grid-template-columns: .95fr 1.05fr; }
.bytr-chapter .nu-tags { margin: 1rem 0 1.2rem; }
.bytr-chapter .lede { margin-top: 0; }

.sec .nu-tags span {
  border-color: var(--line-strong);
  color: var(--bone-70);
}

@media (max-width: 860px) {
  .page-dental .dental-hero.page-hero {
    align-items: stretch;
    flex-direction: column;
    min-height: 0;
  }
  .dental-hero-split {
    position: relative;
    min-height: 36vh;
    grid-template-columns: 1fr 1fr;
  }
  .page-dental .dental-hero .scrim { display: none; }
  .page-dental .dental-hero .hero-in {
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
    background: #0a0a0c;
  }
  .bytr-split { grid-template-columns: 1fr; }
  .dental-lockups { gap: 1rem; }
  .lockup-rule { height: 2rem; }
}

@media (max-width: 520px) {
  .dental-hero-split { min-height: 28vh; }
  .page-dental .dental-hero .h-display { max-width: 12ch; }
  .nu-proof .case-stats { grid-template-columns: 1fr 1fr; }
}


/* ---------- What we do: Jules services desk ---------- */
.page-wwd {
  background: var(--ink);
}
.page-wwd .wwd-jules {
  margin-top: 4.5rem;
  border-bottom: 1px solid var(--line);
}
.page-wwd .wwd-jules-in {
  display: grid;
  grid-template-columns: minmax(22rem, 38%) minmax(0, 1fr);
  min-height: calc(100vh - 4.5rem);
  min-height: calc(100dvh - 4.5rem);
}
.page-wwd .wwd-col-chat {
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
  height: calc(100dvh - 4.5rem);
  max-height: calc(100dvh - 4.5rem);
  overflow: hidden;
  border-right: 1px solid var(--line);
  background: var(--ink);
}

.page-wwd .wwd-chat-head {
  flex: none;
  padding: .85rem 1.15rem;
  border-bottom: 1px solid var(--line);
}
.page-wwd .wwd-chat-who {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.page-wwd .wwd-chat-mark {
  flex: none;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #fc5000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0;
}
.page-wwd .wwd-chat-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--bone);
  margin: 0;
}
.page-wwd .wwd-chat-tag {
  margin: .15rem 0 0;
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--bone-55);
}

.page-wwd .wwd-desk-chips { display: none; }
.page-wwd .wwd-desk-chip { display: none; }


.page-wwd .wwd-desk-log {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 1rem 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.page-wwd .wwd-bubble-row {
  display: flex;
  align-items: flex-end;
  gap: .45rem;
  max-width: 100%;
}
.page-wwd .wwd-bubble-row.you {
  align-self: flex-end;
  flex-direction: row-reverse;
}
.page-wwd .wwd-bubble-mark {
  flex: none;
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 50%;
  background: #fc5000;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: .62rem;
  font-weight: 700;
}
.page-wwd .wwd-bubble {
  max-width: 86%;
  margin: 0;
  padding: .65rem .85rem;
  font-size: .92rem;
  line-height: 1.5;
  border-radius: 1.05rem;
}
.page-wwd .wwd-bubble.jules {
  background: var(--ink-2);
  color: var(--bone);
  border-bottom-left-radius: .28rem;
}
.page-wwd .wwd-bubble.you {
  background: #fc5000;
  color: #fff;
  border-bottom-right-radius: .28rem;
}
.page-wwd .wwd-bubble a {
  color: inherit;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.page-wwd .wwd-bubble a:hover { opacity: .85; }
.page-wwd .wwd-desk-msg { display: none; }

.page-wwd .wwd-starters {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .15rem 0 .2rem 1.9rem;
}
.page-wwd .wwd-starter {
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--bone);
  font: inherit;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: .4rem .75rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1.2;
}
.page-wwd .wwd-starter:hover {
  border-color: #fc5000;
  color: #fc5000;
}

.page-wwd .wwd-dots {
  display: flex;
  gap: .22rem;
  height: .85rem;
  align-items: center;
}
.page-wwd .wwd-dots i {
  width: .32rem;
  height: .32rem;
  border-radius: 50%;
  background: currentColor;
  opacity: .35;
  animation: wwdDot 1s infinite;
}
.page-wwd .wwd-dots i:nth-child(2) { animation-delay: .15s; }
.page-wwd .wwd-dots i:nth-child(3) { animation-delay: .3s; }
@keyframes wwdDot {
  0%, 80%, 100% { opacity: .25; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-2px); }
}

.page-wwd .wwd-turn {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  max-width: 100%;
}
.page-wwd .wwd-turn.you { align-items: flex-end; }

.page-wwd .wwd-attach {
  display: block;
  margin: 0 0 .1rem 1.9rem;
  max-width: min(22.5rem, 100%);
  border-radius: .9rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0a0a0c;
}
.page-wwd .wwd-turn.you .wwd-attach { margin-left: 0; margin-right: 0; }
.page-wwd .wwd-attach video,
.page-wwd .wwd-attach img {
  display: block;
  width: 100%;
  height: 12.75rem;
  object-fit: cover;
  background: #0a0a0c;
}
.page-wwd .wwd-attach video { cursor: pointer; }
.page-wwd .wwd-attach figcaption {
  font-family: var(--mono);
  font-size: .58rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-55);
  padding: .45rem .7rem .55rem;
  background: var(--ink-2);
}
.page-wwd .wwd-desk-filmcard { display: none; }

.page-wwd .wwd-chat-foot {
  flex: none;
  border-top: 1px solid var(--line);
  padding: .85rem 1.5rem 1.15rem;
  background: var(--ink);
}
.page-wwd .wwd-desk-form {
  display: flex;
  gap: .45rem;
  margin: 0;
  padding: 0;
  border: 0;
}
.page-wwd .wwd-desk-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line-strong);
  background: var(--ink-2);
  color: var(--bone);
  border-radius: 999px;
  padding: .72rem 1rem;
  font: inherit;
  font-size: .92rem;
}
.page-wwd .wwd-desk-form input:focus {
  outline: none;
  border-color: #fc5000;
}
.page-wwd .wwd-desk-form input::placeholder { color: var(--bone-55); }
.page-wwd .wwd-desk-form button[type="submit"] {
  border: 0;
  border-radius: 999px;
  background: #fc5000;
  color: #fff;
  font: inherit;
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .02em;
  padding: .7rem 1.1rem;
  cursor: pointer;
}
.page-wwd .wwd-desk-form button[type="submit"]:hover { background: #e64500; }
.page-wwd .wwd-desk-cta {
  display: inline-block;
  margin: .7rem 0 0;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bone-55);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: .12rem;
}
.page-wwd .wwd-desk-cta:hover {
  color: #fc5000;
  border-bottom-color: #fc5000;
}

.page-wwd .wwd-col-stage {
  position: relative;
  min-width: 0;
  min-height: 0;
  height: calc(100dvh - 4.5rem);
  background: #0a0a0c;
}
.page-wwd .wwd-stage {
  position: relative;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0c;
}
.page-wwd .wwd-stage video,
.page-wwd .wwd-stage img.wwd-stage-still {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-wwd .wwd-stage::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(10,10,12,.62), transparent);
}
.page-wwd .wwd-stage-label {
  position: absolute;
  left: 1.25rem;
  bottom: 1.15rem;
  z-index: 2;
  font-family: var(--mono);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(245,242,236,.82);
  margin: 0;
}

@media (max-width: 900px) {
  .page-wwd .wwd-jules-in {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .page-wwd .wwd-col-stage {
    order: -1;
    height: 38vh;
    min-height: 12.5rem;
    max-height: 18rem;
  }
  .page-wwd .wwd-stage {
    min-height: 0;
    height: 100%;
  }
  .page-wwd .wwd-col-chat {
    height: auto;
    max-height: none;
    overflow: visible;
    border-right: 0;
    border-top: 1px solid var(--line);
  }
  .page-wwd .wwd-desk-log {
    min-height: 16rem;
    max-height: none;
  }
  .page-wwd .wwd-desk-filmcard { display: block; }
  .page-wwd .wwd-chat-head { padding: .8rem 1rem; }
  .page-wwd .wwd-desk-log { padding: 1rem 1.25rem 1.1rem; }
  .page-wwd .wwd-chat-foot { padding: .75rem 1.25rem 1rem; }
}

html[data-theme="light"] .page-wwd .wwd-col-chat,
html[data-theme="light"] .page-wwd .wwd-chat-foot {
  background: var(--ink);
}
html[data-theme="light"] .page-wwd .wwd-desk-form input {
  background: var(--ink-2);
}
html[data-theme="light"] .page-wwd .wwd-stage-label {
  color: rgba(245,242,236,.82);
}
html[data-theme="light"] .page-wwd .wwd-desk-filmcard figcaption {
  color: var(--bone-55);
}
