/* ============================================================
   byjpizzle — design tokens (see design-system/byjpizzle/MASTER.md)
   ============================================================ */
:root {
  --color-bg: #F7F5F1;
  --color-bg-alt: #EFEBE4;
  --color-ink: #161412;
  --color-ink-muted: #5C5751;
  --color-card: #FFFFFF;
  --color-border: #DEDAD1;
  --color-bg-inverted: #161412;
  --color-ink-inverted: #F7F5F1;
  --color-destructive: #B3261E;

  --font-display: "Syne", sans-serif;
  --font-body: "Manrope", sans-serif;

  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 96px;
  --space-2xl: 144px;

  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card: 0 20px 40px -20px rgba(22, 20, 18, 0.15);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-standard: 600ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

img, video { max-width: 100%; display: block; }

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

p { margin: 0; }

a { color: inherit; text-decoration: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.section {
  padding: var(--space-xl) 0;
}

@media (min-width: 1024px) {
  .section { padding: var(--space-2xl) 0; }
}

.section--alt { background: var(--color-bg-alt); }
.section--inverted {
  background: var(--color-bg-inverted);
  color: var(--color-ink-inverted);
}
.section--inverted .eyebrow { color: rgba(247, 245, 241, 0.6); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  max-width: 720px;
}

.section-head h2 {
  font-size: clamp(32px, 5vw, 48px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform var(--dur-standard) var(--ease-out), background var(--dur-standard) var(--ease-out), color var(--dur-standard) var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--color-ink); outline-offset: 3px; }

.btn--primary {
  background: var(--color-ink);
  color: var(--color-ink-inverted);
}
.btn--primary:hover { background: #2A2723; }

.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-ink);
}
.btn--ghost:hover { background: var(--color-ink); color: var(--color-ink-inverted); }

.section--inverted .btn--ghost {
  color: var(--color-ink-inverted);
  border-color: var(--color-ink-inverted);
}
.section--inverted .btn--ghost:hover {
  background: var(--color-ink-inverted);
  color: var(--color-ink);
}
.section--inverted .btn--primary {
  background: var(--color-ink-inverted);
  color: var(--color-ink);
}
.section--inverted .btn--primary:hover { background: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--space-md);
  background: rgba(247, 245, 241, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-standard) var(--ease-out), background var(--dur-standard) var(--ease-out);
}
.nav.is-scrolled {
  border-bottom-color: var(--color-border);
}

@media (min-width: 1024px) {
  .nav { padding: 24px var(--space-lg); }
}

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.nav__links {
  display: none;
  align-items: center;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-weight: 600;
  font-size: 14.5px;
  position: relative;
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-standard) var(--ease-out);
}
.nav__link:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--space-sm); }
.nav__actions .btn { padding: 11px 22px; font-size: 14px; display: none; }
@media (min-width: 1024px) { .nav__actions .btn { display: inline-flex; } }

.nav__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}
.nav__toggle svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .nav__toggle { display: none; } }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-lg);
  transform: translateY(-100%);
  transition: transform var(--dur-standard) var(--ease-out);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-ink-inverted);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media video, .hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22,20,18,0.35) 0%, rgba(22,20,18,0.15) 40%, rgba(22,20,18,0.85) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 140px var(--space-md) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .hero__inner { padding: 140px var(--space-lg) var(--space-2xl); }
}

.hero__eyebrow {
  color: rgba(247, 245, 241, 0.75);
}

.hero h1 {
  font-size: clamp(44px, 9vw, 108px);
  max-width: 18ch;
  text-wrap: balance;
}

.hero__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
}

.hero__sub {
  max-width: 42ch;
  font-size: 18px;
  color: rgba(247, 245, 241, 0.8);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); }

