/*
Theme Name: NOVITAKE Creative Studio
Theme URI: https://example.com/
Author: NOVITAKE
Description: A dark editorial WordPress theme for NOVITAKE, a creative marketing studio.
Version: 1.0.0
Text Domain: novitake
*/

:root {
  --bg: #030405;
  --panel: #080a0d;
  --ink: #f4f0e8;
  --muted: rgba(244, 240, 232, 0.58);
  --dim: rgba(244, 240, 232, 0.34);
  --line: rgba(244, 240, 232, 0.17);
  --max: 1380px;
  --pad: clamp(20px, 4.8vw, 78px);
  --sans: "Helvetica Neue", "Avenir Next", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.8;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 100;
  inset: 0;
  content: "";
  opacity: 0.12;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body.menu-open {
  overflow: hidden;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, #232323 0%, #090909 68%, #000 100%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}

.site-loader::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.1;
  pointer-events: none;
  background-image:
    linear-gradient(115deg, transparent 0 48%, rgba(255, 255, 255, 0.16) 49%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
  background-size: 190px 190px, 180px 180px;
  mix-blend-mode: screen;
}

.site-loader__logo {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #f2f0ea;
  text-align: center;
  opacity: 0;
  filter: drop-shadow(0 18px 40px rgba(255, 255, 255, 0.08));
  clip-path: inset(0 100% 0 0);
  animation:
    loader-logo-reveal 1.15s 0.32s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    loader-logo-settle 0.48s 1.35s ease-out forwards;
}

.site-loader__logo span {
  display: block;
  font-size: clamp(40px, 8vw, 112px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-loader__logo i {
  display: block;
  color: rgba(242, 240, 234, 0.52);
  font-style: normal;
  font-size: clamp(10px, 1.2vw, 14px);
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
}

.site-loader__logo::after {
  position: absolute;
  top: -26%;
  bottom: -26%;
  left: -42%;
  width: 28%;
  content: "";
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  filter: blur(10px);
  transform: skewX(-22deg);
  animation: loader-logo-sheen 1.1s 0.58s ease-out forwards;
}

.site-loader__beam {
  position: absolute;
  z-index: 1;
  left: -52%;
  top: 50%;
  width: 170%;
  height: 4px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.88), transparent);
  filter: blur(2px);
  transform: translate3d(-28%, -50%, 0) rotate(-18deg);
  animation: loader-beam 1.05s 0.48s cubic-bezier(0.45, 0, 0.12, 1) forwards;
}

.site-loader__beam::before,
.site-loader__beam::after {
  position: absolute;
  inset: 0;
  content: "";
  background: inherit;
}

.site-loader__beam::before {
  opacity: 0.34;
  filter: blur(10px);
}

.site-loader__beam::after {
  height: 1px;
  opacity: 0.76;
  filter: blur(0);
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader.is-hidden {
  display: none;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 4, 5, 0.74);
  backdrop-filter: blur(14px);
  animation: header-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
  align-items: center;
  width: min(100%, var(--max));
  min-height: 76px;
  padding: 0 var(--pad);
  margin: 0 auto;
}

.site-brand {
  width: max-content;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  justify-self: end;
}

.site-nav ul {
  display: flex;
  gap: clamp(18px, 2.4vw, 38px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav a,
.plain-link,
.home-opening__kicker,
.index-section__head a,
.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.site-nav a:hover,
.plain-link:hover {
  color: var(--ink);
}

.menu-toggle {
  display: none;
}

.home-opening {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  padding: clamp(112px, 12vw, 168px) var(--pad) clamp(62px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.16), rgba(3, 4, 5, 1)),
    radial-gradient(circle at 74% 22%, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--bg);
}

.home-opening__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050607;
}

.home-opening__media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.56) 0%, rgba(3, 4, 5, 0.26) 50%, rgba(3, 4, 5, 0.5) 100%),
    linear-gradient(180deg, rgba(3, 4, 5, 0.12) 0%, rgba(3, 4, 5, 0.66) 88%);
}

.home-opening__video {
  position: relative;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: #050607 url("assets/images/what-we-do-background.png") center / cover no-repeat;
}

