:root {
  --paper: #f7f5ef;
  --paper-soft: #ebe6dc;
  --surface: #ffffff;
  --ink: #1e222c;
  --muted: #686d78;
  --line: #ded8cb;
  --gold: #f3b72f;
  --teal: #36c0cf;
  --red: #d9544f;
  --charcoal: #272829;
  --shadow: 0 26px 70px rgba(25, 28, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  text-wrap: pretty;
}

body.no-scroll {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 30;
  display: flex;
  width: 100%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(18px, calc((100vw - 1392px) / 2));
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 10px 34px rgba(29, 31, 36, 0.08);
  backdrop-filter: blur(18px);
  animation: headerSlideDown 720ms cubic-bezier(0.18, 0.78, 0.22, 1) 1s both;
  transition: top 260ms ease, width 260ms ease, border-radius 260ms ease, background 260ms ease;
}

.site-header.is-floating {
  top: 20px;
  width: min(1392px, calc(100% - 40px));
  padding: 14px 18px;
  border-radius: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.36);
  border-left: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 58px rgba(29, 31, 36, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand span,
.footer-logo {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #515662;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  background: rgba(30, 34, 44, 0.08);
  color: var(--ink);
  outline: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  padding: 3px;
  border: 1px solid rgba(30, 34, 44, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
}

.site-header nav .language-switch a {
  min-width: 32px;
  padding: 6px 9px;
  text-align: center;
  font-size: 0.76rem;
}

.site-header nav .language-switch a.is-active {
  background: var(--ink);
  color: #fff;
}

.site-header nav .language-switch a.is-active:hover,
.site-header nav .language-switch a.is-active:focus-visible {
  background: var(--ink);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-content: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroZoom 16s ease-in-out infinite;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(18, 20, 27, 0.72), rgba(18, 20, 27, 0.38) 46%, rgba(18, 20, 27, 0.08)),
    linear-gradient(0deg, rgba(18, 20, 27, 0.36), rgba(18, 20, 27, 0.1));
  opacity: 0;
  animation: heroOverlayIn 900ms ease 1s forwards;
}

@keyframes headerSlideDown {
  from { transform: translate(-50%, -110%); }
  to { transform: translate(-50%, 0); }
}

@keyframes heroOverlayIn {
  to { opacity: 1; }
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  52% { transform: scale(1.05); }
  70% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(1160px, calc(100% - 40px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 160px 0 110px;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
  position: relative;
  top: -34px;
}

.hero .eyebrow,
.hero h1,
.hero-role,
.hero-copy,
.hero-actions {
  opacity: 0;
  transform: translateX(-34px);
  animation: heroTextIn 720ms cubic-bezier(0.18, 0.78, 0.22, 1) forwards;
}

.hero .eyebrow {
  animation-delay: 1.35s;
}

.hero h1 {
  animation-delay: 1.52s;
}

.hero-role {
  animation-delay: 1.7s;
}

.hero-copy {
  animation-delay: 1.86s;
}

.hero-actions {
  animation-delay: 2.06s;
}

@keyframes heroTextIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 8.6rem);
  line-height: 0.88;
  font-weight: 900;
}

.hero-role {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-family: Lato, Inter, Arial, sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 300;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero-copy {
  max-width: 580px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.5);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 19px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  border: 0;
  background: var(--gold);
  color: #1a1d24;
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 max(28px, calc((100vw - 1160px) / 2));
  background: var(--charcoal);
  color: #fff;
}

.intro-band article {
  padding: 42px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.intro-band article:first-child {
  padding-left: 0;
}

.intro-band article:last-child {
  padding-right: 0;
  border-right: 0;
}

.intro-band span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
}

.intro-band h2 {
  margin: 10px 0 10px;
  font-size: 1.08rem;
}

.intro-band p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
  scroll-margin-top: 124px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.05rem;
}

.logo-slider {
  position: relative;
}

.logo-tile {
  display: grid;
  min-width: 0;
  min-height: 275px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(25, 28, 36, 0.06);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    filter 420ms ease,
    opacity 420ms ease,
    background-color 420ms ease;
}

.logo-tile img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}

.logo-tile span {
  align-self: end;
  color: #5d626e;
  font-size: 0.86rem;
  font-weight: 800;
}