.hero__video-toggle {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(247, 245, 241, 0.15);
  border: 1px solid rgba(247, 245, 241, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}
.hero__video-toggle svg { width: 16px; height: 16px; }

/* Fallback for a hero awaiting its video asset: warm dark gradient instead of empty/broken media */
.hero__media--pending {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(247,245,241,0.08), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(247,245,241,0.06), transparent 50%),
    linear-gradient(160deg, #1A1815 0%, #100E0C 100%);
}

/* ---------- Deliverable cards: media placeholder + descriptor + subheader ---------- */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 900px) {
  .deliverables-grid { grid-template-columns: repeat(3, 1fr); }
}
.deliverable-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.deliverable-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background:
    radial-gradient(circle at 20% 20%, rgba(247,245,241,0.08), transparent 55%),
    radial-gradient(circle at 80% 75%, rgba(247,245,241,0.06), transparent 50%),
    linear-gradient(160deg, #1A1815 0%, #100E0C 100%);
}
.deliverable-card__media video,
.deliverable-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.deliverable-card__media-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(247, 245, 241, 0.45);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.deliverable-card__media-label svg { width: 28px; height: 28px; }
.deliverable-card__descriptor {
  font-size: 13px;
  font-style: italic;
  color: var(--color-ink-muted);
}
.deliverable-card h3 { font-size: 21px; }

/* ---------- Marquee stats bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg) 0;
}
@media (min-width: 768px) {
  .stats-bar { grid-template-columns: repeat(4, 1fr); }
}
.stat h3 {
  font-size: clamp(32px, 4vw, 48px);
}
.stat p {
  margin-top: 6px;
  color: var(--color-ink-muted);
  font-size: 14px;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--color-card);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: background var(--dur-standard) var(--ease-out);
}
.service-card:hover { background: var(--color-bg-alt); }
.service-card__index {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--color-ink-muted);
}
.service-card h3 { font-size: 22px; }
.service-card p { color: var(--color-ink-muted); font-size: 15px; }

/* ---------- Work / Portfolio ---------- */
.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 768px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
}

.work-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-ink);
  box-shadow: var(--shadow-card);
}
.work-card video, .work-card img.work-card__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,245,241,0.4);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: var(--space-md);
}
.work-card__tag {
  background-image:
    repeating-linear-gradient(45deg, rgba(247,245,241,0.05) 0 2px, transparent 2px 14px);
}
.work-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: var(--space-md);
  color: var(--color-ink-inverted);
  background: linear-gradient(180deg, transparent, rgba(22,20,18,0.85));
}
.work-card__overlay .eyebrow { color: rgba(247,245,241,0.65); }
.work-card__overlay h3 { font-size: 22px; margin-top: 4px; }

/* ---------- Case Studies (before/after) ---------- */
.case-study {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}
.case-study:last-child { border-bottom: none; }

@media (min-width: 1024px) {
  .case-study { grid-template-columns: 0.9fr 1.1fr; align-items: center; }
  .case-study--reverse { direction: rtl; }
  .case-study--reverse > * { direction: ltr; }
}

.case-study__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--color-ink);
  box-shadow: var(--shadow-card);
  position: relative;
}
.case-study__media video { width: 100%; height: 100%; object-fit: cover; }
.case-study__media .work-card__ph { font-size: 12px; }

.case-study__body { display: flex; flex-direction: column; gap: var(--space-md); }
.case-study__client { display: flex; align-items: baseline; gap: var(--space-sm); flex-wrap: wrap; }
.case-study__client h3 { font-size: clamp(28px, 3.5vw, 36px); }
.case-study__tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-alt);
  color: var(--color-ink-muted);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--space-sm);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}
.before-after__col { display: flex; flex-direction: column; gap: 4px; }
.before-after__col--after { text-align: right; }
.before-after__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-ink-muted);
}
.before-after__value {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
}
.before-after__col--after .before-after__value { color: var(--color-ink); }
.before-after__arrow { width: 20px; height: 20px; color: var(--color-ink-muted); }

.case-study__result { color: var(--color-ink-muted); font-size: 15px; }
.case-study__todo {
  font-size: 12px;
  color: var(--color-destructive);
  font-weight: 700;
}

