:root {
  color-scheme: light dark;
  --brand-ink: #0f0f0e;
  --brand-white: #fcfcfc;
  --page: var(--brand-white);
  --surface: #f2f2ed;
  --surface-strong: #e5e5dc;
  --ink: var(--brand-ink);
  --muted: #5c5c55;
  --line: #d3d3cb;
  --accent: #fecd05;
  --accent-deep: #f8bf00;
  --shadow: rgb(15 15 14 / 0.16);
  --radius: 16px;
  --header-height: 76px;
  --page-pad: clamp(1rem, 3vw, 2.5rem);
  --content: 1400px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --page: var(--brand-ink);
    --surface: #171716;
    --surface-strong: #20201b;
    --ink: var(--brand-white);
    --muted: #bdbdb5;
    --line: #35352e;
    --accent: #fecd05;
    --accent-deep: #f8bf00;
    --shadow: rgb(0 0 0 / 0.28);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.2em;
}

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: var(--ink);
  color: var(--page);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: 0.7rem var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--page) 94%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand img {
  width: 72px;
  height: auto;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  white-space: nowrap;
}

.nav-links a,
.site-footer a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--ink);
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.2em;
  text-underline-offset: 0.35em;
}

.nav-book-link,
.menu-toggle {
  display: none;
}

.menu-toggle {
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.7rem;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--page);
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle-icon {
  display: grid;
  width: 18px;
  gap: 3px;
}

.menu-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.site-header > .header-cta {
  justify-self: end;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.78rem 1.15rem;
  border: 2px solid var(--brand-ink);
  border-radius: 12px;
  background: var(--accent);
  color: var(--brand-ink);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--brand-ink);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  background: var(--accent-deep);
  transform: translate(-1px, -1px);
  box-shadow: 6px 6px 0 var(--brand-ink);
}

.button:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--brand-ink);
}

.button-small {
  min-height: 44px;
  padding: 0.65rem 0.9rem;
  font-size: 0.85rem;
}

.button-outline {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}

.button-outline:hover {
  background: var(--surface);
}

.button-dark {
  border-color: var(--brand-ink);
  background: var(--brand-ink);
  color: var(--brand-white);
  box-shadow: 4px 4px 0 rgb(15 15 14 / 0.32);
}

