/* VO That's Real - Dean Wendt Voiceover
   Modern, mobile-first, conversion-focused */

:root {
  --ink: #0b1220;
  --ink-2: #141c2e;
  --ink-3: #1c2740;
  --cream: #f7f1e8;
  --cream-2: #efe6d8;
  --sand: #d9cbb6;
  --muted: #a8b0c0;
  --text: #e8eef8;
  --text-dim: #c8d0de;
  --coral: #ff5a3c;
  --coral-2: #ff7a62;
  --gold: #e8a838;
  --teal: #2dd4bf;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #7eefe0;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--ink);
  padding: 0.75rem 1rem;
  z-index: 1000;
  font-weight: 700;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: var(--cream);
  min-width: 0;
}

.brand-mark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.nav {
  display: none;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--cream);
}

.nav-cta {
  display: none;
}

.menu-btn {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-2);
  color: var(--cream);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}

.menu-btn[aria-expanded="true"] {
  background: var(--ink-3);
  border-color: var(--gold);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--ink-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 1.25rem 1.25rem;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
  gap: 0.35rem;
}

.mobile-nav a {
  color: var(--cream);
  text-decoration: none;
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), #ff3d1f 55%, #e83a20);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 90, 60, 0.28);
}

.btn-primary:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--coral-2), var(--coral));
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
  color: var(--cream);
  border-color: var(--gold);
  background: rgba(232, 168, 56, 0.08);
}

.btn-dark {
  background: var(--ink);
  color: var(--cream);
}

.btn-dark:hover {
  color: #fff;
  background: #000;
}

.btn-lg {
  padding: 1.05rem 1.6rem;
  font-size: 1.02rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(255, 90, 60, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(45, 212, 191, 0.12), transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.28);
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 38rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-live-copy .hero-actions {
  margin-bottom: 0;
}

.hero-proof-line {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  max-width: 36rem;
}

#hire {
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
#hire > .container > .prose-p {
  max-width: 36rem;
}
.hire-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.15rem;
}
.hire-step {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1.2rem 1.2rem;
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.04);
}
.hire-n {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #9a6b00;
}
.hire-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1.2rem;
  color: #0b1220;
}
.hire-step p {
  margin: 0 0 0.7rem;
  color: #3d4658 !important;
  font-size: 0.94rem;
  line-height: 1.45;
}
.hire-step a {
  font-weight: 700;
  font-size: 0.9rem;
  color: #0b1220;
  text-underline-offset: 3px;
}
@media (min-width: 768px) {
  .hire-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
  }
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-proof strong {
  color: var(--cream);
  font-weight: 700;
}

.hero-card {
  background: linear-gradient(160deg, rgba(28, 39, 64, 0.95), rgba(20, 28, 46, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-family: var(--display);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--cream);
}

.hero-card p {
  margin: 0 0 1.1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.demo-list {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  padding: 0;
  list-style: none;
}

.demo-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.demo-item button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--coral);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex: none;
}

.demo-item button:hover {
  background: var(--coral-2);
}

.demo-meta {
  min-width: 0;
}

.demo-meta strong {
  display: block;
  color: var(--cream);
  font-size: 0.92rem;
  line-height: 1.25;
}

.demo-meta span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.demo-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0;
}

/* Sections */
section {
  padding: 4rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 0.55rem;
}

.section-head h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0 0 0.65rem;
}

.section-head p {
  margin: 0;
  color: var(--text-dim);
}

.section-light {
  background: var(--cream);
  color: var(--ink);
}

.section-light .section-head h2,
.section-light h3 {
  color: var(--ink);
}

.section-light .section-head p,
.section-light p {
  color: #3d4658;
}

.section-light .section-kicker {
  color: #b06b00;
}

.section-alt {
  background: var(--ink-2);
}

/* Brand strip */
.brands {
  padding: 1.5rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
}

.brands-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brands-inner span {
  opacity: 0.85;
}

/* Cards / grids */
.grid-3 {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--ink-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
}

.section-light .card {
  background: #fff;
  border-color: rgba(11, 18, 32, 0.08);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.06);
}

.card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.45rem;
  color: var(--cream);
}

.card p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  background: rgba(255, 90, 60, 0.12);
  color: var(--coral);
  font-size: 1.2rem;
}

.section-light .card .icon {
  background: rgba(255, 90, 60, 0.1);
}

/* Why / Never AI */
.why-grid {
  display: grid;
  gap: 1.25rem;
}

