@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/BodoniModa-Variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Bodoni Moda";
  src: url("/assets/fonts/BodoniModa-Italic-Variable.ttf") format("truetype-variations");
  font-style: italic;
  font-weight: 400 900;
  font-display: swap;
}

:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --paper: #efeee9;
  --paper-deep: #dfddd5;
  --white: #fff;
  --gray: #9a9a96;
  --line-dark: rgba(255, 255, 255, 0.17);
  --line-light: rgba(5, 5, 5, 0.18);
  --serif: "Bodoni Moda", Didot, "Bodoni MT", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --header-h: 94px;
  --shell: min(1560px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

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

:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

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

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    repeating-radial-gradient(circle at 17% 31%, transparent 0, rgba(255, 255, 255, 0.8) 0.55px, transparent 1px, transparent 3px),
    repeating-radial-gradient(circle at 73% 67%, transparent 0, rgba(255, 255, 255, 0.45) 0.45px, transparent 1px, transparent 4px);
  background-size: 5px 5px, 7px 7px;
  mix-blend-mode: soft-light;
}

.cursor-halo {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 850;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.065), transparent 68%);
  transition: opacity 300ms ease;
}

.cursor-halo.is-visible {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 800;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  transition: background 350ms ease, border-color 350ms ease, transform 350ms var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
}

.brand {
  display: block;
}

.brand-crop {
  width: 184px;
  height: auto;
}

.brand-crop img {
  width: 184px;
  height: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
}

.desktop-nav a,
.header-cta,
.menu-button {
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.7);
  transition: color 180ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--white);
  transition: transform 280ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--white);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 43px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 0 16px;
  border: 1px solid var(--line-dark);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta i {
  font-style: normal;
}

.header-cta:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.menu-button {
  display: none;
  justify-self: end;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button i,
.menu-button i::before {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}

.menu-button i {
  position: relative;
}

.menu-button i::before {
  content: "";
  position: absolute;
  top: -7px;
}

.menu-button[aria-expanded="true"] i {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] i::before {
  top: 0;
  transform: rotate(90deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 790;
  padding: 48px 32px 36px;
  background: var(--black);
}

.mobile-menu nav {
  border-top: 1px solid var(--line-dark);
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1.6rem, 7vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.mobile-menu nav span {
  color: var(--gray);
  font-family: var(--serif);
  font-size: 0.9rem;
  font-style: italic;
  letter-spacing: 0;
}

.mobile-contact {
  display: grid;
  gap: 8px;
  margin-top: 38px;
}

.mobile-contact a {
  font-family: var(--serif);
  font-size: 1.3rem;
  text-decoration: none;
}

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

.privacy-header-inner .header-cta {
  grid-column: 2;
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.72) 30%, rgba(5, 5, 5, 0.24) 56%, rgba(5, 5, 5, 0.62) 82%, rgba(5, 5, 5, 0.9) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.5), transparent 35%, rgba(5, 5, 5, 0.7));
}

.hero-drawing {
  position: absolute;
  inset: -8% -8% -10% 34%;
  z-index: 1;
  opacity: 0.16;
  transform: rotate(-4deg) scale(1.14);
}

.hero-drawing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) invert(1) contrast(1.45);
  mix-blend-mode: screen;
}