.button-dark:hover {
  background: #20201b;
  box-shadow: 6px 6px 0 rgb(15 15 14 / 0.32);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.3em;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100dvh - var(--header-height));
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 5.5rem) var(--page-pad);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow,
.video-type,
.booking-kicker {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.footer-brand {
  font-family: "Arial Black", system-ui, sans-serif;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  font-weight: 950;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.45rem, 5vw, 5.5rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 1;
}

.hero-intro {
  max-width: 35rem;
  margin-bottom: 1.6rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.hero-visual {
  position: relative;
  isolation: isolate;
  min-height: min(64vw, 650px);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  box-shadow: 12px 12px 0 var(--ink);
}

.booking-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  min-height: calc(100dvh - var(--header-height));
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 6.5rem) var(--page-pad);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.booking-page-hero-copy {
  max-width: 650px;
}

.booking-page-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.4rem, 6vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.booking-page-intro {
  max-width: 35rem;
  margin-bottom: 1.8rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.55;
}

.booking-page-visual {
  min-height: min(56vw, 620px);
}

.booking-page-section {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
}

.homepage-booking-section {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.booking-page-heading {
  width: min(100%, 1200px);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
}

.booking-page-heading h2 {
  max-width: 12ch;
  margin-bottom: 1.25rem;
  letter-spacing: -0.04em;
}

.booking-page-heading > p:not(.eyebrow) {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-page-form {
  width: 100%;
  margin: 0;
}

.booking-form-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: start;
  width: min(100%, 1200px);
  margin-inline: auto;
}

.booking-form-photo {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 9px 9px 0 var(--accent);
}

.booking-form-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.booking-confidence {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.booking-page-hero-copy .booking-confidence {
  margin-top: 1.5rem;
}

.booking-confidence li {
  position: relative;
  padding-left: 1.65rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.booking-confidence li::before {
  position: absolute;
  top: 0.15rem;
  left: 0;
  display: grid;
  width: 1.1rem;
  height: 1.1rem;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--brand-ink);
  content: "✓";
  font-size: 0.74rem;
  font-weight: 950;
  line-height: 1;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 1.1rem;
}

.event-field {
  min-width: 0;
  margin: 0 0 1.4rem;
  padding: 0;
  border: 0;
}

.event-field legend {
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.event-field legend span {
  color: #a3311f;
}

.event-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.event-option {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.8rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--page);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.25;
}

.event-option-wide {
  grid-column: 1 / -1;
}

.event-option:has(input:checked) {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px var(--accent);
}

.event-option input {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  margin: 0;
  accent-color: var(--accent-deep);
}

.event-option input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.booking-inquiry-form .button {
  max-width: 100%;
  white-space: normal;
}

.booking-inquiry-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.04);
}

.hero-photo-denim {
  object-position: center top;
}

.hero-photo-yellow {
  object-position: center 42%;
}

.hero-word {
  position: absolute;
  z-index: 1;
  top: 5%;
  left: -4%;
  color: rgb(15 15 14 / 0.12);
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(5.5rem, 13vw, 12rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
  transform: rotate(-6deg);
  user-select: none;
}

.hero-photo-frame .hero-word {
  z-index: 3;
  top: auto;
  bottom: clamp(1.25rem, 3vw, 2.25rem);
  left: clamp(1rem, 3vw, 2.25rem);
  color: var(--accent);
  font-size: clamp(3.5rem, 8.2vw, 7.5rem);
  letter-spacing: -0.08em;
  text-shadow: 4px 4px 0 var(--brand-ink);
  transform: rotate(-4deg);
}

.section {
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
}

.section-heading {
  max-width: 850px;
  margin-bottom: clamp(2.8rem, 6vw, 5.5rem);
}

.section-heading h2 {
  margin-bottom: 0;
}

.watch-section {
  border-top: 1px solid var(--line);
}

.latest-section {
  border-top: 1px solid var(--line);
}

.latest-heading {
  margin-bottom: clamp(2.2rem, 5vw, 4rem);
}

.latest-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.latest-candid {
  max-width: 300px;
  margin: 2.25rem 0 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 7px 7px 0 var(--accent);
}

.latest-candid img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
}

.latest-player {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 9px 9px 0 var(--accent);
}

.latest-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.featured-video {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.video-image {
  position: relative;
  display: block;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 7px 7px 0 var(--ink);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 220ms ease;
}

.video-image:hover {
  transform: translate(-3px, -3px);
  box-shadow: 11px 11px 0 var(--ink);
}

.video-image:active {
  transform: translate(1px, 1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.video-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.video-image:hover img {
  transform: scale(1.025);
}

.play-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.6rem 0.8rem;
  border: 2px solid var(--brand-ink);
  border-radius: 10px;
  background: var(--accent);
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
}

.featured-copy {
  padding-bottom: 0.5rem;
}

.featured-copy p:not(.video-type),
.story-copy p,
.marker-copy > p:not(.eyebrow),
.booking-section p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.video-pair {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4rem, 9vw, 8rem);
}

.video-card > div {
  padding-top: 1.5rem;
}

.video-card-offset {
  margin-top: clamp(2rem, 7vw, 8rem);
}

.video-card .video-type {
  margin-bottom: 0.75rem;
}

.video-card h3 {
  margin-bottom: 0;
}

.section-cta {
  margin-top: clamp(3rem, 6vw, 5rem);
}

.series-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  width: min(calc(100% - (2 * var(--page-pad))), calc(var(--content) - (2 * var(--page-pad))));
  margin: clamp(1rem, 3vw, 2.5rem) auto clamp(5rem, 9vw, 9rem);
  padding: clamp(3rem, 7vw, 6rem);
  border: 2px solid var(--brand-ink);
  border-radius: var(--radius);
  background: var(--brand-ink);
  color: var(--brand-white);
  box-shadow: 10px 10px 0 var(--accent);
}

.series-section h2 {
  max-width: 8ch;
  margin-bottom: 0;
}

.series-section .eyebrow {
  color: var(--accent);
}

.series-section p:not(.eyebrow) {
  max-width: 52ch;
  color: #d8d8d1;
  font-size: 1.04rem;
}

.series-section .button {
  margin-top: 1rem;
  border-color: var(--brand-white);
  background: var(--accent);
  color: var(--brand-ink);
  box-shadow: 4px 4px 0 var(--brand-white);
}

.story-section {
  border-top: 1px solid var(--line);
}

.creator-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(240px, 0.88fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  align-items: end;
}

.creator-photo {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 9px 9px 0 var(--ink);
}

.creator-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.creator-photo-primary img {
  aspect-ratio: 4 / 5;
  object-position: center 30%;
}

.creator-photo-secondary {
  margin-bottom: clamp(2rem, 7vw, 7rem);
  box-shadow: 9px 9px 0 var(--accent);
}

.creator-photo-secondary img {
  aspect-ratio: 3 / 4;
  object-position: center 25%;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: start;
  margin-top: clamp(3.5rem, 7vw, 7rem);
}

.story-grid h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.story-copy {
  padding-top: 0.3rem;
}

.story-copy p {
  margin-bottom: 1.25rem;
}

.marker-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
  border-top: 1px solid var(--line);
}