/* ---------- Client logos ---------- */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (min-width: 768px) { .logo-strip { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .logo-strip--five { grid-template-columns: repeat(5, 1fr); } }

.logo-strip__item {
  background: var(--color-card);
  padding: var(--space-lg) var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--color-ink-muted);
  transition: color var(--dur-standard) var(--ease-out);
  text-align: center;
}
.logo-strip__item:hover { color: var(--color-ink); }

/* ---------- Artist roster ---------- */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (min-width: 768px) { .roster-grid { grid-template-columns: repeat(4, 1fr); } }

.roster-card { display: flex; flex-direction: column; gap: var(--space-sm); }
.roster-card__img {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-lg);
  background: var(--color-bg-alt);
  overflow: hidden;
  position: relative;
}
.roster-card__img .work-card__ph { color: var(--color-ink-muted); }
.roster-card h3 { font-size: 17px; }
.roster-card p { font-size: 13px; color: var(--color-ink-muted); }

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .testimonial-grid--two { grid-template-columns: repeat(2, 1fr); } }

.testimonial-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: space-between;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
}
.testimonial-card__author { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card__author span:first-child { font-weight: 700; }
.testimonial-card__author span:last-child { font-size: 13px; color: var(--color-ink-muted); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }
.contact-info h2 { font-size: clamp(36px, 5vw, 56px); }
.contact-info__list { display: flex; flex-direction: column; gap: var(--space-sm); }
.contact-info__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(247,245,241,0.15);
  font-size: 15px;
}
.contact-info__row span:first-child { color: rgba(247,245,241,0.6); }
.contact-info__row a { font-weight: 700; }
.contact-info__socials { display: flex; gap: var(--space-sm); }

.form {
  background: var(--color-card);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  box-shadow: var(--shadow-card);
}
.form__row { display: flex; flex-direction: column; gap: 6px; }
.form__row label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  color: var(--color-ink);
  width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--color-ink);
  outline-offset: 1px;
}
.form textarea { min-height: 120px; resize: vertical; }
.form__two { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 600px) { .form__two { grid-template-columns: 1fr 1fr; } }
.form__note { font-size: 12px; color: var(--color-ink-muted); min-height: 16px; }
.form__note[data-state="success"] { color: #1a7a3a; font-weight: 600; }
.form__note[data-state="error"] { color: var(--color-destructive); font-weight: 600; }
.form__error {
  font-size: 12px;
  color: var(--color-destructive);
  min-height: 14px;
  display: block;
}
.form input[aria-invalid="true"],
.form textarea[aria-invalid="true"] {
  border-color: var(--color-destructive);
}
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* ---------- Footer ---------- */
.footer {
  padding: var(--space-lg) 0 var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}
.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(247,245,241,0.15);
}
@media (min-width: 768px) {
  .footer__top { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer__logo { font-family: var(--font-display); font-size: 32px; font-weight: 800; text-transform: uppercase; }
.footer__links { display: flex; flex-wrap: wrap; gap: var(--space-lg); }
.footer__col { display: flex; flex-direction: column; gap: var(--space-xs); }
.footer__col span { color: rgba(247,245,241,0.5); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  font-size: 13px;
  color: rgba(247,245,241,0.55);
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-standard) var(--ease-out), transform var(--dur-standard) var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(247,245,241,0.3);
  transition: background var(--dur-standard) var(--ease-out), border-color var(--dur-standard) var(--ease-out);
}
.icon-link:hover { background: rgba(247,245,241,0.1); }
.icon-link svg { width: 18px; height: 18px; }

/* ============================================================
   Multi-page components (subpages)
   ============================================================ */

/* ---------- Active nav state ---------- */
.nav__link[aria-current="page"] { color: var(--color-ink); }
.nav__link[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Page hero (subpage banner) ---------- */
.page-hero {
  padding: 160px var(--space-md) var(--space-xl);
  background: var(--color-bg-inverted);
  color: var(--color-ink-inverted);
}
@media (min-width: 1024px) {
  .page-hero { padding: 180px var(--space-lg) var(--space-2xl); }
}
.page-hero .eyebrow { color: rgba(247,245,241,0.65); }
.page-hero h1 {
  margin-top: var(--space-sm);
  font-size: clamp(40px, 7vw, 76px);
  max-width: 20ch;
}
.page-hero__sub {
  margin-top: var(--space-md);
  max-width: 56ch;
  font-size: 18px;
  color: rgba(247, 245, 241, 0.8);
}
.page-hero__crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(247,245,241,0.55);
}
.page-hero__crumb svg { width: 14px; height: 14px; }

/* ---------- Expanded service card (services.html) ---------- */
.service-card--expanded {
  padding: var(--space-lg) var(--space-md);
}
.service-card--expanded ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card--expanded li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-ink-muted);
}
.service-card--expanded li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-ink);
}