.smoke-field {
  position: absolute;
  inset: -7% -5% -9%;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.smoke-canvas {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.94;
  transform: translateZ(0);
}

.smoke-canvas.is-fallback {
  opacity: 0.62;
  background:
    radial-gradient(ellipse at 52% 42%, rgba(255, 255, 255, 0.13), transparent 24%),
    radial-gradient(ellipse at 42% 58%, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(ellipse at 65% 66%, rgba(255, 255, 255, 0.07), transparent 28%);
}

@keyframes smokeDriftA {
  from { transform: translate3d(-2%, -2%, 0) rotate(-5deg) scale(0.95); opacity: 0.18; }
  to { transform: translate3d(-13%, 9%, 0) rotate(6deg) scale(1.1); opacity: 0.34; }
}

@keyframes smokeDriftB {
  from { transform: translate3d(5%, 2%, 0) rotate(4deg) scale(0.95); opacity: 0.22; }
  to { transform: translate3d(-11%, -8%, 0) rotate(-7deg) scale(1.12); opacity: 0.36; }
}

.hero-frame {
  position: relative;
  z-index: 5;
  width: var(--shell);
  min-height: calc(100svh - 58px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-h) + 62px) clamp(32px, 5vw, 82px) 70px;
}

.kicker {
  margin: 0 0 clamp(46px, 7vh, 92px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: clamp(8px, 2vw, 34px);
  font-size: clamp(7rem, 14.8vw, 16rem);
  font-weight: 700;
  letter-spacing: -0.095em;
  line-height: 0.72;
  white-space: nowrap;
}

.hero h1 i {
  align-self: center;
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--serif);
  font-size: 0.45em;
  font-weight: 400;
  line-height: 1;
}

.hero-copy {
  max-width: 920px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-top: clamp(58px, 9vh, 100px);
}

.hero-copy > p {
  margin: 0;
  font-size: clamp(1.6rem, 3.1vw, 3.55rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.hero-copy em,
.manifesto h2 em,
.section-intro h2 em,
.projects-head h2 em,
.method h2 em,
.credentials-head h2 em,
.contact-head h2 em {
  font-family: var(--serif);
  font-weight: 400;
}

.round-link {
  flex: 0 0 112px;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 280ms ease, color 280ms ease, transform 280ms var(--ease);
}

.round-link i {
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
}

.round-link:hover {
  transform: rotate(-8deg) scale(1.05);
  background: var(--white);
  color: var(--black);
}

.hero-ticker {
  position: relative;
  z-index: 6;
  height: 58px;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--black);
}

.hero-ticker-track {
  width: max-content;
  height: 100%;
  display: flex;
  align-items: center;
  animation: ticker 24s linear infinite;
  will-change: transform;
}

.hero-ticker-set {
  flex: 0 0 100vw;
  width: 100vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  padding-inline: clamp(24px, 5vw, 90px);
}

.hero-ticker span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero-ticker i {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.42rem;
  font-style: normal;
}

@keyframes ticker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-100vw, 0, 0); }
}

.light-section {
  background: var(--paper);
  color: var(--black);
}

