@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Instrument Serif";
  src: url("/assets/instrument-serif-latin-400-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #101d38;
  --ink-soft: #26334b;
  --paper: #f4f0e6;
  --paper-light: #fbf8f1;
  --citron: #d7ff3f;
  --cobalt: #3157e6;
  --line: rgba(16, 29, 56, 0.2);
  --white-line: rgba(255, 255, 255, 0.24);
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --serif: "Instrument Serif", "Iowan Old Style", Baskerville, Georgia, serif;
  --page-gutter: clamp(1.25rem, 4vw, 4.75rem);
  --header-height: 6rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

address {
  font-style: normal;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--citron);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: 1rem var(--page-gutter);
  color: var(--ink);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header::after {
  position: absolute;
  right: var(--page-gutter);
  bottom: 0;
  left: var(--page-gutter);
  height: 1px;
  background: var(--line);
  content: "";
}

.site-header.is-scrolled {
  min-height: 4.8rem;
  background: rgba(244, 240, 230, 0.92);
  box-shadow: 0 8px 28px rgba(16, 29, 56, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled::after {
  opacity: 0;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 0.7rem;
  color: var(--ink);
}

.brand__mark {
  width: 2.55rem;
  height: 2.55rem;
  fill: currentColor;
}

.brand__spark {
  fill: var(--cobalt);
}

.brand__type {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand__type strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.brand__type small {
  margin-top: 0.28rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.54em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.8vw, 3rem);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-nav a {
  position: relative;
  padding: 0.5rem 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.18rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  position: relative;
  z-index: 3;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle__label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-toggle__icon {
  position: relative;
  width: 1.75rem;
  height: 1.25rem;
}

.menu-toggle__icon i {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.menu-toggle__icon i:first-child {
  top: 0.3rem;
}

.menu-toggle__icon i:last-child {
  top: 0.9rem;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(28rem, 0.98fr);
  min-height: 100svh;
  overflow: hidden;
  padding: calc(var(--header-height) + 3rem) var(--page-gutter) 3.25rem;
  background:
    radial-gradient(circle at 9% 86%, rgba(49, 87, 230, 0.12), transparent 26rem),
    var(--paper);
}

.hero::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 52%;
  width: 1px;
  background: var(--line);
  content: "";
}

.hero__copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 49rem;
  padding: 2rem clamp(2rem, 5vw, 7rem) 4rem 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.8rem;
  color: var(--cobalt);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 2.5rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.eyebrow--light {
  color: var(--citron);
}

.hero h1,
.section-heading h2,
.approach h2,
.production h2,
.method h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 9ch;
  font-size: clamp(4.6rem, 7.3vw, 8.5rem);
}

.hero h1 em,
.production h2 em {
  color: var(--cobalt);
  font-weight: 400;
}

.hero__intro {
  max-width: 37rem;
  margin: 2.4rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.65rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.2;
}

.button--primary {
  background: var(--citron);
  box-shadow: inset 0 0 0 1px var(--citron);
}

.button--primary:hover {
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 2.6;
}

.text-link span {
  font-size: 1rem;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translate(0.2rem, 0.2rem);
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 35rem;
  margin: 1.3rem 0 0;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(16, 29, 56, 0.62));
  content: "";
  pointer-events: none;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 51%;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero__media:hover img {
  transform: scale(1.02);
}

.hero__media figcaption {
  position: absolute;
  z-index: 2;
  right: 1.5rem;
  bottom: 1.25rem;
  left: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: var(--page-gutter);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero__scroll i {
  width: 1px;
  height: 2.5rem;
  overflow: hidden;
  background: var(--line);
}

.hero__scroll i::after {
  display: block;
  width: 100%;
  height: 55%;
  background: var(--ink);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-120%); }
  60%, 100% { transform: translateY(210%); }
}

.section-shell {
  padding: clamp(6rem, 10vw, 10rem) var(--page-gutter);
}

.hero > *,
.section-heading > *,
.approach > *,
.method > *,
.site-footer > * {
  min-width: 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.35fr);
  column-gap: 4rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 15ch;
  font-size: clamp(3.4rem, 6.5vw, 7.3rem);
}

.section-heading__note {
  align-self: end;
  max-width: 25rem;
  margin: 0 0 0.7rem;
  color: var(--ink-soft);
  font-size: 1rem;
}

.service-list {
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(12rem, 0.7fr) minmax(18rem, 1fr) minmax(14rem, 0.75fr);
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
}

.service::before {
  position: absolute;
  inset: 0;
  background: var(--citron);
  content: "";
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 220ms ease;
}

.service:hover::before {
  transform: scaleY(1);
}

.service > * {
  z-index: 1;
}

.service__number,
.service__detail {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
}

.service > p:not(.service__number) {
  max-width: 37rem;
  margin: 0;
  color: var(--ink-soft);
}

.service__detail {
  line-height: 1.7;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(28rem, 0.85fr);
  min-height: 56rem;
  background: var(--ink);
  color: var(--paper-light);
}

.approach__image {
  position: relative;
  min-height: 46rem;
  overflow: hidden;
}

.approach__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(16, 29, 56, 0.35));
  content: "";
}

