:root {
  --white: #ffffff;
  --ink: #10161b;
  --graphite: #111a20;
  --graphite-deep: #0d151a;
  --muted: #5f6970;
  --muted-dark: #9ca8ae;
  --line: #d9dfe3;
  --line-dark: rgba(255, 255, 255, 0.2);
  --soft: #f4f6f7;
  --accent: #0088a8;
  --accent-dark: #006f8a;
  --amber: #f2a900;
  --error: #b42318;
  --container: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
  --header-height: 82px;
  --radius: 4px;
  --ease: cubic-bezier(0.2, 0.75, 0.2, 1);
  --shadow: 0 24px 70px rgba(13, 21, 26, 0.1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.video-open {
  overflow: hidden;
}

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

button,
select {
  cursor: pointer;
}

button {
  padding: 0;
}

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

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

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--white);
  background: var(--accent);
}

/* One-time brand reveal. The page remains visible if JavaScript is unavailable. */

.site-loader {
  position: fixed;
  z-index: 1200;
  display: none;
  color: var(--white);
  background: var(--graphite-deep);
  opacity: 1;
  inset: 0;
  place-items: center;
  transition:
    opacity 420ms var(--ease),
    visibility 420ms var(--ease);
}

html.loader-pending,
html.loader-pending body {
  overflow: hidden;
}

html.loader-pending .site-loader,
html.loader-leaving .site-loader {
  display: grid;
}

html.loader-leaving .site-loader {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-loader-inner {
  display: grid;
  width: min(72vw, 360px);
  justify-items: center;
  gap: 18px;
}

.site-loader-mark {
  width: clamp(60px, 7vw, 82px);
  height: auto;
  fill: none;
  stroke: #70d7ea;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.site-loader-mark path {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: loader-draw 760ms 80ms var(--ease) forwards;
}

.site-loader-inner strong {
  opacity: 0;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 620;
  line-height: 1;
  letter-spacing: -0.045em;
  animation: loader-name 480ms 430ms var(--ease) forwards;
}

.site-loader-line {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.site-loader-line i {
  position: absolute;
  width: 45%;
  background: #70d7ea;
  content: "";
  inset: 0;
  transform: translateX(-110%);
  animation: loader-line 980ms 280ms var(--ease) forwards;
}

.site-loader-line i::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--white);
  transform: translate(50%, -50%);
}

html.loader-pending .site-header {
  opacity: 0;
  transform: translate3d(0, -14px, 0);
}

html.loader-pending .hero-media img,
html.loader-pending .hero-copy {
  opacity: 0;
  animation-play-state: paused;
}

@keyframes loader-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes loader-name {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loader-line {
  to { transform: translateX(230%); }
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 70%, white);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--graphite);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 250;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border: 0;
  appearance: none;
  background: transparent;
  pointer-events: none;
}

.scroll-progress::-webkit-progress-bar {
  background: transparent;
}

.scroll-progress::-webkit-progress-value {
  background: var(--accent);
}

.scroll-progress::-moz-progress-bar {
  background: var(--accent);
}

.section-shell,
.header-inner {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  position: relative;
  padding-block: clamp(92px, 9vw, 150px);
}

html.motion-ready [data-reveal] {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 620ms var(--ease) var(--reveal-delay, 0ms),
    filter 620ms var(--ease) var(--reveal-delay, 0ms),
    transform 620ms var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

html.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: clamp(40px, 8vw, 150px);
  align-items: end;
  margin-bottom: clamp(54px, 7vw, 96px);
}

.section-heading h2,
.company h2,
.process h2,
.brief h2,
.contact-band h2 {
  margin: 0;
  font-size: clamp(40px, 4.4vw, 68px);
  font-weight: 620;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.brief h2 {
  font-size: clamp(38px, 3.6vw, 58px);
}

.section-heading p,
.company-copy > p,
.process-overview > p,
.brief-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.65;
}

.button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 14px 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--accent);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.01em;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    color 240ms var(--ease),
    background-color 240ms var(--ease),
    border-color 240ms var(--ease),
    transform 240ms var(--ease),
    box-shadow 240ms var(--ease);
}

.button svg,
.text-link svg,
.contact-band .button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  box-shadow: 0 14px 34px rgba(0, 136, 168, 0.22);
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0);
}

.button-small {
  min-height: 46px;
  padding: 10px 18px;
  font-size: 14px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: var(--white);
  background: rgba(17, 26, 32, 0.22);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(17, 26, 32, 0.62);
  box-shadow: none;
}

.button-dark {
  border-color: var(--graphite);
  background: var(--graphite);
}

.button-dark:hover {
  border-color: var(--graphite-deep);
  background: var(--graphite-deep);
  box-shadow: 0 14px 34px rgba(13, 21, 26, 0.18);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 650;
}

.text-link svg {
  transition: transform 220ms var(--ease);
}

.text-link:hover svg {
  transform: translateX(5px);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 200;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0);
  transition:
    opacity 320ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    transform 360ms var(--ease);
  will-change: transform;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 14px 40px rgba(13, 21, 26, 0.09);
}

.site-header.header-hidden {
  transform: translate3d(0, calc(-100% - 4px), 0);
}

.site-header::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: clamp(130px, 17vw, 260px);
  height: 3px;
  content: "";
  background: var(--accent);
}

.header-inner {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto 1fr auto;
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 24px;
  font-weight: 720;
  line-height: 1;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.1;
}

.desktop-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.5vw, 46px);
}

.desktop-nav a {
  position: relative;
  padding-block: 12px;
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--accent-dark);
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--accent);
  transition:
    right 200ms var(--ease),
    left 200ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  right: 0;
  left: 0;
}

.desktop-nav.nav-enhanced a::after {
  display: none;
}

.nav-indicator {
  position: absolute;
  bottom: 3px;
  left: 0;
  width: var(--nav-width, 0px);
  height: 2px;
  opacity: 0;
  background: var(--accent);
  pointer-events: none;
  transform: translate3d(var(--nav-x, 0px), 0, 0);
  transform-origin: left center;
  transition:
    width 360ms var(--ease),
    opacity 160ms ease,
    transform 360ms var(--ease);
}

