:root {
  --ink: #08080b;
  --ink-soft: #14141b;
  --paper: #f7f7f5;
  --muted: #a7a7b0;
  --line: rgba(255, 255, 255, 0.15);
  --blue: #2015e8;
  --blue-bright: #493cff;
  --gold: #d8ae51;
  --max-width: 1240px;
  --header-height: 84px;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 77% 12%, rgba(32, 21, 232, 0.22), transparent 27rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

a {
  color: inherit;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 11, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  width: 154px;
  height: 55px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navigation {
  display: flex;
  align-items: center;
  gap: 34px;
}

.navigation a {
  color: #d6d6dc;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease;
}

.navigation a:hover,
.navigation a:focus-visible {
  color: white;
}

.navigation .nav-contact {
  padding: 9px 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px 9px;
  border: 0;
  background: transparent;
  color: white;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  min-height: 100svh;
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: calc(var(--header-height) + 52px) 0 70px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue-bright);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.choice-card h2,
.contact-section h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.hero h1 span {
  color: var(--blue-bright);
  font-style: italic;
}

.hero-intro {
  margin: 30px 0 0;
  color: #babac3;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: white;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-bright);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.32);
  color: #e2e2e7;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.image-stack {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 0.76;
}

.hero-image {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: #202027;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-main {
  inset: 0 12% 9% 0;
  border-radius: 34% 34% 10px 10px;
}

.hero-image-main img {
  object-position: 52% 44%;
}

.hero-image-small {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 45%;
  border: 8px solid var(--ink);
  border-radius: 12px;
}

.hero-image-small img {
  object-position: 43% 79%;
}

.sound-line {
  position: absolute;
  display: block;
  height: 2px;
  background: var(--blue-bright);
  transform-origin: left center;
}

.sound-line-one {
  top: 13%;
  right: -6%;
  width: 34%;
  transform: rotate(-12deg);
}

.sound-line-two {
  top: 18%;
  right: 2%;
  width: 18%;
  transform: rotate(8deg);
}

.choice-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.choice-card {
  position: relative;
  display: grid;
  min-height: 455px;
  padding: clamp(36px, 6vw, 84px) max(28px, calc((100vw - var(--max-width)) / 2));
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}

.choice-card:first-child {
  padding-left: max(28px, calc((100vw - var(--max-width)) / 2));
  padding-right: clamp(36px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

.choice-card:last-child {
  padding-left: clamp(36px, 5vw, 72px);
  padding-right: max(28px, calc((100vw - var(--max-width)) / 2));
}

.choice-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  transition: opacity 260ms ease;
}

.choice-production::before {
  background: linear-gradient(135deg, rgba(32, 21, 232, 0.28), transparent 65%);
}

.choice-live::before {
  background: linear-gradient(135deg, rgba(216, 174, 81, 0.2), transparent 65%);
}

.choice-card:hover::before,
.choice-card:focus-visible::before {
  opacity: 1;
}

.choice-card > * {
  position: relative;
}

.choice-number {
  color: #6c6c76;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.choice-card h2 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
}

.choice-card p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #b4b4bd;
}

.choice-link {
  align-self: end;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  color: white;
  font-size: 0.86rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.choice-link span {
  color: var(--blue-bright);
  font-size: 1.25rem;
}

.section {
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: clamp(90px, 13vw, 180px) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(44px, 9vw, 130px);
  align-items: end;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section h2,
.contact-section h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.section-heading > p:last-child,
.live-copy > p:not(.eyebrow),
.contact-copy > p:last-child {
  margin: 0;
  color: #a9a9b2;
  font-size: 1.05rem;
}

.service-list {
  margin-top: clamp(70px, 10vw, 120px);
  border-top: 1px solid var(--line);
}

.service-item {
  display: grid;
  grid-template-columns: 60px minmax(220px, 0.8fr) minmax(260px, 1.2fr);
  gap: 32px;
  align-items: baseline;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-item > span {
  color: var(--blue-bright);
  font-size: 0.74rem;
  font-weight: 800;
}

.service-item h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  font-weight: 500;
}

.service-item p {
  margin: 0;
  color: #9d9da6;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  margin-top: 46px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--blue-bright);
  font-weight: 750;
  text-decoration: none;
}

.live-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
  gap: clamp(60px, 9vw, 130px);
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max-width)) / 2));
  padding-right: max(28px, calc((100vw - var(--max-width)) / 2));
  background: var(--blue);
}

