:root {
  --blue: #002bba;
  --blue-dark: #001568;
  --ink: #121212;
  --paper: #fbfbfb;
  --soft: #eff0f8;
  --line: rgba(0, 43, 186, 0.18);
  --grey: #767676;
  --warm: #f26430;
  --mint: #b7f2d0;
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--paper);
  color: var(--blue);
  font-family: "Neue Montreal", "Helvetica Neue", Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(90deg, rgba(0, 43, 186, 0.08) 1px, transparent 1px),
    var(--paper);
  background-size: 8.333% 100%;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background: url("assets/logo-grain.png") center / cover;
  mix-blend-mode: multiply;
  content: "";
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

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

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  background: var(--blue);
  transform: translateY(0);
  transition: transform 900ms cubic-bezier(0.78, 0, 0.18, 1);
}

body.is-loaded .page-transition {
  transform: translateY(-100%);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 190;
  display: grid;
  place-items: center;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  color: var(--paper);
  background: var(--ink);
  transform: translate(-50%, -50%) scale(0.82);
  transition: opacity 180ms ease, transform 180ms ease;
  mix-blend-mode: multiply;
}

.cursor.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cursor span {
  max-width: 76px;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 251, 251, 0.92);
  backdrop-filter: blur(18px);
}

.nav-grid {
  display: grid;
  grid-template-columns: 5fr 2fr 5fr;
  align-items: center;
  min-height: var(--nav-height);
  padding: 0 40px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
}

.brand {
  justify-self: center;
  display: inline-flex;
  width: 142px;
}

.brand img,
.footer img {
  width: 142px;
  height: auto;
}

.nav-left a,
.contact-pill,
.menu-button,
.menu-close {
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.nav-left a[aria-current="page"],
.contact-pill[aria-current="page"] {
  font-weight: 600;
}

.contact-pill,
.menu-button,
.primary-button,
.white-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
}

.contact-pill i,
.menu-button i,
.primary-button i,
.white-button i {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
}

.contact-pill i::before,
.menu-button i::before,
.primary-button i::before,
.white-button i::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--paper);
  content: "";
}

.menu-button {
  display: none;
}

.split-hover {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  white-space: nowrap;
}

.split-hover .char-wrap {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.split-hover .char,
.split-hover .char-clone {
  display: inline-block;
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split-hover .char-clone {
  position: absolute;
  left: 0;
  top: 100%;
}

.split-hover:hover .char,
.split-hover:focus-visible .char {
  transform: translateY(-100%);
}

.split-hover:hover .char-clone,
.split-hover:focus-visible .char-clone {
  transform: translateY(-100%);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 160;
  visibility: hidden;
  color: var(--blue);
  background: var(--paper);
  transform: translateY(100%);
  transition: transform 700ms cubic-bezier(0.78, 0, 0.18, 1), visibility 700ms;
}

.menu-panel.is-open {
  visibility: visible;
  transform: translateY(0);
}

.menu-panel-inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  padding: 28px 40px 44px;
}

.menu-close {
  justify-self: end;
}

.menu-links {
  display: grid;
  align-content: center;
  gap: 8px;
}

.menu-links a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 118px;
  line-height: 0.95;
  font-weight: 400;
}

.menu-panel p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
}

main {
  position: relative;
  z-index: 1;
}

.footer {
  position: relative;
  z-index: 1;
}

.section {
  padding: 116px 40px;
}

.hero {
  min-height: 92vh;
  padding: 122px 40px 34px;
}

.hero-grid,
.section-grid,
.work-heading,
.footer-grid,
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.hero-grid {
  align-items: end;
}

.hero-copy {
  grid-column: 1 / 9;
}

.hero-side {
  grid-column: 9 / 13;
  padding-bottom: 20px;
}