.approach__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
}

.image-note {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: 2rem;
  margin: 0;
  padding: 0.5rem 0.75rem;
  background: var(--citron);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.approach__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 7vw, 8rem) var(--page-gutter);
}

.approach h2 {
  max-width: 10ch;
  font-size: clamp(3.7rem, 5.8vw, 6.5rem);
}

.approach__lead {
  max-width: 35rem;
  margin: 2.5rem 0 3.5rem;
  color: rgba(251, 248, 241, 0.74);
  font-size: 1.08rem;
}

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

.principle {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--white-line);
}

.principle span {
  color: var(--citron);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.principle p {
  margin: 0;
  color: rgba(251, 248, 241, 0.8);
  font-size: 0.9rem;
}

.production {
  position: relative;
  min-height: min(60rem, 88svh);
  overflow: hidden;
  background: #070d19;
  color: var(--paper-light);
}

.production__background,
.production__veil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.production__background {
  object-fit: cover;
  object-position: center;
}

.production__veil {
  background: linear-gradient(90deg, rgba(7, 13, 25, 0.94) 0%, rgba(7, 13, 25, 0.76) 42%, rgba(7, 13, 25, 0.08) 78%);
}

.production__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 67%;
  min-height: min(60rem, 88svh);
  padding: clamp(6rem, 10vw, 10rem) var(--page-gutter);
}

.production h2 {
  max-width: 12ch;
  font-size: clamp(3.6rem, 6.7vw, 7.6rem);
  line-height: 0.94;
}

.production h2 em {
  color: var(--citron);
}

.production__content > p:last-child {
  max-width: 35rem;
  margin: 2.5rem 0 0;
  color: rgba(251, 248, 241, 0.72);
}

.method {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(32rem, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
  background: var(--paper-light);
}

.method__intro {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.method h2 {
  max-width: 9ch;
  font-size: clamp(3.7rem, 5.8vw, 6.5rem);
}

.method__steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.method-step {
  padding: 2.5rem 0 3.25rem;
  border-bottom: 1px solid var(--line);
}

.method-step > span {
  color: var(--cobalt);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.method-step h3 {
  margin: 0.8rem 0 1.2rem;
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.method-step p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-soft);
}

.site-footer {
  padding: clamp(4rem, 7vw, 7rem) var(--page-gutter) 2rem;
  background: var(--ink);
  color: var(--paper-light);
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--white-line);
}

.brand--footer {
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  color: var(--paper-light);
}

.brand--footer .brand__mark {
  width: clamp(3.4rem, 6vw, 6rem);
  height: auto;
}

.brand--footer .brand__spark { fill: var(--citron); }

.brand--footer .brand__type strong {
  font-size: clamp(2rem, 5.1vw, 5.2rem);
  letter-spacing: 0.12em;
}

.brand--footer .brand__type small {
  margin-top: clamp(0.3rem, 0.7vw, 0.65rem);
  font-size: clamp(0.58rem, 1.1vw, 1rem);
  letter-spacing: 0.55em;
}

.site-footer__top > p {
  max-width: 20rem;
  margin: 0;
  color: rgba(251, 248, 241, 0.66);
  text-align: right;
}

.site-footer__details {
  display: block;
  max-width: 32rem;
  margin: 0;
  padding: 4rem 0;
  font-size: 0.85rem;
  font-style: normal;
  line-height: 1.85;
}

.site-footer__details strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-line);
  color: rgba(251, 248, 241, 0.58);
  font-size: 0.68rem;
}

.site-footer__bottom p {
  margin: 0;
}

.site-footer__bottom a:hover {
  color: var(--paper-light);
}