/* ---------- Process (Story to Scale) ---------- */
.process {
  display: flex;
  flex-direction: column;
}
.process-step {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--color-border);
}
.process-step:last-child { border-bottom: 1px solid var(--color-border); }

@media (min-width: 900px) {
  .process-step {
    grid-template-columns: 100px 1fr 1.4fr;
    align-items: start;
    gap: var(--space-lg);
  }
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-ink-muted);
}
.process-step__title { font-size: clamp(24px, 3vw, 32px); }
.process-step__body { color: var(--color-ink-muted); font-size: 15.5px; max-width: 52ch; }

.process-intro {
  max-width: 640px;
  color: var(--color-ink-muted);
  font-size: 17px;
  margin-bottom: var(--space-lg);
}

/* ---------- Expanded case study (case-studies.html) ---------- */
.case-study__narrative {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.case-study__narrative h4 {
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-muted);
}
.case-study__narrative p { font-size: 15px; color: var(--color-ink-muted); }

/* ---------- Expanded work card (work.html) ---------- */
.work-card--full { aspect-ratio: 16 / 11; }

/* ---------- Featured project spread: 1 main + 3 smaller media ---------- */
.work-feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.work-feature__main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-ink);
  box-shadow: var(--shadow-card);
}
.work-feature__main video,
.work-feature__main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-feature__strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: var(--space-md);
}
.work-feature__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-ink);
  box-shadow: var(--shadow-card);
}
.work-feature__item video,
.work-feature__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 900px) {
  .work-feature { grid-template-columns: 1.3fr 1fr; }
  .work-feature__strip {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  /* Side items keep their 3:4 vertical ratio (see base .work-feature__item rule above) — never cropped
     into a horizontal shape. Sized down at desktop so a short strip doesn't tower over the main video
     and leave a block of blank space beneath it. */
  .work-feature__item {
    width: 190px;
  }
}
.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}
.work-card__meta span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink-muted);
  background: var(--color-bg-alt);
  padding: 5px 11px;
  border-radius: var(--radius-pill);
}
.work-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-sm);
}
.work-detail p { color: var(--color-ink-muted); font-size: 15px; }

/* ---------- Roster bio (clients.html) ---------- */
.roster-card--full { gap: var(--space-md); }
.roster-card--full p.bio { font-size: 14px; color: var(--color-ink-muted); }

/* ---------- Brand card (clients.html) ---------- */
.brand-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.brand-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
}
.brand-card p { color: var(--color-ink-muted); font-size: 14px; }
.brand-card__logo {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
}
.logo-strip__item img {
  height: 40px;
  width: auto;
  max-width: 80%;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity var(--dur-standard) var(--ease-out), filter var(--dur-standard) var(--ease-out);
}
.logo-strip__item:hover img { filter: grayscale(0); opacity: 1; }
.case-study__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

/* ---------- Next steps (contact.html) ---------- */
.next-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
@media (min-width: 700px) {
  .next-steps { grid-template-columns: repeat(3, 1fr); }
}
.next-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(247,245,241,0.2);
}
.next-step__num {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(247,245,241,0.55);
}
.next-step h4 { font-size: 17px; }
.next-step p { font-size: 14px; color: rgba(247,245,241,0.7); }