.home-opening__video::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: inherit;
  content: "";
  filter: grayscale(1) contrast(1.16) brightness(0.62);
  transform: scale(1.08);
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.home-opening__video video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-height: 100svh;
  object-fit: cover;
  opacity: 0;
  filter: grayscale(1) contrast(1.18) brightness(0.74);
  transform: scale(1.08);
  animation: hero-video-drift-b 22s ease-in-out infinite alternate;
  pointer-events: none;
  transition: opacity 0.45s ease;
  -webkit-user-select: none;
  user-select: none;
}

.is-hero-video-playing .home-opening__video::before {
  opacity: 0;
}

.is-hero-video-playing .home-opening__video video {
  opacity: 1;
}

.home-opening__video video::-webkit-media-controls,
.home-opening__video video::-webkit-media-controls-panel,
.home-opening__video video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}

.home-opening::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(244, 240, 232, 0.06) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 49.9%, rgba(244, 240, 232, 0.045) 50%, transparent 50.1%);
  background-size: 22vw 22vw;
  animation: grid-drift 20s linear infinite;
}

.home-opening__inner,
.index-section,
.home-contact,
.page-hero__inner,
.section__inner,
.site-footer__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.home-opening__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "title"
    "kicker"
    "lead";
  gap: clamp(20px, 3.2vw, 44px);
  align-items: start;
  min-height: calc(100svh - clamp(190px, 22vw, 308px));
  align-content: center;
  padding-left: clamp(0px, 0.8vw, 12px);
}

.home-opening__kicker {
  grid-area: kicker;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin: clamp(18px, 3vw, 38px) 0 0;
  color: rgba(242, 240, 234, 0.76);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: none;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.home-opening__kicker::before {
  display: block;
  width: clamp(42px, 5vw, 74px);
  height: 1px;
  background: rgba(242, 240, 234, 0.52);
  content: "";
}

.home-opening__title {
  grid-area: title;
  display: grid;
  gap: clamp(12px, 1.5vw, 24px);
  max-width: min(88vw, 1160px);
  margin: 0;
  color: rgba(242, 240, 234, 0.94);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.home-opening__title-hello,
.home-opening__title-main {
  display: block;
}

.home-opening__title-hello {
  font-family: var(--sans);
  font-size: clamp(38px, 5.4vw, 92px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: clamp(0.12em, 0.55vw, 0.22em);
  text-transform: uppercase;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(-22px, 18px, 0);
  clip-path: inset(0 100% 0 0);
}

.home-opening__title-main {
  font-family: var(--sans);
  max-width: 100%;
  font-size: clamp(46px, 6.35vw, 116px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: clamp(0.01em, 0.28vw, 0.055em);
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(-22px, 18px, 0);
  clip-path: inset(0 100% 0 0);
}

.home-opening__lead {
  grid-area: lead;
  max-width: min(100%, 980px);
  margin: 0;
  color: rgba(242, 240, 234, 0.88);
  font-size: clamp(15px, 1.25vw, 20px);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.08em;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
}

.is-page-ready .home-opening__title-hello {
  animation: hero-line-in 1.05s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-page-ready .home-opening__title-main {
  animation: hero-line-in 1.18s 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.is-page-ready .home-opening__kicker {
  animation: hero-copy-in 1s 0.58s ease-out both;
}

.is-page-ready .home-opening__lead {
  animation: hero-copy-in 1.1s 0.76s ease-out both;
}

.home-opening__lead p {
  margin: 0;
}

.home-opening__lead p + p {
  margin-top: clamp(30px, 5.5vw, 78px);
  font-size: clamp(15px, 1.45vw, 23px);
  line-height: 1.9;
}

.home-opening__statement {
  font-size: clamp(17px, 1.9vw, 28px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.type-marquee {
  position: absolute;
  right: 0;
  bottom: clamp(12px, 2vw, 26px);
  left: 0;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid rgba(244, 240, 232, 0.1);
  border-bottom: 1px solid rgba(244, 240, 232, 0.1);
  opacity: 0.42;
  background: rgba(3, 4, 5, 0.44);
  backdrop-filter: blur(8px);
}

.type-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.type-marquee span {
  display: block;
  padding: 11px clamp(28px, 5vw, 76px);
  color: var(--ink);
  font-size: clamp(13px, 1.5vw, 22px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.what-we-do {
  position: relative;
  display: grid;
  min-height: clamp(680px, 92svh, 920px);
  overflow: hidden;
  place-items: center;
  padding: clamp(96px, 12vw, 170px) var(--pad);
  border-bottom: 1px solid rgba(242, 240, 234, 0.1);
  background: #050505;
  isolation: isolate;
}

.what-we-do__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.what-we-do__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.16) brightness(0.42);
  transform: scale(1.04);
}

.what-we-do::before,
.what-we-do::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.what-we-do::before {
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.74) 78%, rgba(0, 0, 0, 0.9));
}

.what-we-do::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.74)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 34%);
}

.what-we-do__light {
  position: absolute;
  inset: -22%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.what-we-do__light span {
  position: absolute;
  left: -48%;
  width: 74%;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(242, 240, 234, 0.86), transparent);
  filter: blur(0.4px);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.18),
    0 0 44px rgba(255, 255, 255, 0.08);
  transform: rotate(-18deg) translate3d(-24vw, 0, 0);
  transform-origin: center;
}

.what-we-do__light span:nth-child(1) {
  top: 31%;
}

.what-we-do__light span:nth-child(2) {
  top: 45%;
  height: 1px;
  opacity: 0;
}

.what-we-do__light span:nth-child(3) {
  top: 60%;
  width: 58%;
  height: 3px;
}

.what-we-do__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  color: rgba(242, 240, 234, 0.94);
  text-align: center;
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.what-we-do__content h2 {
  margin: 0 0 clamp(72px, 9vw, 136px);
  font-size: clamp(48px, 7.2vw, 132px);
  font-weight: 650;
  line-height: 0.96;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.section-title-reveal {
  position: relative;
  display: inline-block;
  color: transparent;
  overflow: hidden;
  text-shadow: none;
}

.section-title-reveal::before,
.section-title-reveal::after {
  position: absolute;
  inset: 0;
  content: attr(data-title);
  pointer-events: none;
}

.section-title-reveal::before {
  color: transparent;
  opacity: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.98) 48%, rgba(242, 240, 234, 0.68) 52%, transparent 66%, transparent 100%),
    linear-gradient(90deg, rgba(242, 240, 234, 0.22), rgba(242, 240, 234, 0.92), rgba(242, 240, 234, 0.22));
  background-size: 250% 100%, 100% 100%;
  background-position: 180% 0, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.1));
}