.eyebrow,
.section-label {
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

.section-label sup {
  margin-left: 4px;
  font-size: 12px;
}

.display-title {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 128px;
  line-height: 0.94;
  font-weight: 400;
}

.display-title span {
  display: block;
}

.display-title .italic {
  font-style: italic;
}

.hero-side p,
.copy {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.36;
}

.primary-button,
.white-button {
  min-height: 48px;
  padding: 0 18px 0 22px;
  border: 1px solid var(--blue);
  border-radius: 8px;
  background: var(--blue);
  color: var(--paper);
  font-size: 15px;
  line-height: 1;
}

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

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

.hero-media {
  position: relative;
  height: 48vh;
  min-height: 420px;
  margin-top: 56px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.38));
  content: "";
}

.hero-media-label,
.preview-meta {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--paper);
  font-size: 14px;
}

.play-badge {
  position: absolute;
  right: 22px;
  top: 18px;
  z-index: 3;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(251, 251, 251, 0.72);
  border-radius: 8px;
  color: var(--paper);
  background: rgba(18, 18, 18, 0.22);
  backdrop-filter: blur(10px);
  font-size: 13px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.grain-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 28px;
  align-items: end;
  margin: 0 40px 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper);
  background: var(--blue);
}

.grain-panel img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.grain-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 35%, rgba(0, 21, 104, 0.72));
  content: "";
}

.grain-panel-copy {
  position: relative;
  z-index: 1;
  padding: 36px 34px 38px 0;
}

.grain-panel-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 14px;
}

.grain-panel-copy p {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1.08;
}

.grain-panel-tight {
  margin-top: -52px;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  padding: 18px 28px;
  color: var(--blue);
  font-size: 16px;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-grid > div:first-child {
  grid-column: 1 / 4;
}

.section-grid > div:last-child {
  grid-column: 5 / 13;
}

.headline {
  margin-bottom: 28px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: 1;
  font-weight: 400;
}

.large-copy {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
}

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

.work-heading {
  align-items: end;
  margin-bottom: 68px;
}

.work-heading > div {
  grid-column: 1 / 8;
}

.work-heading > .copy {
  grid-column: 9 / 13;
  margin-bottom: 8px;
}

.work-stage {
  display: grid;
  grid-template-columns: 1fr 388px;
  gap: 32px;
  align-items: start;
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-row {
  display: grid;
  grid-template-columns: 2.1fr 1fr 0.7fr 1.4fr;
  gap: 22px;
  align-items: center;
  min-height: 94px;
  border-bottom: 1px solid var(--line);
  color: var(--blue);
  transition: padding 240ms ease, background 240ms ease, color 240ms ease;
}

.work-row span {
  font-size: 15px;
  line-height: 1.15;
}

.work-row .work-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
}

.work-row:hover,
.work-row.is-active {
  padding-left: 20px;
  background: var(--blue);
  color: var(--paper);
}

.preview-panel {
  position: sticky;
  top: 106px;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.preview-panel img,
.preview-panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-panel video {
  display: none;
}

.preview-panel.is-video img {
  display: none;
}

.preview-panel.is-video video {
  display: block;
}

.preview-panel::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 54%, rgba(0, 0, 0, 0.52));
  content: "";
}

.process {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--line);
}

.process-card {
  min-height: 360px;
  padding: 30px;
  background: var(--paper);
}

.process-card span {
  display: block;
  margin-bottom: 92px;
  color: var(--warm);
  font-size: 14px;
}

.process-card h3 {
  margin-bottom: 20px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  line-height: 1;
  font-weight: 400;
}

.process-card p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.4;
}

.process-card small {
  display: inline-flex;
  margin-top: 26px;
  color: var(--grey);
  font-size: 14px;
}