.dark-section {
  background: var(--black);
  color: var(--white);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section-code {
  display: flex;
  align-items: baseline;
  gap: 18px;
  color: rgba(5, 5, 5, 0.56);
}

.section-code span {
  font-family: var(--serif);
  font-size: 1.1rem;
}

.section-code p {
  margin: 0;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-code.inverse {
  color: rgba(255, 255, 255, 0.48);
}

.micro {
  margin: 0 0 28px;
  color: rgba(5, 5, 5, 0.53);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.micro.inverse {
  color: rgba(255, 255, 255, 0.48);
}

.manifesto {
  padding: clamp(110px, 13vw, 210px) 0;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 2.2fr) minmax(260px, 0.8fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.manifesto h2,
.section-intro h2,
.projects-head h2,
.method h2,
.credentials-head h2,
.contact-head h2 {
  margin: 0;
  font-size: clamp(3.1rem, 6.8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.91;
}

.manifesto-note {
  align-self: end;
  padding-top: 26px;
  border-top: 1px solid var(--line-light);
}

.manifesto-note p {
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 0.93rem;
  line-height: 1.72;
}

.expertise {
  padding: clamp(110px, 12vw, 190px) 0;
  border-top: 1px solid var(--line-dark);
}

.section-intro,
.projects-head,
.credentials-head {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.75fr) minmax(240px, 0.55fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  margin-bottom: clamp(70px, 9vw, 140px);
}

.section-intro > div:last-child,
.projects-head > div:nth-child(2),
.credentials-head > div:last-child {
  grid-column: 2;
}

.primary-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.service-panel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px clamp(28px, 4vw, 64px) 54px;
}

.service-panel + .service-panel {
  border-left: 1px solid var(--line-dark);
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(101%);
  background: var(--paper);
  transition: transform 650ms var(--ease);
}

.service-panel:hover::before {
  transform: translateY(0);
}

.service-panel:hover {
  color: var(--black);
}

.service-top,
.service-content,
.service-mark {
  position: relative;
  z-index: 2;
}

.service-top {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.service-top i {
  font-size: 1rem;
  font-style: normal;
}

.service-panel:hover .service-top {
  color: rgba(5, 5, 5, 0.54);
}

.service-mark {
  align-self: flex-end;
  color: transparent;
  font-family: var(--serif);
  font-size: clamp(7rem, 13vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.7;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  transition: color 400ms ease, -webkit-text-stroke 400ms ease, transform 700ms var(--ease);
}

.service-panel:hover .service-mark {
  color: rgba(5, 5, 5, 0.06);
  -webkit-text-stroke-color: rgba(5, 5, 5, 0.22);
  transform: translateX(-10px);
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: 38px;
  align-items: end;
}

.service-content h3 {
  margin: 0;
  font-size: clamp(2rem, 3.8vw, 4.2rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  line-height: 1.7;
  transition: color 250ms ease;
}

.service-panel:hover .service-content p {
  color: rgba(5, 5, 5, 0.62);
}

.secondary-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-dark);
}

.secondary-band > div {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  gap: 0;
  padding: 34px clamp(28px, 4vw, 64px);
}

.secondary-band > div + div {
  border-left: 1px solid var(--line-dark);
}

.secondary-band span {
  color: var(--gray);
  font-family: var(--serif);
  font-size: 0.9rem;
}

.secondary-band h3 {
  margin: auto 0 20px;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.secondary-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.83rem;
  line-height: 1.65;
}

.projects {
  padding: clamp(110px, 12vw, 190px) 0;
}

.projects-lead {
  align-self: end;
  margin: 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-light);
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.86rem;
  line-height: 1.68;
}

.project-stack {
  display: grid;
  gap: 24px;
}

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

.project-wide {
  min-height: min(70vw, 820px);
}

.reference-carousel {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  touch-action: pan-y;
}

.reference-viewport {
  position: relative;
  min-height: min(70vw, 820px);
  overflow: hidden;
}

.reference-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(5%, 0, 0) scale(0.995);
  transition:
    opacity 700ms ease,
    transform 900ms var(--ease);
}

.reference-carousel.is-reversing .reference-slide {
  transform: translate3d(-5%, 0, 0) scale(0.995);
}

.reference-slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.reference-nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: grid;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.52);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(10px);
  place-items: center;
  transition: background 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.reference-nav:hover,
.reference-nav:focus-visible {
  background: var(--white);
  color: var(--black);
  outline: 0;
  transform: translateY(-50%) scale(1.06);
}

.reference-nav--prev {
  left: 24px;
}

.reference-nav--next {
  right: 24px;
}

.reference-nav span {
  font-size: 1.25rem;
  line-height: 1;
}

.reference-counter {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.58);
  font-family: var(--serif);
  font-size: 0.78rem;
  backdrop-filter: blur(10px);
}

.reference-counter i {
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.project-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) invert(1) contrast(1.22);
  opacity: 0.62;
  mix-blend-mode: screen;
  transition: transform 1.3s var(--ease), opacity 600ms ease;
}

.project-ero-feature .project-media img {
  object-position: center 48%;
  opacity: 0.68;
}

.project-sce .project-media img {
  object-position: center bottom;
}

.project-card:hover .project-media img {
  transform: scale(1.045);
  opacity: 0.8;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.12), rgba(5, 5, 5, 0.28) 38%, rgba(5, 5, 5, 0.93)),
    linear-gradient(90deg, rgba(5, 5, 5, 0.36), transparent 70%);
}

.project-number {
  position: absolute;
  top: 28px;
  right: 32px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 1.1rem;
}

.project-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(200px, 0.6fr) minmax(0, 1.2fr) auto;
  gap: 38px;
  align-items: end;
  padding: 42px;
  border-top: 1px solid var(--line-dark);
}

