:root {
  --black: #030303;
  --ink: #090d14;
  --ink-2: #111722;
  --panel: #171d28;
  --paper: #f4f1eb;
  --paper-2: #ffffff;
  --paper-ink: #16171a;
  --paper-muted: #555960;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(22, 23, 26, 0.14);
  --white: #ffffff;
  --soft: rgba(255, 255, 255, 0.76);
  --muted: rgba(255, 255, 255, 0.58);
  --magenta: #c00073;
  --magenta-2: #e00086;
  --magenta-soft: rgba(224, 0, 134, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  --radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.55;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 5vw, 68px);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 900;
}

.brand-symbol {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 4px solid var(--magenta);
}

.brand-symbol::before,
.brand-symbol::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transform: translateY(-50%);
}

.brand-symbol::before {
  left: -14px;
  border-right: 7px solid var(--magenta);
}

.brand-symbol::after {
  right: -14px;
  border-left: 7px solid var(--magenta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.8vw, 28px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px clamp(20px, 5vw, 76px) 9vh;
  background: var(--black);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.9;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.55) 49%, rgba(0, 0, 0, 0.13)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.68));
}

.hero-content {
  position: relative;
  width: min(100%, 1020px);
  min-width: 0;
}

.brand-line,
.section-kicker {
  margin: 0 0 16px;
  color: var(--magenta-2);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 1040px;
  margin: 0;
  font-size: clamp(2.35rem, 5.2vw, 5.55rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 860px;
  margin: 26px 0 0;
  color: var(--soft);
  font-size: clamp(1.04rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

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

.button-primary:hover {
  background: var(--magenta-2);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
}

.button-outline {
  border: 1px solid rgba(22, 23, 26, 0.24);
  background: var(--paper-2);
  color: var(--paper-ink);
}

.button-outline:hover {
  border-color: var(--magenta);
  color: var(--magenta);
}

.hero-proof-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: clamp(24px, 3.4vw, 42px);
  background: var(--paper-2);
  color: var(--paper-ink);
  border: 1px solid var(--line-light);
  border-left: 8px solid var(--magenta);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.12);
  max-width: 980px;
  margin-top: clamp(24px, 3vw, 34px);
}

.hero-proof-card span {
  color: var(--magenta);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-proof-card strong {
  max-width: 980px;
  font-size: clamp(1.55rem, 3.15vw, 3.15rem);
  line-height: 1.08;
}

.hero-proof-card small {
  color: var(--paper-muted);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(20px, 5vw, 76px);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.proof-strip {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 76px);
  background: var(--paper-2);
  color: var(--paper-ink);
  border-bottom: 1px solid var(--line-light);
}

.proof-slider {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.proof-slider h2 {
  max-width: 560px;
}

.proof-mobile-hint {
  display: none;
}

.proof-slider-body {
  display: grid;
  grid-template-columns: minmax(230px, 0.92fr) minmax(0, 1.08fr);
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.proof-tabs {
  display: grid;
  gap: 1px;
  background: var(--line-light);
}

.proof-tab {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 124px;
  padding: 22px 24px;
  border: 0;
  background: var(--paper);
  color: var(--paper-ink);
  text-align: left;
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease, color 180ms ease;
}

.proof-tab-number {
  color: var(--magenta);
  font-size: 0.86rem;
  font-weight: 900;
}

.proof-tab-copy {
  display: grid;
  gap: 8px;
}

.proof-tab strong {
  display: block;
  font-size: clamp(1.05rem, 1.55vw, 1.32rem);
  line-height: 1.18;
}

.proof-tab small {
  color: var(--paper-muted);
  font-size: 0.9rem;
  line-height: 1.32;
}

.proof-tab:hover,
.proof-tab:focus-visible,
.proof-tab.is-active {
  background: var(--paper-2);
}

.proof-slider.is-interacting .proof-tab:not(.is-active) {
  opacity: 0.34;
}

.proof-details {
  display: grid;
  align-items: end;
  min-height: 100%;
  padding: clamp(28px, 4vw, 46px);
  background: var(--paper-2);
}

.proof-detail {
  margin: 0;
  color: var(--paper-muted);
  font-size: clamp(1.18rem, 2.1vw, 1.72rem);
  line-height: 1.28;
}

.split-section,
.blocks-section,
.case-section,
.principle-section,
.process-section,
.person-section,
.fit-section,
.video-section,
.contact-section,
.legal-page {
  background: var(--paper);
  color: var(--paper-ink);
}

.principle-section,
.fit-section,
.person-section {
  background: var(--paper-2);
}

.split-grid,
.contact-grid,
.person-grid,
.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.26;
}

.copy-block p,
.section-heading p,
.video-grid p,
.contact-grid p,
.contact-copy p,
.dialog-heading p,
.person-copy p,
.legal-content p,
.legal-content li {
  color: var(--paper-muted);
  font-size: 1.06rem;
}

.principle-section .copy-block p,
.process-section p,
.person-section p {
  color: var(--paper-muted);
}

.copy-block p:first-child {
  margin-top: 0;
}

.highlight-sentence,
.brand-repeat {
  color: var(--magenta-2) !important;
  font-weight: 900;
}

.highlight-sentence {
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  font-size: 1.2rem !important;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 42px;
}

.case-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  margin-bottom: 34px;
}

.case-intro-grid .section-heading {
  margin-bottom: 0;
}

.case-visual {
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
}

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

.workflow-case {
  display: grid;
  gap: 28px;
  margin-top: clamp(38px, 6vw, 70px);
  padding-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid var(--line-light);
}

.workflow-case:first-of-type {
  margin-top: 0;
}

.workflow-case-copy {
  max-width: 860px;
}

.workflow-case-copy h3 {
  margin-bottom: 16px;
  font-size: clamp(1.55rem, 2.4vw, 2.35rem);
}

.workflow-case-copy p:not(.section-kicker) {
  color: var(--paper-muted);
  font-size: 1.06rem;
}

.blocks-layout,
.fit-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
}

.block-panel,
.fit-card,
.case-grid article {
  padding: clamp(26px, 3.6vw, 42px);
  background: var(--paper-2);
}

.case-grid .reveal-card,
.process-list .reveal-card {
  background: var(--paper);
}

.block-panel h3,
.fit-card h3,
.case-grid h3 {
  margin-bottom: 20px;
}

.case-grid .reveal-card h3 {
  margin-bottom: 0;
}

.case-grid span,
.process-list span {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--magenta);
  font-weight: 900;
}