.badge-real {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(45, 212, 191, 0.12);
  color: #0f766e;
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.checklist {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.55rem;
  align-items: start;
  color: #2a3344;
  font-weight: 500;
}

.checklist li::before {
  content: "✓";
  color: #0f766e;
  font-weight: 800;
}

/* Credits */
.credits {
  display: grid;
  gap: 0.75rem;
}

.credit {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.credit strong {
  color: var(--cream);
}

.credit span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Process */
.steps {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.15rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 1.15rem;
}

.step p {
  margin: 0;
  color: #3d4658;
  font-size: 0.95rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.65rem;
}

.faq details {
  background: var(--ink-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-sm);
  padding: 0.2rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--cream);
  padding: 1rem 0;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-weight: 700;
}

.faq details[open] summary::after {
  content: "-";
}

.faq details p {
  margin: 0 0 1rem;
  color: var(--text-dim);
  font-size: 0.95rem;
}

/* Booking form */
.book-layout {
  display: grid;
  gap: 1.5rem;
}

.book-panel {
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.book-panel h2 {
  font-family: var(--display);
  margin: 0 0 0.4rem;
  font-size: 1.65rem;
}

.book-panel > p {
  margin: 0 0 1.25rem;
  color: #3d4658;
}

.form-grid {
  display: grid;
  gap: 0.9rem;
}

.form-row {
  display: grid;
  gap: 0.9rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1c2433;
}

input,
select,
textarea {
  width: 100%;
  font: inherit;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  border: 1px solid #d5dbe8;
  background: #fbfcfe;
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(232, 168, 56, 0.55);
  border-color: var(--gold);
  background: #fff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: #5b6578;
  margin: 0.5rem 0 0;
}

.form-success {
  display: none;
  padding: 1rem;
  border-radius: 12px;
  background: rgba(45, 212, 191, 0.15);
  border: 1px solid rgba(15, 118, 110, 0.25);
  color: #0f5132;
  font-weight: 600;
  margin-bottom: 1rem;
}

.form-success.is-visible {
  display: block;
}

.side-card {
  background: var(--ink-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.side-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  color: var(--cream);
}

.side-card p,
.side-card li {
  color: var(--text-dim);
  font-size: 0.95rem;
}

.side-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
}

.side-card a {
  color: var(--gold);
  font-weight: 700;
}

/* Demos page: player up top beside title (not buried below a second section) */
.demos-top {
  padding: 1.5rem 0 1.75rem;
  background:
    radial-gradient(ellipse 60% 70% at 100% 0%, rgba(232, 168, 56, 0.12), transparent 55%),
    var(--ink, #0b1220);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.demos-top-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
.demos-top-copy .eyebrow {
  margin-bottom: 0.75rem;
}
.demos-top-copy h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: var(--cream, #f7f1e8);
  line-height: 1.12;
}
.demos-top-copy p {
  margin: 0 0 0.85rem;
  max-width: 32rem;
  color: #cdd5e3;
  font-size: 1.02rem;
  line-height: 1.55;
}
.demos-top-note {
  margin-bottom: 1rem !important;
}
.demos-top-note a {
  color: var(--teal, #2dd4bf);
  font-weight: 700;
}
.demos-player-top {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #111;
}
.demos-player-top iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}
@media (min-width: 900px) {
  .demos-top {
    padding: 1.75rem 0 2rem;
  }
  .demos-top-grid {
    grid-template-columns: 1fr minmax(300px, 360px);
    gap: 2rem 2.5rem;
    align-items: center;
  }
  .demos-player-top {
    margin: 0 0 0 auto;
  }
  .demos-player-top iframe {
    height: 560px;
  }
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3rem 0 2rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(232, 168, 56, 0.12), transparent 50%),
    var(--ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  color: var(--cream);
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-dim);
  font-size: 1.08rem;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2rem;
  background: #070b14;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .brand-mark {
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.footer-brand p {
  color: var(--muted);
  margin: 0.5rem 0 0;
  font-size: 0.92rem;
  max-width: 28rem;
}

.footer-col h3 {
  margin: 0 0 0.7rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col a {
  display: block;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--text-dim);
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--cream);
}


/* Sticky mobile book bar */
.sticky-book {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.sticky-book p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.3;
}

.sticky-book strong {
  display: block;
  color: var(--cream);
}

.sticky-book .btn {
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

body.has-sticky-book {
  padding-bottom: 5.5rem;
}

/* Utilities */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mt-2 {
  margin-top: 1.5rem;
}

.text-center {
  text-align: center;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 600;
}

.section-light .pill {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.08);
  color: #3d4658;
}

/* Desktop */
@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }

  .nav {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    padding: 0.65rem 1.05rem;
    font-size: 0.9rem;
  }

  .hero {
    padding: 5rem 0 4.5rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
  }

  .credits {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .book-layout {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
  }

  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }

  .sticky-book {
    display: none;
  }

  body.has-sticky-book {
    padding-bottom: 0;
  }

  .book-panel {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    max-width: 12ch;
  }
}

/* Scraped brand media */
.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand {
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  min-width: 0;
}

.hero-portrait {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
  border-radius: 24px;
  object-fit: cover;
  border: 3px solid rgba(232, 168, 56, 0.45);
  box-shadow: var(--shadow);
  margin: 0 auto 1rem;
}

.hero-card .hero-portrait {
  max-width: 100%;
}

.embed-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.embed-frame iframe {
  display: block;
  width: 100%;
  height: 580px;
  border: 0;
  background: #0b1220;
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-items: center;
  justify-content: center;
}

.client-logos img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(20%);
}

.section-light .client-logos img {
  opacity: 0.9;
}

.demo-thumbs {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.demo-thumb-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-3);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.demo-thumb-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.demo-thumb-card .cap {
  padding: 0.85rem 1rem 1rem;
}

.demo-thumb-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--cream);
  font-family: var(--display);
}

.demo-thumb-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.studio-shot {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  max-height: 360px;
  box-shadow: var(--shadow);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
  margin-top: 0.85rem;
}

.social-row a {
  display: block;
  line-height: 0;
  border-radius: 50%;
  transition: transform 0.15s ease, opacity 0.15s ease;
  opacity: 0.95;
}

.social-row a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.social-row a img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  background: transparent;
}