.marker-copy h2 {
  max-width: 9ch;
}

.marker-copy .button {
  margin-top: 1rem;
}

.marker-video {
  transform: rotate(2deg);
}

.marker-video:hover {
  transform: rotate(0deg) translate(-3px, -3px);
}

.faq-section {
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 1.5rem 3.25rem 1.5rem 0;
  cursor: pointer;
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.15;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.25rem;
  content: "+";
  color: var(--muted);
  font-family: system-ui, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 68ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: end;
  width: min(calc(100% - (2 * var(--page-pad))), calc(var(--content) - (2 * var(--page-pad))));
  margin: clamp(1rem, 3vw, 2.5rem) auto;
  padding: clamp(3rem, 7vw, 6rem);
  border: 2px solid var(--brand-ink);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--brand-ink);
  box-shadow: 10px 10px 0 var(--brand-ink);
}

.booking-section h2 {
  max-width: 9ch;
  margin-bottom: 0;
}

.booking-section p {
  color: #2b2b25;
}

.booking-section .button {
  margin-top: 1rem;
}

.booking-form-preview {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 2px solid var(--brand-ink);
  border-radius: 14px;
  background: var(--brand-white);
  color: var(--brand-ink);
  text-decoration: none;
  box-shadow: 6px 6px 0 var(--brand-ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.booking-form-preview:hover {
  transform: translate(-2px, -2px);
  box-shadow: 9px 9px 0 var(--brand-ink);
}

.booking-form-preview:focus-visible {
  outline: 4px solid var(--brand-white);
  outline-offset: 5px;
}

.booking-preview-field {
  display: grid;
  gap: 0.35rem;
  color: var(--brand-ink);
  font-size: 0.82rem;
  font-weight: 850;
}

.booking-preview-field > span:last-child {
  display: block;
  min-height: 44px;
  border: 2px solid #d3d3cb;
  border-radius: 9px;
  background: #fcfcfc;
}

.booking-form-preview .button {
  justify-self: start;
  pointer-events: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: 4.5rem var(--page-pad) 3rem;
}

.site-footer p {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand {
  color: var(--ink) !important;
  font-size: 1.25rem !important;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.legal-main {
  width: min(100%, 880px);
  min-height: calc(100dvh - var(--header-height));
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 8rem) var(--page-pad);
}

.legal-main h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  overflow-wrap: anywhere;
}

.legal-main h2 {
  margin-top: 3rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.legal-main p,
.legal-main li {
  max-width: 68ch;
  color: var(--muted);
}

.legal-main .button {
  max-width: 100%;
  margin-top: 1.5rem;
  white-space: normal;
}

.application-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(2.5rem, 8vw, 9rem);
  align-items: end;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad) clamp(4rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line);
}

.application-hero h1 {
  max-width: 9ch;
  margin-bottom: 0;
}

.application-hero-copy p {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}

.application-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  width: min(100%, var(--content));
  margin-inline: auto;
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
}

.application-details {
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
}

.application-details h2 {
  max-width: 10ch;
}

.application-details > p:not(.eyebrow),
.application-points {
  max-width: 52ch;
  color: var(--muted);
}

.application-points {
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}

.application-points li {
  position: relative;
  margin-bottom: 0.8rem;
  padding-left: 1.6rem;
  color: var(--ink);
  font-weight: 800;
}

.application-points li::before {
  position: absolute;
  top: 0.57em;
  left: 0;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--accent);
  content: "";
  transform: rotate(45deg);
}

.application-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 5px solid var(--accent);
  background: var(--surface);
}