.reveal,
.reveal-image {
  opacity: 1;
  transform: none;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-ready .reveal-image {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 500ms ease, clip-path 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.js-ready .hero__media.reveal-image {
  opacity: 1;
  clip-path: inset(0);
}

.js-ready .reveal.is-visible,
.js-ready .reveal-image.is-visible {
  opacity: 1;
  transform: none;
  clip-path: inset(0);
}

@media (max-width: 1100px) {
  :root {
    --header-height: 5.4rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(23rem, 0.85fr);
  }

  .hero h1 {
    font-size: clamp(4.4rem, 8vw, 7rem);
  }

  .service {
    grid-template-columns: 3rem minmax(10rem, 0.6fr) minmax(15rem, 1fr);
  }

  .service__detail {
    grid-column: 2 / -1;
  }

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

  .approach h2 {
    font-size: clamp(3.6rem, 6.5vw, 5.5rem);
  }
}

@media (max-width: 1024px) {
  .method {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .method__intro {
    position: static;
  }
}

@media (max-width: 850px) {
  .site-header {
    isolation: isolate;
  }

  .site-header.is-scrolled {
    background: rgba(244, 240, 230, 0.98);
    backdrop-filter: none;
  }

  .menu-open .site-header,
  .menu-open .site-header.is-scrolled {
    min-height: var(--header-height);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .menu-open .site-header::after {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: calc(var(--header-height) + 2rem) var(--page-gutter) 3rem;
    background: var(--citron);
    font-family: var(--serif);
    font-size: clamp(2.8rem, 12vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    transform: none;
  }

  .js-ready .site-nav {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: visibility 220ms, opacity 220ms ease, transform 220ms ease;
  }

  .js-ready .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a {
    width: 100%;
    padding: 0.45rem 0;
  }

  .menu-open .menu-toggle__icon i:first-child {
    top: 0.6rem;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle__icon i:last-child {
    top: 0.6rem;
    transform: rotate(-45deg);
  }

  .hero {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-height) + 1rem);
  }

  .hero::before {
    display: none;
  }

  .hero__copy {
    min-height: auto;
    padding: 3.5rem 0 4.5rem;
  }

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

  .hero__media {
    order: -1;
    min-height: clamp(25rem, 58svh, 38rem);
    margin: 0;
  }

  .hero__scroll {
    display: none;
  }

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

  .section-heading__note {
    margin-top: 2rem;
  }

  .service {
    grid-template-columns: 2.5rem 1fr;
    gap: 0.6rem 1.2rem;
    padding: 2rem 0;
  }

  .service h3,
  .service > p:not(.service__number),
  .service__detail {
    grid-column: 2;
  }

  .service > p:not(.service__number) {
    margin-top: 0.8rem;
  }

  .service__detail {
    margin-top: 0.8rem;
  }

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

  .approach__image {
    min-height: 36rem;
  }

  .approach__copy {
    padding: 6rem var(--page-gutter);
  }

  .production__content {
    width: 100%;
  }

  .production__veil {
    background: linear-gradient(90deg, rgba(7, 13, 25, 0.94) 0%, rgba(7, 13, 25, 0.72) 65%, rgba(7, 13, 25, 0.25) 100%);
  }

}

@media (max-width: 700px) {
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__top > p {
    text-align: left;
  }

}

@media (max-width: 600px) {
  :root {
    --page-gutter: 1.15rem;
    --header-height: 4.8rem;
  }

  .site-header {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .site-header::after {
    right: var(--page-gutter);
    left: var(--page-gutter);
  }

  .brand__mark {
    width: 2.15rem;
    height: 2.15rem;
  }

  .brand__type strong {
    font-size: 0.83rem;
  }

  .brand__type small {
    font-size: 0.46rem;
  }

  .hero {
    padding-top: calc(var(--header-height) + 0.75rem);
    padding-bottom: 1.15rem;
  }

  .hero__copy {
    min-height: auto;
    padding: 3rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 5.5rem);
  }

  .hero__intro {
    margin-top: 1.75rem;
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    margin-top: 2rem;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero__media {
    min-height: clamp(20rem, 55svh, 30rem);
  }

  .hero__media figcaption {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    flex-direction: column;
    gap: 0.25rem;
  }

  .section-shell {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-heading h2,
  .approach h2,
  .method h2 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  .section-heading h2 br {
    display: none;
  }

  .service-list {
    margin-top: 3.5rem;
  }

  .approach__image {
    min-height: 28rem;
  }

  .approach__image img {
    object-position: 38% center;
  }

  .image-note {
    bottom: 1rem;
    left: 1rem;
  }

  .approach__copy {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .principle {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .production,
  .production__content {
    min-height: 48rem;
  }

  .production__background {
    object-position: 62% center;
  }

  .production__veil {
    background: linear-gradient(180deg, rgba(7, 13, 25, 0.35) 0%, rgba(7, 13, 25, 0.92) 48%, #070d19 100%);
  }

  .production__content {
    justify-content: flex-end;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .production h2 {
    font-size: clamp(3.3rem, 15vw, 4.8rem);
  }

  .production h2 br:first-of-type {
    display: none;
  }

  .footer-brand {
    gap: 0.65rem;
    font-size: clamp(3.1rem, 18vw, 4rem);
  }

  .footer-brand svg {
    width: 2.75rem;
    flex: 0 0 auto;
  }

}

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

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