@media (min-width: 768px) {
  .demo-thumbs {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-logo-img {
    height: 44px;
  }
  .embed-frame {
    max-width: 340px;
  }
}

/* ===== Refined homepage (tighter, hero = Dean + Barney) ===== */
body.home {
  --header-h: 64px;
}

body.home section.band,
body.home .band {
  padding: 2.25rem 0;
}

body.home .site-header {
  height: 64px;
}

.hero-refined {
  padding: 1.75rem 0 1.5rem !important;
  background:
    radial-gradient(ellipse 70% 80% at 90% 20%, rgba(255, 90, 60, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(45, 212, 191, 0.1), transparent 50%),
    var(--ink);
}

.hero-refined-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-duo {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0.65rem;
  max-width: 420px;
  margin: 0 auto;
}

.hero-duo figure {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background: #111;
}

.hero-duo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.duo-dean {
  aspect-ratio: 4/5;
}

.duo-barney {
  aspect-ratio: 4/5;
}

/* About: Barney cutout + copy (live-site layout) */
.barney-split {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
.barney-figure {
  margin: 0;
  text-align: center;
  background: transparent;
  box-shadow: none;
}
.barney-figure img {
  width: 100%;
  max-width: 340px;
  height: auto;
  display: inline-block;
  object-fit: contain;
  background: transparent !important;
  box-shadow: none;
}
.barney-copy .section-title-dark {
  margin-bottom: 0.85rem;
}
.barney-copy p {
  color: #2a3344 !important;
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 0.9rem;
}
.barney-copy .btn {
  margin-top: 0.35rem;
}
@media (min-width: 768px) {
  .barney-split {
    grid-template-columns: minmax(220px, 0.9fr) 1.2fr;
    gap: 2.5rem 3rem;
  }
  .barney-figure {
    text-align: left;
  }
  .barney-figure img {
    max-width: 380px;
  }
}

.hero-duo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 0.65rem 0.55rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.82));
  color: #f7f1e8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  font-family: var(--display);
  font-size: clamp(1.85rem, 5vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 0.7rem;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-copy .hero-lead {
  font-size: 1rem;
  color: var(--text-dim);
  margin: 0 0 1.1rem;
  max-width: 34rem;
  line-height: 1.5;
}

.hero-copy .hero-actions {
  margin-bottom: 1rem;
}

.hero-copy .btn {
  padding: 0.78rem 1.2rem;
}

.hero-stats {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-stats strong {
  color: var(--cream);
}

.brands-tight {
  padding: 0.85rem 0 !important;
}

.brands-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brands-row img {
  height: 26px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
}

.band-2 {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.band-2.align-start {
  align-items: start;
}

.band h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  color: var(--cream);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.band-light {
  background: var(--cream);
}

.band-light h2 {
  color: var(--ink);
}

.band-light .tight-p,
.band-light p {
  color: #3d4658;
}

.tight-p {
  margin: 0 0 0.85rem;
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 36rem;
}

.embed-compact {
  max-width: 320px;
  margin: 0 auto;
}

.embed-compact iframe {
  height: 520px;
}

.mini-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 320px;
}

.mini-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.credit-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.credit-pills span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.06);
  color: #2a3344;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.svc {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.85rem 0.6rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(11, 18, 32, 0.04);
}

.svc:hover {
  border-color: var(--coral);
  color: var(--ink);
  background: #fff8f6;
}

.book-strip {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  padding: 1.35rem 1.25rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(28, 39, 64, 0.95), rgba(20, 28, 46, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.book-strip h2 {
  margin-bottom: 0.65rem;
}

.steps-inline {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.65;
}

.steps-inline strong {
  color: var(--gold);
}

.book-strip-cta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.faq-tight h2 {
  font-family: var(--display);
  font-size: 1.5rem;
  color: var(--ink);
  margin: 0 0 0.85rem;
}

.faq-tight .faq details {
  background: #fff;
  border-color: rgba(11, 18, 32, 0.08);
}

.faq-tight .faq summary {
  color: var(--ink);
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.faq-tight .faq details p {
  color: #3d4658;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.site-footer-tight {
  padding: 1.75rem 0 1.25rem;
}

.footer-grid-tight {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.footer-grid-tight .footer-brand p {
  margin: 0;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--cream);
}

.band-light .section-kicker {
  color: #b06b00;
}

.band-light .badge-real {
  margin: 0.5rem 0 0;
}

@media (min-width: 768px) {
  .hero-refined {
    padding: 2.25rem 0 1.75rem !important;
  }

  .hero-refined-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.25rem;
  }

  .hero-duo {
    margin: 0;
    max-width: none;
  }

  .band-2 {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
  }

  .book-strip {
    grid-template-columns: 1.3fr 0.7fr;
    padding: 1.5rem 1.75rem;
  }

  .book-strip-cta {
    align-items: stretch;
  }

  .footer-grid-tight {
    grid-template-columns: 1.2fr 1fr auto;
  }

  .embed-compact {
    margin-left: auto;
    margin-right: 0;
  }
}

@media (min-width: 1024px) {
  .hero-duo {
    gap: 0.85rem;
  }
}

/* Clean single hero image (Dean + Barney composite) */
.hero-main {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  background: #0a0f18;
  max-width: 380px;
  margin-inline: auto;
  aspect-ratio: 1;
}

.hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Hide old duo layout if any residual */
.hero-duo { display: none !important; }

@media (min-width: 768px) {
  .hero-refined-grid {
    grid-template-columns: minmax(260px, 360px) 1fr !important;
    gap: 2.5rem !important;
    align-items: center;
  }

  .hero-main {
    margin: 0;
    max-width: none;
    width: 100%;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (min-width: 1024px) {
  .hero-refined-grid {
    grid-template-columns: minmax(300px, 400px) 1fr !important;
  }
}

/* Brand logo: original gold mark, readable on dark header */
.site-header .brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 160px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.site-header .brand {
  gap: 0;
}

.site-header .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.site-header .brand-mark {
  color: #f7f1e8;
}

.site-header .brand-tag {
  color: #e8a838;
}

.site-header .brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 150px;
}


/* Demos sell block - cream after dark hero (clear section break) */
.band-demos-light,
#demos.band-demos-light {
  background: var(--cream, #f7f1e8) !important;
  border-block: 1px solid rgba(11, 18, 32, 0.06);
  padding: 2.75rem 0 !important;
}
#demos.band-demos-light .demos-intro h2,
#demos.band-demos-light .section-title-dark {
  color: #0b1220 !important;
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
}
#demos.band-demos-light .tight-p,
#demos.band-demos-light .section-kicker {
  color: #2a3344 !important;
}
#demos.band-demos-light .section-kicker {
  color: #9a6b00 !important;
}
#demos .demos-player-card {
  box-shadow: 0 18px 48px rgba(11, 18, 32, 0.18);
  border-radius: 16px;
  overflow: hidden;
  background: #0b1220;
  border: 1px solid rgba(11, 18, 32, 0.12);
}

/* Role cards with logos */
.role-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5rem;
  margin-bottom: 0.65rem;
  background: transparent;
}
.role-logo {
  max-height: 56px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  background: transparent !important;
  filter: none !important;
}
.role-logo-barney {
  max-height: 100px;
  max-width: 90px;
  background: transparent !important;
}
.role-logo-barney-lockup {
  max-height: 78px;
  max-width: 220px;
  width: auto;
  height: auto;
  background: transparent !important;
  object-fit: contain;
}
.role-logo-rays {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  height: auto;
  background: transparent !important;
}

/* Credentials: equal clean cards */
.cred-cards {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.cred-card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 16px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.04);
  min-height: 100%;
}
.cred-card h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  color: #0b1220;
  margin: 0 0 0.75rem;
}
.cred-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #2a3344;
  font-size: 0.92rem;
  line-height: 1.5;
}
.cred-card li {
  margin-bottom: 0.45rem;
  color: #2a3344;
}
.cred-card strong {
  color: #0b1220;
}
@media (min-width: 800px) {
  .cred-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }
}