.section-title-reveal::after {
  color: rgba(242, 240, 234, 0.94);
  opacity: 0;
  text-shadow:
    0 16px 42px rgba(0, 0, 0, 0.38),
    0 0 18px rgba(255, 255, 255, 0.06);
  clip-path: inset(0 100% 0 0);
}

.what-we-do__content.is-visible .section-title-reveal::before {
  animation: title-light-mask 1.55s 0.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.what-we-do__content.is-visible .section-title-reveal::after {
  animation: title-complete 0.9s 1.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.what-we-do.is-animated .what-we-do__light span:nth-child(1) {
  animation: section-light-sweep 1s 0.05s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.what-we-do.is-animated .what-we-do__light span:nth-child(2) {
  animation: section-light-sweep 1.15s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.what-we-do.is-animated .what-we-do__light span:nth-child(3) {
  animation: section-light-sweep 1.05s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.what-we-do__tagline {
  margin: 0 0 clamp(30px, 3.5vw, 54px);
  color: rgba(242, 240, 234, 0.94);
  font-size: clamp(20px, 2.25vw, 40px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.08em;
  text-shadow: 0 12px 32px rgba(0, 0, 0, 0.54);
}

.what-we-do__tagline,
.what-we-do__text,
.what-we-do__button {
  opacity: 0;
  transform: translateY(18px);
}

.what-we-do__content.is-visible .what-we-do__tagline {
  animation: quiet-copy-in 0.85s 1.32s ease-out both;
}

.what-we-do__content.is-visible .what-we-do__text {
  animation: quiet-copy-in 0.9s 1.5s ease-out both;
}

.what-we-do__content.is-visible .what-we-do__button {
  animation: quiet-copy-in 0.9s 1.68s ease-out both;
}

.what-we-do__text {
  display: grid;
  gap: clamp(8px, 1vw, 14px);
  max-width: 900px;
  margin: 0 auto;
  color: rgba(242, 240, 234, 0.92);
  font-size: clamp(15px, 1.12vw, 21px);
  font-weight: 650;
  line-height: 1.72;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.64);
}

.what-we-do__text p {
  margin: 0;
}

.text-nowrap {
  white-space: nowrap;
}

.what-we-do__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  min-width: min(100%, 360px);
  min-height: clamp(58px, 5.2vw, 82px);
  margin-top: clamp(34px, 4.2vw, 64px);
  padding: 0 clamp(30px, 4vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.92);
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(16px, 1.35vw, 24px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.3s ease;
}

.what-we-do__button span:last-child {
  font-size: 1.35em;
  line-height: 0.7;
  transform: translateY(-0.02em);
}

.what-we-do__button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(10, 10, 10, 0.96);
  transform: translateY(-2px);
}

.index-section {
  padding: clamp(62px, 8vw, 118px) var(--pad);
  border-bottom: 1px solid var(--line);
}

.index-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(30px, 4.8vw, 70px);
}

.index-section__head,
.work-row,
.value-line,
.news-line,
.home-contact__image,
.home-contact__body,
.page-hero__inner,
.section__inner {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.index-section__head h2 {
  margin: 0;
  font-size: clamp(32px, 5.4vw, 78px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.plain-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  width: max-content;
}

.plain-link::after {
  width: clamp(56px, 7vw, 116px);
  height: 1px;
  background: currentColor;
  content: "";
  transform-origin: left;
  transition: transform 0.35s ease;
}

.plain-link:hover::after {
  transform: scaleX(0.68);
}

.plain-link--large {
  color: var(--ink);
  font-size: clamp(14px, 1.4vw, 20px);
}

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

.work-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.32fr);
  gap: clamp(24px, 5vw, 82px);
  padding: clamp(28px, 4.4vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.35s ease,
    padding-left 0.35s ease,
    padding-right 0.35s ease;
}

.work-row:hover {
  padding-right: clamp(10px, 1.4vw, 20px);
  padding-left: clamp(10px, 1.4vw, 20px);
  background: rgba(244, 240, 232, 0.035);
}

.work-row__main {
  display: block;
}

.work-row time,
.news-line time {
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-row h3 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5.8vw, 88px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  transition: transform 0.35s ease, color 0.35s ease;
}

.work-row:hover h3 {
  color: #fff;
  transform: translateX(4px);
}

.work-row p {
  max-width: 760px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(13px, 1.28vw, 17px);
}

.work-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.work-row li {
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-row__visual {
  align-self: stretch;
  min-height: 180px;
  margin: 0;
  overflow: hidden;
  background: var(--panel);
}

.work-row__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) contrast(1.04) brightness(0.96);
  transform: scale(1.04);
  transition:
    filter 0.5s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-row:hover .work-row__visual img {
  filter: grayscale(0.12) contrast(1.02) brightness(1.04);
  transform: scale(1.11) translate3d(var(--tilt-x, 0), var(--tilt-y, 0), 0);
}

.studio-values {
  background: #05070a;
}

.value-line {
  display: grid;
  grid-template-columns: minmax(84px, 0.12fr) minmax(0, 0.6fr) minmax(220px, 0.38fr);
  gap: clamp(18px, 4vw, 70px);
  align-items: baseline;
  padding: clamp(26px, 4vw, 52px) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color 0.35s ease, padding-left 0.35s ease;
}

.value-line:hover {
  padding-left: clamp(8px, 1.4vw, 20px);
  background: rgba(244, 240, 232, 0.035);
}

.value-line span {
  color: var(--dim);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 900;
  line-height: 0.9;
}

.value-line h3 {
  margin: 0;
  font-size: clamp(28px, 5.2vw, 78px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.value-line p {
  margin: 0;
  color: var(--muted);
}

.news-line {
  display: grid;
  grid-template-columns: minmax(130px, 0.16fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 62px);
  align-items: baseline;
  padding: clamp(18px, 2.5vw, 30px) 0;
  border-bottom: 1px solid var(--line);
  transition:
    background-color 0.35s ease,
    padding-left 0.35s ease,
    padding-right 0.35s ease;
}

.news-line:hover {
  padding-right: clamp(8px, 1.2vw, 18px);
  padding-left: clamp(8px, 1.2vw, 18px);
  background: rgba(244, 240, 232, 0.035);
}

.news-line span {
  font-size: clamp(18px, 2.4vw, 34px);
  font-weight: 800;
  line-height: 1.45;
}

.news-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.07), transparent 28%),
    #030405;
}

.news-page__head {
  display: grid;
  grid-template-columns: minmax(100px, 0.16fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 86px);
  align-items: start;
  padding-bottom: clamp(34px, 5vw, 72px);
}

.news-page__head span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.news-page__head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

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

.news-card {
  display: grid;
  grid-template-columns: minmax(110px, 0.16fr) minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 70px);
  align-items: start;
  padding: clamp(26px, 3.8vw, 54px) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition:
    padding-left 0.35s ease,
    padding-right 0.35s ease,
    background-color 0.35s ease;
}

.news-card:hover {
  padding-right: clamp(8px, 1.2vw, 18px);
  padding-left: clamp(8px, 1.2vw, 18px);
  background: rgba(244, 240, 232, 0.035);
}

.news-card time,
.news-card > span {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.news-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 3.8vw, 62px);
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.news-card p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

.news-card--static {
  cursor: default;
}

.news-card--static:hover {
  padding-right: 0;
  padding-left: 0;
  background: transparent;
}

.home-contact {
  display: grid;
  grid-template-columns: minmax(150px, 0.18fr) minmax(240px, 0.28fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
  padding: clamp(86px, 10vw, 146px) var(--pad);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-contact__label {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-contact__label::before {
  width: clamp(48px, 5vw, 88px);
  height: 1px;
  background: currentColor;
  content: "";
}

.home-contact__image {
  min-height: clamp(190px, 18vw, 310px);
  overflow: hidden;
  opacity: 0.7;
}

.home-contact__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2) brightness(0.43);
  animation: slow-zoom 16s ease-in-out infinite alternate;
}

.home-contact__body {
  display: grid;
  justify-items: start;
  gap: clamp(18px, 2.4vw, 30px);
  padding-top: 2px;
}

.home-contact h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(26px, 3.05vw, 52px);
  font-weight: 750;
  line-height: 1.36;
  letter-spacing: 0.02em;
}

.home-contact__body > p:not(.home-opening__kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.95;
  letter-spacing: 0.04em;
}

.home-contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 0;
  min-height: auto;
  margin-top: clamp(4px, 1vw, 12px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.home-contact__button::before {
  width: clamp(64px, 6vw, 112px);
  height: 1px;
  background: currentColor;
  content: "";
}

.home-contact__button span:last-child {
  font-size: 1.35em;
  line-height: 0.7;
  transform: translateY(-0.02em);
}

.home-contact__button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.page-hero {
  padding: clamp(124px, 15vw, 190px) var(--pad) clamp(54px, 8vw, 104px);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(64px, 14vw, 190px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.page-hero__lead {
  max-width: 760px;
  margin: clamp(28px, 4vw, 54px) 0 0;
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 20px);
  font-weight: 650;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.company-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(480px, 62svh, 760px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.5)),
    url("assets/images/what-we-do-background.png") center / cover no-repeat;
}

.company-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 49.9%, rgba(244, 240, 232, 0.05) 50%, transparent 50.1%),
    linear-gradient(180deg, transparent 0 49.9%, rgba(244, 240, 232, 0.035) 50%, transparent 50.1%);
  background-size: 22vw 22vw;
  content: "";
  opacity: 0.7;
  pointer-events: none;
}

.company-hero .page-hero__inner {
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(70px, 9vw, 130px) var(--pad);
  border-bottom: 1px solid var(--line);
}

.section__inner {
  width: min(100%, var(--max));
}

.intro__grid,
.contact-band__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: end;
}