.case-grid p,
.fit-note,
.metric-box p {
  color: var(--paper-muted);
}

.reveal-card {
  cursor: pointer;
  transition: opacity 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.reveal-card:hover,
.reveal-card:focus,
.reveal-card.is-active {
  background: var(--paper-2);
  box-shadow: inset 0 -4px 0 var(--magenta);
}

.reveal-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-4px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, margin-top 180ms ease;
}

.reveal-card:hover p,
.reveal-card:focus p,
.reveal-card.is-active p {
  max-height: 180px;
  margin-top: 18px;
  opacity: 1;
  transform: translateY(0);
}

.reveal-grid.is-interacting .reveal-card:not(.is-active) {
  opacity: 0.38;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  background: var(--magenta);
}

.metric-box {
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper-2);
  color: var(--paper-ink);
  border: 1px solid var(--line-light);
  border-left: 6px solid var(--magenta);
}

.metric-box strong {
  display: block;
  margin-bottom: 14px;
  color: var(--magenta);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.metric-box p {
  max-width: 860px;
  color: var(--paper-muted);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.process-list li {
  min-height: 235px;
  padding: 30px;
  background: var(--paper-2);
}

.fit-card.positive {
  border-top: 4px solid var(--magenta);
}

.fit-note {
  margin: 26px 0 0;
  padding: 22px 24px;
  background: var(--paper-2);
  border-left: 5px solid var(--magenta);
}

.video-grid {
  align-items: center;
}

.video-loader {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background: var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.video-loader img,
.video-loader video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-label {
  position: absolute;
  left: 18px;
  top: 18px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 54px;
  padding: 0 24px;
  border: 0;
  border-radius: var(--radius);
  background: var(--magenta);
  color: var(--white);
  font-weight: 900;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-button:hover {
  background: var(--magenta-2);
}

.portrait-placeholder {
  display: grid;
  place-items: center;
  min-height: 420px;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(135deg, rgba(224, 0, 134, 0.1), rgba(255, 255, 255, 0)),
    var(--paper);
}

.portrait-placeholder span {
  display: grid;
  place-items: center;
  width: 126px;
  height: 126px;
  border: 6px solid var(--magenta);
  color: var(--magenta);
  font-size: 2rem;
  font-weight: 900;
}

.person-photo {
  margin: 0;
  overflow: hidden;
  width: min(100%, 360px);
  justify-self: start;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-light);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.person-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 48% 36%;
}

.person-position {
  color: var(--paper-ink) !important;
  font-weight: 900;
}

.text-link,
.contact-mail a,
.site-footer a,
.legal-content a {
  color: var(--magenta-2);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-compact {
  max-width: 880px;
}

.contact-copy {
  max-width: 760px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-mail {
  margin: 18px 0 0;
}

.contact-dialog {
  width: min(760px, calc(100% - 32px));
  max-height: min(86vh, 720px);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--paper-ink);
}

.contact-dialog:not([open]) {
  display: none;
}

.contact-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.dialog-panel {
  position: relative;
  max-height: min(86vh, 720px);
  overflow: auto;
  padding: clamp(20px, 3vw, 34px);
  background: var(--paper-2);
  border-left: 6px solid var(--magenta);
  box-shadow: var(--shadow);
}

.dialog-heading {
  max-width: 720px;
  margin-bottom: 18px;
  padding-right: 112px;
}

.dialog-heading h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--paper-ink);
  font-weight: 900;
  cursor: pointer;
}

.dialog-close:hover {
  color: var(--magenta);
  border-color: var(--magenta);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(24px, 3.5vw, 38px);
  background: var(--paper-2);
  border: 1px solid var(--line-light);
}

.contact-dialog .contact-form {
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
}

.contact-dialog .contact-form label {
  gap: 6px;
  font-size: 0.95rem;
}

.contact-dialog .contact-form input,
.contact-dialog .contact-form textarea {
  padding: 10px 11px;
}

.contact-dialog .contact-form textarea {
  min-height: 104px;
}

.contact-dialog .button {
  min-height: 46px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--paper-ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(22, 23, 26, 0.28);
  border-radius: var(--radius);
  padding: 12px 13px;
  background: #fff;
  color: var(--paper-ink);
}

.contact-form textarea {
  resize: vertical;
}

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

.form-status {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

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

.form-status.is-success {
  background: #e7f7ee;
  color: #146336;
}

.form-status.is-error {
  background: #fdecec;
  color: #9b1c1c;
}

.form-note {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.92rem;
}

.botcheck {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 28px clamp(20px, 5vw, 76px);
  color: var(--muted);
  background: #000;
  border-top: 1px solid var(--line-dark);
  font-size: 0.92rem;
}

.site-footer div,
.site-footer nav {
  display: grid;
  gap: 7px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer nav {
  justify-items: end;
}

.legal-main {
  background: var(--paper);
}

.legal-page {
  padding-top: 140px;
}

.legal-content {
  width: min(880px, 100%);
  margin: 0 auto;
}

.legal-content h1 {
  margin: 0 0 28px;
  color: var(--paper-ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

@media (max-width: 1080px) {
  .proof-slider,
  .proof-slider-body,
  .split-grid,
  .blocks-layout,
  .case-intro-grid,
  .case-grid,
  .process-list,
  .fit-grid,
  .video-grid,
  .person-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: auto;
  }

  .proof-details {
    min-height: 210px;
  }

  .case-intro-grid {
    align-items: start;
  }

  .workflow-case-copy {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .site-header {
    align-items: center;
    background: rgba(0, 0, 0, 0.88);
    border-bottom: 1px solid var(--line-dark);
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 8px;
    background: rgba(3, 3, 3, 0.96);
    border: 1px solid var(--line-dark);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: fixed;
  }

  .brand-symbol {
    width: 28px;
    height: 28px;
    border-width: 3px;
  }

  .hero {
    min-height: 90vh;
    padding: 112px 24px 62px;
  }

  .hero h1 {
    font-size: 2.12rem;
  }

  .hero-copy {
    max-width: 330px;
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-proof-card {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 18px;
    margin-top: 22px;
  }

  .proof-strip {
    padding: 54px 20px;
  }

  .proof-mobile-hint {
    display: inline-block;
    margin: 14px 0 0;
    color: var(--paper-muted);
    font-size: 0.92rem;
    font-weight: 800;
  }

  .proof-tab {
    min-height: auto;
    padding: 18px 18px;
  }

  .proof-details {
    min-height: 180px;
    padding: 24px 20px;
  }

  .workflow-case {
    gap: 22px;
    margin-top: 42px;
    padding-top: 36px;
  }

  .reveal-card {
    cursor: default;
  }

  .reveal-card p,
  .reveal-card:hover p,
  .reveal-card:focus p,
  .reveal-card.is-active p {
    max-height: none;
    margin-top: 16px;
    opacity: 1;
    overflow: visible;
    transform: none;
  }

  .reveal-grid.is-interacting .reveal-card:not(.is-active) {
    opacity: 1;
  }

  .video-label {
    left: 12px;
    top: 12px;
    font-size: 0.78rem;
  }

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

  .contact-actions {
    width: 100%;
  }

  .dialog-heading {
    padding-right: 0;
  }

  .dialog-close {
    position: static;
    margin-left: auto;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
  }

  .play-button {
    width: calc(100% - 44px);
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-items: start;
  }
}

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

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

  .hero-video {
    display: none;
  }
}