/* Legacy dark cred-grid (if any) */
.cred-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.25rem;
}

/* About on cream when light; dark about uses default band text */
#about.band-light {
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}

/* About dark: sound cards stay light; body copy light via global dark rules */
#about.band:not(.band-light) .about-snap p {
  color: #d5dce8;
}
#about.band:not(.band-light) .sound-list li {
  color: #2a3344 !important;
}
#about.band:not(.band-light) .sound-list strong {
  color: #0b1220 !important;
}

/* Demos page layout */
.demos-layout {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.demos-intro h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  color: var(--cream);
  margin: 0 0 0.65rem;
}

.demos-checklist {
  margin-top: 1rem;
  color: var(--text-dim);
}

.demos-checklist li {
  color: var(--text-dim);
}

.demos-checklist li::before {
  color: var(--teal);
}

.demos-player {
  max-width: 340px;
  margin: 0 auto;
}

.demos-player iframe {
  height: 560px;
}

.section-light .demo-thumb-card {
  background: #fff;
  border-color: rgba(11, 18, 32, 0.08);
}

.section-light .demo-thumb-card h3 {
  color: var(--ink);
}

.section-light .demo-thumb-card p {
  color: #5b6578;
}

@media (min-width: 768px) {
  .demos-layout {
    grid-template-columns: 1fr minmax(280px, 340px);
    gap: 2.5rem;
    align-items: center;
  }

  .demos-player {
    margin: 0 0 0 auto;
  }
}


/* Live-site aligned homepage */
.hero-live {
  padding: 2rem 0 2.25rem !important;
  background: var(--ink);
}

.hero-live-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.hero-live-copy h1 {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin: 0 0 1rem;
}

.hero-live-copy h1 .h1-sub {
  display: block;
  font-size: 0.78em;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.22em;
}

.nowrap {
  white-space: nowrap;
}

.lede {
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 0.85rem;
  max-width: 38rem;
}

.lede strong {
  color: var(--cream);
}

.lede-soft {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-dim);
  margin: 0 0 1.25rem;
  max-width: 38rem;
}

.section-title-dark {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  color: var(--ink);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.role-grid {
  display: grid;
  gap: 0.85rem;
}

.role-card {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.04);
}

.role-card h3 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
}

.role-years {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: #b06b00;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-card p:last-child {
  margin: 0;
  color: #3d4658;
  font-size: 0.94rem;
  line-height: 1.5;
}

.about-snap {
  display: grid;
  gap: 1.5rem;
}

.about-snap p {
  font-size: 0.98rem;
  line-height: 1.55;
}
.band-light .about-snap p {
  color: #3d4658;
}

.sound-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.sound-list li {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #3d4658;
  font-size: 0.94rem;
}

.sound-list strong {
  color: var(--ink);
}

.service-grid-wide {
  grid-template-columns: 1fr 1fr;
}

.service-grid-wide .svc {
  cursor: default;
  pointer-events: none;
}

.cta-band h2 {
  font-family: var(--display);
  color: var(--cream);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin: 0 0 0.5rem;
}

.band-light .btn-dark {
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .hero-live-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 2.25rem;
    align-items: center;
  }

  .hero-live .hero-main {
    max-width: none;
    margin: 0;
    aspect-ratio: auto;
  }

  .hero-live .hero-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .role-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-snap {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
    gap: 2rem;
  }

  .service-grid-wide {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Original logo on light pill - no recoloring */
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.site-header .brand-logo-img {
  height: 42px !important;
  width: auto !important;
  max-width: 160px !important;
  padding: 6px 10px !important;
  background: #f7f1e8 !important;
  border-radius: 10px !important;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  object-fit: contain !important;
  filter: none !important;
}

.site-header .brand-text {
  display: none; /* logo mark is the brand */
}

.site-footer .brand-logo-img,
.site-footer img[alt="VO That's Real"] {
  height: 40px !important;
  width: auto !important;
  padding: 6px 10px !important;
  background: #f7f1e8 !important;
  border-radius: 10px !important;
  object-fit: contain !important;
}


/* Baked cream logo asset - light pad only */
.site-header .brand-logo-img--cream {
  padding: 4px 8px !important;
  background: #f7f1e8 !important;
  border-radius: 10px !important;
  height: 44px !important;
}

/* ===== Full-width light header (original logo, no pill box) ===== */
body.home .site-header,
.site-header {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  height: 72px;
}

body.home .site-header {
  height: 72px;
}

.site-header .header-inner {
  min-height: 72px;
}

.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.site-header .brand-logo-img,
.site-header .brand-logo-img--cream {
  height: 52px !important;
  width: auto !important;
  max-width: 200px !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  object-fit: contain !important;
  display: block;
}

.site-header .brand-text {
  display: none !important;
}

/* Nav on light header */
.site-header .nav a {
  color: #3d4658 !important;
}

.site-header .nav a:hover,
.site-header .nav a[aria-current="page"] {
  color: #0b1220 !important;
}

.site-header .menu-btn {
  background: #f3f0ea !important;
  border-color: rgba(11, 18, 32, 0.12) !important;
  color: #0b1220 !important;
}

.site-header .mobile-nav {
  background: #ffffff !important;
  border-bottom: 1px solid rgba(11, 18, 32, 0.08) !important;
}

.site-header .mobile-nav a {
  color: #0b1220 !important;
}

.site-header .mobile-nav a:hover {
  background: #f7f1e8 !important;
}

/* Keep primary CTA coral on light header */
.site-header .nav-cta.btn-primary {
  color: #fff !important;
}


/* Full content sections from live site */
.prose-block { max-width: 42rem; }
.prose-block h2, .prose-block .section-title-dark {
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 1.9rem);
  margin: 0 0 0.85rem;
  color: var(--cream);
}
.band-light .prose-block h2,
.band-light .prose-block .section-title-dark { color: var(--ink); }
.prose-block p, .prose-p {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 0.85rem;
}
.band-light .prose-block p, .band-light .prose-p { color: #3d4658; }

.credit-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 44rem;
}
.credit-list li { margin-bottom: 0.35rem; }

.brand-paragraph {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #3d4658;
  max-width: 48rem;
}