.logo-tile:hover,
.logo-tile:focus-visible {
  border-color: rgba(54, 192, 207, 0.55);
  box-shadow: 0 22px 56px rgba(25, 28, 36, 0.1);
  outline: none;
}

.logo-tile:hover img,
.logo-tile:focus-visible img {
  transform: scale(1.12);
}

.logo-track:has(.logo-tile:hover) .logo-tile:not(:hover) {
  filter: grayscale(1);
  opacity: 0.48;
}

.logo-slider-window {
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 18px;
  transition: transform 360ms ease;
}

.logo-track .logo-tile {
  flex: 0 0 calc((100% - 36px) / 3);
}

.slider-arrow {
  position: absolute;
  z-index: 2;
  top: 114px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 19px rgba(25, 28, 36, 0.06);
}

.slider-prev {
  left: -72px;
}

.slider-next {
  right: -72px;
}

.slider-chevron {
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.slider-prev .slider-chevron {
  transform: rotate(225deg);
}

.slider-arrow:hover,
.slider-arrow:focus-visible {
  border-color: rgba(54, 192, 207, 0.55);
  outline: none;
}

.slider-arrow:disabled {
  cursor: default;
  opacity: 0.32;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #cfc8b8;
  cursor: pointer;
}

.slider-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold);
}

.brandbook-block {
  display: grid;
  margin-top: 36px;
  margin-right: 0;
  margin-left: 0;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 54px;
  align-items: center;
}

.brandbook-block img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brandbook-block h3,
.dtp-feature h3,
.main-video h3 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.1;
}

.brandbook-block p:not(.eyebrow),
.dtp-feature p,
.main-video p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.link-label {
  border-bottom: 3px solid var(--gold);
  line-height: 1.2;
}

.pdf-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 28px;
  padding: 4px 8px;
  border-radius: 4px;
  background: linear-gradient(to bottom, var(--red) 0 calc(100% - 4px), #fff calc(100% - 4px));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
}

.dtp-section {
  padding-top: 40px;
}