/* ---------- Teaser link row (index.html) ---------- */
.teaser-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.teaser-head .section-head { margin-bottom: 0; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--color-ink);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 300ms var(--ease-out); }
.link-arrow:hover svg { transform: translateX(4px); }
.section--inverted .link-arrow { border-color: var(--color-ink-inverted); }

/* ---------- Final CTA band (index.html) ---------- */
.cta-band {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
}
.cta-band h2 { font-size: clamp(36px, 6vw, 64px); max-width: 16ch; }

/* ============================================================
   Quiz engine (ad-landing pages: brand-quiz.html, artist-quiz.html)
   ============================================================ */
body.quiz-page { background: var(--color-bg-inverted); }
.quiz-shell {
  min-height: 100dvh;
  background: var(--color-bg-inverted);
  color: var(--color-ink-inverted);
  display: flex;
  flex-direction: column;
}

.quiz-progress-track {
  height: 3px;
  background: rgba(247, 245, 241, 0.12);
  width: 100%;
}
.quiz-progress-fill {
  height: 100%;
  background: var(--color-ink-inverted);
  transition: width var(--dur-standard) var(--ease-out);
  width: 0%;
}

.quiz-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
}

.quiz-card {
  width: 100%;
  max-width: 620px;
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.quiz-card.is-leaving {
  opacity: 0;
  transform: translateX(-24px);
}
.quiz-card.is-entering {
  opacity: 0;
  transform: translateX(24px);
}
@media (prefers-reduced-motion: reduce) {
  .quiz-card { transition: none; }
  .quiz-card.is-leaving, .quiz-card.is-entering { opacity: 1; transform: none; }
}

.quiz-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(247, 245, 241, 0.5);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--space-lg);
}
.quiz-back svg { width: 14px; height: 14px; }
.quiz-back:hover { color: var(--color-ink-inverted); }

.quiz-eyebrow { color: rgba(247, 245, 241, 0.55); }
.quiz-title {
  margin-top: var(--space-sm);
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.15;
}
.quiz-sub {
  margin-top: var(--space-md);
  color: rgba(247, 245, 241, 0.75);
  font-size: 17px;
  max-width: 48ch;
}

.quiz-options {
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.quiz-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  min-height: 56px;
  border-radius: 16px;
  border: 1.5px solid rgba(247, 245, 241, 0.2);
  background: rgba(247, 245, 241, 0.04);
  color: var(--color-ink-inverted);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  transition: background var(--dur-standard) var(--ease-out), border-color var(--dur-standard) var(--ease-out), transform 150ms var(--ease-out);
}
.quiz-option:hover {
  background: rgba(247, 245, 241, 0.09);
  border-color: rgba(247, 245, 241, 0.4);
}
.quiz-option:active { transform: scale(0.99); }
.quiz-option:focus-visible {
  outline: 2px solid var(--color-ink-inverted);
  outline-offset: 2px;
}
.quiz-option.is-selected {
  background: var(--color-ink-inverted);
  color: var(--color-ink);
  border-color: var(--color-ink-inverted);
}
.quiz-option svg { width: 18px; height: 18px; flex-shrink: 0; opacity: 0; transition: opacity 150ms var(--ease-out); }
.quiz-option.is-selected svg { opacity: 1; }

.quiz-start-btn {
  margin-top: var(--space-lg);
}

.quiz-form {
  margin-top: var(--space-lg);
}
.quiz-form .form { box-shadow: none; }

.quiz-note {
  margin-top: var(--space-sm);
  font-size: 12px;
  color: rgba(247, 245, 241, 0.5);
}

.quiz-thankyou svg {
  width: 40px;
  height: 40px;
  color: var(--color-ink-inverted);
  margin-bottom: var(--space-md);
}

.quiz-footer-logo {
  padding: var(--space-md);
  text-align: center;
}
.quiz-footer-logo a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: rgba(247, 245, 241, 0.5);
}
.quiz-footer-logo a:hover { color: var(--color-ink-inverted); }

.quiz-header {
  padding: 24px var(--space-md);
}
@media (min-width: 1024px) { .quiz-header { padding: 28px var(--space-lg); } }
.quiz-header a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--color-ink-inverted);
}

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