.project-info > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.project-info h3 {
  margin: 0;
  font-size: clamp(2.3rem, 4.7vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.project-info > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.project-info > div span {
  padding: 8px 11px;
  border: 1px solid var(--line-dark);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reference-map {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(390px, 0.75fr);
  min-height: 820px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.16);
  background: var(--black);
  color: var(--white);
}

.map-stage {
  position: relative;
  min-width: 0;
  min-height: 820px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 42% 43%, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(140deg, #111 0%, #050505 54%, #0b0b0b 100%);
}

.map-stage::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 46px 46px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  pointer-events: none;
}

.map-heading {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 38px 0;
}

.map-heading p {
  margin: 0;
}

.map-heading > p:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.map-heading > p:last-child span {
  padding: 0 5px;
  color: rgba(255, 255, 255, 0.22);
}

.map-graphic {
  position: absolute;
  top: 17%;
  left: 4%;
  width: 92%;
  aspect-ratio: 1.8;
}

.map-graphic > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.92;
}

.map-point {
  position: absolute;
  top: var(--y);
  left: var(--x);
  z-index: 2;
  transform: translate(-50%, -50%);
}

.map-point--plzen {
  --x: 23.25%;
  --y: 52.18%;
}

.map-point--neratovice {
  --x: 37.9%;
  --y: 33.46%;
}

.map-point--kostelec {
  --x: 38.78%;
  --y: 34.64%;
}

.map-point--jirny {
  --x: 40.27%;
  --y: 38.62%;
}

.map-point--kolin {
  --x: 46.7%;
  --y: 41.77%;
}

.map-point--humpolec {
  --x: 48.74%;
  --y: 59.25%;
}

.map-point--pardubice {
  --x: 53.12%;
  --y: 42.2%;
}

.map-dot {
  position: relative;
  display: grid;
  width: 8px;
  height: 8px;
  border: 1px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55),
    0 0 0 5px rgba(255, 255, 255, 0.08);
  place-items: center;
}

.map-dot::after {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  animation: map-pulse 2.8s ease-out infinite;
}

.map-label {
  position: absolute;
  top: 50%;
  left: 20px;
  width: max-content;
  padding: 5px 7px;
  background: rgba(5, 5, 5, 0.78);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
  transform: translateY(-50%);
}

.map-point--neratovice .map-label {
  top: 50%;
  right: 14px;
  bottom: auto;
  left: auto;
  text-align: right;
  transform: translateY(-50%);
}

.map-point--kostelec .map-label {
  top: -22px;
  left: 17px;
  transform: none;
}

.map-point--jirny .map-label {
  top: 17px;
  right: -6px;
  left: auto;
  text-align: right;
  transform: none;
}

.map-point--kolin .map-label {
  top: auto;
  right: -6px;
  bottom: 18px;
  left: auto;
  text-align: right;
  transform: none;
}

.map-point--pardubice .map-label {
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}

.map-footnote {
  position: absolute;
  right: 38px;
  bottom: 30px;
  left: 38px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-projects {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.map-projects li {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 2px 12px;
  align-content: center;
  min-height: 116px;
  padding: 21px 28px;
  border-bottom: 1px solid var(--line-dark);
  transition: background 300ms ease;
}

.map-projects li:last-child {
  border-bottom: 0;
}

.map-projects li:hover,
.map-projects li.is-current {
  background: rgba(255, 255, 255, 0.045);
}

.map-projects li.is-current::after {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.08);
  content: "";
}

.map-project-index {
  grid-row: 1 / span 2;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--serif);
  font-size: 0.7rem;
}

.map-projects p,
.map-projects h3 {
  margin: 0;
}