.studio {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.studio-media {
  position: relative;
  display: grid;
  grid-template-columns: 0.86fr 0.56fr;
  gap: 16px;
  align-items: end;
}

.studio-media img,
.studio-media video {
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.studio-media img {
  aspect-ratio: 1.18;
}

.studio-media video {
  aspect-ratio: 0.72;
  transform: translateY(44px) rotate(2deg);
}

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

.cta {
  min-height: 82vh;
  display: grid;
  place-items: center;
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(251, 251, 251, 0.12) 1px, transparent 1px),
    var(--blue);
  background-size: 8.333% 100%;
}

.cta-inner {
  width: min(100%, 1180px);
  text-align: center;
}

.cta .section-label,
.cta .copy {
  color: var(--paper);
}

.cta .copy {
  max-width: 520px;
  margin: 26px auto 34px;
}

.cta-title {
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 118px;
  line-height: 0.94;
  font-weight: 400;
}

.cta-title span {
  font-style: italic;
}

.footer {
  padding: 48px 40px 32px;
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  padding-bottom: 62px;
}

.footer-grid > div:first-child {
  grid-column: 1 / 5;
}

.footer-grid > div:nth-child(2) {
  grid-column: 9 / 11;
}

.footer-grid > div:nth-child(3) {
  grid-column: 11 / 13;
}

.footer img {
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.footer p,
.footer span,
.footer a {
  color: var(--paper);
  font-size: 14px;
  line-height: 1.35;
}

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

.footer-links span {
  margin-bottom: 8px;
  opacity: 0.54;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(251, 251, 251, 0.22);
}

.footer-bottom span:first-child {
  grid-column: 1 / 7;
}

.footer-bottom span:last-child {
  grid-column: 9 / 13;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 820ms ease, transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.page-main {
  padding-top: var(--nav-height);
}

.page-hero {
  padding: 70px 40px 86px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
}

.page-hero-grid > div:first-child {
  grid-column: 1 / 9;
}

.page-hero-grid > div:last-child {
  grid-column: 9 / 13;
}

.page-title {
  margin: 0;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 112px;
  line-height: 0.98;
  font-weight: 400;
}

.page-intro p {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.page-grain-card {
  position: relative;
  height: 420px;
  margin-top: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.page-grain-card img,
.quote-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-card img,
.package-card img {
  width: 100%;
  object-fit: cover;
}

.page-grain-card span {
  position: absolute;
  left: 22px;
  bottom: 18px;
  color: var(--paper);
  font-size: 14px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.signal-item {
  min-height: 210px;
  padding: 28px;
  background: var(--paper);
}

.signal-item strong {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 1;
  font-weight: 400;
}

.signal-item span {
  color: var(--ink);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 72px;
  border: 1px solid var(--line);
  background: var(--line);
}

.feature-tile {
  min-height: 310px;
  padding: 28px;
  background: var(--paper);
}

.feature-tile span,
.event-card span {
  display: block;
  margin-bottom: 56px;
  color: var(--warm);
  font-size: 14px;
}

.feature-tile h3,
.event-card h3,
.package-card h2,
.contact-card h2,
.contact-form h2,
.timeline-row h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}

.feature-tile h3,
.event-card h3,
.package-card h2,
.contact-card h2,
.contact-form h2 {
  font-size: 38px;
}

.feature-tile p,
.event-card p,
.package-card p,
.contact-card p,
.timeline-row p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.42;
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.split-media {
  height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.package-section {
  padding-top: 0;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.package-card {
  display: grid;
  gap: 24px;
  align-content: start;
  padding: 22px;
  background: var(--paper);
}

.package-card img {
  aspect-ratio: 1.28;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.package-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.package-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.package-card dt,
.package-card dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
}

.package-card dt {
  color: var(--grey);
}

.timeline-list {
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.timeline-row {
  display: grid;
  grid-template-columns: 0.8fr 2fr 4fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-row span {
  color: var(--warm);
  font-size: 14px;
}

.timeline-row h3 {
  margin: 0;
  font-size: 42px;
}

.timeline-row p {
  margin: 0;
}

.quote-panel {
  position: relative;
  min-height: 620px;
  margin: 0 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.quote-panel::after {
  position: absolute;
  inset: 0;
  background: rgba(0, 21, 104, 0.26);
  content: "";
}

.quote-panel blockquote {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 38px;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 62px;
  line-height: 1.03;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 62px;
}

.event-card {
  display: grid;
  align-content: start;
  min-height: 520px;
}

.event-card img,
.event-card video {
  width: 100%;
  aspect-ratio: 1.08;
  margin-bottom: 24px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.event-card span {
  margin-bottom: 18px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 32px;
  align-items: start;
  padding-top: 0;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 22px;
  color: var(--paper);
  background: var(--blue);
  border-radius: 8px;
}

.contact-card img {
  aspect-ratio: 1.1;
  border-radius: 8px;
}

.contact-card h2,
.contact-card p {
  color: var(--paper);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-size: 16px;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
  padding: 14px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .cursor {
    display: none;
  }
}

@media (max-width: 1180px) {
  .display-title {
    font-size: 102px;
  }

  .headline {
    font-size: 64px;
  }

  .work-stage {
    grid-template-columns: 1fr 320px;
  }

  .work-row .work-title {
    font-size: 34px;
  }
}

@media (max-width: 920px) {
  body {
    background-size: 12.5% 100%;
  }

  .nav-grid {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 22px;
  }

  .nav-left,
  .contact-pill {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .section,
  .hero,
  .footer {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-copy,
  .hero-side,
  .section-grid > div:first-child,
  .section-grid > div:last-child,
  .work-heading > div,
  .work-heading > .copy {
    grid-column: 1 / 13;
  }

  .hero-side {
    max-width: 560px;
    padding-bottom: 0;
  }

  .display-title {
    margin-bottom: 30px;
    font-size: 82px;
  }

  .hero-media {
    height: 42vh;
    min-height: 360px;
    margin-top: 36px;
  }

  .headline {
    font-size: 54px;
  }

  .large-copy {
    font-size: 24px;
  }

  .work-stage {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    position: relative;
    top: auto;
    height: 420px;
    order: -1;
  }

  .work-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
    padding: 24px 0;
  }

  .work-row:hover,
  .work-row.is-active {
    padding-left: 14px;
  }

  .process-grid,
  .studio {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: 300px;
  }

  .process-card span {
    margin-bottom: 56px;
  }

  .studio-media video {
    transform: translateY(20px) rotate(2deg);
  }

  .cta-title {
    font-size: 78px;
  }

  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3),
  .footer-bottom span:first-child,
  .footer-bottom span:last-child {
    grid-column: 1 / 13;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-bottom {
    gap: 10px;
  }

  .footer-bottom span:last-child {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .cursor {
    display: none;
  }

  .brand,
  .brand img {
    width: 118px;
  }

  .menu-panel-inner {
    padding: 24px 22px 32px;
  }

  .menu-links a {
    font-size: 54px;
  }

  .menu-panel p {
    font-size: 17px;
  }

  .hero {
    padding-top: 96px;
  }

  .display-title {
    font-size: 54px;
    line-height: 1;
  }

  .hero-side p,
  .copy {
    font-size: 16px;
  }

  .hero-media {
    min-height: 300px;
    border-radius: 8px;
  }

  .ticker span {
    padding: 14px 18px;
    font-size: 14px;
  }

  .section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .headline {
    font-size: 42px;
  }

  .large-copy {
    font-size: 20px;
    line-height: 1.3;
  }

  .work-heading {
    margin-bottom: 44px;
  }

  .preview-panel {
    height: 310px;
    border-radius: 8px;
  }

  .work-row .work-title {
    font-size: 32px;
  }

  .process-grid {
    margin-top: 42px;
  }

  .process-card {
    min-height: auto;
    padding: 24px;
  }

  .process-card h3 {
    font-size: 36px;
  }

  .studio-media {
    grid-template-columns: 1fr;
  }

  .studio-media video {
    transform: none;
  }

  .cta {
    min-height: 74vh;
    background-size: 12.5% 100%;
  }

  .cta-title {
    font-size: 48px;
    line-height: 1;
  }
}

@media (max-width: 920px) {
  .grain-panel,
  .contact-layout,
  .media-split,
  .package-grid,
  .feature-grid,
  .signal-strip,
  .event-grid {
    grid-template-columns: 1fr;
  }

  .grain-panel {
    margin-left: 22px;
    margin-right: 22px;
  }

  .grain-panel::after {
    background: linear-gradient(180deg, transparent 35%, rgba(0, 21, 104, 0.78));
  }

  .grain-panel-copy {
    padding: 0 24px 28px;
  }

  .page-hero {
    padding: 54px 22px 72px;
  }

  .page-hero-grid > div:first-child,
  .page-hero-grid > div:last-child {
    grid-column: 1 / 13;
  }

  .page-title {
    font-size: 72px;
  }

  .page-intro {
    max-width: 620px;
  }

  .page-grain-card,
  .quote-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .signal-item,
  .feature-tile,
  .process-card {
    min-height: auto;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .quote-panel {
    min-height: 520px;
  }

  .quote-panel blockquote {
    font-size: 44px;
  }

  .split-media {
    height: 480px;
  }
}

@media (max-width: 620px) {
  .hero-media,
  .preview-panel,
  .studio-media img,
  .studio-media video {
    border-radius: 8px;
  }

  .grain-panel {
    margin-bottom: 52px;
  }

  .grain-panel img {
    height: 320px;
  }

  .grain-panel-copy p {
    font-size: 24px;
  }

  .page-title {
    font-size: 48px;
    line-height: 1;
  }

  .page-grain-card {
    height: 310px;
    margin-top: 36px;
  }

  .signal-item strong {
    margin-bottom: 28px;
    font-size: 44px;
  }

  .feature-grid,
  .package-grid,
  .event-grid {
    margin-top: 38px;
  }

  .feature-tile h3,
  .event-card h3,
  .package-card h2,
  .contact-card h2,
  .contact-form h2 {
    font-size: 32px;
  }

  .quote-panel {
    min-height: 420px;
    margin-left: 22px;
    margin-right: 22px;
  }

  .quote-panel blockquote {
    left: 24px;
    right: 24px;
    bottom: 24px;
    font-size: 31px;
  }

  .contact-form {
    padding: 22px;
  }

  .split-media {
    height: 360px;
  }
}

.button-row,
.section-action {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.text-button {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  color: var(--blue);
  font-size: 15px;
  line-height: 1;
  border-bottom: 1px solid currentColor;
}

.split-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 34px;
  align-items: end;
}

.key-point-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  border: 1px solid var(--line);
  background: var(--line);
}

.key-point-row span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--blue);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 27px;
  line-height: 1;
  text-align: center;
}

.overview-grid,
.industry-grid,
.featured-grid,
.package-preview-grid,
.custom-grid,
.project-card-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.overview-grid {
  grid-template-columns: repeat(3, 1fr);
}

.overview-card,
.industry-card,
.package-preview-card,
.custom-card {
  background: var(--paper);
}

.overview-card {
  min-height: 420px;
  padding: 30px;
}

.overview-card span,
.package-label,
.custom-card span,
.project-card-body > span {
  display: block;
  margin-bottom: 52px;
  color: var(--warm);
  font-size: 14px;
}

.overview-card h3,
.industry-card h3,
.featured-card h3,
.package-preview-card span,
.custom-card h3,
.project-card h2,
.service-detail h2,
.service-detail h3,
.package-card-rich h3 {
  margin-bottom: 18px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
}

.overview-card h3,
.industry-card h3,
.custom-card h3,
.project-card h2,
.service-detail h2 {
  font-size: 42px;
}

.overview-card p,
.industry-card p,
.featured-card span,
.package-preview-card p,
.custom-card p,
.project-card p,
.project-card dt,
.project-card dd,
.service-detail p,
.service-detail li,
.package-card-rich li,
.package-card-rich .package-block p,
.form-note {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.42;
}

.industries-section,
.featured-work {
  border-top: 1px solid var(--line);
}

.industry-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
}

.industry-card {
  min-height: 540px;
}

.industry-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.industry-card h3,
.industry-card p {
  padding-left: 24px;
  padding-right: 24px;
}

.industry-card h3 {
  margin-top: 24px;
}

.featured-grid {
  grid-template-columns: repeat(3, 1fr);
}

.featured-card {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--blue);
}

.featured-card img,
.featured-card video {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 600ms ease;
}

.featured-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 21, 104, 0.76));
  content: "";
}

.featured-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
}

.featured-card h3,
.featured-card span {
  color: var(--paper);
}

.featured-card:hover img,
.featured-card:hover video {
  transform: scale(1.04);
}

.featured-work .section-action,
.custom-project .section-action {
  margin-top: 34px;
}

.packages-preview {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.packages-preview .button-row {
  margin-top: 34px;
}

.package-preview-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
}

.package-preview-card {
  min-height: 230px;
  padding: 28px;
}

.package-preview-card span {
  display: block;
  color: var(--blue);
  font-size: 38px;
}

.service-detail-list {
  display: grid;
  gap: 0;
  padding-top: 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.55fr;
  gap: 48px;
  padding: 42px 0;
  border-top: 1px solid var(--line);
}

.service-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.service-detail-heading span {
  display: block;
  margin-bottom: 36px;
  color: var(--warm);
  font-size: 14px;
}

.service-detail h2 {
  max-width: 520px;
  margin-bottom: 0;
}

.service-detail h3,
.package-card-rich h3 {
  margin-top: 28px;
  font-size: 26px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.service-quote {
  margin-bottom: 116px;
}

.package-hero .page-intro {
  display: grid;
  gap: 18px;
}

.package-hero .page-intro .primary-button {
  justify-self: start;
  margin-top: 8px;
}

.package-grid-main {
  align-items: stretch;
}

.package-card-rich {
  gap: 18px;
  padding: 28px;
}

.package-card-rich .package-label {
  margin-bottom: 20px;
}

.package-card-rich ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.package-card-rich .primary-button {
  align-self: end;
  justify-self: start;
  margin-top: 8px;
}

.custom-project {
  border-top: 1px solid var(--line);
}

.custom-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 62px;
}

.custom-card {
  min-height: 300px;
  padding: 28px;
}

.project-card-grid {
  grid-template-columns: 1fr;
}

.project-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 560px;
  background: var(--paper);
}

.project-card img,
.project-card video {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  border-right: 1px solid var(--line);
}

.project-card-body {
  display: grid;
  align-content: center;
  padding: 44px;
}

.project-card-body > span {
  margin-bottom: 26px;
}

.project-card dl {
  display: grid;
  gap: 14px;
  margin: 6px 0 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.project-card dl div {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: 24px;
}

.project-card dt,
.project-card dd {
  margin: 0;
}

.project-card dt {
  color: var(--grey);
}

.about-statement {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 0;
}

.about-statement-media {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.about-statement-media img {
  width: 100%;
  aspect-ratio: 1.04;
  object-fit: cover;
}

.about-approach .process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.contact-form fieldset {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.contact-form fieldset:last-of-type {
  border-bottom: 0;
}

.contact-form legend {
  margin-bottom: 4px;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.select-label {
  max-width: 520px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
}

.contact-form .checkbox-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--blue);
}

.form-note {
  margin: -4px 0 0;
  color: var(--grey);
}

template {
  display: none;
}

.footer-grid-extended {
  align-items: start;
}

.footer-grid.footer-grid-extended > div:first-child {
  grid-column: 1 / 5;
}

.footer-grid.footer-grid-extended > div:nth-child(2) {
  grid-column: 6 / 8;
}

.footer-grid.footer-grid-extended > div:nth-child(3) {
  grid-column: 8 / 11;
}

.footer-grid.footer-grid-extended > div:nth-child(4) {
  grid-column: 11 / 13;
}

.footer-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px 0;
  border-top: 1px solid rgba(251, 251, 251, 0.22);
  border-bottom: 1px solid rgba(251, 251, 251, 0.22);
}

.footer-cta p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

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

.footer .white-button span {
  color: var(--blue);
}

@media (max-width: 1180px) {
  .industry-grid,
  .custom-grid,
  .about-approach .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-grid,
  .checkbox-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card {
    grid-template-columns: 0.82fr 1.18fr;
  }
}

@media (max-width: 920px) {
  .split-copy-grid,
  .overview-grid,
  .industry-grid,
  .featured-grid,
  .package-preview-grid,
  .custom-grid,
  .project-card,
  .service-detail,
  .about-statement,
  .about-approach .process-grid,
  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .key-point-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card img,
  .project-card video {
    min-height: 420px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-card-body {
    padding: 32px 24px;
  }

  .footer-grid.footer-grid-extended > div:first-child,
  .footer-grid.footer-grid-extended > div:nth-child(2),
  .footer-grid.footer-grid-extended > div:nth-child(3),
  .footer-grid.footer-grid-extended > div:nth-child(4) {
    grid-column: auto;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom span:first-child,
  .footer-bottom span:last-child {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .key-point-row,
  .project-card dl div {
    grid-template-columns: 1fr;
  }

  .key-point-row span {
    min-height: 76px;
    font-size: 22px;
  }

  .overview-card,
  .industry-card,
  .package-preview-card,
  .custom-card,
  .package-card-rich {
    min-height: auto;
    padding: 24px;
  }

  .industry-card {
    padding: 0 0 24px;
  }

  .featured-card,
  .featured-card img,
  .featured-card video {
    min-height: 380px;
  }

  .overview-card h3,
  .industry-card h3,
  .custom-card h3,
  .project-card h2,
  .service-detail h2 {
    font-size: 34px;
  }

  .service-detail {
    gap: 26px;
    padding: 34px 0;
  }

  .service-quote {
    margin-bottom: 82px;
  }

  .project-card img,
  .project-card video {
    min-height: 330px;
  }

  .contact-form legend {
    font-size: 26px;
  }

  .footer-cta {
    display: grid;
  }

  .footer-cta p {
    font-size: 28px;
  }
}

.footer img {
  filter: none;
}

.featured-card {
  aspect-ratio: 1;
  min-height: 0;
}

.featured-card img,
.featured-card video {
  height: 100%;
  min-height: 0;
}

.project-card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.project-card {
  grid-template-columns: 1fr;
  min-height: 0;
}

.project-card img,
.project-card video {
  aspect-ratio: 1;
  height: auto;
  min-height: 0;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.project-card-body {
  align-content: start;
  padding: 30px;
}

.project-detail-cover {
  margin: 0 40px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--blue);
}

.project-detail-cover img {
  width: 100%;
  max-height: 78vh;
  object-fit: cover;
}

.project-detail-overview {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.project-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.project-meta-grid div {
  min-height: 170px;
  padding: 22px;
  background: var(--paper);
}

.project-meta-grid span {
  display: block;
  margin-bottom: 34px;
  color: var(--warm);
  font-size: 14px;
}

.project-meta-grid p,
.project-story .copy {
  margin: 0;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  gap: 24px;
  padding-top: 0;
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.project-gallery .gallery-panorama {
  grid-column: span 12;
  aspect-ratio: 2.12;
}

.project-gallery .gallery-landscape {
  grid-column: span 8;
  aspect-ratio: 1.52;
}

.project-gallery .gallery-portrait {
  grid-column: span 4;
  aspect-ratio: 0.75;
}

@media (max-width: 920px) {
  .project-card-grid,
  .project-detail-overview,
  .project-meta-grid,
  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-detail-cover {
    margin-left: 22px;
    margin-right: 22px;
  }

  .project-gallery .gallery-panorama,
  .project-gallery .gallery-landscape,
  .project-gallery .gallery-portrait {
    grid-column: auto;
  }

  .project-gallery .gallery-panorama,
  .project-gallery .gallery-landscape {
    aspect-ratio: 1.45;
  }
}

@media (max-width: 620px) {
  .project-card-body {
    padding: 24px;
  }

  .project-detail-cover {
    margin-left: 22px;
    margin-right: 22px;
  }
}