.accent-groups {
  display: grid;
  gap: 1.35rem;
  margin-top: 1.5rem;
}
.accent-label {
  margin: 0 0 0.65rem !important;
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8a838 !important;
}
.accent-chips {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.25rem, 1fr));
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}
.accent-chips li {
  margin: 0;
  padding: 0.62rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(232, 238, 248, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #e8eef8 !important;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-align: center;
}

.quote-grid {
  display: grid;
  gap: 0.85rem;
}
.quote-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 4px 16px rgba(11, 18, 32, 0.04);
}
.quote-card p {
  margin: 0;
  color: #2a3344;
  font-size: 0.95rem;
  line-height: 1.5;
  font-style: italic;
}
.quote-card cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3d4654;
  line-height: 1.35;
}
.quote-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.quote-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  filter: none;
  opacity: 1;
  background: transparent;
}

/* Live-site style testimonials: color logos on top */
.testimonial-featured {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.testimonial-more {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.t-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.07);
  border-radius: 16px;
  padding: 1.25rem 1.2rem 1.2rem;
  box-shadow: 0 4px 18px rgba(11, 18, 32, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.t-logo-wrap {
  width: 100%;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-logo {
  height: 52px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter: none;
}
.t-logo-disney {
  height: 70px;
  max-width: 200px;
  width: auto;
  object-fit: contain;
  /* official SVG — no filters */
  filter: none !important;
  background: transparent !important;
}
.t-quote {
  margin: 0 !important;
  color: #2a3344 !important;
  font-size: 0.98rem;
  line-height: 1.55;
  font-style: italic;
}
.t-cite {
  margin: 0;
  font-style: normal;
  font-size: 0.84rem;
  font-weight: 700;
  color: #3d4654;
  line-height: 1.35;
}
.t-cite::before {
  content: "— ";
  color: #8b93a3;
  font-weight: 600;
}
.t-card-plain {
  background: #faf9f6;
  box-shadow: none;
}
@media (min-width: 720px) {
  .testimonial-featured {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
  }
  .testimonial-more {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .testimonial-featured {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .t-logo {
    height: 56px;
    max-width: 160px;
  }
  .t-logo-disney {
    height: 62px;
  }
}

.compare-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.compare-card {
  border-radius: 14px;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: #fff;
}
.compare-card h3 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--ink);
}
.compare-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #3d4658;
  font-size: 0.92rem;
  line-height: 1.55;
}
.compare-yes { border-color: rgba(15, 118, 110, 0.25); }
.compare-no { border-color: rgba(185, 28, 28, 0.15); opacity: 0.95; }

/* ===== Demo transcripts page ===== */
.page-transcripts .tx-hero {
  padding-bottom: 2.25rem;
}
.tx-hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: end;
}
.tx-hero-lede {
  max-width: none;
  color: #d5dce8 !important;
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 1.25rem !important;
}
.tx-hero .hero-actions {
  margin-bottom: 0;
}
.tx-hero-lede strong {
  color: #f7f1e8;
}
.tx-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 1.25rem 1.35rem;
  max-width: 16rem;
}
.tx-stat-num {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  color: #f7f1e8 !important;
  font-weight: 700;
}
.tx-stat-label {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8a838 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tx-stat-note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: #9aa3b2 !important;
  line-height: 1.4;
}

.tx-section {
  padding-top: 1.5rem !important;
}
.tx-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(11, 18, 32, 0.04);
  position: sticky;
  top: calc(var(--header-h, 64px) + 0.5rem);
  z-index: 20;
}
.tx-toolbar-simple {
  justify-content: space-between;
}
.tx-toolbar-note {
  margin: 0;
  font-size: 0.9rem;
  color: #5c6570;
  font-weight: 600;
}
.demo-title-list {
  columns: 1;
  gap: 2rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: #2a3344;
  font-size: 0.9rem;
  line-height: 1.55;
}
.demo-title-list a {
  color: #0b1220;
  text-decoration: none;
  font-weight: 600;
}
.demo-title-list a:hover {
  color: #9a6b00;
  text-decoration: underline;
}
@media (min-width: 700px) {
  .demo-title-list {
    columns: 2;
  }
}
@media (min-width: 1000px) {
  .demo-title-list {
    columns: 3;
  }
}
.tx-search-wrap {
  position: relative;
  flex: 1 1 16rem;
  min-width: 12rem;
  margin: 0;
}
.tx-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #8b93a3;
  pointer-events: none;
}
.tx-search {
  width: 100%;
  border: 1px solid rgba(11, 18, 32, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.9rem 0.7rem 2.4rem;
  font: inherit;
  font-size: 0.95rem;
  color: #0b1220;
  background: #f7f5f1;
}
.tx-search:focus {
  outline: 2px solid rgba(232, 168, 56, 0.55);
  outline-offset: 1px;
  background: #fff;
}
.tx-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}
.tx-count {
  margin: 0;
  font-size: 0.85rem;
  color: #5c6570;
  white-space: nowrap;
}
.tx-count strong {
  color: #0b1220;
}
.tx-tool-btn {
  appearance: none;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: #fff;
  color: #2a3344;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
}
.tx-tool-btn:hover {
  border-color: rgba(232, 168, 56, 0.55);
  color: #0b1220;
}

.tx-list {
  display: grid;
  gap: 0.55rem;
}
.tx-item {
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.tx-item:hover {
  border-color: rgba(11, 18, 32, 0.14);
}
.tx-item[open] {
  border-color: rgba(232, 168, 56, 0.45);
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.06);
}
.tx-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 0.65rem 0.75rem;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 0.9rem 1rem;
  font-weight: 700;
  color: #0b1220;
}
.tx-item summary::-webkit-details-marker { display: none; }
.tx-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8b93a3;
  font-variant-numeric: tabular-nums;
}
.tx-title {
  font-size: 0.98rem;
  line-height: 1.3;
  min-width: 0;
}
.tx-dur {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a6b00;
  background: rgba(232, 168, 56, 0.14);
  border: 1px solid rgba(232, 168, 56, 0.28);
  border-radius: 999px;
  padding: 0.22rem 0.55rem;
  white-space: nowrap;
}
.tx-chev {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #f3efe8;
  position: relative;
  flex-shrink: 0;
}
.tx-chev::before,
.tx-chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: #9a6b00;
  border-radius: 1px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.tx-chev::before {
  width: 9px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.tx-chev::after {
  width: 2px;
  height: 9px;
  transform: translate(-50%, -50%);
}
.tx-item[open] .tx-chev::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}
.tx-body {
  padding: 0 1rem 1.05rem 1rem;
  border-top: 1px solid rgba(11, 18, 32, 0.06);
}
.tx-quote {
  margin: 0.9rem 0 0.85rem;
  padding: 0.95rem 1rem;
  border: 0;
  border-left: 3px solid #e8a838;
  border-radius: 0 12px 12px 0;
  background: #faf8f4;
}
.tx-quote p {
  margin: 0;
  color: #2a3344 !important;
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: normal;
}
.tx-taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.tx-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #3d4654;
  background: #eef1f6;
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
}
.tx-empty {
  margin: 1.5rem 0 0;
  text-align: center;
  color: #5c6570;
  font-size: 0.95rem;
}
.tx-footer-note {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
}
.tx-footer-note p {
  margin: 0;
  color: #3d4654 !important;
  font-size: 0.95rem;
  line-height: 1.55;
}
.tx-footer-note a {
  font-weight: 700;
}