.nav-indicator.is-visible {
  opacity: 1;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
}

.header-phone svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 199;
  top: var(--header-height);
  right: 0;
  left: 0;
  height: calc(100svh - var(--header-height));
  overflow-y: auto;
  padding: 40px var(--gutter);
  background: var(--white);
}

.mobile-nav a:not(.button) {
  display: block;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.mobile-nav .button {
  width: 100%;
  margin-top: 34px;
}

/* Hero */

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - var(--header-height) - 48px));
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 17, 22, 0.9) 0%, rgba(10, 17, 22, 0.72) 42%, rgba(10, 17, 22, 0.2) 78%),
    linear-gradient(180deg, rgba(10, 17, 22, 0.16), rgba(10, 17, 22, 0.48));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-media-in 1100ms var(--ease) both;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--container));
  min-height: inherit;
  margin-inline: auto;
  align-items: center;
  padding: clamp(64px, 8vw, 120px) var(--gutter) clamp(96px, 10vw, 140px);
}

.hero-copy {
  width: min(62%, 880px);
  animation: hero-copy-in 800ms 120ms var(--ease) both;
}

.hero-eyebrow {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(50px, 4.2vw, 68px);
  font-weight: 640;
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.hero-copy > p:not(.hero-location):not(.hero-eyebrow) {
  max-width: 660px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero-actions .button {
  min-width: 236px;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 42px 0 0;
  font-size: 15px;
  font-weight: 540;
}

.hero-location svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.hero-horizon {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 30px;
  left: var(--gutter);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 22px;
  align-items: center;
}

.hero-horizon span {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.hero-horizon span::before {
  display: block;
  width: 17%;
  height: 3px;
  content: "";
  background: var(--white);
}

.hero-horizon b {
  color: var(--accent);
  font-size: 16px;
  font-weight: 650;
}

.hero-horizon small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}

/* Projects */

.projects {
  padding-top: clamp(64px, 6vw, 92px);
}

.projects-heading {
  margin-bottom: 42px;
}

.project-filters {
  display: flex;
  gap: clamp(24px, 4vw, 64px);
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.project-filters::-webkit-scrollbar {
  display: none;
}

.project-filters button {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 18px;
  border: 0;
  color: var(--muted);
  background: none;
  font-size: 15px;
  font-weight: 560;
}

.project-filters button::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--accent);
  transition:
    left 220ms var(--ease),
    right 220ms var(--ease);
}

.project-filters button:hover,
.project-filters button.active {
  color: var(--accent-dark);
}

.project-filters button.active::after {
  right: 0;
  left: 0;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.68fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
  margin-top: clamp(42px, 5vw, 74px);
}

.featured-media,
.process-photo,
.control-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #e9edef;
}

.featured-media {
  aspect-ratio: 16 / 10;
}

.featured-media img,
.project-card img,
.process-photo img,
.control-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    opacity 220ms ease,
    transform 600ms var(--ease);
}

.process-photo img {
  object-position: center top;
}

.control-media img {
  object-position: center;
}

.featured-media:hover img,
.project-card:hover img {
  transform: scale(1.018);
}

.featured-media img.is-switching,
.process-photo img.is-switching {
  opacity: 0.35;
}

.featured-media figcaption,
.process-photo figcaption,
.control-media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(13, 21, 26, 0.82);
  font-size: 11px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.featured-copy {
  padding-block: 16px;
}

.case-index,
.project-card-line {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--accent);
}

.case-index span,
.project-card-line b {
  font-size: 16px;
  font-weight: 560;
}

.case-index i,
.project-card-line i {
  position: relative;
  flex: 1;
  height: 1px;
  background: var(--accent);
}

.case-index i::after,
.project-card-line i::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
}

.case-type {
  margin: 42px 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.featured-copy h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 620;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.featured-copy > p:not(.case-type) {
  max-width: 460px;
  margin: 25px 0 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.text-link-muted {
  color: var(--muted);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: clamp(62px, 7vw, 104px);
}

.project-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  text-align: left;
  transition:
    border-color 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease);
}

.project-card::before {
  position: absolute;
  z-index: 3;
  top: 52px;
  right: 12px;
  padding: 8px 11px;
  content: "Смотреть объект →";
  opacity: 0;
  color: var(--white);
  background: rgba(13, 21, 26, 0.88);
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
  transform: translate3d(0, 8px, 0);
  transition: opacity 220ms ease, transform 220ms var(--ease);
  backdrop-filter: blur(8px);
}

.project-card:hover,
.project-card.active {
  border-color: var(--accent);
}

.project-card:hover,
.project-card:focus-visible {
  box-shadow: 0 20px 48px rgba(13, 21, 26, 0.11);
  transform: translate3d(0, -4px, 0);
}