.dtp-feature,
.main-video {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dtp-feature img {
  width: 100%;
  border-radius: 6px;
}

.feature-media {
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.feature-media img {
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.feature-media:hover img,
.feature-media:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.feature-media:focus-visible {
  outline: 2px solid rgba(54, 192, 207, 0.65);
  outline-offset: 4px;
}

.case-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 18px 50px rgba(25, 28, 36, 0.07);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease,
    transform 420ms ease;
}

.work-card.wide {
  grid-column: span 2;
}

.work-card.tall {
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  background: #fff;
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.work-card.tall img {
  height: 565px;
}

.work-card.wide img {
  height: 330px;
  object-fit: contain;
  padding: 20px;
}

.work-card h3 {
  margin: 20px 22px 8px;
  font-size: 1.25rem;
}

.work-card p {
  margin: 0 22px 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.work-card:hover,
.work-card:focus-visible {
  border-color: rgba(54, 192, 207, 0.55);
  box-shadow: 0 22px 58px rgba(25, 28, 36, 0.1);
  outline: none;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.cards-strip-block {
  margin-top: 46px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.cards-strip-block .case-kicker {
  margin-bottom: 14px;
  color: var(--ink);
}

.cards-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card-thumb {
  display: block;
  overflow: hidden;
  width: 100%;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(25, 28, 36, 0.07);
  transition:
    border-color 360ms ease,
    box-shadow 420ms ease;
}

.card-thumb img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
}

.card-thumb:hover,
.card-thumb:focus-visible {
  border-color: rgba(54, 192, 207, 0.55);
  box-shadow: 0 22px 54px rgba(25, 28, 36, 0.1);
  outline: none;
}

.card-thumb:hover img,
.card-thumb:focus-visible img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.motion-section {
  padding-top: 46px;
}

.main-video video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  background: #151821;
}

.motion-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.motion-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(25, 28, 36, 0.07);
}

.motion-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #141720;
  object-fit: contain;
}

.motion-grid h3 {
  margin: 0;
  padding: 16px 18px 8px;
  font-size: 0.96rem;
}

.motion-grid p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.48;
}

.contact-footer {
  position: relative;
  margin-top: 70px;
  padding: 88px 0 42px;
  background: var(--charcoal);
  color: #fff;
  scroll-margin-top: 124px;
}

.footer-inner {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.footer-brand h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

.footer-brand p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-logo {
  margin-bottom: 28px;
  padding-top: 2px;
  background: #fff;
  color: var(--charcoal);
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  outline: 3px solid rgba(243, 183, 47, 0.18);
}

.contact-form .button {
  width: fit-content;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.footer-credit {
  width: min(1160px, calc(100% - 40px));
  margin: 42px auto 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 30px;
  align-items: center;
  padding: 42px;
  background: rgba(20, 22, 28, 0.88);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  justify-self: center;
  max-height: calc(100vh - 84px);
  border-radius: 8px;
  background: #fff;
}

.lightbox-caption {
  color: #fff;
}

.lightbox-caption h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.lightbox-caption p {
  color: rgba(255, 255, 255, 0.72);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 1020px) {
  .intro-band,
  .work-grid,
  .motion-grid,
  .cards-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-track .logo-tile {
    flex-basis: calc((100% - 18px) / 2);
  }

  .brandbook-block,
  .dtp-feature,
  .main-video,
  .footer-inner,
  .lightbox {
    grid-template-columns: 1fr;
  }

  .brandbook-block {
    margin-right: 0;
    margin-left: 0;
  }

  .work-card.wide,
  .work-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .work-card.tall img,
  .work-card.wide img,
  .work-card img {
    height: 285px;
    object-fit: contain;
    padding: 18px;
  }
}

@media (max-width: 740px) {
  .site-header {
    position: absolute;
    top: 12px;
    width: calc(100% - 24px);
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 8px;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .site-header.is-floating {
    position: fixed;
    align-items: center;
    background: rgba(255, 255, 255, 0.86);
  }

  .site-header.is-floating .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .site-header.is-floating nav {
    display: none;
    order: 3;
    padding-top: 12px;
    border-top: 1px solid rgba(30, 34, 44, 0.08);
  }

  .site-header.is-floating.is-menu-open nav {
    display: flex;
  }

  .site-header.is-floating.is-menu-open {
    background: rgba(255, 255, 255, 0.94);
  }

  .site-header nav a {
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding: 150px 0 80px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 20, 27, 0.82), rgba(18, 20, 27, 0.26)),
      linear-gradient(90deg, rgba(18, 20, 27, 0.62), rgba(18, 20, 27, 0.12));
  }

  .hero-copy {
    font-size: 0.78rem;
  }

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

  .intro-band,
  .work-grid,
  .motion-grid,
  .cards-strip {
    grid-template-columns: 1fr;
  }

  .logo-slider {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 10px;
  }

  .logo-track .logo-tile {
    flex-basis: 100%;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    top: 94px;
    background: rgba(255, 255, 255, 0.92);
  }

  .slider-prev {
    left: 8px;
  }

  .slider-next {
    right: 8px;
  }

  .intro-band article,
  .intro-band article + article {
    padding: 30px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .intro-band article:first-child {
    padding-left: 22px;
  }

  .intro-band article:last-child {
    padding-right: 22px;
    border-bottom: 0;
  }

  .section {
    width: calc(100% - 36px);
    padding: 70px 0;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .brandbook-block,
  .dtp-feature,
  .main-video {
    padding: 18px;
  }

  .logo-tile {
    min-height: 230px;
  }

  .logo-tile img {
    height: 155px;
  }

  .contact-footer {
    margin-top: 44px;
    padding-top: 66px;
  }

  .footer-inner {
    width: calc(100% - 36px);
    gap: 38px;
  }

  .footer-credit {
    width: calc(100% - 36px);
  }

  .contact-form {
    padding: 20px;
  }

  .lightbox {
    padding: 70px 18px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .hero-image img,
  .hero-overlay,
  .hero .eyebrow,
  .hero h1,
  .hero-role,
  .hero-copy,
  .hero-actions {
    animation: none;
  }

  .site-header {
    transform: translateX(-50%);
  }

  .hero-overlay,
  .hero .eyebrow,
  .hero h1,
  .hero-role,
  .hero-copy,
  .hero-actions {
    opacity: 1;
  }

  .hero .eyebrow,
  .hero h1,
  .hero-role,
  .hero-copy,
  .hero-actions {
    transform: none;
  }
}

@media (max-width: 420px) {
  .brand strong {
    font-size: 0.95rem;
  }

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

  .section-heading h2 {
    font-size: 2rem;
  }

  .footer-brand h2 {
    font-size: 2.25rem;
  }
}