@media (min-width: 768px) {
  .tx-hero-grid {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 2rem;
    align-items: center;
  }
  .tx-stat-card {
    justify-self: end;
    width: 100%;
  }
  .tx-item summary {
    padding: 1rem 1.15rem;
  }
  .tx-body {
    padding: 0 1.15rem 1.15rem 3.1rem;
  }
}

@media (min-width: 768px) {
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .compare-grid { grid-template-columns: 1fr 1fr; }
}


/* ===== Animated logo (from live vothatsreal.com Lottie) ===== */
.site-header .brand-logo-wrap {
  display: flex;
  align-items: center;
  position: relative;
  height: 56px;
  width: 56px;
  flex: none;
}

.site-header .brand-logo-lottie {
  width: 56px !important;
  height: 56px !important;
  display: block;
}

/* Hide static fallback when Lottie is supported/rendered */
.site-header .brand-logo-fallback {
  position: absolute;
  inset: 0;
  width: 56px !important;
  height: 56px !important;
  object-fit: contain !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  opacity: 0;
  pointer-events: none;
}

/* If JS/lottie fails, show static */
.no-lottie .site-header .brand-logo-fallback {
  opacity: 1;
}
.no-lottie .site-header .brand-logo-lottie {
  display: none !important;
}

/* Larger logo on desktop */
@media (min-width: 768px) {
  .site-header .brand-logo-wrap {
    height: 64px;
    width: 64px;
  }
  .site-header .brand-logo-lottie,
  .site-header .brand-logo-fallback {
    width: 64px !important;
    height: 64px !important;
  }
}

/* Footer: keep static original logo on light chip so it stays readable */
.site-footer img[alt="VO That's Real"] {
  background: #fff !important;
  padding: 6px 8px !important;
  border-radius: 8px !important;
  height: 40px !important;
  width: auto !important;
}

/* Animated logo size - readable, not a tiny stamp */
.site-header {
  height: 76px !important;
}
.site-header .header-inner {
  min-height: 76px !important;
}
.site-header .brand-logo-wrap {
  height: 68px !important;
  width: 68px !important;
}
.site-header .brand-logo-lottie,
.site-header .brand-logo-fallback {
  width: 68px !important;
  height: 68px !important;
}
@media (min-width: 768px) {
  .site-header .brand-logo-wrap {
    height: 72px !important;
    width: 72px !important;
  }
  .site-header .brand-logo-lottie,
  .site-header .brand-logo-fallback {
    width: 72px !important;
    height: 72px !important;
  }
}


/* ===== Real animated logo GIF from live site ===== */
.site-header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header .brand-logo-animated,
.site-header .brand-logo-img {
  height: 52px !important;
  width: auto !important;
  max-width: min(220px, 48vw) !important;
  max-height: 56px !important;
  object-fit: contain !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  display: block !important;
}

/* Hide any leftover lottie wrappers */
.site-header .brand-logo-wrap,
.site-header .brand-logo-lottie,
.site-header .brand-logo-fallback,
.site-header .brand-text {
  display: none !important;
}

@media (min-width: 768px) {
  .site-header .brand-logo-animated,
  .site-header .brand-logo-img {
    height: 58px !important;
    max-width: 260px !important;
    max-height: 64px !important;
  }
}


/* Contrast fix: dark section body copy must not be faint */
:root {
  --text-dim: #cdd5e3;
  --muted: #b0b8c8;
}

.band:not(.band-light) p,
.band:not(.band-light) .tight-p,
.band:not(.band-light) .prose-p,
.band:not(.band-light) .lede-soft,
.band:not(.band-light) li,
.hero-live .lede-soft,
.hero-live .tight-p,
#achievements .credit-list,
#achievements li,
#accents .tight-p,
#accents .brand-paragraph,
#studio .tight-p,
#demos .tight-p,
.demos-intro .tight-p,
.cta-band .tight-p {
  color: #d8dee9 !important;
}

.band:not(.band-light) .section-kicker,
.hero-live .section-kicker {
  color: #e8a838 !important;
  opacity: 1 !important;
}

/* About on cream */
#about.band-light .tight-p,
#about.band-light p {
  color: #2a3344 !important;
}
#about.band-light .section-kicker {
  color: #9a6b00 !important;
}
#about.band-light h2,
#about.band-light .section-title-dark {
  color: #0b1220 !important;
}

.band:not(.band-light) h2,
.band:not(.band-light) .section-title-dark {
  color: #f7f1e8 !important;
}

/* Sound cards on dark: keep dark text on white cards */
.band:not(.band-light) .sound-list li {
  color: #2a3344 !important;
}
.band:not(.band-light) .sound-list strong {
  color: #0b1220 !important;
}