.project-card:hover::before,
.project-card:focus-visible::before {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.project-card-line i::after {
  transition: transform 220ms var(--ease);
}

.project-card:hover .project-card-line i::after,
.project-card:focus-visible .project-card-line i::after {
  transform: translate3d(5px, 0, 0) scale(1.2);
}

.project-card[hidden] {
  display: none !important;
}

.project-card-line {
  margin-bottom: 18px;
}

.project-card img {
  aspect-ratio: 4 / 3;
}

.project-card strong,
.project-card small {
  display: block;
}

.project-card strong {
  margin: 18px 0 5px;
  font-size: 20px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.project-card small {
  min-height: 52px;
  padding-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section-kicker {
  display: block;
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-kicker-light {
  color: #70d7ea;
}

/* Verified media archive */

.media-section {
  color: var(--white);
  background: var(--graphite-deep);
}

.media-heading {
  align-items: end;
}

.media-heading h2 {
  color: var(--white);
}

.media-heading-copy {
  display: grid;
  gap: 22px;
  align-items: start;
  justify-items: start;
}

.media-heading-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.media-heading .text-link {
  color: #70d7ea;
}

.video-grid {
  display: grid;
  margin-top: clamp(42px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.34fr) minmax(320px, 0.66fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.video-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  background: #152127;
  text-align: left;
  transition:
    border-color 220ms ease,
    transform 280ms var(--ease),
    background-color 220ms ease;
}

.video-card-wide {
  grid-row: 1 / span 2;
}

.video-card:hover {
  border-color: rgba(112, 215, 234, 0.62);
  background: #182831;
  transform: translateY(-3px);
}

.video-card-media {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  aspect-ratio: 16 / 8.4;
  background: #0c1419;
}

.video-card:not(.video-card-wide) {
  grid-template-columns: minmax(190px, 0.9fr) minmax(210px, 1.1fr);
}

.video-card:not(.video-card-wide) .video-card-media {
  height: 100%;
  aspect-ratio: auto;
}

.video-card-media::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(8, 14, 18, 0.72));
}

.video-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 220ms ease;
}

.video-card:hover .video-card-media img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.video-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(58px, 6vw, 82px);
  height: clamp(58px, 6vw, 82px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(8, 14, 18, 0.62);
  place-items: center;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(8px);
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    transform 220ms var(--ease);
}

.video-card:not(.video-card-wide) .video-play {
  width: 54px;
  height: 54px;
}

.video-play svg {
  width: 31%;
  fill: currentColor;
}

.video-play::after {
  position: absolute;
  border: 1px solid rgba(112, 215, 234, 0.62);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  inset: -10px;
  animation: video-ring 2.8s ease-out infinite;
}

.video-card:hover .video-play {
  border-color: var(--accent);
  background: var(--accent);
  transform: translate(-50%, -50%) scale(1.06);
}

.video-source {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 16px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-card-copy {
  display: grid;
  padding: clamp(22px, 3vw, 38px);
  align-content: start;
}

.video-card-copy small {
  color: #70d7ea;
  font-size: 10px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-card-copy strong {
  margin-top: 11px;
  font-size: clamp(23px, 2.5vw, 40px);
  font-weight: 620;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.video-card:not(.video-card-wide) .video-card-copy strong {
  font-size: clamp(20px, 1.8vw, 28px);
}

.video-card-copy > span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.55;
}

.media-privacy {
  max-width: 760px;
  margin: 24px 0 0 auto;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

/* Competencies */

.audience-tabs {
  display: flex;
  gap: 42px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.audience-tabs::-webkit-scrollbar {
  display: none;
}

.audience-tabs button {
  position: relative;
  padding: 0 0 17px;
  border: 0;
  color: var(--muted);
  background: none;
  font-weight: 600;
}

.audience-tabs button::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 3px;
  content: "";
  background: var(--accent);
  transition:
    left 220ms var(--ease),
    right 220ms var(--ease);
}

.audience-tabs button.active {
  color: var(--ink);
}

.audience-tabs button.active::after {
  right: 0;
  left: 0;
}

.competency-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.competency-list li {
  min-height: 280px;
  padding: 24px clamp(20px, 2vw, 34px) 28px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.competency-list li:first-child {
  padding-left: 0;
}

.competency-list li:last-child {
  border-right: 0;
}

.competency-list li > span {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--accent);
  font-size: 16px;
}

.competency-list li > span::after {
  width: 36px;
  height: 1px;
  content: "";
  background: var(--accent);
}

.competency-list h3 {
  margin: 68px 0 14px;
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 620;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.competency-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* Company */

.company {
  overflow: hidden;
  color: var(--white);
  background: var(--graphite);
}

.company::before {
  position: absolute;
  top: 50%;
  right: -6vw;
  width: 46vw;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--accent), rgba(0, 136, 168, 0));
  transform: rotate(-18deg);
  transform-origin: right center;
}

.company .section-shell {
  position: relative;
  z-index: 1;
}

.company-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 10vw, 180px);
}

.company-copy > p {
  color: rgba(255, 255, 255, 0.72);
}

.company-copy ul {
  margin: 44px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.company-copy li {
  display: grid;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  color: rgba(255, 255, 255, 0.88);
}

.company-copy li span {
  color: var(--accent);
}

.company-copy li b {
  font-weight: inherit;
}

.company-facts {
  position: relative;
  display: grid;
  margin-top: clamp(62px, 7vw, 104px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.company-facts .company-fact {
  position: relative;
  display: grid;
  min-height: 220px;
  padding: 34px clamp(20px, 3vw, 42px);
  border-right: 1px solid var(--line-dark);
  color: var(--white);
  align-content: end;
  text-align: left;
  transition:
    background-color 240ms ease,
    transform 280ms var(--ease);
}

.company-facts .company-fact:first-child {
  padding-left: 0;
}

.company-facts .company-fact:last-child {
  border-right: 0;
  padding-right: 0;
}

.company-facts strong {
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 560;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.company-facts span {
  max-width: 210px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.5;
}

.company-facts small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

.company-facts .company-fact-status strong {
  font-size: clamp(31px, 3vw, 46px);
}

.company-fact-status:hover,
.company-fact-status:focus-visible {
  background: rgba(84, 211, 138, 0.055);
  transform: translate3d(0, -3px, 0);
}

.company-fact-status i {
  position: absolute;
  top: 34px;
  left: clamp(20px, 3vw, 42px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #54d38a;
  box-shadow: 0 0 0 8px rgba(84, 211, 138, 0.1);
}

.company-fact-status i::before,
.company-fact-status i::after {
  position: absolute;
  border: 1px solid rgba(84, 211, 138, 0.58);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  inset: -9px;
  animation: status-wave 2.6s var(--ease) infinite;
}

.company-fact-status i::after {
  animation-delay: 1.3s;
}

.company-fact-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 11px;
  opacity: 0.82;
  color: #70d7ea;
  font-size: 11px;
  transition: opacity 200ms ease, transform 220ms var(--ease);
}

.company-fact-action svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.company-fact-status:hover .company-fact-action,
.company-fact-status:focus-visible .company-fact-action {
  opacity: 1;
  transform: translate3d(4px, 0, 0);
}

.company-registry {
  position: relative;
  display: grid;
  margin-top: clamp(60px, 7vw, 100px);
  padding: clamp(30px, 4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.035);
  grid-template-columns: minmax(260px, 0.65fr) minmax(500px, 1.35fr);
  gap: clamp(42px, 7vw, 110px);
}

.company-registry-intro h3 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.company-registry-intro p {
  max-width: 390px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.text-link-light {
  color: #70d7ea;
}

.company-registry dl {
  margin: 0;
}

.company-registry dl > div {
  display: grid;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 0.58fr);
  gap: 20px;
}

.company-registry dl > div:first-child {
  padding-top: 0;
}

.company-registry dl > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-registry dt,
.company-registry dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.company-registry dt {
  color: rgba(255, 255, 255, 0.46);
}

.company-registry dd {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 560;
}

/* Process and control */

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
  gap: clamp(36px, 5vw, 74px);
  align-items: start;
}

.process-overview,
.control-panel {
  min-width: 0;
}

.process-overview > p {
  max-width: 680px;
  margin-top: 26px;
}

.process-steps {
  --process-progress: 0%;
  position: relative;
  display: grid;
  margin: 58px 0 38px;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.process-steps::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: var(--line);
}

.process-steps::before {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: var(--process-progress);
  height: 2px;
  content: "";
  background: var(--accent);
  transition: width 420ms var(--ease);
}

.process-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 96px;
  align-content: start;
  padding-right: 14px;
  color: var(--muted);
  transition: color 260ms ease;
}

.process-steps button {
  display: grid;
  width: 100%;
  min-height: 86px;
  align-content: start;
  padding: 0 14px 20px 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
}

.process-steps button:hover,
.process-steps button:focus-visible {
  color: var(--accent-dark);
}

.process-steps li::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid #909ba2;
  border-radius: 50%;
  content: "";
  background: var(--white);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 280ms var(--ease),
    transform 280ms var(--ease);
}

.process-steps li.active,
.process-steps li.complete {
  color: var(--accent);
}

.process-steps li.complete::after {
  border-color: var(--accent);
  background: var(--white);
}

.process-steps li.active::after {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(0, 136, 168, 0.12);
  transform: scale(1.12);
}

.process-steps span {
  font-size: 15px;
}

.process-steps strong {
  margin-top: 8px;
  color: currentColor;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.process-photo {
  aspect-ratio: 16 / 9;
}

.control-panel {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: clamp(28px, 3.4vw, 50px);
  color: var(--white);
  background:
    linear-gradient(rgba(112, 215, 234, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 215, 234, 0.035) 1px, transparent 1px),
    var(--graphite);
  background-size: 34px 34px, 34px 34px, auto;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.control-panel > * {
  position: relative;
  z-index: 1;
}

.control-panel-header {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
}

.control-panel-header p {
  margin: 0 0 6px;
  color: var(--muted-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.control-panel-header h3 {
  margin: 0;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.control-panel-header a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  white-space: nowrap;
}

.control-panel-header a span {
  margin-left: 12px;
  color: var(--accent);
  font-size: 22px;
}

.control-tabs {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  margin-top: 36px;
  border-bottom: 1px solid var(--line-dark);
  scrollbar-width: none;
}

.control-tabs::-webkit-scrollbar {
  display: none;
}

.control-tabs button {
  position: relative;
  flex: 0 0 auto;
  padding: 0 0 14px;
  border: 0;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  font-size: 12px;
}

.control-tabs button::after {
  position: absolute;
  right: 50%;
  bottom: -1px;
  left: 50%;
  height: 2px;
  content: "";
  background: var(--accent);
  transition:
    right 200ms var(--ease),
    left 200ms var(--ease);
}

.control-tabs button.active {
  color: var(--accent);
}

.control-tabs button.active::after {
  right: 0;
  left: 0;
}

.control-stage {
  min-height: 540px;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 180ms ease,
    transform 240ms var(--ease);
}

.control-stage.is-changing {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.control-stage.is-entering {
  animation: control-stage-in 420ms var(--ease) both;
}

.control-timeline {
  position: relative;
  display: flex;
  margin: 34px 7px 30px;
  justify-content: space-between;
}

.control-timeline::before {
  position: absolute;
  z-index: 0;
  top: 19px;
  right: 18px;
  left: 18px;
  height: 1px;
  content: "";
  background: var(--line-dark);
}

.control-timeline::after {
  position: absolute;
  z-index: 0;
  top: 19px;
  right: 18px;
  left: 18px;
  height: 2px;
  content: "";
  background: var(--accent);
  transform: scaleX(var(--control-progress-scale, 0.5));
  transform-origin: left center;
  transition: transform 420ms var(--ease);
}

.control-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: var(--graphite);
  font-size: 11px;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms var(--ease),
    transform 260ms var(--ease);
}

.control-timeline .done {
  border-color: var(--accent);
}

.control-timeline .active {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(0, 136, 168, 0.14);
  transform: scale(1.08);
}

.control-copy {
  min-height: 88px;
}

.control-copy h4 {
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.control-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.control-media {
  aspect-ratio: 16 / 9;
  height: auto;
  margin-top: 28px;
}

.control-checklist {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.control-checklist li {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 13px;
}

.control-stage.is-entering .control-checklist li {
  animation: control-row-in 420ms var(--ease) both;
}

.control-stage.is-entering .control-checklist li:nth-child(2) {
  animation-delay: 45ms;
}

.control-stage.is-entering .control-checklist li:nth-child(3) {
  animation-delay: 90ms;
}

.control-stage.is-entering .control-checklist li:nth-child(4) {
  animation-delay: 135ms;
}

.control-stage.is-entering .control-checklist li:nth-child(5) {
  animation-delay: 180ms;
}

.control-checklist b {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deliverables {
  margin-top: clamp(72px, 8vw, 120px);
}

.deliverables h3 {
  margin: 0 0 34px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.deliverables h3::after,
.brief-benefits h3::after,
.contact-band h2::after {
  display: block;
  width: 52px;
  height: 3px;
  margin-top: 16px;
  content: "";
  background: var(--accent);
}

.deliverables ol {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.deliverables li {
  display: grid;
  min-height: 132px;
  padding: 0 26px;
  border-right: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  align-content: start;
}

.deliverables li:first-child {
  padding-left: 0;
}

.deliverables li:last-child {
  border-right: 0;
}

.deliverables li > span {
  color: var(--accent);
  font-size: 17px;
}

.deliverables strong,
.deliverables small {
  grid-column: 2;
}

.deliverables strong {
  font-size: 18px;
  line-height: 1.3;
}

.deliverables small {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

/* Guided brief */

.brief-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(600px, 1.36fr);
  gap: clamp(54px, 7vw, 108px);
  align-items: start;
}

.brief-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
}

.brief-intro > p {
  margin-top: 26px;
}

.brief-benefits {
  margin-top: 64px;
}

.brief-benefits h3 {
  margin: 0 0 24px;
  font-size: 23px;
  font-weight: 620;
  letter-spacing: -0.025em;
}

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

.brief-benefits li {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 42px 1fr;
  gap: 8px;
}

.brief-benefits li > span {
  color: var(--accent);
}

.brief-benefits li div {
  display: grid;
  gap: 4px;
}

.brief-benefits strong {
  font-size: 15px;
}

.brief-benefits small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.brief-surface {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 22px 64px rgba(13, 21, 26, 0.06);
}

.project-brief,
.brief-result {
  padding: clamp(28px, 4vw, 58px);
}

.brief-form-head {
  display: flex;
  gap: 24px;
  align-items: start;
  justify-content: space-between;
}

.brief-form-head p {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.brief-form-head span {
  color: var(--muted);
  font-size: 12px;
}

.brief-progress {
  position: relative;
  display: grid;
  margin: 40px 0 52px;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.brief-progress::after {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 1px;
  content: "";
  background: #9ca5aa;
}

.brief-progress li {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding-right: 12px;
  color: var(--muted);
}

.brief-progress li::after {
  position: absolute;
  bottom: -21px;
  left: 0;
  width: 11px;
  height: 11px;
  border: 1px solid #8a959b;
  border-radius: 50%;
  content: "";
  background: var(--white);
}

.brief-progress li.active,
.brief-progress li.complete {
  color: var(--accent);
}

.brief-progress li.active::after,
.brief-progress li.complete::after {
  border-color: var(--accent);
  background: var(--accent);
}

.brief-progress li span {
  font-size: 16px;
}

.brief-progress li small {
  font-size: 11px;
  line-height: 1.3;
}

.brief-step fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.brief-step legend {
  width: 100%;
  margin-bottom: 24px;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 540;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.object-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.object-options label {
  position: relative;
  display: grid;
  min-height: 168px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  align-content: center;
  justify-items: center;
  text-align: center;
  transition:
    border-color 200ms ease,
    background-color 200ms ease,
    box-shadow 200ms ease;
}

.object-options label:hover,
.object-options label:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 4%, white);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.object-options label:has(input:checked)::after {
  position: absolute;
  top: 13px;
  right: 14px;
  width: 16px;
  height: 9px;
  border-bottom: 3px solid var(--accent);
  border-left: 3px solid var(--accent);
  content: "";
  transform: rotate(-45deg);
}

.object-options input,
.choice-list input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.object-options label:focus-within,
.choice-list label:focus-within {
  outline: 3px solid color-mix(in srgb, var(--accent) 55%, white);
  outline-offset: 3px;
}

.option-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 13px;
  color: var(--ink);
}

.option-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.object-options strong {
  max-width: 180px;
  font-size: 15px;
  font-weight: 580;
  line-height: 1.35;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field-grid label {
  display: grid;
  gap: 9px;
}

.field-grid label > span {
  font-size: 13px;
  font-weight: 600;
}

.field-grid label > span small {
  color: var(--muted);
  font-weight: 400;
}

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

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  font-size: 15px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field-grid input,
.field-grid select {
  height: 54px;
  padding-inline: 15px;
}

.field-grid textarea {
  min-height: 116px;
  padding: 14px 15px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 136, 168, 0.12);
}

.choice-list {
  display: grid;
  gap: 10px;
}

.choice-list label {
  position: relative;
  min-height: 54px;
  padding: 15px 18px 15px 52px;
  border: 1px solid var(--line);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.choice-list label::before {
  position: absolute;
  top: 50%;
  left: 18px;
  width: 17px;
  height: 17px;
  border: 1px solid #89949a;
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.choice-list label:has(input:checked) {
  border-color: var(--accent);
  background: color-mix(in srgb, var(--accent) 4%, white);
}

.choice-list label:has(input:checked)::before {
  border: 5px solid var(--accent);
}

.choice-list-check {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice-list-check label::before {
  border-radius: 0;
}

.choice-list-check label:has(input:checked)::before {
  border: 1px solid var(--accent);
  background: var(--accent);
}

.choice-list-check label:has(input:checked)::after {
  position: absolute;
  top: 50%;
  left: 22px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--white);
  border-left: 2px solid var(--white);
  content: "";
  transform: translateY(-67%) rotate(-45deg);
}

.field-help {
  margin: -12px 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.brief-error {
  margin: 20px 0 0;
  padding: 12px 14px;
  border-left: 3px solid var(--error);
  color: var(--error);
  background: #fff3f1;
  font-size: 13px;
}

.brief-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 28px;
}

.button-back {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.button-back:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--soft);
  box-shadow: none;
}

.brief-result .brief-form-head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.brief-result .brief-form-head > div {
  display: grid;
  gap: 5px;
}

.text-button {
  border: 0;
  color: var(--accent);
  background: none;
  font-size: 13px;
  font-weight: 600;
}

.brief-result dl {
  display: grid;
  margin: 28px 0 0;
  grid-template-columns: minmax(140px, 0.34fr) 1fr;
}

.brief-result dt,
.brief-result dd {
  margin: 0;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.brief-result dt {
  color: var(--muted);
}

.brief-result dd {
  font-weight: 600;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.result-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.brief-privacy {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.brief-privacy a,
.legal-content a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 45%, transparent);
  text-underline-offset: 3px;
}

.brief-privacy a:hover,
.legal-content a:hover {
  text-decoration-color: currentColor;
}

/* Partner, contact and footer */

.partner-strip {
  padding-block: clamp(24px, 2.8vw, 38px);
  border-top: 1px solid rgba(112, 215, 234, 0.16);
  color: var(--white);
  background: var(--graphite-deep);
}

.partner-strip-link {
  position: relative;
  display: grid;
  min-height: 78px;
  align-items: center;
  padding: 18px clamp(18px, 2.5vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: minmax(170px, 0.7fr) 1fr auto;
  gap: 24px;
  overflow: hidden;
  transition:
    border-color 240ms var(--ease),
    background-color 240ms var(--ease),
    transform 240ms var(--ease);
}

.partner-strip-link::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  border-radius: 0 3px 3px 0;
  content: "";
  background: var(--accent);
}

.partner-strip-link:hover,
.partner-strip-link:focus-visible {
  border-color: rgba(112, 215, 234, 0.5);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-2px);
}

.partner-strip-label {
  color: var(--muted-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.partner-strip-link strong {
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 580;
  letter-spacing: -0.035em;
}

.partner-strip-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #70d7ea;
  font-size: 13px;
  font-weight: 650;
}

.partner-strip-action svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-band {
  padding-block: clamp(66px, 7vw, 104px);
  color: var(--white);
  background: var(--graphite);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.25fr auto;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.contact-actions {
  display: grid;
  min-width: min(100%, 260px);
  gap: 10px;
}

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

.button-telegram {
  position: relative;
  min-height: 60px;
  justify-content: flex-start;
  gap: 13px;
  padding-inline: 18px;
  border-color: #37aee2;
  border-radius: 14px;
  background: linear-gradient(135deg, #229ed9 0%, #168bc3 100%);
  box-shadow: 0 16px 36px rgba(34, 158, 217, 0.25);
  overflow: hidden;
}

.button-telegram::before {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  right: -70px;
  top: -70px;
  transition: transform 320ms var(--ease);
}

.button-telegram:hover,
.button-telegram:focus-visible {
  border-color: #72cff4;
  background: linear-gradient(135deg, #2dace5 0%, #147eaf 100%);
  box-shadow: 0 18px 42px rgba(34, 158, 217, 0.38);
}

.button-telegram:hover::before,
.button-telegram:focus-visible::before {
  transform: scale(1.35);
}

.button-telegram .telegram-icon {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  place-items: center;
}

.button-telegram .telegram-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  stroke: none;
}

.button-telegram .telegram-arrow {
  position: relative;
  z-index: 1;
  margin-left: auto;
}

.contact-band h2 {
  font-size: clamp(34px, 3.6vw, 54px);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0;
}

.contact-details > * {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 13px;
  padding-inline: 24px;
  border-right: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  white-space: nowrap;
}

.contact-details > *:first-child {
  padding-left: 0;
}

.contact-details > *:last-child {
  border-right: 0;
}

.contact-details > .contact-address {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding: 16px 24px 0 0;
  border-top: 1px solid var(--line-dark);
  white-space: normal;
  line-height: 1.5;
}

.contact-details > .contact-route {
  grid-column: 1 / -1;
  min-height: auto;
  justify-self: start;
  padding: 12px 0 0;
  border: 0;
  color: #70d7ea;
  font-weight: 600;
  white-space: normal;
}

.contact-details > .contact-route:hover {
  color: var(--white);
}

.contact-details > .contact-route svg {
  width: 18px;
  height: 18px;
}

.contact-details svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding-block: 42px;
  border-top: 1px solid var(--line-dark);
  color: var(--white);
  background: var(--graphite-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 54px;
  align-items: center;
}

.brand-footer .brand-mark {
  stroke: var(--accent);
}

.brand-footer .brand-copy small {
  color: var(--muted-dark);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  justify-content: center;
}

.site-footer nav a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

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

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.footer-meta a {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
}

.footer-meta .footer-telegram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #70d7ea;
  font-size: 13px;
}

.footer-telegram svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.floating-brief {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: fixed;
  z-index: 180;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 38px);
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(112, 215, 234, 0.42);
  border-radius: 999px;
  opacity: 0;
  color: var(--white);
  background: rgba(13, 21, 26, 0.94);
  box-shadow: 0 18px 44px rgba(5, 10, 13, 0.24);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
  pointer-events: none;
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + 18px), 0) scale(0.96);
  transition:
    opacity 260ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 320ms var(--ease);
  backdrop-filter: blur(14px);
}

.floating-brief.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0) scale(1);
}

.floating-brief.is-context-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) + 18px), 0) scale(0.96);
}

.floating-brief:hover,
.floating-brief:focus-visible {
  border-color: var(--accent);
  background: var(--accent-dark);
}

.floating-brief i {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #54d38a;
  box-shadow: 0 0 0 6px rgba(84, 211, 138, 0.12);
}

.floating-brief i::after {
  position: absolute;
  border: 1px solid rgba(84, 211, 138, 0.65);
  border-radius: 50%;
  content: "";
  inset: -8px;
  animation: status-wave 2.6s var(--ease) infinite;
}

.floating-brief svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 220ms var(--ease);
}

.floating-brief-label-short {
  display: none;
}

.floating-brief:hover svg,
.floating-brief:focus-visible svg {
  transform: translate3d(5px, 0, 0);
}

/* Privacy-conscious video dialog */

.video-modal {
  position: fixed;
  z-index: 900;
  display: grid;
  padding: clamp(18px, 4vw, 54px);
  inset: 0;
  place-items: center;
}

.video-modal-backdrop {
  position: absolute;
  border: 0;
  background: rgba(5, 9, 12, 0.86);
  inset: 0;
  backdrop-filter: blur(12px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-height: calc(100svh - clamp(36px, 8vw, 108px));
  overflow-y: auto;
  padding: clamp(22px, 3vw, 42px);
  color: var(--white);
  background: var(--graphite-deep);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

.video-modal-head {
  display: flex;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.video-modal-head span {
  color: #70d7ea;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.video-modal-head h2 {
  max-width: 860px;
  margin: 8px 0 0;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.video-modal-close {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--white);
  background: transparent;
  place-items: center;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.video-modal-close:hover {
  border-color: var(--accent);
  background: var(--accent);
}

.video-modal-close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #05090c;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-note {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.55;
}

.video-modal-note a {
  color: #70d7ea;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.clipboard-fallback {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 16px;
  color: var(--white);
  background: var(--graphite);
  text-align: center;
}

/* Utility and legal pages */

.utility-page {
  background: var(--soft);
}

.utility-header-inner {
  grid-template-columns: auto 1fr;
}

.utility-back {
  justify-self: end;
}

.utility-main {
  min-height: calc(100svh - var(--header-height));
}

.utility-hero {
  padding-block: clamp(72px, 8vw, 126px);
  color: var(--white);
  background: var(--graphite);
}

.utility-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.42fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
}

.utility-hero h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(46px, 6vw, 88px);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.utility-hero p {
  margin: 0;
  color: var(--muted-dark);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
}

.utility-code {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.legal-section {
  padding-block: clamp(70px, 8vw, 120px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(56px, 9vw, 150px);
  align-items: start;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  display: grid;
  gap: 22px;
}

.legal-aside strong {
  font-size: 16px;
}

.legal-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.legal-content {
  width: min(100%, 920px);
  color: #29333a;
}

.legal-content section {
  padding-block: 34px;
  border-top: 1px solid var(--line);
}

.legal-content section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-content h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 28px 0 12px;
  color: var(--ink);
  font-size: 18px;
}

.legal-content p,
.legal-content li {
  font-size: 16px;
  line-height: 1.75;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0;
  padding-left: 21px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-fact {
  padding: 22px 0 22px 22px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
}

.error-hero {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  align-items: center;
  padding-block: 70px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(13, 21, 26, 0.98), rgba(13, 21, 26, 0.78)),
    url("./assets-v2/real-hero-country-house.webp") center / cover;
}

.error-copy {
  width: min(100%, 820px);
}

.error-code {
  display: block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: clamp(76px, 13vw, 180px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.error-copy h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 620;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.error-copy p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.5vw, 21px);
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

@keyframes hero-media-in {
  from {
    opacity: 0.35;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes status-wave {
  0% {
    opacity: 0.62;
    transform: scale(0.58);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

@keyframes video-ring {
  0%,
  38% {
    opacity: 0.48;
    transform: scale(0.86);
  }
  82%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes control-stage-in {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes control-row-in {
  from {
    opacity: 0;
    transform: translate3d(10px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* Responsive */

@media (max-width: 1280px) {
  :root {
    --header-height: 76px;
  }

  .header-inner {
    gap: 28px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .desktop-nav a {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero-copy {
    width: 64%;
  }

  .project-list {
    gap: 16px;
  }

  .competency-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .competency-list li {
    border-bottom: 1px solid var(--line);
  }

  .competency-list li:nth-child(3) {
    border-right: 0;
  }

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

  .process-photo {
    max-height: 530px;
  }

  .contact-grid {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .contact-actions {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    gap: 12px;
  }

  .menu-toggle {
    display: block;
  }

  .hero-copy {
    width: 72%;
  }

  .project-showcase {
    grid-template-columns: minmax(0, 1.32fr) minmax(250px, 0.68fr);
  }

  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .video-card-wide {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .video-card:not(.video-card-wide) {
    grid-template-columns: 1fr;
  }

  .video-card:not(.video-card-wide) .video-card-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .company-grid,
  .brief-grid {
    grid-template-columns: 1fr;
  }

  .company-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brief-intro {
    position: static;
  }

  .brief-benefits ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
    gap: 0 30px;
  }

  .brief-benefits li:nth-child(-n + 2) {
    border-top: 1px solid var(--line);
  }

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

  .contact-details > * {
    padding: 13px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .contact-details > .contact-address {
    grid-column: 1;
    margin-top: 0;
    border-top: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
    --gutter: 20px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .section-heading h2,
  .company h2,
  .process h2,
  .brief h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand {
    gap: 9px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-copy strong {
    font-size: 21px;
  }

  .brand-copy small {
    display: none;
  }

  .header-phone span {
    display: none;
  }

  .header-phone {
    width: 44px;
    height: 44px;
    justify-content: center;
  }

  .hero {
    display: grid;
    min-height: auto;
    grid-template-rows: auto auto;
  }

  .hero-media {
    position: relative;
    height: min(62vh, 560px);
    min-height: 390px;
    border-top: 4px solid var(--accent);
    grid-row: 2;
  }

  .hero-media img {
    object-position: 45% center;
  }

  .hero-media::after {
    background: linear-gradient(180deg, transparent 55%, rgba(10, 17, 22, 0.26));
  }

  .hero-inner {
    min-height: auto;
    align-items: start;
    padding: 64px var(--gutter) 48px;
    grid-row: 1;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 12vw, 64px);
    line-height: 1.04;
  }

  .hero-eyebrow {
    margin-bottom: 18px;
  }

  .hero-copy > p:not(.hero-location):not(.hero-eyebrow) {
    margin-top: 24px;
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
    margin-top: 32px;
  }

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

  .hero-location {
    margin-top: 30px;
  }

  .hero-horizon {
    display: none;
  }

  .projects {
    padding-top: 70px;
  }

  .project-filters {
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
  }

  .project-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured-copy {
    padding: 0;
  }

  .case-type {
    margin-top: 24px;
  }

  .project-list {
    display: flex;
    width: calc(100% + var(--gutter));
    gap: 16px;
    overflow-x: auto;
    margin-top: 56px;
    padding-right: var(--gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .project-list::-webkit-scrollbar {
    display: none;
  }

  .project-card {
    min-width: min(82vw, 360px);
    flex: 0 0 min(82vw, 360px);
    scroll-snap-align: start;
  }

  .project-card::before {
    display: none;
  }

  .video-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .video-card-wide {
    grid-column: auto;
  }

  .video-card,
  .video-card:not(.video-card-wide) {
    grid-template-columns: 1fr;
  }

  .video-card-media,
  .video-card:not(.video-card-wide) .video-card-media {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .video-card-copy {
    padding: 24px;
  }

  .video-card-copy strong,
  .video-card:not(.video-card-wide) .video-card-copy strong {
    font-size: 27px;
  }

  .media-privacy {
    margin-left: 0;
    text-align: left;
  }

  .audience-tabs {
    gap: 26px;
    overflow-x: auto;
  }

  .audience-tabs button {
    flex: 0 0 auto;
  }

  .competency-list {
    grid-template-columns: 1fr;
  }

  .competency-list li,
  .competency-list li:first-child {
    display: grid;
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    grid-template-columns: 58px 1fr;
    gap: 12px;
  }

  .competency-list h3 {
    margin: 0 0 8px;
  }

  .company-grid {
    gap: 44px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-facts .company-fact,
  .company-facts .company-fact:first-child,
  .company-facts .company-fact:nth-child(2),
  .company-facts .company-fact:nth-child(3),
  .company-facts .company-fact:last-child {
    min-height: 160px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .company-facts .company-fact:last-child {
    border-bottom: 0;
  }

  .company-fact-status i {
    top: 28px;
    left: auto;
    right: 8px;
  }

  .process-steps {
    gap: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .process-steps::-webkit-scrollbar {
    display: none;
  }

  .process-steps li {
    min-width: 106px;
  }

  .control-panel {
    margin-inline: calc(var(--gutter) * -1);
    padding: 30px var(--gutter) 38px;
  }

  .control-stage {
    min-height: 0;
  }

  .control-panel-header {
    display: grid;
  }

  .control-tabs {
    width: calc(100% + var(--gutter));
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
  }

  .deliverables ol {
    grid-template-columns: 1fr;
  }

  .deliverables li,
  .deliverables li:first-child {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brief-benefits ul {
    grid-template-columns: 1fr;
  }

  .brief-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .brief-intro {
    display: contents;
  }

  .brief-intro h2 {
    order: 1;
  }

  .brief-intro > p {
    order: 2;
    margin-top: -28px;
  }

  .brief-surface {
    order: 3;
  }

  .brief-benefits {
    order: 4;
    margin-top: 0;
  }

  .brief-benefits li:first-child {
    border-top: 1px solid var(--line);
  }

  .brief-surface {
    margin-inline: calc(var(--gutter) * -1);
    border-right: 0;
    border-left: 0;
  }

  .brief-form-head {
    display: grid;
  }

  .brief-progress {
    gap: 3px;
  }

  .brief-progress li {
    padding-right: 2px;
  }

  .brief-progress li small {
    font-size: 9px;
  }

  .object-options {
    gap: 10px;
  }

  .object-options label {
    min-height: 158px;
    padding: 20px 10px;
  }

  .choice-list-check,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-wide {
    grid-column: auto;
  }

  .brief-actions {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .brief-actions .button:not(.button-back) {
    width: 100%;
  }

  .result-actions {
    display: grid;
  }

  .brief-result dl {
    grid-template-columns: 1fr;
  }

  .brief-result dt {
    padding-bottom: 4px;
    border-bottom: 0;
  }

  .brief-result dd {
    padding-top: 0;
  }

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

  .contact-actions {
    grid-column: 1;
    width: min(100%, 360px);
  }

  .partner-strip-link {
    grid-template-columns: 1fr auto;
    gap: 8px 24px;
  }

  .partner-strip-label {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: start;
  }

  .footer-meta {
    justify-items: start;
  }

  .video-modal {
    padding: 0;
    place-items: stretch;
  }

  .video-modal-panel {
    width: 100%;
    max-height: 100svh;
    padding: 24px var(--gutter) 30px;
    align-self: end;
  }

  .video-modal-head {
    gap: 18px;
  }

  .video-modal-close {
    width: 42px;
    height: 42px;
  }

  .utility-header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .utility-header-inner .brand-copy small {
    display: none;
  }

  .utility-back {
    min-height: 44px;
    padding-inline: 15px;
  }

  .utility-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .utility-hero-grid {
    gap: 34px;
  }

  .utility-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .legal-layout {
    gap: 44px;
  }

  .legal-aside {
    position: static;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
  }

  .legal-content section {
    padding-block: 28px;
  }

  .error-actions {
    display: grid;
  }
}

@media (max-width: 430px) {
  .header-actions {
    gap: 6px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-copy > p:not(.hero-location):not(.hero-eyebrow) {
    font-size: 17px;
  }

  .featured-media {
    aspect-ratio: 4 / 3;
  }

  .control-timeline span {
    width: 32px;
    height: 32px;
  }

  .control-timeline::before,
  .control-timeline::after {
    top: 16px;
  }

  .object-options label {
    min-height: 148px;
  }

  .object-options strong {
    font-size: 13px;
  }

  .brief-progress li small {
    display: none;
  }

  .brief-progress {
    margin-bottom: 38px;
  }

  .partner-strip-link {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .partner-strip-action {
    margin-top: 7px;
  }

  .brief-actions {
    grid-template-columns: 1fr;
  }

  .button-back {
    order: 2;
  }

  .floating-brief {
    right: 16px;
    bottom: 16px;
    min-height: 52px;
    padding: 11px 15px;
  }

  .floating-brief-label-full {
    display: none;
  }

  .floating-brief-label-short {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.loader-pending,
  html.loader-pending body {
    overflow: auto;
  }

  .site-loader {
    display: none !important;
  }

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

  .company-fact-status i::before,
  .company-fact-status i::after,
  .floating-brief i::after,
  .video-play::after {
    opacity: 0.32;
    animation: none !important;
    transform: scale(1);
  }
}

@media print {
  .site-header,
  .scroll-progress,
  .floating-brief,
  .hero-actions,
  .project-filters,
  .brief-actions,
  .contact-band .button,
  .site-footer {
    display: none !important;
  }

  .hero {
    min-height: auto;
    color: var(--ink);
    background: var(--white);
  }

  .hero-media {
    position: relative;
    height: 360px;
  }

  .hero-copy {
    width: 100%;
    color: var(--ink);
  }
}