.map-projects p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-projects h3 {
  margin-top: 4px;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.map-project-tag {
  grid-column: 2;
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@keyframes map-pulse {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.method {
  padding: clamp(110px, 12vw, 190px) 0;
}

.method-grid {
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.75fr) minmax(260px, 0.55fr);
  gap: clamp(40px, 6vw, 100px);
}

.method-list {
  margin: clamp(70px, 8vw, 120px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.method-list li {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-dark);
}

.method-list > li > span {
  color: var(--gray);
  font-family: var(--serif);
  font-size: 1rem;
}

.method-list h3 {
  margin: 0 0 9px;
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.method-list p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}

.method-aside {
  align-self: end;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.method-aside > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 2.5rem);
  font-style: italic;
  line-height: 1.12;
}

.method-pulse {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.method-pulse i {
  grid-area: 1 / 1;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  animation: pulse 2.8s ease-out infinite;
}

.method-pulse i:nth-child(2) {
  animation-delay: 0.8s;
}

.method-pulse i:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0; }
  22% { opacity: 0.9; }
  100% { transform: scale(7); opacity: 0; }
}

.credentials {
  padding: clamp(110px, 12vw, 190px) 0;
}

.systems-matrix {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(310px, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.system-family {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 58px);
}

.system-family + .system-family {
  border-left: 1px solid var(--line-light);
}

.system-family header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.system-family header span,
.system-family header p {
  display: block;
  margin: 0;
  color: rgba(5, 5, 5, 0.5);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.system-family header p {
  margin-top: 9px;
  color: rgba(5, 5, 5, 0.8);
}

.system-family h3 {
  margin: -0.12em 0 0;
  font-size: clamp(4.5rem, 8.6vw, 9.6rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.system-family-ero h3 {
  font-family: var(--serif);
  font-weight: 400;
}

.system-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: auto 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.system-family-ero .system-list {
  grid-template-columns: 1fr;
}

.system-list li {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line-light);
}

.system-family-eps .system-list li:nth-child(odd) {
  padding-right: 24px;
}

.system-family-eps .system-list li:nth-child(even) {
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

.system-list span {
  min-width: 0;
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.system-list i {
  flex: 0 0 auto;
  color: rgba(5, 5, 5, 0.35);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-style: italic;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(300px, 0.78fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.credential-feature,
.credential-copy {
  min-height: 430px;
  padding: clamp(28px, 4vw, 58px);
}

.credential-feature + .credential-feature,
.credential-copy {
  border-left: 1px solid var(--line-light);
}

.credential-feature {
  display: flex;
  flex-direction: column;
}

.credential-feature > p {
  margin: 0;
  color: rgba(5, 5, 5, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credential-feature h3 {
  margin: auto 0 30px;
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.credential-feature > span,
.credential-feature > a {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.credential-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 28px;
}

.credential-copy p {
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.9rem;
  line-height: 1.7;
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(110px, 12vw, 190px) 0 90px;
  border-top: 1px solid var(--line-dark);
}

.contact-smoke {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.contact-smoke i {
  position: absolute;
  width: 55vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(70px);
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.11), transparent 64%);
}

.contact-smoke i:first-child {
  top: -20%;
  right: -20%;
  animation: smokeDriftA 17s ease-in-out infinite alternate;
}

.contact-smoke i:last-child {
  bottom: -35%;
  left: -20%;
  animation: smokeDriftB 20s ease-in-out infinite alternate;
}

.contact .section-shell {
  position: relative;
  z-index: 2;
}

.contact-head {
  margin-bottom: clamp(80px, 10vw, 150px);
}

.contact-head h2 {
  font-size: clamp(4rem, 9vw, 10rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, 0.6fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

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

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

.contact-form label:not(.privacy-check):not(.honeypot) {
  display: grid;
  gap: 10px;
}

.contact-form label > span:first-child {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 0;
  outline: 0;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.9vw, 2rem);
  transition: border-color 180ms ease;
}

.contact-form select {
  color-scheme: dark;
  background-color: var(--black);
  color: var(--white);
}

.contact-form select option {
  background: var(--black);
  color: var(--white);
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--white);
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.73rem;
}

.privacy-check input {
  width: 16px;
  min-height: 16px;
  margin-top: 2px;
  accent-color: var(--white);
}

.privacy-check a {
  color: var(--white);
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 28px;
}

.form-submit button {
  min-width: 240px;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 0 18px;
  border: 1px solid var(--white);
  background: var(--white);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.form-submit button i {
  font-size: 1rem;
  font-style: normal;
}

.form-submit button:hover {
  background: transparent;
  color: var(--white);
}

.form-submit > p {
  max-width: 270px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 0.8rem;
}

.contact-direct {
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.contact-direct > p {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-direct > a {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  text-decoration: none;
  transition: opacity 180ms ease;
}

.contact-direct > .contact-phone {
  width: max-content;
  max-width: 100%;
  font-size: clamp(1.4rem, 2.05vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.contact-direct > .contact-email {
  margin-top: 14px;
  font-size: clamp(1.3rem, 1.75vw, 2rem);
  line-height: 1.08;
}

.contact-direct > a:hover {
  opacity: 0.56;
}

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

.contact-direct dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}

.contact-direct dt {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-direct dd {
  margin: 0;
  font-size: 0.78rem;
}

.site-footer {
  width: var(--shell);
  min-height: 190px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(390px, auto) minmax(180px, 1fr);
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  background: var(--black);
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-footer > div:nth-child(2) {
  text-align: center;
}

.site-footer p {
  margin: 3px 0;
}

.site-footer > div:last-child {
  justify-self: end;
  display: flex;
  gap: 22px;
}

.site-footer a {
  text-decoration: none;
}

.footer-logo {
  width: 184px;
  height: auto;
}

.footer-logo img {
  width: 184px;
}

.privacy-hero,
.not-found {
  min-height: 55svh;
  display: grid;
  place-items: end start;
  padding: calc(var(--header-h) + 100px) max(32px, calc((100vw - min(1180px, calc(100vw - 64px))) / 2)) 80px;
  background: var(--black);
}

.privacy-hero {
  min-height: 64svh;
  place-items: center;
  padding-bottom: 130px;
  text-align: center;
}

.privacy-hero > div {
  width: min(100%, 960px);
}

.privacy-hero h1,
.not-found h1 {
  margin: 0;
  font-size: clamp(3.3rem, 8vw, 8.5rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.privacy-hero h1 em {
  font-family: var(--serif);
  font-weight: 400;
}

.privacy-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 64px), 960px);
  margin: -78px auto 120px;
  padding: 72px 78px 64px;
  border: 1px solid rgba(5, 5, 5, 0.14);
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.2);
}

.privacy-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 56px;
  align-items: start;
  padding-bottom: 58px;
}

.privacy-intro > p {
  margin: 0;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.privacy-intro-meta {
  display: grid;
  gap: 4px;
  padding-top: 8px;
}

.privacy-intro-meta span,
.privacy-intro-meta small {
  color: rgba(5, 5, 5, 0.46);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-intro-meta strong {
  margin: 5px 0 1px;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
}

.privacy-section {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 26px;
  padding: 44px 0 46px;
  border-top: 1px solid var(--line-light);
}

.privacy-number {
  padding-top: 7px;
  color: rgba(5, 5, 5, 0.38);
  font-family: var(--serif);
  font-size: 0.75rem;
}

.privacy-section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.65rem, 3vw, 2.55rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.privacy-section p {
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-size: 0.93rem;
  line-height: 1.8;
}

.privacy-section p + p {
  margin-top: 18px;
}

.privacy-content a {
  color: var(--black);
}

.privacy-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid var(--line-light);
}

.privacy-footer p {
  margin: 0;
  color: rgba(5, 5, 5, 0.46);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.privacy-footer a {
  display: inline-flex;
  padding: 12px 15px;
  border: 1px solid var(--line-light);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.privacy-footer a:hover {
  background: var(--black);
  color: var(--white);
}

.not-found {
  min-height: 100svh;
}

.not-found > div {
  padding-bottom: 60px;
}

.not-found p {
  max-width: 560px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.58);
}

.not-found a {
  display: inline-flex;
  padding: 14px 18px;
  border: 1px solid var(--white);
  text-decoration: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js [data-hero-line] {
  opacity: 0;
  transform: translateY(36px);
}

.js.ready [data-hero-line] {
  opacity: 1;
  transform: none;
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

.js.ready [data-hero-line]:nth-child(1) {
  transition-delay: 100ms;
}

.js.ready .hero h1 [data-hero-line]:nth-child(1) {
  transition-delay: 240ms;
}

.js.ready .hero h1 [data-hero-line]:nth-child(2) {
  transition-delay: 380ms;
}

.js.ready .hero h1 [data-hero-line]:nth-child(3) {
  transition-delay: 520ms;
}

.js.ready .hero-copy[data-hero-line] {
  transition-delay: 650ms;
}

@media (max-width: 1220px) {
  :root {
    --shell: min(100% - 40px, 1180px);
  }

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

  .hero-main {
    padding-inline: 42px;
  }

  .hero h1 {
    font-size: clamp(6rem, 14vw, 10rem);
  }

  .manifesto-grid,
  .section-intro,
  .projects-head,
  .credentials-head,
  .method-grid {
    grid-template-columns: 150px minmax(0, 1fr) 250px;
    gap: 48px;
  }

  .service-panel {
    min-height: 620px;
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .secondary-band > div {
    min-height: 220px;
  }

  .project-info {
    grid-template-columns: 180px minmax(0, 1fr) auto;
    padding: 32px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 80px;
    --shell: calc(100vw - 28px);
  }

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

  .privacy-header-inner .header-cta {
    display: inline-flex;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .brand-crop {
    width: 154px;
    height: auto;
  }

  .brand-crop img {
    width: 154px;
  }

  .privacy-hero {
    min-height: 58svh;
    padding-inline: 24px;
    padding-bottom: 100px;
  }

  .privacy-content {
    width: calc(100% - 36px);
    margin-top: -60px;
    padding: 58px 50px 54px;
  }

  .privacy-intro {
    grid-template-columns: minmax(0, 1fr) 150px;
    gap: 36px;
  }

  .hero {
    min-height: auto;
  }

  .hero-frame {
    min-height: calc(100svh - 52px);
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-main {
    justify-content: flex-end;
    padding: calc(var(--header-h) + 74px) 20px 70px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.7), rgba(5, 5, 5, 0.3) 38%, rgba(5, 5, 5, 0.92)),
      linear-gradient(90deg, rgba(5, 5, 5, 0.74) 0%, rgba(5, 5, 5, 0.12) 52%, rgba(5, 5, 5, 0.72) 100%);
  }

  .hero-drawing {
    inset: 5% -65% 5% -10%;
    opacity: 0.16;
  }

  .kicker {
    max-width: 310px;
    margin-bottom: 60px;
    line-height: 1.6;
  }

  .hero h1 {
    gap: 6px;
    font-size: clamp(5rem, 23vw, 12rem);
  }

  .hero-copy {
    align-items: center;
    margin-top: 62px;
  }

  .hero-copy > p {
    font-size: clamp(1.55rem, 6.3vw, 3rem);
  }

  .round-link {
    flex-basis: 86px;
    width: 86px;
    height: 86px;
  }

  .manifesto-grid,
  .section-intro,
  .projects-head,
  .credentials-head,
  .method-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-intro > div:last-child,
  .projects-head > div:nth-child(2),
  .credentials-head > div:last-child {
    grid-column: 1;
  }

  .manifesto-note,
  .projects-lead,
  .method-aside {
    max-width: 520px;
  }

  .primary-services {
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 580px;
  }

  .service-panel + .service-panel {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .service-content {
    grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  }

  .secondary-band {
    grid-template-columns: 1fr;
  }

  .secondary-band > div + div {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .systems-matrix {
    grid-template-columns: 1fr;
  }

  .system-family {
    min-height: 520px;
  }

  .system-family + .system-family {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .system-family-ero .system-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-family-ero .system-list li:nth-child(odd) {
    padding-right: 24px;
  }

  .system-family-ero .system-list li:nth-child(even) {
    padding-left: 24px;
    border-left: 1px solid var(--line-light);
  }

  .project-wide {
    min-height: 780px;
  }

  .reference-viewport {
    min-height: 780px;
  }

  .project-info {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-info > div {
    justify-content: flex-start;
  }

  .reference-map {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .map-stage {
    min-height: 650px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .map-projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .map-projects li {
    min-height: 140px;
    border-right: 1px solid var(--line-dark);
  }

  .map-projects li:nth-child(even) {
    border-right: 0;
  }

  .map-projects li:last-child {
    border-bottom: 1px solid var(--line-dark);
  }

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

  .credential-copy {
    grid-column: 1 / -1;
    min-height: auto;
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

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

  .contact-direct {
    margin-top: 40px;
  }

  .site-footer {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
    padding: 50px 0;
  }

  .site-footer > div:nth-child(2) {
    text-align: right;
  }

  .site-footer > div:last-child {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .noise {
    opacity: 0.035;
  }

  .cursor-halo {
    display: none;
  }

  .hero-main {
    padding-inline: 19px;
    padding-bottom: 56px;
  }

  .kicker {
    margin-bottom: 46px;
    font-size: 0.58rem;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22.5vw, 7.5rem);
    letter-spacing: -0.085em;
  }

  .hero-copy {
    align-items: flex-start;
    gap: 18px;
    margin-top: 50px;
  }

  .round-link {
    display: none;
  }

  .hero-ticker {
    height: 52px;
  }

  .hero-ticker-track {
    animation-duration: 18s;
  }

  .hero-ticker-set {
    gap: 8px;
    padding-inline: 8px;
  }

  .hero-ticker span {
    font-size: 0.51rem;
    letter-spacing: 0.13em;
  }

  .hero-ticker i {
    font-size: 0.32rem;
  }

  .manifesto h2,
  .section-intro h2,
  .projects-head h2,
  .method h2,
  .credentials-head h2 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .manifesto,
  .expertise,
  .projects,
  .method,
  .credentials {
    padding: 96px 0;
  }

  .section-intro,
  .projects-head,
  .credentials-head {
    margin-bottom: 70px;
  }

  .service-panel {
    min-height: 560px;
    padding: 24px 20px 34px;
  }

  .service-mark {
    font-size: 8rem;
  }

  .service-content {
    grid-template-columns: 1fr;
  }

  .service-content h3 {
    font-size: 2.55rem;
  }

  .secondary-band > div {
    min-height: 205px;
    padding: 28px 20px;
  }

  .system-family {
    min-height: auto;
    padding: 30px 20px;
  }

  .system-family header {
    flex-direction: column;
    gap: 42px;
  }

  .system-family h3 {
    font-size: clamp(5.4rem, 27vw, 8rem);
  }

  .system-list,
  .system-family-ero .system-list {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .system-family-eps .system-list li:nth-child(odd),
  .system-family-eps .system-list li:nth-child(even),
  .system-family-ero .system-list li:nth-child(odd),
  .system-family-ero .system-list li:nth-child(even) {
    padding: 17px 0;
    border-left: 0;
  }

  .project-wide {
    min-height: 610px;
  }

  .reference-viewport {
    min-height: 610px;
  }

  .reference-nav {
    width: 46px;
    height: 46px;
  }

  .reference-nav--prev {
    left: 12px;
  }

  .reference-nav--next {
    right: 12px;
  }

  .reference-counter {
    top: 18px;
    right: 18px;
  }

  .project-info {
    padding: 24px 20px;
  }

  .project-info h3 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .map-stage {
    min-height: 430px;
  }

  .map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 24px 20px 0;
  }

  .map-graphic {
    top: 25%;
    left: -7%;
    width: 114%;
  }

  .map-label {
    display: none;
  }

  .map-dot {
    width: 6px;
    height: 6px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.62),
      0 0 0 3px rgba(255, 255, 255, 0.09);
  }

  .map-dot::after {
    inset: -5px;
  }

  .map-footnote {
    right: 20px;
    bottom: 20px;
    left: 20px;
    font-size: 0.49rem;
  }

  .map-projects {
    grid-template-columns: 1fr;
  }

  .map-projects li {
    min-height: 118px;
    padding: 20px;
    border-right: 0;
  }

  .map-projects li:last-child {
    border-bottom: 0;
  }

  .method-list {
    margin-top: 60px;
  }

  .method-list li {
    grid-template-columns: 40px 1fr;
    gap: 14px;
  }

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

  .credential-feature,
  .credential-copy {
    min-height: 340px;
    padding: 32px 20px;
  }

  .credential-feature + .credential-feature,
  .credential-copy {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .credential-copy {
    min-height: auto;
  }

  .contact {
    padding: 96px 0 70px;
  }

  .contact-head {
    margin-bottom: 70px;
  }

  .contact-head h2 {
    font-size: clamp(3.2rem, 15vw, 5.4rem);
  }

  .privacy-hero {
    min-height: 52svh;
    padding: calc(var(--header-h) + 70px) 20px 70px;
  }

  .privacy-hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.2rem);
  }

  .privacy-content {
    width: calc(100% - 20px);
    margin: -30px auto 60px;
    padding: 38px 22px 34px;
  }

  .privacy-intro {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 40px;
  }

  .privacy-intro > p {
    font-size: clamp(1.35rem, 7vw, 1.8rem);
  }

  .privacy-intro-meta {
    padding-top: 0;
  }

  .privacy-section {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 34px 0 36px;
  }

  .privacy-number {
    padding-top: 5px;
  }

  .privacy-section h2 {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }

  .privacy-section p {
    font-size: 0.88rem;
    line-height: 1.72;
  }

  .privacy-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 1.25rem;
  }

  .form-submit {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-submit button {
    width: 100%;
  }

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

  .site-footer > div:nth-child(2) {
    text-align: left;
  }

  .site-footer > div:last-child {
    grid-column: 1;
    flex-direction: column;
    gap: 8px;
  }
}

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

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

  .js .reveal,
  .js [data-hero-line] {
    opacity: 1;
    transform: none;
  }
}