.application-form {
  position: relative;
  padding: clamp(1.25rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 10px 10px 0 var(--ink);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.field {
  margin-bottom: 1.4rem;
}

.field label,
.consent-field {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.field label {
  display: block;
  margin-bottom: 0.45rem;
}

.field label span {
  color: #a3311f;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 0.78rem 0.85rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--page);
  color: var(--ink);
  font: inherit;
  line-height: 1.4;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  outline: 3px solid var(--accent);
  outline-offset: 1px;
  box-shadow: none;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 0.5rem 0 1rem;
  cursor: pointer;
}

.consent-field input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.25rem 0 0;
  accent-color: var(--accent-deep);
}

.form-fine-print {
  max-width: 62ch;
  margin-bottom: 1.5rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.application-form .button {
  max-width: 100%;
  white-space: normal;
}

.application-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.application-status {
  margin: 1.5rem 0 0;
  padding: 1rem;
  border: 2px solid var(--line);
  border-radius: 10px;
  background: var(--page);
  color: var(--ink);
  font-weight: 750;
}

.application-status[data-state="success"] {
  border-color: #238636;
}

.application-status[data-state="error"] {
  border-color: #c23b22;
}

.trap-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--page);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > * {
    animation: rise-in 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .hero-copy > :nth-child(2) {
    animation-delay: 70ms;
  }

  .hero-copy > :nth-child(3) {
    animation-delay: 140ms;
  }

  .hero-copy > :nth-child(4) {
    animation-delay: 210ms;
  }

  .hero-visual {
    animation: visual-in 750ms 120ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes visual-in {
    from {
      opacity: 0;
      transform: translateY(22px) rotate(1deg);
    }
    to {
      opacity: 1;
      transform: translateY(0) rotate(0deg);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    row-gap: 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 0.6rem 0 0.8rem;
    white-space: normal;
  }

  .js .nav-links {
    display: none;
  }

  .js .nav-links[data-open="true"] {
    display: flex;
  }

  .nav-links a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 0.7rem 0.25rem;
    border-top: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
  }

  .nav-links a[aria-current="page"] {
    text-decoration: none;
  }

  .nav-book-link {
    display: flex;
    margin-top: 0.5rem;
    justify-content: center;
    border: 2px solid var(--brand-ink) !important;
    border-radius: 10px;
    background: var(--accent);
    color: var(--brand-ink) !important;
  }

  .js .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
  }

  .site-header > .header-cta {
    grid-column: 3;
    grid-row: 1;
  }

  .hero,
  .latest-feature,
  .featured-video,
  .story-grid,
  .marker-section,
  .booking-section,
  .series-section,
  .booking-page-hero,
  .booking-form-layout,
  .application-hero,
  .application-layout {
    grid-template-columns: 1fr;
  }

  .booking-form-photo {
    position: static;
    width: min(100%, 520px);
    justify-self: center;
  }

  .application-details {
    position: static;
  }

  .hero {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .hero-copy {
    padding-top: 0;
  }

  .booking-page-hero {
    min-height: auto;
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .booking-page-visual {
    min-height: min(90vw, 620px);
  }

  .hero-visual {
    min-height: min(90vw, 650px);
  }

  .featured-copy {
    max-width: 620px;
  }

  .latest-copy {
    max-width: 620px;
  }

  .story-grid h2,
  .marker-copy h2,
  .booking-section h2 {
    max-width: 13ch;
  }

  .marker-copy {
    order: 1;
  }

  .marker-video {
    order: 0;
  }

  .booking-section {
    align-items: start;
  }
}

@media (max-width: 640px) {
  :root {
    --page-pad: 1rem;
    --radius: 14px;
    --header-height: 66px;
  }

  .site-header {
    gap: 0.75rem;
    min-height: var(--header-height);
  }

  .menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .menu-toggle {
    width: 42px;
    padding-inline: 0.65rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.88rem;
  }

  .brand img {
    width: 56px;
    height: auto;
  }

  .button-small {
    min-height: 38px;
    padding: 0.55rem 0.75rem;
    font-size: 0.78rem;
  }

  .hero {
    gap: 3.25rem;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.2rem, 15vw, 5rem);
  }

  h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-visual {
    min-height: 105vw;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .hero-word {
    top: 8%;
    font-size: 25vw;
  }

  .section {
    padding-block: 5.5rem;
  }

  .video-pair {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .video-card-offset {
    margin-top: 0;
  }

  .video-image,
  .latest-player,
  .latest-candid,
  .creator-photo,
  .booking-form-photo {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .booking-form-photo {
    box-shadow: 5px 5px 0 var(--accent);
  }

  .video-image img {
    aspect-ratio: 16 / 7;
  }

  .play-label {
    left: 0.75rem;
    bottom: 0.75rem;
  }

  .latest-candid {
    max-width: none;
  }

  .creator-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .creator-photo-secondary {
    margin-bottom: 2.5rem;
    box-shadow: 5px 5px 0 var(--accent);
  }

  .booking-section {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 2.5rem 1.25rem;
    box-shadow: 6px 6px 0 var(--brand-ink);
  }

  .series-section {
    width: calc(100% - 2rem);
    margin: 1rem 1rem 5.5rem;
    padding: 2.5rem 1.25rem;
    box-shadow: 6px 6px 0 var(--accent);
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .booking-form-grid,
  .event-options {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .event-option + .event-option {
    margin-top: 0.65rem;
  }

  .application-form,
  .booking-page-form {
    padding: 1.1rem;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .booking-inquiry-form input,
  .booking-inquiry-form textarea {
    font-size: 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 68px;
  }
}

/* Sales homepage */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sales-hero,
.proof-section,
.reaction-section,
.sales-section,
.formats-section,
.supporting-section {
  width: min(100%, var(--content));
  margin-inline: auto;
}

.sales-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  min-height: calc(100dvh - var(--header-height));
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(3.5rem, 7vw, 7.5rem) var(--page-pad);
}

.sales-hero-copy {
  max-width: 780px;
}

.sales-hero h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 5.5vw, 6.5rem);
}

.sales-hero-intro {
  max-width: 43rem;
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 680;
  line-height: 1.45;
}

.sales-hero-audience {
  max-width: 42rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.sales-hero-problem {
  max-width: 43rem;
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  font-weight: 800;
}

.sales-hero-callout,
.sales-signoff {
  max-width: 43rem;
  color: var(--ink);
  font-weight: 900;
}

.sales-home .sales-cta {
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.15;
}

.sales-hero-visual {
  position: relative;
  min-height: min(72vw, 720px);
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: 12px 12px 0 var(--ink);
}

.sales-hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.proof-section {
  padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.6fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.proof-heading-row h2,
.formats-heading h2,
.supporting-heading h2 {
  margin-bottom: 0;
}

.proof-intro,
.supporting-heading > p:not(.eyebrow) {
  max-width: 50ch;
  margin: 0;
  color: var(--muted);
}

.client-wordmarks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  list-style: none;
}

.client-wordmarks li {
  display: grid;
  min-height: 96px;
  place-items: center;
  padding: 1rem;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: var(--page);
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(0.88rem, 1.4vw, 1.15rem);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.audience-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
}

.audience-stats-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.audience-stats-three strong {
  font-size: clamp(2.5rem, 4.8vw, 5rem);
}

.audience-stats p {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.audience-stats strong {
  color: var(--ink);
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(2.8rem, 6vw, 6rem);
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.audience-stats span {
  max-width: 36ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 780;
  line-height: 1.3;
}

.stats-note {
  max-width: 76ch;
  margin: 2.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.reaction-section {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(4.5rem, 8vw, 8rem) var(--page-pad);
  overflow: hidden;
}

.reaction-section-dark {
  background: var(--brand-ink);
  color: var(--brand-white);
}

.reaction-mark {
  align-self: start;
  color: var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 16vw, 15rem);
  line-height: 0.65;
}

.reaction-section figure {
  max-width: 960px;
  margin: 0;
}

.reaction-section blockquote {
  margin: 0;
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.8vw, 5.3rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.reaction-section figcaption {
  margin-top: 1.75rem;
  color: #cfcfc8;
  font-weight: 780;
}

.reaction-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.28em;
}

.sales-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  padding: clamp(5.5rem, 10vw, 10rem) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.sales-copy-block {
  max-width: 720px;
}

.sales-copy-block h2,
.corporate-copy h2,
.trade-show-title h2,
.bio-copy h2 {
  max-width: 12ch;
}

.sales-copy-block > p:not(.eyebrow),
.corporate-copy > p:not(.eyebrow),
.trade-show-copy > p,
.bio-copy > p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  margin-bottom: 1rem;
}

.sales-copy-block > .sales-signoff,
.corporate-copy > .sales-signoff,
.bio-copy > .sales-signoff {
  color: var(--ink);
}

.sales-lede {
  font-size: clamp(1.08rem, 1.7vw, 1.3rem) !important;
  font-weight: 700;
  line-height: 1.5;
}

.sales-copy-block .button,
.corporate-copy .button,
.trade-show-copy .button {
  margin-top: 1rem;
}

.sales-media,
.tilted-photo,
.bio-photo {
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 10px 10px 0 var(--accent);
}

.sales-media img,
.tilted-photo img,
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.performance-photo {
  min-height: min(68vw, 690px);
}

.live-content-section {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  background: var(--surface);
}

.section-number {
  color: var(--accent-deep);
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 950;
  letter-spacing: -0.07em;
  line-height: 0.85;
}

.sales-copy-wide {
  max-width: 860px;
}

.sales-copy-wide h2 {
  max-width: 14ch;
}

.pull-note {
  margin-top: 3.4rem;
  padding: 1.5rem;
  border: 2px solid var(--ink);
  background: var(--page);
  box-shadow: 7px 7px 0 var(--ink);
  transform: rotate(2deg);
}

.pull-note p {
  margin: 0;
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.pull-note p + p {
  margin-top: 0.5rem;
}

.video-campaign-section {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--brand-ink);
}

.video-campaign-section .eyebrow,
.video-campaign-section .sales-copy-block > p:not(.eyebrow) {
  color: #2c2b23;
}

.tilted-photo-right {
  min-height: min(64vw, 650px);
  border-color: var(--brand-ink);
  box-shadow: 12px 12px 0 var(--brand-ink);
  transform: rotate(2.5deg);
}

.corporate-section {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  align-items: start;
}

.corporate-reaction {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 9px 9px 0 var(--accent);
}

.reaction-label {
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.corporate-reaction blockquote {
  margin: 0 0 1.25rem;
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.corporate-reaction > p:not(.reaction-label) {
  color: var(--muted);
}

.trade-show-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  align-items: end;
  border-bottom: 0;
  background: var(--brand-ink);
  color: var(--brand-white);
}

.trade-show-section .eyebrow {
  color: var(--accent);
}

.trade-show-title h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.trade-show-copy > p {
  color: #d4d4cc;
}

.trade-show-section .button-outline {
  border-color: var(--brand-white);
  color: var(--brand-white);
  box-shadow: 4px 4px 0 var(--accent);
}

.trade-show-section .button-outline:hover {
  background: #262621;
  box-shadow: 6px 6px 0 var(--accent);
}

.formats-section {
  padding: clamp(5.5rem, 10vw, 10rem) var(--page-pad);
  border-bottom: 1px solid var(--line);
}

.formats-heading {
  max-width: 980px;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.formats-heading h2 {
  max-width: 12ch;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.format-item {
  position: relative;
  min-height: 360px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
}

.format-live {
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--ink);
}

.format-video {
  background: var(--accent);
  color: var(--brand-ink);
  box-shadow: 8px 8px 0 var(--brand-ink);
  transform: translateY(2rem);
}

.format-campaign {
  background: var(--brand-ink);
  color: var(--brand-white);
  box-shadow: 8px 8px 0 var(--accent);
}

.format-number {
  display: block;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  color: currentColor;
  font-family: "Arial Black", system-ui, sans-serif;
  font-size: 1rem;
  opacity: 0.6;
}

.format-item h3 {
  max-width: 12ch;
}

.format-item p {
  max-width: 34ch;
  margin-bottom: 0;
  color: inherit;
}

.scope-note {
  max-width: 78ch;
  margin: 4.5rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 5px solid var(--accent);
  color: var(--muted);
  font-size: 0.92rem;
}

.bio-section {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.76fr);
}

.bio-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(190px, 0.62fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: end;
}

.bio-photo-main {
  min-height: min(65vw, 680px);
  box-shadow: 10px 10px 0 var(--ink);
}

.bio-photo-small {
  min-height: min(48vw, 470px);
  margin-bottom: 3rem;
}

.inquiry-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  width: min(calc(100% - (2 * var(--page-pad))), calc(var(--content) - (2 * var(--page-pad))));
  margin: clamp(1rem, 3vw, 2.5rem) auto;
  padding: clamp(3rem, 7vw, 6rem);
  border: 2px solid var(--brand-ink);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--brand-ink);
  box-shadow: 10px 10px 0 var(--brand-ink);
}

.inquiry-section h2 {
  max-width: 9ch;
  margin-bottom: 1.25rem;
}

.inquiry-section p:not(.eyebrow) {
  max-width: 58ch;
  margin-bottom: 0;
  color: #2b2b25;
}

.supporting-section {
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.supporting-heading {
  max-width: 900px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.supporting-heading h2 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
}

.supporting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 5rem);
}

.supporting-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.supporting-card > div {
  padding-top: 1.25rem;
}

.supporting-image {
  display: block;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: 7px 7px 0 var(--ink);
}

.supporting-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.supporting-card-marker {
  margin-top: 3.5rem;
}

@media (prefers-reduced-motion: no-preference) {
  .sales-hero-copy > * {
    animation: rise-in 650ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .sales-hero-copy > :nth-child(2) {
    animation-delay: 70ms;
  }

  .sales-hero-copy > :nth-child(3) {
    animation-delay: 140ms;
  }

  .sales-hero-copy > :nth-child(4) {
    animation-delay: 210ms;
  }

  .sales-hero-copy > :nth-child(5) {
    animation-delay: 280ms;
  }
}

@media (max-width: 1050px) {
  .client-wordmarks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .format-item {
    min-height: 330px;
  }
}

@media (max-width: 900px) {
  .audience-stats-three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-stats-three p:first-child {
    grid-column: 1 / -1;
  }

  .sales-hero,
  .proof-heading-row,
  .reaction-section,
  .sales-section,
  .live-content-section,
  .corporate-section,
  .trade-show-section,
  .bio-section,
  .inquiry-section,
  .supporting-card-wide {
    grid-template-columns: 1fr;
  }

  .sales-hero {
    min-height: auto;
    padding-top: 4rem;
  }

  .sales-hero-visual {
    min-height: min(112vw, 720px);
  }

  .proof-intro {
    max-width: 62ch;
  }

  .reaction-section {
    align-items: start;
  }

  .reaction-mark {
    height: 4rem;
  }

  .reaction-section .reaction-link {
    justify-self: start;
  }

  .sales-section {
    align-items: start;
  }

  .live-content-section {
    gap: 2rem;
  }

  .pull-note {
    width: min(100%, 360px);
    margin-top: 0;
  }

  .video-campaign-section .sales-copy-block {
    order: 1;
  }

  .video-campaign-section .tilted-photo {
    order: 0;
    transform: none;
  }

  .tilted-photo-right,
  .performance-photo {
    min-height: min(110vw, 690px);
  }

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

  .format-item {
    min-height: 0;
  }

  .format-number {
    margin-bottom: 4rem;
  }

  .format-video {
    transform: none;
  }

  .bio-gallery {
    grid-template-columns: minmax(0, 1.15fr) minmax(180px, 0.65fr);
  }

  .bio-photo-main {
    min-height: min(105vw, 680px);
  }

  .bio-photo-small {
    min-height: min(74vw, 470px);
  }

  .inquiry-section {
    align-items: start;
  }

  .inquiry-section .button {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .sales-home .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .sales-home .site-header > .header-cta {
    display: none;
  }

  .sales-home .menu-toggle {
    grid-column: 2;
  }

  .sales-hero h1 {
    max-width: 12ch;
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .client-wordmarks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-wordmarks li {
    min-height: 82px;
    padding: 0.8rem 0.55rem;
    font-size: 0.78rem;
    overflow-wrap: anywhere;
  }

  .audience-stats {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .audience-stats strong {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .reaction-section blockquote {
    font-size: clamp(2.15rem, 10vw, 3.7rem);
  }

  .sales-section,
  .formats-section,
  .supporting-section {
    padding-block: 5.5rem;
  }

  .sales-copy-block h2,
  .corporate-copy h2,
  .trade-show-title h2,
  .bio-copy h2 {
    max-width: 13ch;
  }

  .performance-photo,
  .tilted-photo-right {
    min-height: 118vw;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .section-number {
    font-size: 4rem;
  }

  .pull-note {
    transform: none;
  }

  .bio-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .bio-photo-main {
    min-height: 116vw;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .bio-photo-small {
    min-height: 82vw;
    margin-bottom: 2.5rem;
    box-shadow: 6px 6px 0 var(--accent);
  }

  .inquiry-section {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 2.5rem 1.25rem;
    box-shadow: 6px 6px 0 var(--brand-ink);
  }

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

  .supporting-card-wide {
    display: block;
  }

  .supporting-card-marker {
    margin-top: 0;
  }
}