/* Secondary button on dark - clearer border/text */
.band:not(.band-light) .btn-secondary {
  color: #f0f4fa !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}
.band:not(.band-light) .btn-secondary:hover {
  color: #fff !important;
  border-color: #e8a838 !important;
  background: rgba(232, 168, 56, 0.12) !important;
}

/* Credit list: dark by default on light; overridden on dark bands below */
.credit-list {
  color: #2a3344 !important;
}
.band:not(.band-light) .credit-list,
.band:not(.band-light) .credit-list li {
  color: #d8dee9 !important;
}

/* Brand paragraph on dark sections */
.band:not(.band-light) .brand-paragraph {
  color: #d0d7e4 !important;
}


/* Light section body copy must be dark (never pale gray on cream) */
.band-light p,
.band-light .tight-p,
.band-light .prose-p,
.band-light .prose-block p,
.band-light .brand-paragraph,
.band-light .section-kicker,
.band-light li,
.band-light .credit-list,
.band-light .credit-list li,
#barney p,
#barney .section-kicker,
#work p,
#work .prose-p,
#brands p,
#brands .brand-paragraph,
#testimonials p,
#never-ai p,
#never-ai li,
.section-light p {
  color: #2a3344 !important;
  opacity: 1 !important;
}

.band-light h1,
.band-light h2,
.band-light h3,
.band-light .section-title-dark,
#barney h2,
#work h2,
#brands h2,
#testimonials h2,
#never-ai h2 {
  color: #0b1220 !important;
}

.band-light .section-kicker,
#barney .section-kicker,
#work .section-kicker,
#brands .section-kicker,
#testimonials .section-kicker,
#never-ai .section-kicker {
  color: #9a6b00 !important;
}

/* Quote cards keep readable dark text */
.band-light .quote-card p {
  color: #2a3344 !important;
}
.band-light .compare-card li,
.band-light .compare-card h3 {
  color: #2a3344 !important;
}
.band-light .compare-card h3 {
  color: #0b1220 !important;
}