.mega-title,
.contact-band h2 {
  margin: 0;
  font-size: clamp(42px, 8vw, 124px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.intro__grid p,
.contact-band p,
.company-list dd,
.form-note {
  color: var(--muted);
}

.company-statement__text {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 760px;
}

.company-statement__text p {
  margin: 0;
  color: rgba(242, 240, 234, 0.78);
  font-size: clamp(15px, 1.45vw, 20px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}

.company-section-head {
  display: grid;
  grid-template-columns: minmax(74px, 0.12fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 68px);
  align-items: baseline;
  padding-bottom: clamp(34px, 5vw, 74px);
}

.company-section-head span {
  color: var(--dim);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.company-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(38px, 7vw, 104px);
  font-weight: 850;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.company-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.company-service-grid article {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2vw, 30px);
  min-height: clamp(300px, 28vw, 420px);
  padding: clamp(26px, 3.6vw, 52px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.company-service-grid article > span {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.company-service-grid h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.4vw, 54px);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.company-service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

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

.company-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 64px);
  padding: clamp(22px, 3vw, 38px) 0;
  border-bottom: 1px solid var(--line);
}

.company-list dt,
.form label span {
  color: var(--dim);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.company-list dd {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 18px);
}

.contact-band {
  background: #05070a;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.58)),
    url("assets/images/what-we-do-background.png") center / cover no-repeat;
}

.contact-band__copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.contact-band__copy p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.3fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.contact-info {
  position: sticky;
  top: 104px;
  display: grid;
  gap: clamp(26px, 3vw, 42px);
}

.contact-info > span {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.contact-info dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-info div {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info dt {
  color: var(--dim);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-info dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.75;
  letter-spacing: 0.04em;
}

.contact-form-wrap {
  min-width: 0;
}

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

.form p {
  margin: 0;
}

.form label {
  display: grid;
  gap: 12px;
  padding: clamp(20px, 3vw, 34px);
  background: #060708;
}

.form__full {
  grid-column: 1 / -1;
}

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 36px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font: inherit;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(242, 240, 234, 0.28);
}

.form select {
  color: rgba(242, 240, 234, 0.72);
}

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

.form input[type="submit"],
.button {
  display: inline-flex;
  justify-content: center;
  min-height: 58px;
  padding: 16px 30px;
  color: #050505;
  background: rgba(242, 240, 234, 0.94);
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.form input[type="submit"]:hover,
.button:hover {
  color: var(--ink);
  background: transparent;
}

.form-note {
  margin-top: 20px;
  color: var(--dim);
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.site-footer {
  padding: clamp(58px, 7vw, 92px) var(--pad) clamp(34px, 4.5vw, 58px);
  border-top: 1px solid var(--line);
  background: #000;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  grid-template-areas:
    "brand address"
    "bottom bottom";
  gap: clamp(86px, 10vw, 142px) clamp(44px, 7vw, 118px);
  color: rgba(242, 240, 234, 0.96);
}

.site-footer__brand {
  grid-area: brand;
  align-self: start;
  font-size: clamp(28px, 3.8vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__address {
  grid-area: address;
  align-self: start;
  margin: 0;
  color: rgba(242, 240, 234, 0.72);
  font-style: normal;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.site-footer__address span {
  display: block;
}

.site-footer__bottom {
  grid-area: bottom;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: clamp(22px, 3vw, 36px);
  border-top: 1px solid var(--line);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(242, 240, 234, 0.62);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.site-footer__bottom a {
  color: rgba(242, 240, 234, 0.78);
  font-size: clamp(11px, 0.9vw, 13px);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.site-footer__bottom a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: minmax(0, 1fr) 44px;
  }

  .menu-toggle {
    position: relative;
    z-index: 41;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 12px 8px;
    color: var(--ink);
    background: transparent;
    border: 0;
  }

  body.menu-open .menu-toggle {
    color: var(--ink);
  }

  body.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(34deg);
  }

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

  body.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-34deg);
  }

  .menu-toggle span {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    display: grid;
    place-items: center;
    padding: 96px var(--pad) 54px;
    background: rgba(3, 4, 5, 0.96);
    opacity: 0;
    visibility: hidden;
    overflow-y: auto;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .site-nav ul {
    display: grid;
    gap: clamp(22px, 6vw, 34px);
    width: min(100%, 520px);
    text-align: center;
  }

  .site-nav a {
    display: block;
    max-width: 100%;
    color: rgba(242, 240, 234, 0.82);
    font-size: clamp(28px, 9vw, 46px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.04em;
    overflow-wrap: anywhere;
  }

  .home-opening__inner,
  .work-row,
  .work-row__main,
  .value-line,
  .news-line,
  .news-page__head,
  .news-card,
  .home-contact,
  .intro__grid,
  .contact-band__grid,
  .contact-layout,
  .company-section-head,
  .company-service-grid,
  .company-list div,
  .form {
    grid-template-columns: 1fr;
  }

  .home-opening__inner {
    grid-template-areas:
      "title"
      "kicker"
      "lead";
    min-height: calc(100svh - 188px);
    padding-left: 0;
  }

  .home-opening__title {
    gap: clamp(10px, 3.2vw, 18px);
    max-width: 100%;
  }

  .home-opening__title-hello {
    font-size: clamp(36px, 11.6vw, 58px);
    letter-spacing: 0.12em;
  }

  .home-opening__title-main {
    font-size: clamp(30px, 8.5vw, 44px);
    line-height: 1.03;
    letter-spacing: 0.015em;
  }

  .home-opening__kicker {
    gap: 14px;
    margin-top: 8px;
    font-size: clamp(11px, 3.1vw, 14px);
    letter-spacing: 0.12em;
  }

  .home-opening__kicker::before {
    width: 38px;
  }

  .home-opening__lead,
  .home-opening__lead p + p {
    font-size: clamp(12px, 3.4vw, 16px);
    letter-spacing: 0.04em;
  }

  .home-opening__statement {
    max-width: 18em;
    font-size: clamp(16px, 4.8vw, 23px);
  }

  .what-we-do {
    min-height: 82svh;
    padding-top: clamp(86px, 22vw, 128px);
    padding-bottom: clamp(86px, 22vw, 128px);
  }

  .what-we-do__media img {
    object-position: 57% center;
    filter: grayscale(1) contrast(1.12) brightness(0.34);
  }

  .what-we-do__content h2 {
    margin-bottom: clamp(34px, 9vw, 48px);
    font-size: clamp(32px, 9.6vw, 50px);
    letter-spacing: 0.025em;
  }

  .what-we-do__tagline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.28em 0.44em;
    max-width: 19em;
    margin-right: auto;
    margin-bottom: clamp(24px, 6.4vw, 32px);
    margin-left: auto;
    font-size: clamp(14px, 3.9vw, 18px);
    line-height: 1.45;
    letter-spacing: 0.025em;
  }

  .what-we-do__tagline span {
    white-space: nowrap;
  }

  .what-we-do__text {
    max-width: 27em;
    font-size: clamp(11px, 3.05vw, 14px);
    font-weight: 650;
    line-height: 1.82;
    letter-spacing: 0.012em;
  }

  .what-we-do__button {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 58px;
    margin-top: clamp(28px, 8vw, 42px);
    border-radius: 16px;
    font-size: clamp(15px, 4.1vw, 18px);
  }

  .work-row__visual {
    min-height: 230px;
  }

  .home-contact {
    gap: 24px;
    padding-top: clamp(62px, 16vw, 88px);
    padding-bottom: clamp(72px, 18vw, 104px);
  }

  .home-contact__label {
    gap: 14px;
    font-size: 11px;
  }

  .home-contact__label::before {
    width: 42px;
  }

  .home-contact__image {
    min-height: 190px;
    order: -1;
  }

  .home-contact h2 {
    max-width: 100%;
    font-size: clamp(21px, 5.4vw, 29px);
    line-height: 1.55;
    letter-spacing: 0.01em;
  }

  .home-contact__body > p:not(.home-opening__kicker) {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.85;
  }

  .home-contact__button {
    width: auto;
    min-height: auto;
    border-radius: 16px;
    font-size: 12px;
  }

  .home-contact__button::before {
    width: 54px;
  }

  .page-hero {
    padding-top: clamp(108px, 28vw, 142px);
  }

  .page-hero h1 {
    font-size: clamp(54px, 17vw, 88px);
    line-height: 0.9;
  }

  .page-hero__lead {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.8;
  }

  .company-hero {
    min-height: 58svh;
  }

  .company-statement__text p {
    font-size: clamp(13px, 3.5vw, 15px);
    line-height: 1.9;
  }

  .company-section-head {
    gap: 14px;
  }

  .company-section-head h2 {
    font-size: clamp(34px, 11vw, 58px);
  }

  .company-service-grid {
    border-left: 0;
  }

  .company-service-grid article {
    min-height: auto;
    padding-right: 0;
    padding-left: 0;
    border-right: 0;
  }

  .company-service-grid h3 {
    font-size: clamp(28px, 8vw, 42px);
  }

  .contact-info {
    position: static;
  }

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

  .news-page__head {
    gap: 16px;
  }

  .news-card {
    gap: 16px;
  }

  .news-card h2 {
    font-size: clamp(22px, 6.8vw, 34px);
    line-height: 1.2;
  }

  .news-card > span {
    display: none;
  }

  .site-footer {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "address"
      "bottom";
    gap: 42px;
  }

  .site-footer__brand {
    font-size: clamp(24px, 6.8vw, 34px);
    letter-spacing: 0.07em;
  }

  .site-footer__address {
    font-size: 13px;
    line-height: 1.55;
    letter-spacing: 0.05em;
  }

  .site-footer__bottom {
    display: grid;
    justify-items: start;
    gap: 14px;
    padding-top: 24px;
    text-align: left;
  }

  .site-footer__bottom p {
    font-size: 10px;
    line-height: 1.6;
  }

  .site-footer__bottom a {
    font-size: 11px;
    letter-spacing: 0.16em;
  }

  .index-section__head {
    display: grid;
  }

  .value-line h3,
  .work-row h3 {
    line-height: 0.96;
  }
}

@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-type-in {
  from {
    opacity: 0;
    transform: translate3d(-18px, 18px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-line-in {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(-22px, 18px, 0);
    clip-path: inset(0 100% 0 0);
  }
  55% {
    opacity: 0.78;
    filter: blur(1px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

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

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 22vw 22vw;
  }
}

@keyframes slow-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.16);
  }
}

@keyframes hero-video-drift-b {
  from {
    transform: scale(1.12) translate3d(1.4%, 1%, 0);
  }
  to {
    transform: scale(1.18) translate3d(-1.8%, -1.2%, 0);
  }
}

@keyframes loader-logo-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translate3d(-10px, 8px, 0);
  }
  35% {
    opacity: 0.42;
  }
  100% {
    opacity: 0.94;
    clip-path: inset(0 0 0 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes loader-logo-settle {
  from {
    opacity: 0.94;
    filter: drop-shadow(0 18px 40px rgba(255, 255, 255, 0.08));
  }
  to {
    opacity: 1;
    filter: drop-shadow(0 14px 30px rgba(255, 255, 255, 0.12));
  }
}

@keyframes loader-logo-sheen {
  0% {
    opacity: 0;
    transform: translateX(0) skewX(-22deg);
  }
  14% {
    opacity: 0.55;
  }
  100% {
    opacity: 0;
    transform: translateX(620%) skewX(-22deg);
  }
}

@keyframes loader-beam {
  0% {
    opacity: 0;
    transform: translate3d(-28%, -50%, 0) rotate(-18deg);
  }
  14% {
    opacity: 0.86;
  }
  100% {
    opacity: 0;
    transform: translate3d(62%, -50%, 0) rotate(-18deg);
  }
}

@keyframes section-light-sweep {
  0% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(-38vw, 0, 0);
  }
  18% {
    opacity: 0.72;
  }
  52% {
    opacity: 0.48;
  }
  100% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(170vw, 0, 0);
  }
}

@keyframes title-light-mask {
  0% {
    opacity: 0;
    background-position: 190% 0, 0 0;
    filter: drop-shadow(0 0 0 rgba(255, 255, 255, 0));
  }
  20% {
    opacity: 0.28;
  }
  52% {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.13));
  }
  100% {
    opacity: 0.18;
    background-position: -90% 0, 0 0;
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.06));
  }
}

@keyframes title-complete {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    filter: brightness(1.18);
  }
  68% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: brightness(1.08);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    filter: brightness(1);
  }
}

@keyframes quiet-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-loader__beam,
  .site-loader__logo::after {
    display: none;
  }

  .site-loader__logo {
    opacity: 1;
    clip-path: none;
  }

  .home-opening__kicker,
  .home-opening__title-hello,
  .home-opening__title-main,
  .home-opening__lead {
    opacity: 1;
    filter: none;
    transform: none;
    clip-path: none;
  }

  .what-we-do__light {
    display: none;
  }

  .section-title-reveal {
    color: rgba(242, 240, 234, 0.94);
  }

  .section-title-reveal::before,
  .section-title-reveal::after {
    display: none;
  }

  .what-we-do__tagline,
  .what-we-do__text,
  .what-we-do__button {
    opacity: 1;
    transform: none;
  }
}