.live-copy {
  align-self: center;
}

.live-copy .eyebrow {
  color: #beb8ff;
}

.live-copy > p:not(.eyebrow) {
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.78);
}

.live-facts {
  display: grid;
  gap: 10px;
  margin: 38px 0;
  padding: 0;
  list-style: none;
}

.live-facts li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-facts li::before {
  width: 20px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.72);
}

.button-light {
  background: white;
  color: var(--blue);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.live-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  min-height: 660px;
}

.live-gallery figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #17171c;
}

.live-gallery .gallery-tall {
  grid-row: 1 / 3;
  border-radius: 90px 0 0 0;
}

.live-gallery figure:nth-child(2) {
  border-radius: 0 18px 0 0;
}

.live-gallery figure:nth-child(3) {
  border-radius: 0 0 90px 0;
}

.live-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-gallery .gallery-tall img {
  object-position: 49% 38%;
}

.live-gallery figure:nth-child(2) img {
  object-position: 52% 39%;
}

.live-gallery figure:nth-child(3) img {
  object-position: 51% 75%;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
  width: min(calc(100% - 56px), var(--max-width));
  margin: 0 auto;
  padding: clamp(100px, 14vw, 190px) 0;
}

.contact-copy > p:last-child {
  max-width: 580px;
  margin-top: 30px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.form-consent {
  color: #d8d8df;
  font-size: 0.88rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 5px;
  background: #111117;
  color: white;
  font: inherit;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-bright);
  outline: 2px solid rgba(73, 60, 255, 0.3);
}

.form-consent {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 500;
  line-height: 1.5;
}

.form-consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue-bright);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.form-actions a {
  color: #b8b8c0;
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5em;
  margin: -8px 0 0;
  color: #c9c6ff;
}

.form-status.is-error {
  color: #ffaaa3;
}

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

.mail-link {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: clamp(1.1rem, 2.3vw, 1.8rem);
  text-decoration: none;
  transition: padding 180ms ease, border-color 180ms ease;
}

.mail-link:hover,
.mail-link:focus-visible {
  padding-left: 10px;
  padding-right: 10px;
  border-color: var(--blue-bright);
}

.mail-link > span:last-child {
  color: var(--blue-bright);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
  align-items: center;
  min-height: 90svh;
  padding: calc(var(--header-height) + 70px) max(28px, calc((100vw - var(--max-width)) / 2)) 90px;
}

.page-hero-live {
  background: var(--blue);
}

.page-hero-copy h1,
.media-section-heading h2,
.page-cta h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.5vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.page-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 30px 0 38px;
  color: #b8b8c1;
  font-size: 1.08rem;
}

.page-hero-live .page-hero-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-live .eyebrow {
  color: #c4c0ff;
}

.page-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 90px 10px 10px;
  background: #17171d;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.page-hero-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
}

.page-hero-reference .video-frame {
  border: 0;
  border-radius: 0;
}

.hero-reference-copy {
  padding: 22px clamp(22px, 4vw, 38px) 26px;
}

.hero-reference-copy h2 {
  margin: 7px 0 3px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  font-weight: 500;
}

.hero-reference-copy > p:last-child {
  margin: 0;
  color: #92929d;
}

.page-photo-pair {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 14px;
  align-items: end;
}

.page-photo-pair img {
  width: 100%;
  height: min(68svh, 710px);
  object-fit: cover;
  border-radius: 90px 8px 8px;
}

.page-photo-pair img:last-child {
  height: min(48svh, 510px);
  border-radius: 8px 8px 90px;
}

.media-section {
  padding: clamp(90px, 12vw, 170px) max(28px, calc((100vw - var(--max-width)) / 2));
}

.media-section-heading {
  max-width: 860px;
  margin-bottom: clamp(52px, 7vw, 90px);
}

.media-section-heading > p:last-child,
.page-cta > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: #a9a9b2;
  font-size: 1.05rem;
}

.audio-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: clamp(52px, 7vw, 90px);
}

.audio-card {
  display: grid;
  grid-template-columns: minmax(9rem, 38%) minmax(0, 1fr);
  min-height: 15rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121218;
}