/* Brand logo strip (legacy static) */
.logo-strip-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.35rem;
  align-items: center;
  justify-content: center;
}
.logo-strip img {
  height: 36px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  background: none;
  border-radius: 0;
  padding: 0;
}
.logo-strip span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Grey scroll ticker — all brands, seamless marquee */
.logo-ticker {
  width: 100%;
  padding: 1.15rem 0 1.35rem;
  overflow: hidden;
}
.logo-ticker-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  opacity: 0.65;
}
.logo-ticker-viewport {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.logo-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
}
.logo-ticker-track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0 1.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.72;
  position: relative;
}
.logo-ticker-track span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
  background: currentColor;
}
.logo-ticker-dark {
  background: rgba(0, 0, 0, 0.28);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  color: #9aa3b2;
}
.logo-ticker-dark .logo-ticker-label {
  color: #9aa3b2;
}
.logo-ticker-light {
  background: transparent;
  padding: 0.5rem 0 1.5rem;
  color: #6b7280;
}
.logo-ticker-light .logo-ticker-track span {
  opacity: 0.78;
  color: #5c6570;
}
@keyframes logo-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-ticker-track {
    animation: none;
    flex-wrap: wrap;
    width: 100%;
    max-width: 72rem;
    margin: 0 auto;
    justify-content: center;
    row-gap: 0.65rem;
  }
  .logo-ticker-track span[aria-hidden="true"] {
    display: none;
  }
  .logo-ticker-viewport {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* Brand logo image marquee */
.brand-marquee {
  width: 100%;
  padding: 0.75rem 0 1.75rem;
  overflow: hidden;
}
.brand-marquee-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
  /* mask-image breaks CSS transforms on iOS Safari — fades are overlays */
  mask-image: none;
  -webkit-mask-image: none;
}
.brand-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: max-content;
  padding: 0.25rem 0;
  /* animation started in JS after measuring a pixel distance */
}
.brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 7.25rem;
  height: 5.75rem;
  padding: 0.65rem 0.85rem 0.55rem;
  background: #fff;
  border: 1px solid rgba(11, 18, 32, 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(11, 18, 32, 0.04);
}
.brand-logo-item img {
  height: 42px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: none !important;
  -webkit-filter: none !important;
  background: transparent !important;
  /* keep full brand color — never greyscale */
  opacity: 1;
}
/* Chrysler winged badge lockup (user-provided classic mark) */
.brand-logo-item img[alt="Chrysler"],
.brand-logo-item img[src*="brand-chrysler"] {
  height: 40px;
  max-width: 170px;
  width: auto;
  object-fit: contain;
}
/* Full-frame lockups that read small if constrained too hard */
.brand-logo-item img[alt="Walmart"],
.brand-logo-item img[src*="brand-walmart"] {
  height: 48px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item img[alt="SeaWorld"],
.brand-logo-item img[src*="brand-seaworld"] {
  height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item img[alt="Sprint"],
.brand-logo-item img[src*="brand-sprint"] {
  height: 40px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item img[alt="Bally's Fitness"],
.brand-logo-item img[src*="brand-ballys"] {
  height: 52px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item img[alt="Home Depot"],
.brand-logo-item img[src*="brand-home-depot"] {
  height: 52px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item img[alt="Ford"],
.brand-logo-item img[src*="brand-ford"] {
  height: 42px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6570;
  white-space: nowrap;
  max-width: 7rem;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-paragraph-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.studio-figure {
  margin: 0;
}
.studio-figure img {
  width: 100%;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  max-height: 320px;
  border: 1px solid rgba(255,255,255,0.08);
}
.studio-figure figcaption {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-align: center;
}
.brands-tight {
  padding: 1.25rem 0 !important;
  border-block: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}


/* ========== READABILITY LOCK (do not pale text on wrong bg) ========== */
/* Dark backgrounds → light text */
.page-hero,
.page-hero .container,
.hero,
.hero-live,
.band:not(.band-light),
.cta-band,
.site-footer {
  /* container only */
}

.page-hero {
  background: #0b1220 !important;
  color: #e8edf5 !important;
}

.page-hero h1 {
  color: #f7f1e8 !important;
}

.page-hero p,
.page-hero .lede,
.page-hero .lede-soft,
.page-hero li {
  color: #d5dce8 !important;
  opacity: 1 !important;
}

.page-hero .eyebrow,
.page-hero .section-kicker {
  color: #2dd4bf !important;
  opacity: 1 !important;
}

.page-hero .eyebrow {
  background: rgba(45, 212, 191, 0.12) !important;
  border-color: rgba(45, 212, 191, 0.35) !important;
}

/* Light backgrounds → dark text */
.band-light,
.section-light,
.band-light .container {
  color: #2a3344 !important;
}

.band-light p,
.band-light .tight-p,
.band-light .prose-p,
.band-light .prose-block p,
.band-light .brand-paragraph,
.band-light li,
.section-light p {
  color: #2a3344 !important;
  opacity: 1 !important;
}

.band-light h1,
.band-light h2,
.band-light h3,
.band-light .section-title-dark {
  color: #0b1220 !important;
}

.band-light .section-kicker {
  color: #9a6b00 !important;
}

/* Dark band body */
.band:not(.band-light) > .container > p,
.band:not(.band-light) .tight-p,
.band:not(.band-light) .prose-p,
.band:not(.band-light) .demos-intro p,
.band:not(.band-light) .demos-intro .tight-p,
.band:not(.band-light) .credit-list,
.band:not(.band-light) .credit-list li {
  color: #d5dce8 !important;
  opacity: 1 !important;
}

.band:not(.band-light) h2 {
  color: #f7f1e8 !important;
}

.band:not(.band-light) .section-kicker {
  color: #e8a838 !important;
}

/* Kill any leftover pale-on-pale from #barney etc */
#barney p,
#work p,
#brands p,
#testimonials p,
#never-ai p,
#roles p {
  /* if parent is band-light these need dark text - force via band-light rules above */
}

/* Ensure demos page hero specifically */
body .page-hero p {
  color: #d5dce8 !important;
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
  max-width: 52rem;
}
body .page-hero p.page-hero-sub {
  max-width: none;
  white-space: nowrap;
}
@media (max-width: 639px) {
  body .page-hero p.page-hero-sub {
    white-space: normal;
  }
}


/* Project cards: readable captions, no cropped nameplates */
.band-light .demo-thumbs .demo-thumb-card,
.section-light .demo-thumb-card,
.demo-thumb-card {
  background: #ffffff !important;
  border: 1px solid rgba(11, 18, 32, 0.1) !important;
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.demo-thumb-card .thumb-media {
  background: #111827;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.demo-thumb-card .thumb-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  aspect-ratio: auto;
}

/* Dean+Barney promo art: show full graphic, never crop the name */
.demo-thumb-card .thumb-media--portrait {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0b1220;
}

.demo-thumb-card .thumb-media--portrait img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.demo-thumb-card .cap {
  padding: 1rem 1.1rem 1.15rem !important;
  background: #ffffff !important;
}

.demo-thumb-card .cap h3,
.band-light .demo-thumb-card h3,
.section-light .demo-thumb-card h3 {
  margin: 0 0 0.3rem !important;
  color: #0b1220 !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
}

.demo-thumb-card .cap p,
.band-light .demo-thumb-card p,
.section-light .demo-thumb-card p {
  margin: 0 !important;
  color: #3d4658 !important;
  font-size: 0.92rem !important;
  line-height: 1.4 !important;
  opacity: 1 !important;
}

/* ========== iOS / mobile lock ========== */
html {
  overflow-x: clip;
  max-width: 100%;
}

@supports not (overflow-x: clip) {
  html {
    overflow-x: hidden;
  }
}

#brands,
.brand-marquee,
.brand-marquee-viewport {
  overflow: hidden;
  max-width: 100%;
}

.brand-marquee-viewport::before,
.brand-marquee-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  z-index: 2;
  pointer-events: none;
}

.brand-marquee-viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream, #f7f1e8), transparent);
}

.brand-marquee-viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream, #f7f1e8), transparent);
}

.brand-marquee-group {
  display: flex;
  align-items: stretch;
  gap: 0.85rem;
  flex: 0 0 auto;
  padding-right: 0.85rem;
}

.brand-marquee-track.is-js-ticking {
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .brand-marquee-track {
    animation: none !important;
    -webkit-animation: none !important;
    flex-wrap: wrap !important;
    width: 100% !important;
    max-width: 72rem;
    margin: 0 auto;
    justify-content: center;
    gap: 0.75rem !important;
    transform: none !important;
    -webkit-transform: none !important;
    will-change: auto;
  }

  .brand-marquee-group {
    display: contents;
  }

  .brand-marquee-group[aria-hidden="true"] {
    display: none;
  }

  .brand-marquee-viewport::before,
  .brand-marquee-viewport::after {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Full-width photo (edge to edge of the phone), then copy */
  .hero-live {
    padding: 0 0 1.5rem !important;
  }
  .hero-live > .container.hero-live-grid {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
    padding-inline: 0;
  }
  .hero-live-copy {
    padding-inline: 1rem;
  }
  .hero-live-grid .hero-main {
    order: -1;
    aspect-ratio: auto;
    width: 100%;
    max-width: none;
    margin: 0;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
  .hero-live-grid .hero-main img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .brand-logo-item {
    min-width: 6.1rem;
    height: 5.1rem;
    padding: 0.5rem 0.6rem 0.4rem;
  }

  .brand-marquee-group {
    gap: 0.65rem;
    padding-right: 0.65rem;
  }

  .service-grid,
  .service-grid-wide {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid-wide .svc,
  .svc {
    font-size: 0.8rem;
    padding: 0.7rem 0.45rem;
    line-height: 1.25;
  }

  .site-header {
    padding-top: env(safe-area-inset-top, 0px);
    height: calc(72px + env(safe-area-inset-top, 0px)) !important;
  }

  .site-header .mobile-nav {
    top: calc(72px + env(safe-area-inset-top, 0px));
  }

  .sticky-book {
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
  }

  .embed-frame iframe,
  .demos-player iframe,
  .demos-player-top iframe {
    height: 500px;
  }

  .hero-live-copy h1 {
    font-size: clamp(1.55rem, 7.4vw, 1.95rem);
  }

  .hero-live-copy h1 .h1-sub {
    font-size: 0.82em;
  }

  .hero-live-copy h1 .nowrap {
    white-space: normal;
  }
}

/* Hire cards sit on a dark band — keep card copy dark */
#hire .hire-step p,
#hire .hire-step .hire-n,
.band:not(.band-light) .hire-step p {
  color: #2a3344 !important;
  opacity: 1 !important;
}
#hire .hire-n {
  color: #8a5a00 !important;
}
#hire .hire-step h3 {
  color: #0b1220 !important;
}
#hire .hire-step a {
  color: #0b1220 !important;
}