.audio-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.audio-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 3vw, 32px);
}

.audio-card-copy h3 {
  margin: 7px 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 500;
  line-height: 1.12;
}

.audio-card-copy > p:not(.audio-kind) {
  margin: 0 0 24px;
  color: #92929d;
}

.audio-kind {
  margin: 0;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.audio-card audio {
  width: 100%;
  min-height: 54px;
  color-scheme: dark;
}

.youtube-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 22px;
}

.video-card,
.portrait-video-card {
  min-width: 0;
}

.video-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #15151a;
}

.video-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.youtube-consent {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(73, 60, 255, 0.3), transparent 45%),
    linear-gradient(135deg, #16161e, #0e0e13);
}

.youtube-consent > img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.youtube-consent::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.76));
  content: "";
  pointer-events: none;
}

.youtube-consent button {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  width: 100%;
  height: 100%;
  justify-items: center;
  align-content: center;
  gap: 9px;
  padding: 24px;
  border: 0;
  background: transparent;
  color: var(--paper);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.youtube-consent button strong {
  margin-top: auto;
  padding-top: 18%;
  font-size: 0.92rem;
}

.youtube-consent button > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 3px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue-bright);
  font-size: 1.2rem;
  text-indent: 3px;
  transition: transform 160ms ease, background 160ms ease;
}

.youtube-consent button:hover > span,
.youtube-consent button:focus-visible > span {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--ink);
}

.youtube-consent small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 400;
}

.video-card h3,
.portrait-video-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 500;
}

.video-card h3 {
  margin: 17px 0 3px;
}

.portrait-video-card h3 {
  margin: 6px 0 3px;
}

.video-card p {
  margin: 0;
  color: #92929d;
}

.portrait-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.live-feature-video {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 88px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #121218;
}

.live-feature-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: black;
  object-fit: cover;
}

.live-feature-video > div {
  padding: 28px 34px 28px 0;
}

.live-feature-video h3 {
  margin: 10px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
  font-weight: 500;
}

.live-feature-video > div > p:last-child {
  margin: 0;
  color: #a9a9b2;
}

.portrait-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: black;
  object-fit: cover;
}

.video-context {
  margin: 17px 0 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.testimonial-section {
  padding: clamp(90px, 12vw, 170px) max(28px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, rgba(216, 174, 81, 0.14), transparent 24rem),
    #101016;
}

.testimonial-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(54px, 8vw, 96px);
}

.testimonial-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.testimonial-heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.testimonial-heading > p:last-child {
  margin: 0;
  color: #a9a9b2;
  font-size: 1.05rem;
}

.proof-stage {
  position: relative;
  min-height: clamp(650px, 65vw, 850px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(43, 34, 209, 0.29), transparent 30rem),
    linear-gradient(145deg, #08080c, #111119);
  isolation: isolate;
  touch-action: pan-y;
}

.proof-stage::after {
  position: absolute;
  inset: auto 8% 5% 8%;
  z-index: 8;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  content: "";
  filter: blur(42px);
  pointer-events: none;
}

.proof-shot {
  position: absolute;
  z-index: 1;
  display: block;
  width: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 28px 75px rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-align: left;
  opacity: 0.58;
  filter: blur(1.35px) saturate(0.75);
  -webkit-user-drag: none;
  appearance: none;
  user-select: none;
  transition: top 320ms ease, right 320ms ease, left 320ms ease, width 320ms ease, transform 320ms ease, filter 320ms ease, opacity 320ms ease, box-shadow 320ms ease;
}

.proof-shot img {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}

@keyframes proof-shuffle-pop {
  0% {
    opacity: 0.48;
    filter: blur(1px) saturate(0.8);
  }
  55% {
    opacity: 1;
    filter: none;
    box-shadow: 0 38px 110px rgba(0, 0, 0, 0.76);
  }
  100% {
    opacity: 1;
    filter: none;
  }
}

.proof-stage.is-shuffling-left .proof-shot.is-active,
.proof-stage.is-shuffling-right .proof-shot.is-active {
  animation: proof-shuffle-pop 360ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .proof-stage.is-shuffling-left .proof-shot.is-active,
  .proof-stage.is-shuffling-right .proof-shot.is-active {
    animation: none;
  }
}

.proof-shot > .proof-label {
  position: absolute;
  right: 16px;
  bottom: 14px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(9, 9, 14, 0.82);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.proof-shot--left {
  top: 8%;
  left: 1.5%;
  width: min(58%, 720px);
  transform: rotate(-5deg) scale(0.9);
}

.proof-shot--right {
  top: 55%;
  right: 1.5%;
  width: min(58%, 720px);
  transform: rotate(5deg) scale(0.9);
}

.proof-shot--whatsapp-left {
  top: 31%;
  left: 5%;
  z-index: 2;
  width: min(42%, 520px);
  transform: rotate(-8deg) scale(0.92);
}

.proof-shot--whatsapp-right {
  top: 17%;
  right: 5%;
  z-index: 2;
  width: min(42%, 520px);
  transform: rotate(8deg) scale(0.92);
}

.proof-shot--phone {
  top: 2.5%;
  left: 50%;
  z-index: 3;
  width: min(31%, 350px);
  border-radius: 24px;
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
}

.proof-shot:hover,
.proof-shot:focus-visible,
.proof-shot.is-active {
  z-index: 7;
  opacity: 1;
  filter: none;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.68);
}

.proof-shot--left:hover,
.proof-shot--left:focus-visible,
.proof-shot--left.is-active {
  transform: rotate(-1.25deg) scale(1);
}

.proof-shot--right:hover,
.proof-shot--right:focus-visible,
.proof-shot--right.is-active {
  transform: rotate(1.25deg) scale(1);
}

.proof-shot--whatsapp-left:hover,
.proof-shot--whatsapp-left:focus-visible {
  transform: rotate(-1.5deg) scale(1);
}

.proof-shot--whatsapp-right:hover,
.proof-shot--whatsapp-right:focus-visible {
  transform: rotate(1.5deg) scale(1);
}

.proof-shot--whatsapp-left.is-active,
.proof-shot--whatsapp-right.is-active {
  top: 6%;
  right: auto;
  left: 50%;
  width: min(72%, 780px);
  transform: translateX(-50%) rotate(-0.4deg);
}

.proof-shot--phone:hover,
.proof-shot--phone:focus-visible,
.proof-shot--phone.is-active {
  transform: translateX(-50%) scale(1.025);
}

.proof-hint {
  margin: 20px 0 0;
  color: #85858f;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-transcript,
.proof-reader[hidden] {
  display: none;
}

.live-details {
  padding-top: 30px;
}

.page-cta {
  padding: clamp(90px, 12vw, 160px) max(28px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
}

.page-cta > .button {
  margin-top: 36px;
}

.page-cta-blue {
  border-top: 0;
  background: var(--blue);
}

.page-cta-blue .eyebrow {
  color: #c4c0ff;
}

.page-cta-blue > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 60px;
  align-items: end;
  padding: 55px max(28px, calc((100vw - var(--max-width)) / 2));
  border-top: 1px solid var(--line);
  color: #888892;
  font-size: 0.84rem;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a {
  color: #b8b8c0;
  text-underline-offset: 3px;
}

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

.legal-page {
  width: min(calc(100% - 56px), 920px);
  min-height: 70vh;
  margin-inline: auto;
  padding: calc(var(--header-height) + clamp(64px, 8vw, 110px)) 0 clamp(90px, 12vw, 150px);
}

.legal-intro {
  max-width: 760px;
  margin-bottom: clamp(56px, 8vw, 90px);
}

.legal-intro h1 {
  max-width: 800px;
  margin: 12px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.legal-intro > p:not(.eyebrow) {
  color: #b8b8c0;
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 44px;
}

.legal-content section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 500;
}

.legal-content h3 {
  margin: 28px 0 8px;
  font-size: 1rem;
}

.legal-content p,
.legal-content ul,
.legal-content address {
  max-width: 760px;
  margin: 0 0 14px;
  color: #b8b8c0;
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: #d8d6ff;
  text-underline-offset: 3px;
}

.site-footer img {
  width: 170px;
  height: 53px;
  object-fit: contain;
  margin-bottom: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer address {
  font-style: normal;
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .portrait-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audio-showcase {
    grid-template-columns: 1fr;
  }

  .hero {
    grid-template-columns: 1fr 0.72fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7.5vw, 5rem);
  }

  .section-heading,
  .testimonial-heading,
  .contact-section,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .service-item {
    grid-template-columns: 42px 0.9fr 1.1fr;
    gap: 20px;
  }

  .live-section {
    grid-template-columns: 1fr;
  }

  .live-copy {
    max-width: 680px;
  }

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

  .site-footer .copyright {
    grid-column: 1 / -1;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-media {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .audio-card {
    grid-template-columns: 8.5rem minmax(0, 1fr);
  }

  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 20px;
  }

  .brand {
    width: 122px;
    height: 45px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-button[aria-expanded="true"] span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .navigation {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 8, 11, 0.97);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 200ms ease, opacity 200ms ease;
  }

  .navigation.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .navigation a,
  .navigation .nav-contact {
    padding: 14px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    width: min(calc(100% - 40px), var(--max-width));
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 13.4vw, 4.7rem);
  }

  .hero-visual {
    width: 86%;
    min-width: 0;
    margin: -4px 0 0 auto;
  }

  .choice-section {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 400px;
    padding: 48px 20px;
  }

  .choice-card:first-child,
  .choice-card:last-child {
    padding: 48px 20px;
  }

  .choice-card:first-child {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section,
  .contact-section {
    width: min(calc(100% - 40px), var(--max-width));
  }

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

  .form-field-wide {
    grid-column: auto;
  }

  .section-heading {
    gap: 28px;
  }

  .section h2,
  .contact-section h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .service-item {
    grid-template-columns: 36px 1fr;
    padding: 28px 0;
  }

  .service-item p {
    grid-column: 2;
  }

  .live-section {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .live-gallery {
    min-height: 520px;
  }

  .contact-section {
    gap: 52px;
  }

  .mail-link {
    word-break: break-word;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 20px;
  }

  .site-footer .copyright {
    grid-column: auto;
  }

  .legal-page {
    width: min(calc(100% - 40px), 920px);
  }

  .page-hero,
  .media-section,
  .testimonial-section,
  .page-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-hero {
    padding-top: calc(var(--header-height) + 64px);
  }

  .page-photo-pair img {
    height: 560px;
  }

  .page-photo-pair img:last-child {
    height: 430px;
  }

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

  .live-feature-video {
    grid-template-columns: 1fr;
  }

  .live-feature-video > div {
    padding: 0 24px 28px;
  }

  .portrait-video-grid {
    grid-template-columns: 1fr;
  }

  .proof-stage {
    display: block;
    min-height: clamp(560px, 154vw, 650px);
    overflow: hidden;
    padding: 0;
    touch-action: pan-y;
    background:
      radial-gradient(ellipse at 50% 51%, rgba(55, 43, 245, 0.34), transparent 48%),
      linear-gradient(145deg, #08080c, #111119);
  }

  .proof-stage::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82%;
    height: 58%;
    border: 1px solid rgba(134, 125, 255, 0.14);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .proof-stage::after {
    display: block;
    inset: auto 12% 7% 12%;
    z-index: 1;
    height: 14%;
    background: rgba(0, 0, 0, 0.48);
    filter: blur(28px);
  }

  .proof-shot,
  .proof-shot--left,
  .proof-shot--right,
  .proof-shot--whatsapp-left,
  .proof-shot--whatsapp-right,
  .proof-shot--phone {
    position: absolute;
    right: auto;
    overflow: visible;
    transform-origin: center center;
    opacity: 0.38;
    filter: blur(0.9px) saturate(0.72);
    transition:
      top 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      left 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      width 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      transform 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      filter 420ms ease,
      opacity 420ms ease,
      box-shadow 420ms ease;
  }

  .proof-shot img {
    border-radius: inherit;
  }

  .proof-shot > .proof-label {
    display: none;
  }

  .proof-shot[data-proof-position="front"] {
    top: 50%;
    left: 50%;
    width: min(78%, 286px);
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.72);
  }

  .proof-shot[data-proof-position="front"].is-expanded {
    width: min(92%, 338px);
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
  }

  .proof-shot[data-proof-position="right-near"] {
    top: 39%;
    left: 84%;
    width: 78%;
    opacity: 0.55;
    filter: blur(0.65px) saturate(0.82);
    transform: translate(-50%, -50%) rotate(10deg) scale(0.78);
  }

  .proof-shot[data-proof-position="right-back"] {
    top: 23%;
    left: 63%;
    width: 68%;
    opacity: 0.24;
    filter: blur(1.4px) saturate(0.58);
    transform: translate(-50%, -50%) rotate(5deg) scale(0.66);
  }

  .proof-shot[data-proof-position="left-back"] {
    top: 23%;
    left: 37%;
    width: 68%;
    opacity: 0.24;
    filter: blur(1.4px) saturate(0.58);
    transform: translate(-50%, -50%) rotate(-5deg) scale(0.66);
  }

  .proof-shot[data-proof-position="left-near"] {
    top: 39%;
    left: 16%;
    width: 78%;
    opacity: 0.55;
    filter: blur(0.65px) saturate(0.82);
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.78);
  }

  .proof-shot[data-proof-position="front"] > .proof-label {
    right: 50%;
    bottom: -48px;
    display: block;
    width: max-content;
    max-width: calc(100vw - 72px);
    transform: translateX(50%);
    white-space: normal;
    text-align: center;
  }

  .proof-shot--phone[data-proof-position="front"] {
    width: min(74%, 272px);
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  .proof-shot--phone[data-proof-position="front"].is-expanded {
    width: min(91%, 334px);
    transform: translate(-50%, -50%) rotate(0deg) scale(1.02);
  }

  .portrait-video-card {
    max-width: 440px;
  }
}

@media (max-width: 980px), (hover: none) and (pointer: coarse) {
  html.proof-reading,
  body.proof-reading {
    overflow: hidden;
    overscroll-behavior: none;
  }

  .proof-stage {
    display: block;
    min-height: clamp(560px, 154vw, 650px);
    overflow: hidden;
    padding: 0;
    touch-action: pan-y;
    background:
      radial-gradient(ellipse at 50% 51%, rgba(55, 43, 245, 0.34), transparent 48%),
      linear-gradient(145deg, #08080c, #111119);
  }

  .proof-stage::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 82%;
    height: 58%;
    border: 1px solid rgba(134, 125, 255, 0.14);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .proof-stage::after {
    display: block;
    inset: auto 12% 7% 12%;
    z-index: 1;
    height: 14%;
    background: rgba(0, 0, 0, 0.48);
    filter: blur(28px);
  }

  .proof-shot,
  .proof-shot--left,
  .proof-shot--right,
  .proof-shot--whatsapp-left,
  .proof-shot--whatsapp-right,
  .proof-shot--phone {
    position: absolute;
    right: auto;
    overflow: visible;
    transform-origin: center center;
    opacity: 0.38;
    filter: blur(0.9px) saturate(0.72);
    transition:
      top 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      left 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      width 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      transform 540ms cubic-bezier(0.22, 0.78, 0.24, 1),
      filter 420ms ease,
      opacity 420ms ease,
      box-shadow 420ms ease;
  }

  .proof-shot img {
    border-radius: inherit;
  }

  .proof-shot > .proof-label {
    display: none;
  }

  .proof-shot[data-proof-position="front"] {
    top: 50%;
    left: 50%;
    width: min(78%, 286px);
    opacity: 1;
    filter: none;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    box-shadow: 0 30px 82px rgba(0, 0, 0, 0.72);
  }

  .proof-shot[data-proof-position="right-near"] {
    top: 39%;
    left: 84%;
    width: 78%;
    opacity: 0.55;
    filter: blur(0.65px) saturate(0.82);
    transform: translate(-50%, -50%) rotate(10deg) scale(0.78);
  }

  .proof-shot[data-proof-position="right-back"] {
    top: 23%;
    left: 63%;
    width: 68%;
    opacity: 0.24;
    filter: blur(1.4px) saturate(0.58);
    transform: translate(-50%, -50%) rotate(5deg) scale(0.66);
  }

  .proof-shot[data-proof-position="left-back"] {
    top: 23%;
    left: 37%;
    width: 68%;
    opacity: 0.24;
    filter: blur(1.4px) saturate(0.58);
    transform: translate(-50%, -50%) rotate(-5deg) scale(0.66);
  }

  .proof-shot[data-proof-position="left-near"] {
    top: 39%;
    left: 16%;
    width: 78%;
    opacity: 0.55;
    filter: blur(0.65px) saturate(0.82);
    transform: translate(-50%, -50%) rotate(-10deg) scale(0.78);
  }

  .proof-shot[data-proof-position="front"] > .proof-label {
    right: 50%;
    bottom: -48px;
    display: block;
    width: max-content;
    max-width: calc(100vw - 72px);
    transform: translateX(50%);
    white-space: normal;
    text-align: center;
  }

  .proof-shot--phone[data-proof-position="front"] {
    width: min(74%, 272px);
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  .proof-reader {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: 100%;
    height: 100dvh;
    min-height: -webkit-fill-available;
    padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
    overflow: hidden;
    background: #09090e;
    color: #fff;
    --proof-reader-zoom: 1.5;
  }

  .proof-reader-header {
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 66px;
    padding: 8px 10px 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(9, 9, 14, 0.96);
  }

  .proof-reader-kicker {
    margin: 0 0 2px;
    color: #d8ae51;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .proof-reader-header h3 {
    max-width: 38vw;
    margin: 0;
    overflow: hidden;
    font-size: 0.92rem;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .proof-reader-actions {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .proof-reader-actions button {
    display: grid;
    min-width: 42px;
    height: 42px;
    padding: 0 9px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 999px;
    background: #1a1a23;
    font-family: inherit;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
  }

  .proof-reader-actions button:disabled {
    opacity: 0.35;
  }

  .proof-reader-actions [data-proof-zoom-reset] {
    min-width: 58px;
    font-size: 0.72rem;
  }

  .proof-reader-actions .proof-reader-close {
    min-width: auto;
    padding: 0 12px;
    border-color: rgba(216, 174, 81, 0.55);
    color: #f3d486;
    font-size: 0.78rem;
  }

  .proof-reader-media {
    display: flex;
    align-items: flex-start;
    width: 100%;
    min-height: 0;
    overflow: auto;
    background: #050508;
    touch-action: pan-x pan-y;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .proof-reader-media img {
    display: block;
    flex: 0 0 auto;
    width: calc(100% * var(--proof-reader-zoom));
    max-width: none;
    height: auto;
    min-width: 100%;
    background: #050508;
    user-select: none;
    -webkit-user-drag: none;
  }

  .proof-reader-transcript {
    max-height: 34dvh;
    padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
    overflow-y: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: #111118;
    color: #fff;
    font-size: clamp(1.08rem, 4.9vw, 1.35rem);
    font-weight: 500;
    letter-spacing: -0.012em;
    line-height: 1.5;
    -webkit-overflow-scrolling: touch;
  }

  .proof-reader-transcript strong {
    display: block;
    margin-bottom: 7px;
    color: #d8ae51;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @media (orientation: landscape) {
    .proof-reader {
      grid-template-rows: auto minmax(0, 1fr);
      grid-template-columns: minmax(0, 1.6fr) minmax(240px, 0.6fr);
    }

    .proof-reader-header {
      grid-column: 1 / -1;
      min-height: 58px;
      padding-top: 6px;
      padding-bottom: 6px;
    }

    .proof-reader-media {
      min-width: 0;
    }

    .proof-reader-transcript {
      max-height: none;
      border-top: 0;
      border-left: 1px solid rgba(255, 255, 255, 0.14);
      font-size: clamp(1.05rem, 2.4vw, 1.35rem);
    }
  }

  @media (max-width: 480px) {
    .proof-reader-header h3,
    .proof-reader-kicker {
      display: none;
    }

    .proof-reader-header {
      justify-content: flex-end;
    }
  }
}

@media (max-width: 440px) {
  .audio-card {
    grid-template-columns: 1fr;
  }

  .audio-card > img {
    aspect-ratio: 16 / 9;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .button-row {
    display: grid;
  }

  .form-actions {
    align-items: stretch;
  }

  .form-actions a {
    text-align: center;
  }

  .page-photo-pair img {
    height: 470px;
  }

  .page-photo-pair img:last-child {
    height: 350px;
  }

  .live-gallery {
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
  }

  .live-gallery .gallery-tall {
    border-radius: 54px 0 0 0;
  }

  .live-gallery figure:nth-child(3) {
    border-radius: 0 0 54px 0;
  }
}

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

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