:root {
  --cinema-black: #0b0d0e;
  --graphite: #151819;
  --graphite-soft: #1c2021;
  --warm-paper: #f2eee7;
  --soft-stone: #d8d1c7;
  --ink: #202221;
  --mist: #a9aaa6;
  --brass: #b98d50;
  --brass-light: #d2b17a;
  --brass-dark: #7b5b32;
  --line-dark: rgba(32, 34, 33, 0.22);
  --line-light: rgba(242, 238, 231, 0.2);
  --shell: 1680px;
  --content: 1280px;
  --gutter: clamp(24px, 4.2vw, 80px);
  --section: clamp(88px, 9vw, 150px);
  --sans: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

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

html {
  color-scheme: light dark;
  scroll-behavior: smooth;
  background: var(--cinema-black);
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--warm-paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

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

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

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

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

.section {
  padding-block: var(--section);
}

.section--paper {
  background: var(--warm-paper);
  color: var(--ink);
}

.section--dark,
.section--graphite {
  color: var(--warm-paper);
}

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

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

.section-rule {
  display: block;
  width: 74px;
  height: 2px;
  margin-bottom: 30px;
  background: var(--brass);
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: clamp(50px, 5vw, 76px);
}

.section-heading .section-rule {
  flex: 0 0 44px;
  margin: 0;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) 2.6fr auto;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  color: inherit;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.2vw, 40px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  text-decoration: none;
}

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

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

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--brass);
  gap: 22px;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover {
  background: var(--brass);
  color: var(--cinema-black);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: clamp(760px, calc(100vh - 64px), 900px);
  overflow: hidden;
  background: var(--cinema-black);
  color: #fff;
}

.hero__media,
.hero__media img,
.hero__fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media img {
  object-fit: cover;
  object-position: center center;
}

.hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.94) 0%, rgba(4, 5, 5, 0.7) 31%, rgba(4, 5, 5, 0.14) 53%, rgba(4, 5, 5, 0) 65%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(760px, calc(100vh - 64px), 900px);
  padding-top: 150px;
  padding-bottom: 36px;
}

.hero__copy {
  width: min(720px, 58vw);
  margin-bottom: clamp(76px, 9vh, 120px);
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 30px;
  font-size: clamp(48px, 4.5vw, 76px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 3px;
  gap: 36px;
  color: inherit;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--brass-light);
  color: var(--cinema-black);
}

.button--primary:hover {
  background: #e0bd82;
}

.button--ghost,
.button--outline {
  border-color: var(--brass);
  background: rgba(11, 13, 14, 0.34);
  color: #fff;
}

.button--ghost:hover,
.button--outline:hover {
  background: var(--brass);
  color: var(--cinema-black);
}

.button--outline-dark {
  background: transparent;
  color: var(--ink);
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(185, 141, 80, 0.7);
  gap: 40px;
  list-style: none;
}

.proof-rail li {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
}

.proof-rail li:not(:last-child)::after {
  width: 4px;
  height: 4px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--brass);
  content: "";
}

.inner-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--cinema-black);
  color: #fff;
}

.inner-hero__media,
.inner-hero__media img,
.inner-hero__fade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.inner-hero__media img {
  object-fit: cover;
  object-position: center 56%;
  transform: scale(1.02);
}

.inner-hero__fade {
  background:
    linear-gradient(90deg, rgba(4, 5, 5, 0.97) 0%, rgba(4, 5, 5, 0.84) 35%, rgba(4, 5, 5, 0.34) 68%, rgba(4, 5, 5, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 5, 5, 0.55) 0%, transparent 38%);
}

.inner-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 820px;
  padding-top: 126px;
  padding-bottom: 34px;
}

.breadcrumbs {
  margin-bottom: auto;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 10px;
  color: var(--brass);
  content: "/";
}

.breadcrumbs a {
  text-underline-offset: 4px;
}

.inner-hero__copy {
  width: min(920px, 72vw);
  margin: 58px 0 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--brass-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow--dark {
  color: #80623c;
}

.inner-hero h1 {
  max-width: 980px;
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(54px, 5.8vw, 94px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.inner-hero__copy > p:not(.eyebrow) {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.35vw, 22px);
}

.desktop-nav [aria-current="page"]::after {
  transform: scaleX(1);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(70px, 9vw, 150px);
}

.editorial-grid h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.editorial-copy {
  padding-top: 54px;
}

.editorial-copy p {
  max-width: 730px;
  margin: 0 0 22px;
  color: #515450;
}

.editorial-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.32;
}

.editorial-copy .note {
  padding: 20px 0 0 24px;
  border-left: 2px solid var(--brass);
  color: #696b67;
  font-size: 14px;
}

.scope {
  padding-top: clamp(70px, 7vw, 110px);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(185, 141, 80, 0.7);
  list-style: none;
}

.scope-grid li {
  min-height: 250px;
  padding: 32px clamp(24px, 2.4vw, 40px) 36px;
  border-right: 1px solid rgba(242, 238, 231, 0.16);
  border-bottom: 1px solid rgba(242, 238, 231, 0.16);
}

.scope-grid li:nth-child(3n) {
  border-right: 0;
}

.scope-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 26px;
}

.scope-grid h3 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 500;
}

.scope-grid p {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 68px);
}

.format-card {
  border-bottom: 1px solid rgba(185, 141, 80, 0.6);
}

.format-card picture {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #242728;
}

.format-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.format-card:hover img {
  transform: scale(1.025);
}

.format-card__copy {
  padding: 32px 0 36px;
}

.format-card h3 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 400;
  line-height: 1.08;
}

.format-card__copy > p:last-child {
  max-width: 670px;
  margin: 0;
  color: #555853;
}

.image-disclosure {
  margin: 20px 0 0;
  color: #5f625d;
  font-size: 12px;
}

.editorial-grid--light h2 {
  color: var(--warm-paper);
}

.readiness-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(185, 141, 80, 0.75);
  list-style: none;
}

.readiness-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line-light);
  gap: 20px;
}

.readiness-list span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 24px;
}

.readiness-list h3,
.readiness-list p {
  margin: 0;
}

.readiness-list h3 {
  margin-bottom: 6px;
  color: var(--warm-paper);
  font-size: 20px;
  font-weight: 500;
}

.readiness-list p {
  color: var(--mist);
  font-size: 15px;
}

.deliverables {
  padding-bottom: clamp(68px, 7vw, 108px);
}

.deliverables__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
}

.deliverables__copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.deliverables__copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 0 0 30px;
  color: #555853;
}

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

.deliverables-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  gap: 18px;
  font-size: 18px;
  font-weight: 500;
}

.deliverables-list span {
  color: var(--brass-dark);
  font-family: var(--serif);
}

.budget-band__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(520px, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
}

.budget-band h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.budget-band__grid > div:last-child > p {
  margin: 0 0 18px;
  color: var(--mist);
}

.budget-band .button {
  width: min(100%, 430px);
  margin-top: 22px;
}

.inner-hero--blueprint {
  background:
    radial-gradient(circle at 78% 46%, rgba(185, 141, 80, 0.12), transparent 33%),
    linear-gradient(135deg, #0b0d0e 0%, #111516 66%, #0b0d0e 100%);
}

.inner-hero--blueprint .inner-hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.97) 0%, rgba(4, 5, 5, 0.91) 40%, rgba(4, 5, 5, 0.42) 64%, rgba(4, 5, 5, 0.08) 100%);
}

.inner-hero--blueprint .inner-hero__copy {
  width: min(840px, 61vw);
}

.blueprint-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 141, 80, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 141, 80, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 12%, #000 48%, #000 100%);
}

.blueprint-hero-art {
  position: absolute;
  z-index: 1;
  top: 106px;
  right: clamp(-130px, -4vw, -30px);
  width: min(58vw, 900px);
  color: var(--brass);
  opacity: 0.66;
}

.blueprint-hero-art svg {
  width: 100%;
  height: auto;
}

.blueprint-hero-art__room,
.blueprint-hero-art__screen,
.blueprint-hero-art__seats,
.blueprint-hero-art__dimensions,
.blueprint-hero-art__nodes {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
}

.blueprint-hero-art__room {
  stroke: rgba(242, 238, 231, 0.46);
}

.blueprint-hero-art__screen,
.blueprint-hero-art__nodes {
  stroke: var(--brass-light);
}

.blueprint-hero-art__seats {
  fill: rgba(185, 141, 80, 0.045);
  stroke: rgba(242, 238, 231, 0.52);
}

.blueprint-hero-art__dimensions {
  stroke: rgba(185, 141, 80, 0.56);
  stroke-dasharray: 5 7;
}

.blueprint-hero-art__nodes circle {
  fill: rgba(185, 141, 80, 0.16);
}

.blueprint-label {
  position: absolute;
  padding: 5px 8px;
  background: rgba(11, 13, 14, 0.86);
  color: var(--brass-light);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blueprint-label--screen { top: 15%; left: 36%; }
.blueprint-label--seats { top: 46%; left: 54%; }
.blueprint-label--routes { right: 10%; bottom: 14%; }

.systems {
  padding-top: clamp(70px, 7vw, 110px);
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(185, 141, 80, 0.72);
  list-style: none;
}

.systems-grid li {
  min-height: 252px;
  padding: 30px clamp(20px, 2vw, 34px) 34px;
  border-right: 1px solid rgba(242, 238, 231, 0.16);
  border-bottom: 1px solid rgba(242, 238, 231, 0.16);
}

.systems-grid li:nth-child(4n) {
  border-right: 0;
}

.systems-grid span {
  display: block;
  margin-bottom: 42px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 24px;
}

.systems-grid h3 {
  margin: 0 0 10px;
  color: var(--warm-paper);
  font-size: 19px;
  font-weight: 500;
}

.systems-grid p {
  margin: 0;
  color: var(--mist);
  font-size: 14px;
  line-height: 1.48;
}

.documents {
  padding-bottom: clamp(70px, 7vw, 110px);
}

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

.document-grid article {
  min-height: 260px;
  padding: 30px clamp(22px, 2.2vw, 38px) 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.document-grid article:nth-child(3n) {
  border-right: 0;
}

.document-grid span {
  display: block;
  margin-bottom: 48px;
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 25px;
}

.document-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.1;
}

.document-grid p {
  margin: 0;
  color: #5c5f5a;
  font-size: 15px;
}

.section-footnote {
  max-width: 860px;
  margin: 24px 0 0;
  color: #5f625d;
  font-size: 13px;
}

.roles {
  padding-top: clamp(70px, 7vw, 110px);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(185, 141, 80, 0.72);
}

.role-grid article {
  min-height: 260px;
  padding: 30px clamp(22px, 2vw, 36px) 36px;
  border-right: 1px solid var(--line-light);
}

.role-grid article:last-child {
  border-right: 0;
  background: rgba(185, 141, 80, 0.07);
}

.role-grid h3 {
  margin: 46px 0 12px;
  color: var(--warm-paper);
  font-family: var(--serif);
  font-size: clamp(27px, 2.3vw, 38px);
  font-weight: 400;
}

.role-grid article > p:last-child {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
}

.readiness-list--dark {
  border-top-color: var(--brass);
}

.readiness-list--dark li {
  border-bottom-color: var(--line-dark);
}

.readiness-list--dark h3 {
  color: var(--ink);
}

.readiness-list--dark p {
  color: #5b5e59;
}

.readiness-list--dark span {
  color: var(--brass-dark);
}

.risks {
  padding-top: 0;
}

.risks__grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
}

.risks__intro h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.2vw, 68px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.risks__intro > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #5b5e59;
}

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

.risk-list li {
  position: relative;
  padding: 20px 20px 20px 48px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 17px;
  font-weight: 500;
}

.risk-list li::before {
  position: absolute;
  top: 28px;
  left: 4px;
  width: 22px;
  height: 1px;
  background: var(--brass);
  content: "";
}

.partner-band {
  padding-block: clamp(70px, 7vw, 108px);
}

.partner-band__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(500px, 1.1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.partner-band h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.partner-band__grid > div:last-child > p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 0 30px;
  color: var(--mist);
}

.partner-band__diagram {
  position: relative;
  aspect-ratio: 1.1 / 1;
  border: 1px solid rgba(242, 238, 231, 0.4);
  background:
    linear-gradient(rgba(185, 141, 80, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 141, 80, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.partner-band__diagram::before,
.partner-band__diagram::after,
.partner-band__diagram span {
  position: absolute;
  content: "";
}

.partner-band__diagram::before {
  inset: 9%;
  border: 1px solid rgba(242, 238, 231, 0.52);
}

.partner-band__diagram::after {
  top: 25%;
  right: 18%;
  bottom: 18%;
  width: 22%;
  border: 1px solid var(--brass);
}

.partner-band__diagram span {
  height: 1px;
  background: rgba(242, 238, 231, 0.5);
  transform-origin: left;
}

.partner-band__diagram span:nth-child(1) { top: 34%; left: 16%; width: 30%; transform: rotate(26deg); }
.partner-band__diagram span:nth-child(2) { top: 51%; left: 20%; width: 34%; transform: rotate(-14deg); }
.partner-band__diagram span:nth-child(3) { top: 70%; left: 24%; width: 46%; }
.partner-band__diagram span:nth-child(4) { top: 18%; left: 58%; width: 1px; height: 64%; background: var(--brass); }

.card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(185, 141, 80, 0.7);
  gap: 12px;
  color: var(--brass-light);
  font-size: 13px;
  text-decoration: none;
}

.card-link span {
  transition: transform 180ms ease;
}

.card-link:hover span {
  transform: translateX(4px);
}

.card-link--dark {
  color: #765b37;
}

.inner-hero--acoustic {
  background:
    radial-gradient(circle at 78% 44%, rgba(185, 141, 80, 0.11), transparent 31%),
    linear-gradient(135deg, #0a0c0d 0%, #15191a 66%, #0b0d0e 100%);
}

.inner-hero--acoustic .inner-hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.9) 42%, rgba(4, 5, 5, 0.32) 67%, rgba(4, 5, 5, 0.06) 100%);
}

.inner-hero--acoustic .inner-hero__copy {
  width: min(870px, 64vw);
}

.acoustic-hero-art {
  position: absolute;
  z-index: 1;
  top: 102px;
  right: clamp(-140px, -4vw, -44px);
  width: min(60vw, 930px);
  opacity: 0.7;
}

.acoustic-hero-art svg {
  width: 100%;
  height: auto;
}

.acoustic-hero-art__room,
.acoustic-hero-art__layers,
.acoustic-hero-art__source,
.acoustic-hero-art__paths {
  fill: none;
  stroke: rgba(242, 238, 231, 0.42);
  stroke-width: 1.4;
}

.acoustic-hero-art__layers {
  fill: rgba(185, 141, 80, 0.035);
  stroke: var(--brass);
}

.acoustic-hero-art__source {
  stroke: rgba(185, 141, 80, 0.72);
}

.acoustic-hero-art__paths {
  stroke: rgba(210, 177, 122, 0.46);
  stroke-dasharray: 7 8;
}

.acoustic-label {
  position: absolute;
  padding: 5px 8px;
  background: rgba(11, 13, 14, 0.88);
  color: var(--brass-light);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.acoustic-label--room { top: 24%; left: 28%; }
.acoustic-label--wall { top: 39%; right: 18%; }
.acoustic-label--noise { right: 16%; bottom: 16%; }

.acoustic-tasks {
  padding-top: clamp(70px, 7vw, 110px);
}

.acoustic-task-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(185, 141, 80, 0.72);
}

.acoustic-task-grid article {
  min-height: 430px;
  padding: 30px clamp(26px, 2.6vw, 44px) 42px;
  border-right: 1px solid var(--line-light);
}

.acoustic-task-grid article:last-child {
  border-right: 0;
}

.acoustic-task-grid article > span {
  display: block;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 25px;
}

.acoustic-task-grid h3 {
  margin: 34px 0 14px;
  color: var(--warm-paper);
  font-family: var(--serif);
  font-size: clamp(31px, 2.8vw, 46px);
  font-weight: 400;
  line-height: 1.08;
}

.acoustic-task-grid p {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
}

.wave-icon,
.wall-icon,
.noise-icon {
  position: relative;
  height: 120px;
  margin-top: 32px;
}

.wave-icon i {
  position: absolute;
  top: 50%;
  left: 0;
  border: 1px solid var(--brass);
  border-left: 0;
  border-radius: 0 100% 100% 0;
  transform: translateY(-50%);
}

.wave-icon i:nth-child(1) { width: 30px; height: 44px; }
.wave-icon i:nth-child(2) { width: 62px; height: 82px; }
.wave-icon i:nth-child(3) { width: 98px; height: 118px; }

.wall-icon {
  display: flex;
  align-items: stretch;
  gap: 9px;
}

.wall-icon i {
  display: block;
  width: 17px;
  border: 1px solid var(--brass);
  background: rgba(185, 141, 80, 0.035);
}

.wall-icon i:nth-child(2) { width: 31px; }
.wall-icon i:nth-child(3) { width: 12px; }
.wall-icon i:nth-child(4) { width: 42px; }

.noise-icon {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.noise-icon i {
  display: block;
  width: 14px;
  border: 1px solid var(--brass);
  border-bottom: 0;
}

.noise-icon i:nth-child(1) { height: 30px; }
.noise-icon i:nth-child(2) { height: 72px; }
.noise-icon i:nth-child(3) { height: 116px; }

.factors {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.acoustic-factor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--brass);
  list-style: none;
}

.acoustic-factor-grid li {
  min-height: 228px;
  padding: 28px clamp(20px, 2vw, 34px) 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.acoustic-factor-grid li:nth-child(4n) {
  border-right: 0;
}

.acoustic-factor-grid span {
  display: block;
  margin-bottom: 38px;
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 23px;
}

.acoustic-factor-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 500;
}

.acoustic-factor-grid p {
  margin: 0;
  color: #5d605b;
  font-size: 14px;
}

.acoustic-scope {
  padding-bottom: clamp(70px, 7vw, 104px);
}

.acoustic-scope__grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.9fr) minmax(550px, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
}

.acoustic-scope h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.acoustic-scope__grid > div:first-child > p:last-child {
  max-width: 600px;
  margin: 0;
  color: var(--mist);
}

.scope-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(185, 141, 80, 0.75);
  list-style: none;
}

.scope-checklist li {
  position: relative;
  padding: 22px 18px 22px 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  color: var(--warm-paper);
  font-size: 15px;
}

.scope-checklist li:nth-child(2n) {
  border-right: 0;
}

.scope-checklist li::before {
  position: absolute;
  top: 31px;
  left: 4px;
  width: 18px;
  height: 1px;
  background: var(--brass);
  content: "";
}

.acoustic-caveat {
  margin-top: 62px;
}

.acoustic-caveat p {
  max-width: 1040px;
  margin: 0;
  padding: 24px 30px;
  border-left: 2px solid var(--brass);
  background: rgba(185, 141, 80, 0.06);
  color: var(--mist);
  font-size: 14px;
}

.integration {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 3vw, 48px);
}

.integration-grid article {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(185, 141, 80, 0.65);
}

.integration-grid h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(30px, 2.6vw, 43px);
  font-weight: 400;
  line-height: 1.08;
}

.integration-grid article > p:last-child {
  margin: 0;
  color: #5d605b;
  font-size: 15px;
}

.integration-visual {
  position: relative;
  height: 250px;
  margin-bottom: 28px;
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(32, 34, 33, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 34, 33, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}

.integration-visual span {
  position: absolute;
  border: 1px solid rgba(32, 34, 33, 0.46);
}

.integration-visual--hidden span:nth-child(1) { inset: 24px 70% 24px 24px; border-color: var(--brass); }
.integration-visual--hidden span:nth-child(2) { inset: 24px 46% 24px 34%; border-width: 6px; }
.integration-visual--hidden span:nth-child(3) { inset: 24px 24px 24px 58%; border-width: 16px; }

.integration-visual--visible span:nth-child(1) { top: 34px; left: 30px; width: 38%; height: 74%; }
.integration-visual--visible span:nth-child(2) { top: 34px; right: 30px; width: 42%; height: 32%; border-color: var(--brass); }
.integration-visual--visible span:nth-child(3) { right: 30px; bottom: 32px; width: 42%; height: 32%; }

.integration-visual--mixed span:nth-child(1) { inset: 26px 52% 26px 26px; border-color: var(--brass); }
.integration-visual--mixed span:nth-child(2) { top: 26px; right: 26px; width: 38%; height: 44%; border-width: 8px; }
.integration-visual--mixed span:nth-child(3) { right: 26px; bottom: 26px; width: 38%; height: 30%; }

.myths {
  padding-top: clamp(70px, 7vw, 110px);
}

.myths__grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(570px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
}

.myths__intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.myth-list {
  border-top: 1px solid rgba(185, 141, 80, 0.75);
}

.myth-list article {
  display: grid;
  grid-template-columns: 62px 1fr;
  padding: 24px 0 26px;
  border-bottom: 1px solid var(--line-light);
  gap: 20px;
}

.myth-list article > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 24px;
}

.myth-list h3,
.myth-list p {
  margin: 0;
}

.myth-list h3 {
  margin-bottom: 7px;
  color: var(--warm-paper);
  font-size: 19px;
  font-weight: 500;
}

.myth-list p {
  color: var(--mist);
  font-size: 15px;
}

.inner-hero--system {
  background:
    radial-gradient(circle at 78% 44%, rgba(185, 141, 80, 0.1), transparent 31%),
    linear-gradient(135deg, #090b0c 0%, #141819 66%, #0b0d0e 100%);
}

.inner-hero--system .inner-hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.9) 43%, rgba(4, 5, 5, 0.3) 69%, rgba(4, 5, 5, 0.04) 100%);
}

.inner-hero--system .inner-hero__copy {
  width: min(880px, 64vw);
}

.system-hero-art {
  position: absolute;
  z-index: 1;
  top: 138px;
  right: clamp(20px, 3vw, 50px);
  width: min(37vw, 590px);
  height: 580px;
  opacity: 0.78;
}

.system-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 204px;
  min-height: 112px;
  padding: 18px 20px;
  border: 1px solid rgba(242, 238, 231, 0.34);
  background: rgba(11, 13, 14, 0.72);
}

.system-node span {
  position: absolute;
  top: 12px;
  right: 14px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
}

.system-node strong {
  color: var(--warm-paper);
  font-size: 15px;
  font-weight: 500;
}

.system-node small {
  margin-top: 6px;
  color: #858985;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.system-node--sources { top: 18px; left: 0; }
.system-node--processor { top: 18px; right: 0; }
.system-node--video { top: 218px; left: 0; border-color: rgba(185, 141, 80, 0.72); }
.system-node--audio { top: 218px; right: 0; border-color: rgba(185, 141, 80, 0.72); }
.system-node--control { bottom: 18px; left: 0; }
.system-node--calibration { right: 0; bottom: 18px; }

.system-line {
  position: absolute;
  display: block;
  height: 1px;
  background: rgba(185, 141, 80, 0.58);
  transform-origin: left;
}

.system-line::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--brass);
  border-right: 1px solid var(--brass);
  content: "";
  transform: rotate(45deg);
}

.system-line--one { top: 74px; left: 204px; width: calc(100% - 408px); }
.system-line--two { top: 131px; left: 102px; width: 122px; transform: rotate(59deg); }
.system-line--three { top: 131px; right: 102px; width: 122px; transform: rotate(121deg); }
.system-line--four { top: 331px; left: 204px; width: calc(100% - 408px); }
.system-line--five { top: 389px; left: 102px; width: 122px; transform: rotate(59deg); }

.system-layers {
  padding-top: clamp(70px, 7vw, 110px);
}

.system-layer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(185, 141, 80, 0.72);
}

.system-layer-grid article {
  min-height: 260px;
  padding: 30px clamp(24px, 2.4vw, 40px) 36px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.system-layer-grid article:nth-child(3n) {
  border-right: 0;
}

.system-layer-grid span {
  display: block;
  margin-bottom: 44px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 25px;
}

.system-layer-grid h3 {
  margin: 0 0 12px;
  color: var(--warm-paper);
  font-family: var(--serif);
  font-size: clamp(28px, 2.4vw, 39px);
  font-weight: 400;
  line-height: 1.08;
}

.system-layer-grid p {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
}

.selection__grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.78fr) minmax(580px, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
}

.selection__intro h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.selection__intro > p:last-child {
  max-width: 560px;
  margin: 0;
  color: #5c5f5a;
}

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

.selection-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line-dark);
  gap: 18px;
}

.selection-list span {
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 23px;
}

.selection-list h3,
.selection-list p {
  margin: 0;
}

.selection-list h3 {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 600;
}

.selection-list p {
  color: #5d605b;
  font-size: 14px;
}

.display-choice {
  padding-top: clamp(70px, 7vw, 110px);
}

.display-choice__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(34px, 4vw, 70px);
}

.display-choice__grid article {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(185, 141, 80, 0.7);
}

.display-choice__grid h3 {
  margin: 0 0 16px;
  color: var(--warm-paper);
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1.05;
}

.display-choice__grid article > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 20px;
  color: var(--mist);
}

.display-choice__grid ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.display-choice__grid li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line-light);
  color: #b4b6b2;
  font-size: 13px;
}

.projection-visual,
.display-visual {
  position: relative;
  height: 300px;
  margin-bottom: 28px;
  border: 1px solid rgba(242, 238, 231, 0.34);
  overflow: hidden;
}

.projection-visual__screen {
  position: absolute;
  top: 40px;
  right: 44px;
  width: 46%;
  height: 62%;
  border: 1px solid var(--brass);
  background: rgba(242, 238, 231, 0.025);
}

.projection-visual__projector {
  position: absolute;
  top: 46%;
  left: 46px;
  width: 62px;
  height: 34px;
  border: 1px solid rgba(242, 238, 231, 0.5);
}

.projection-visual__beam {
  position: absolute;
  top: 30%;
  left: 108px;
  width: calc(100% - 196px);
  height: 42%;
  border-top: 1px dashed rgba(185, 141, 80, 0.55);
  border-bottom: 1px dashed rgba(185, 141, 80, 0.55);
  clip-path: polygon(0 44%, 100% 0, 100% 100%, 0 56%);
  background: linear-gradient(90deg, rgba(185, 141, 80, 0.02), rgba(185, 141, 80, 0.09));
}

.display-visual span {
  position: absolute;
  inset: 38px 62px 58px;
  border: 1px solid var(--brass);
  background: linear-gradient(145deg, rgba(242, 238, 231, 0.02), rgba(185, 141, 80, 0.08));
}

.display-visual i {
  position: absolute;
  bottom: 34px;
  width: 84px;
  height: 1px;
  background: rgba(242, 238, 231, 0.45);
}

.display-visual i:nth-child(2) { left: 28%; }
.display-visual i:nth-child(3) { right: 28%; }

.display-choice__note {
  max-width: 900px;
  margin: 28px 0 0;
  color: #858985;
  font-size: 13px;
}

.implementation {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.calibration {
  padding-top: clamp(70px, 7vw, 110px);
}

.calibration__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(70px, 9vw, 150px);
}

.calibration h2 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(44px, 4.7vw, 74px);
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.calibration__grid > div:first-child > p:last-child {
  max-width: 610px;
  margin: 0;
  color: var(--mist);
}

.calibration-list {
  border-top: 1px solid rgba(185, 141, 80, 0.75);
}

.calibration-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  padding: 23px 0 25px;
  border-bottom: 1px solid var(--line-light);
  gap: 18px;
}

.calibration-list span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 23px;
}

.calibration-list h3,
.calibration-list p {
  margin: 0;
}

.calibration-list h3 {
  margin-bottom: 6px;
  color: var(--warm-paper);
  font-size: 19px;
  font-weight: 500;
}

.calibration-list p {
  color: var(--mist);
  font-size: 14px;
}

.anti-catalog {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.anti-catalog__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(540px, 1.1fr);
  gap: clamp(70px, 9vw, 150px);
}

.anti-catalog h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.4vw, 70px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.anti-catalog ul {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--brass);
  list-style: none;
}

.anti-catalog li {
  position: relative;
  padding: 20px 0 20px 44px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 17px;
  font-weight: 500;
}

.anti-catalog li::before {
  position: absolute;
  top: 28px;
  left: 3px;
  width: 20px;
  height: 1px;
  background: var(--brass);
  content: "";
}

.value__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(560px, 1.1fr);
  gap: clamp(64px, 8vw, 140px);
}

.value__intro h2 {
  max-width: 650px;
  margin: 0 0 34px;
  font-size: clamp(42px, 4.5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.value__intro p {
  max-width: 610px;
  margin: 0;
  color: #4c4f4c;
  font-size: 19px;
}

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

.feature-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  padding: 24px 0 26px;
  border-bottom: 1px solid rgba(185, 141, 80, 0.55);
  gap: 24px;
}

.feature-list__number {
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 24px;
}

.feature-list h3,
.feature-list p {
  margin: 0;
}

.feature-list h3 {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 500;
}

.feature-list p {
  color: #555853;
  font-size: 15.5px;
  line-height: 1.45;
}

.solutions {
  padding-top: clamp(70px, 7vw, 110px);
}

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

.solution-item {
  min-width: 0;
  padding: 0 clamp(26px, 2.2vw, 38px) 12px;
  border-left: 1px solid rgba(185, 141, 80, 0.55);
}

.solution-item:first-child {
  padding-left: 0;
  border-left: 0;
}

.solution-item:last-child {
  padding-right: 0;
}

.solution-item picture {
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: 26px;
  overflow: hidden;
  background: #242728;
}

.solution-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.65, 0.2, 1);
}

.solution-item:hover img {
  transform: scale(1.025);
}

.solution-item h3 {
  margin: 0 0 10px;
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 400;
  line-height: 1.15;
}

.solution-item p {
  min-height: 84px;
  margin: 0 0 22px;
  color: var(--mist);
  font-size: 16px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--brass);
  gap: 18px;
  color: var(--warm-paper);
  font-size: 15px;
  text-decoration: none;
}

.inline-link span {
  transition: transform 180ms ease;
}

.inline-link:hover span {
  transform: translateX(5px);
}

.inline-link--dark {
  color: var(--ink);
}

.planning__grid {
  display: grid;
  grid-template-columns: minmax(470px, 0.92fr) minmax(560px, 1.08fr);
  align-items: center;
  gap: clamp(64px, 6vw, 100px);
}

.planning {
  padding-block: clamp(58px, 5vw, 76px);
}

.planning__copy h2 {
  margin: 0 0 30px;
  font-size: clamp(42px, 3.7vw, 62px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.planning__copy h2::after {
  display: block;
  width: 220px;
  height: 2px;
  margin-top: 32px;
  background: linear-gradient(90deg, var(--brass) 0 62%, rgba(185, 141, 80, 0.2) 62%);
  content: "";
}

.planning__copy > p {
  max-width: 590px;
  margin: 0 0 36px;
  color: var(--mist);
}

.planning__copy .button {
  width: min(100%, 390px);
}

.planning__copy small {
  display: block;
  max-width: 500px;
  margin-top: 20px;
  color: #8f918e;
  font-size: 13px;
}

.plan {
  position: relative;
  min-height: 520px;
}

.plan svg {
  width: 100%;
  height: auto;
}

.plan__room {
  fill: none;
  stroke: rgba(242, 238, 231, 0.42);
  stroke-width: 2;
}

.plan__seat {
  fill: rgba(242, 238, 231, 0.035);
  stroke: rgba(242, 238, 231, 0.45);
  stroke-width: 2;
}

.plan__accent {
  fill: none;
  stroke: var(--brass);
  stroke-width: 2;
}

.plan__accent circle {
  fill: var(--brass);
}

.plan__label {
  position: absolute;
  color: var(--mist);
  font-size: 13px;
}

.plan__label--screen {
  top: 11%;
  left: 1%;
}

.plan__label--cable {
  bottom: 14%;
  left: 2%;
}

.plan__label--air {
  top: 10%;
  right: 0;
}

.process {
  padding-top: clamp(72px, 7vw, 110px);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 68px;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(185, 141, 80, 0.62);
  content: "";
}

.process-list li {
  position: relative;
  min-width: 0;
  padding: 0 24px 0 0;
}

.process-list li::before {
  position: absolute;
  z-index: 2;
  top: 61px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: var(--warm-paper);
  content: "";
}

.process-list span {
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 34px;
}

.process-list h3 {
  min-height: 50px;
  margin: 70px 0 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
}

.process-list p {
  margin: 0;
  color: #676965;
  font-size: 14px;
  line-height: 1.45;
}

.experience {
  padding-top: 30px;
}

.experience__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(70px, 9vw, 150px);
}

.experience__year {
  margin-bottom: -4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(130px, 18vw, 300px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

.experience__copy h2 {
  max-width: 740px;
  margin: 0 0 24px;
  font-size: clamp(34px, 3.6vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.experience__copy p {
  max-width: 690px;
  margin: 0 0 16px;
  color: #4e514d;
}

.experience__copy .inline-link {
  margin-top: 18px;
}

.wall-detail {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  align-items: center;
  min-height: 560px;
  padding: 60px 30px 60px 50px;
  background: #e2ded8;
  overflow: hidden;
}

.wall-detail__layers {
  position: relative;
  height: 400px;
  border: 1px solid rgba(32, 34, 33, 0.22);
  background: linear-gradient(135deg, transparent 0 47%, rgba(32, 34, 33, 0.06) 47% 53%, transparent 53%);
}

.wall-detail__layers span {
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 2px solid rgba(32, 34, 33, 0.52);
  transform: skewY(-8deg);
}

.wall-detail__layers span:nth-child(1) { left: 18%; }
.wall-detail__layers span:nth-child(2) { left: 37%; border-left-width: 10px; }
.wall-detail__layers span:nth-child(3) { left: 59%; border-left-width: 20px; }
.wall-detail__layers span:nth-child(4) { left: 83%; }

.wall-detail ul {
  margin: 0 0 0 12px;
  padding: 0;
  list-style: none;
}

.wall-detail li {
  position: relative;
  padding: 20px 0 20px 24px;
  border-bottom: 1px solid var(--line-dark);
  color: #4c4f4d;
  font-size: 14px;
}

.wall-detail li::before {
  position: absolute;
  top: 50%;
  left: -28px;
  width: 42px;
  height: 1px;
  background: var(--ink);
  content: "";
}

.architects__grid {
  display: grid;
  grid-template-columns: minmax(480px, 1fr) minmax(440px, 0.9fr);
  align-items: center;
  gap: clamp(70px, 8vw, 140px);
}

.architects__diagram {
  position: relative;
  min-height: 480px;
  border: 1px solid rgba(242, 238, 231, 0.42);
}

.architects__diagram::before,
.architects__diagram::after,
.architects__room,
.architects__screen,
.architects__seat,
.architects__rail {
  position: absolute;
  content: "";
}

.architects__diagram::before {
  top: 30px;
  right: 28px;
  bottom: 30px;
  left: 28px;
  border: 1px dashed rgba(242, 238, 231, 0.25);
}

.architects__diagram::after {
  top: 18%;
  bottom: 16%;
  left: 42%;
  width: 18%;
  border: 1px solid var(--brass);
  background: rgba(185, 141, 80, 0.05);
}

.architects__room {
  right: 8%;
  bottom: 10%;
  left: 8%;
  height: 1px;
  background: rgba(242, 238, 231, 0.55);
}

.architects__screen {
  top: 16%;
  right: 13%;
  width: 22%;
  height: 35%;
  border: 1px solid rgba(242, 238, 231, 0.55);
}

.architects__seat {
  bottom: 10%;
  left: 16%;
  width: 22%;
  height: 24%;
  border: 1px solid rgba(242, 238, 231, 0.55);
  border-radius: 30px 30px 0 0;
}

.architects__rail {
  top: 46%;
  right: -60px;
  width: 120px;
  height: 1px;
  background: var(--brass);
}

.architects__copy h2 {
  max-width: 630px;
  margin: 0 0 36px;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.architects__copy ul {
  margin: 0 0 42px;
  padding: 0;
  border-top: 1px solid rgba(185, 141, 80, 0.7);
  list-style: none;
}

.architects__copy li {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid var(--line-light);
  gap: 12px;
}

.architects__copy li span {
  color: var(--brass);
}

.architects__copy .button {
  width: min(100%, 430px);
}

.cost {
  padding-bottom: clamp(70px, 7vw, 110px);
}

.cost__grid {
  display: grid;
  grid-template-columns: minmax(400px, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 8vw, 130px);
}

.cost__copy h2 {
  margin: 0 0 26px;
  font-size: clamp(40px, 4.2vw, 68px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.cost__copy p {
  max-width: 640px;
  margin: 0 0 16px;
  color: #4f524e;
}

.cost__copy .button {
  width: min(100%, 420px);
  margin-top: 24px;
}

.plan-paper {
  position: relative;
  aspect-ratio: 1.75 / 1;
  border: 1px solid rgba(32, 34, 33, 0.24);
  background-color: #f6f3ed;
  background-image: linear-gradient(rgba(32, 34, 33, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(32, 34, 33, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  box-shadow: 12px 16px 0 rgba(32, 34, 33, 0.06);
}

.plan-paper::after {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 70px;
  height: 70px;
  border-bottom: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
  background: var(--warm-paper);
  content: "";
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.plan-paper span {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(32, 34, 33, 0.32);
}

.plan-paper span:nth-child(1) { top: 24px; left: 24px; border-top: 1px solid; border-left: 1px solid; }
.plan-paper span:nth-child(2) { top: 24px; right: 24px; border-top: 1px solid; border-right: 1px solid; }
.plan-paper span:nth-child(3) { bottom: 24px; left: 24px; border-bottom: 1px solid; border-left: 1px solid; }
.plan-paper span:nth-child(4) { right: 24px; bottom: 24px; border-right: 1px solid; border-bottom: 1px solid; }

.faq {
  padding-top: 0;
}

.faq h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 3.1vw, 50px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.faq-list {
  border-top: 1px solid var(--brass);
}

.faq-item {
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 28px;
  width: 100%;
  min-height: 68px;
  padding: 18px 14px 18px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  width: 20px;
  height: 20px;
  margin-top: 3px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 1px;
  background: var(--brass);
  content: "";
  transition: transform 180ms ease;
}

.faq-item button span::after {
  transform: rotate(90deg);
}

.faq-item button[aria-expanded="true"] span::after {
  transform: rotate(0deg);
}

.faq-answer {
  max-width: 840px;
  padding: 0 46px 22px 0;
}

.faq-answer p {
  margin: 0;
  color: #5a5c58;
}

.contact {
  padding: clamp(70px, 6vw, 100px) 0 46px;
  background: var(--cinema-black);
  color: var(--warm-paper);
}

.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 70px;
}

.contact h2 {
  margin: 0 0 16px;
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.contact p {
  max-width: 720px;
  margin: 0;
  color: var(--mist);
}

.contact__button {
  width: 100%;
  min-height: 68px;
}

.contact__status {
  grid-column: 2;
  margin-top: -42px !important;
  color: #858985 !important;
  font-size: 13px;
}

.site-footer {
  padding: 40px 0 30px;
  border-top: 1px solid rgba(185, 141, 80, 0.48);
  background: var(--cinema-black);
  color: var(--warm-paper);
}

.site-footer__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 36px;
}

.site-footer__top p {
  margin: 0;
  color: var(--mist);
  font-size: 14px;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding-block: 22px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.site-footer__nav a,
.site-footer__nav span {
  padding: 0 16px;
  border-right: 1px solid rgba(185, 141, 80, 0.52);
  color: var(--warm-paper);
  font-size: 14px;
  text-align: center;
  text-decoration: none;
}

.site-footer__nav :first-child {
  padding-left: 0;
  text-align: left;
}

.site-footer__nav :last-child {
  padding-right: 0;
  border-right: 0;
  text-align: right;
}

.site-footer__nav span {
  color: #858985;
}

.site-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
}

.site-footer__legal p {
  margin: 0;
  color: #858985;
  font-size: 12px;
}

.inner-hero--diagnostic {
  background:
    radial-gradient(circle at 78% 42%, rgba(180, 116, 65, 0.11), transparent 30%),
    linear-gradient(128deg, #080a0a 0%, #121718 62%, #0a0c0d 100%);
}

.inner-hero--diagnostic .inner-hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.9) 45%, rgba(4, 5, 5, 0.23) 72%, rgba(4, 5, 5, 0.02) 100%);
}

.inner-hero--diagnostic .inner-hero__copy {
  width: min(820px, 60vw);
}

.diagnostic-hero-art {
  position: absolute;
  z-index: 1;
  top: 128px;
  right: clamp(36px, 6vw, 110px);
  width: min(42vw, 650px);
  height: 610px;
  opacity: 0.84;
}

.diagnostic-radar {
  position: absolute;
  top: 52px;
  right: 64px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(185, 141, 80, 0.48);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 141, 80, 0.08), rgba(13, 17, 18, 0.18) 58%, rgba(13, 17, 18, 0.02) 59%);
}

.diagnostic-radar__ring,
.diagnostic-radar__cross,
.diagnostic-radar__sweep,
.diagnostic-radar__point {
  position: absolute;
  display: block;
}

.diagnostic-radar__ring {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(242, 238, 231, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.diagnostic-radar__ring--one {
  width: 250px;
  height: 250px;
}

.diagnostic-radar__ring--two {
  width: 112px;
  height: 112px;
}

.diagnostic-radar__cross--h {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(242, 238, 231, 0.14);
}

.diagnostic-radar__cross--v {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: rgba(242, 238, 231, 0.14);
}

.diagnostic-radar__sweep {
  top: 50%;
  left: 50%;
  width: 172px;
  height: 1px;
  background: linear-gradient(90deg, var(--brass), transparent);
  box-shadow: 0 0 18px rgba(185, 141, 80, 0.35);
  transform: rotate(-32deg);
  transform-origin: left center;
}

.diagnostic-radar__point {
  width: 9px;
  height: 9px;
  border: 2px solid var(--brass);
  border-radius: 50%;
  background: #101415;
  box-shadow: 0 0 0 5px rgba(185, 141, 80, 0.08);
}

.diagnostic-radar__point--one { top: 103px; right: 92px; }
.diagnostic-radar__point--two { top: 238px; left: 82px; }
.diagnostic-radar__point--three { right: 88px; bottom: 70px; }

.diagnostic-readout {
  position: absolute;
  width: 190px;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(242, 238, 231, 0.28);
  background: rgba(9, 12, 13, 0.86);
}

.diagnostic-readout span {
  position: absolute;
  top: 10px;
  right: 12px;
  color: var(--brass);
  font-family: var(--serif);
  font-size: 16px;
}

.diagnostic-readout strong {
  display: block;
  padding-top: 10px;
  color: var(--warm-paper);
  font-size: 14px;
  font-weight: 500;
}

.diagnostic-readout small {
  display: block;
  margin-top: 5px;
  color: #858985;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.diagnostic-readout--signal { top: 8px; left: 0; }
.diagnostic-readout--room { top: 312px; right: 0; }
.diagnostic-readout--control { bottom: 0; left: 78px; }

.diagnostic-result {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 250px;
  padding: 16px 18px;
  border-left: 2px solid var(--brass);
  background: rgba(185, 141, 80, 0.1);
}

.diagnostic-result small,
.diagnostic-result strong {
  display: block;
}

.diagnostic-result small {
  color: #858985;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diagnostic-result strong {
  margin-top: 5px;
  color: var(--warm-paper);
  font-size: 14px;
  font-weight: 500;
}

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

.symptom-grid article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.symptom-grid span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
}

.symptom-grid h3 {
  margin: 42px 0 12px;
  color: var(--warm-paper);
  font-size: 24px;
  font-weight: 500;
}

.symptom-grid p {
  margin: 0;
  color: var(--mist);
  font-size: 15px;
}

.diagnostics__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(70px, 8vw, 140px);
}

.diagnostics__intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.diagnostics__intro h2 {
  margin: 16px 0 24px;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.diagnostics__intro > p:not(.eyebrow) {
  margin: 0 0 30px;
  color: #565955;
}

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

.diagnostic-list li {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.diagnostic-list span {
  color: var(--brass-dark);
  font-family: var(--serif);
  font-size: 17px;
}

.diagnostic-list h3 {
  margin: 26px 0 9px;
  font-size: 20px;
  font-weight: 600;
}

.diagnostic-list p {
  margin: 0;
  color: #61645f;
  font-size: 14px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(242, 238, 231, 0.14);
}

.decision-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  background: #15191a;
}

.decision-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(185, 141, 80, 0.2);
  border-radius: 50%;
  content: "";
}

.decision-card > span {
  color: var(--brass);
  font-family: var(--serif);
  font-size: 18px;
}

.decision-card small {
  display: block;
  margin-top: 64px;
  color: #858985;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.decision-card h3 {
  margin: 10px 0 18px;
  color: var(--warm-paper);
  font-size: 27px;
  font-weight: 500;
}

.decision-card p {
  margin: 0;
  color: var(--mist);
  font-size: 14px;
}

.decision-card--keep { box-shadow: inset 0 3px #657d6b; }
.decision-card--tune { box-shadow: inset 0 3px #9a845d; }
.decision-card--update { box-shadow: inset 0 3px var(--brass); }
.decision-card--rebuild { box-shadow: inset 0 3px #a46b50; }

.upgrade-scale {
  border-bottom: 1px solid var(--line-dark);
}

.upgrade-scale__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.upgrade-scale__grid article {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.24);
}

.upgrade-scale__grid h3 {
  margin: 20px 0 16px;
  font-size: 30px;
  font-weight: 500;
}

.upgrade-scale__grid article > p:last-child {
  margin: 0;
  color: #5d605b;
}

.upgrade-scale__meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  height: 84px;
  margin-bottom: 46px;
  padding: 15px;
  border: 1px solid var(--line-dark);
}

.upgrade-scale__meter i {
  display: block;
  background: var(--brass);
  opacity: 0.18;
}

.upgrade-scale__meter i:first-child,
.upgrade-scale__meter--two i:nth-child(-n+2),
.upgrade-scale__meter--three i {
  opacity: 0.86;
}

.modernization-process {
  padding-top: 0;
}

.constraints__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 42px 90px;
}

.constraints h2 {
  margin: 15px 0 24px;
  color: var(--warm-paper);
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.constraints p:not(.eyebrow) {
  color: var(--mist);
}

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

.constraint-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--warm-paper);
}

.constraint-list span {
  color: var(--brass);
  font-family: var(--serif);
}

.constraints__links {
  grid-column: 2;
  display: flex;
  gap: 30px;
}

.constraints__links a {
  color: var(--brass-light);
  font-size: 14px;
  text-underline-offset: 5px;
}

.inner-hero--team {
  background:
    linear-gradient(rgba(185, 141, 80, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 141, 80, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 42%, rgba(185, 141, 80, 0.1), transparent 30%),
    #0b0e0f;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.inner-hero--team .inner-hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.88) 46%, rgba(4, 5, 5, 0.2) 72%, transparent 100%);
}

.inner-hero--team .inner-hero__copy {
  width: min(840px, 61vw);
}

.team-hero-art {
  position: absolute;
  z-index: 1;
  top: 140px;
  right: clamp(40px, 6vw, 100px);
  width: min(43vw, 660px);
  height: 580px;
  opacity: 0.82;
}

.team-plan {
  position: absolute;
  top: 76px;
  right: 54px;
  width: 400px;
  height: 320px;
  border: 1px solid rgba(185, 141, 80, 0.46);
  background:
    linear-gradient(rgba(242, 238, 231, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 238, 231, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.team-plan span {
  position: absolute;
  inset: 54px 64px;
  border: 1px solid rgba(242, 238, 231, 0.35);
}

.team-plan i {
  position: absolute;
  display: block;
  background: rgba(185, 141, 80, 0.56);
}

.team-plan i:nth-of-type(1) { top: 50%; left: 0; width: 100%; height: 1px; }
.team-plan i:nth-of-type(2) { top: 0; left: 50%; width: 1px; height: 100%; }

.team-plan b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86px;
  height: 58px;
  border: 1px solid var(--brass);
  transform: translate(-50%, -50%);
}

.team-node {
  position: absolute;
  width: 188px;
  min-height: 88px;
  padding: 16px;
  border: 1px solid rgba(242, 238, 231, 0.28);
  background: rgba(8, 11, 12, 0.9);
}

.team-node span {
  position: absolute;
  top: 9px;
  right: 11px;
  color: var(--brass);
  font-family: var(--serif);
}

.team-node strong,
.team-node small { display: block; }
.team-node strong { padding-top: 10px; color: var(--warm-paper); font-size: 14px; font-weight: 500; }
.team-node small { margin-top: 5px; color: #858985; font-size: 10px; text-transform: uppercase; }
.team-node--architect { top: 0; left: 0; }
.team-node--cinema { top: 0; right: 0; border-color: rgba(185, 141, 80, 0.7); }
.team-node--engineering { left: 0; bottom: 52px; }
.team-node--site { right: 0; bottom: 52px; }

.team-hero-art > p {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 12px 18px;
  border-left: 2px solid var(--brass);
  color: var(--warm-paper);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.inner-hero--heritage {
  background:
    radial-gradient(circle at 79% 42%, rgba(185, 141, 80, 0.11), transparent 32%),
    linear-gradient(128deg, #080a0a 0%, #151919 65%, #090b0c 100%);
}

.inner-hero--heritage .inner-hero__fade {
  background: linear-gradient(90deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.88) 46%, rgba(4, 5, 5, 0.18) 73%, transparent 100%);
}

.inner-hero--heritage .inner-hero__copy { width: min(900px, 64vw); }

.heritage-hero-art {
  position: absolute;
  z-index: 1;
  top: 148px;
  right: clamp(40px, 6vw, 100px);
  width: min(44vw, 690px);
  height: 560px;
  opacity: 0.86;
}

.heritage-year {
  position: absolute;
  top: 28px;
  right: 0;
  color: rgba(242, 238, 231, 0.1);
  font-family: var(--serif);
  font-size: clamp(150px, 14vw, 230px);
  line-height: 0.8;
  letter-spacing: -0.08em;
}

.heritage-line {
  position: absolute;
  top: 280px;
  right: 0;
  width: 100%;
  height: 1px;
  background: rgba(185, 141, 80, 0.62);
}

.heritage-line span,
.heritage-line i,
.heritage-line b {
  position: absolute;
  top: 50%;
  display: block;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.heritage-line span { left: 0; width: 13px; height: 13px; border: 2px solid var(--brass); background: #101314; }
.heritage-line i { width: 5px; height: 5px; background: rgba(242, 238, 231, 0.48); }
.heritage-line i:nth-of-type(1) { left: 28%; }
.heritage-line i:nth-of-type(2) { left: 52%; }
.heritage-line i:nth-of-type(3) { left: 75%; }
.heritage-line b { left: 100%; width: 17px; height: 17px; border: 3px solid var(--brass); background: #101314; }

.heritage-hero-art > p {
  position: absolute;
  top: 301px;
  left: 50%;
  margin: 0;
  color: #858985;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.heritage-place {
  position: absolute;
  bottom: 82px;
  width: 205px;
  padding: 18px;
  border: 1px solid rgba(242, 238, 231, 0.28);
  background: rgba(8, 11, 12, 0.84);
}

.heritage-place--origin { left: 0; }
.heritage-place--new { right: 0; border-color: rgba(185, 141, 80, 0.72); }
.heritage-place small,
.heritage-place strong { display: block; }
.heritage-place small { color: #858985; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; }
.heritage-place strong { margin-top: 8px; color: var(--warm-paper); font-size: 18px; font-weight: 500; }

.heritage__grid,
.leadership__grid,
.new-region__grid,
.privacy-promise__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(70px, 9vw, 150px);
}

.heritage h2,
.leadership h2,
.new-region h2,
.privacy-promise h2 {
  margin: 16px 0 24px;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.heritage h2,
.leadership h2,
.privacy-promise h2 { color: var(--warm-paper); }
.heritage > .shell > div:first-child > p:last-child,
.leadership p,
.privacy-promise p { color: var(--mist); }

.heritage-constants {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.heritage-constants article { min-height: 220px; padding: 26px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.heritage-constants span { color: var(--brass); font-family: var(--serif); }
.heritage-constants h3 { margin: 36px 0 10px; color: var(--warm-paper); font-size: 24px; font-weight: 500; }
.heritage-constants p { margin: 0; color: var(--mist); font-size: 14px; }

.system-layer-grid--paper { border-color: var(--line-dark); }
.system-layer-grid--paper article { border-color: var(--line-dark); }
.system-layer-grid--paper span { color: var(--brass-dark); }
.system-layer-grid--paper h3 { color: var(--ink); }
.system-layer-grid--paper p { color: #5f625d; }

.leadership-mark {
  align-self: center;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 390px;
  border: 1px solid rgba(185, 141, 80, 0.48);
  background:
    linear-gradient(rgba(242, 238, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 238, 231, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
}

.leadership-mark span { color: var(--warm-paper); font-family: var(--serif); font-size: 100px; line-height: 1; }
.leadership-mark small { position: absolute; bottom: 28px; color: var(--brass-light); letter-spacing: 0.15em; text-transform: uppercase; }

.new-region { border-bottom: 1px solid var(--line-dark); }
.new-region__grid > div:last-child { padding-top: 54px; }
.new-region__grid p { color: #5d605b; }
.new-region__grid .lead { color: var(--ink); font-size: 22px; }
.privacy-promise__grid > div:last-child { padding-top: 48px; }

.inner-hero--contact-route {
  background: radial-gradient(circle at 78% 44%, rgba(185, 141, 80, 0.12), transparent 31%), #0a0d0e;
}

.inner-hero--contact-route .inner-hero__fade { background: linear-gradient(90deg, rgba(4,5,5,.98), rgba(4,5,5,.88) 46%, rgba(4,5,5,.14) 75%, transparent); }
.inner-hero--contact-route .inner-hero__copy { width: min(860px, 62vw); }

.contact-route-art {
  position: absolute;
  z-index: 1;
  top: 230px;
  right: clamp(50px, 7vw, 120px);
  display: flex;
  align-items: center;
  width: min(38vw, 620px);
  opacity: .82;
}

.contact-route-art > div { flex: 0 0 160px; min-height: 118px; padding: 22px; border: 1px solid rgba(242,238,231,.3); background: rgba(8,11,12,.86); }
.contact-route-art > div:last-child { border-color: rgba(185,141,80,.75); }
.contact-route-art span { color: var(--brass); font-family: var(--serif); }
.contact-route-art strong,.contact-route-art small { display:block; }
.contact-route-art strong { margin-top: 20px; color: var(--warm-paper); font-weight:500; }
.contact-route-art small { margin-top:5px; color:#858985; font-size:10px; text-transform:uppercase; }
.contact-route-art > i { flex:1 1 auto; height:1px; background:rgba(185,141,80,.62); }

.channel-status__grid { display:grid; grid-template-columns:minmax(320px,.78fr) minmax(0,1.22fr); gap:48px 100px; }
.channel-status h2 { margin:16px 0 22px; font-size:clamp(44px,5vw,76px); font-weight:400; line-height:1.02; letter-spacing:-.05em; }
.channel-status > .shell > div:first-child > p:last-child { color:#5d605b; }
.channel-list { border-top:1px solid var(--line-dark); }
.channel-list div { display:grid; grid-template-columns:150px 1fr; gap:24px; padding:20px 0; border-bottom:1px solid var(--line-dark); }
.channel-list span { color:var(--brass-dark); font-size:13px; text-transform:uppercase; letter-spacing:.08em; }
.channel-list strong { font-weight:500; }
.channel-status__button { grid-column:2; min-height:66px; border-color:var(--line-dark); color:var(--ink); }
.channel-status .contact__status { grid-column:2; margin-top:-34px !important; color:#5b5e59 !important; }
.editorial-copy--light .lead { color:var(--warm-paper); }
.editorial-copy--light p { color:var(--mist); }
.contact-safety h2 { color:var(--warm-paper); }
.contact-safety .card-link { display:inline-flex; margin:14px 22px 0 0; color:var(--brass-light); }

.legal-page { margin:0; background:var(--warm-paper); color:var(--ink); }
.legal-header { padding:24px 0; border-bottom:1px solid var(--line-dark); background:#0b0d0e; }
.legal-header .shell { display:flex; align-items:center; justify-content:space-between; }
.legal-header a { color:var(--warm-paper); }
.legal-header > .shell > a:last-child { font-size:14px; text-underline-offset:5px; }
.legal-document { max-width:1000px; padding-top:60px; padding-bottom:100px; }
.legal-warning { margin-bottom:44px; padding:22px 26px; border:2px solid #9a4f3d; background:#fff4ef; }
.legal-warning strong { color:#8c3d2d; letter-spacing:.1em; }
.legal-warning p { margin:8px 0 0; color:#6d453d; }
.legal-document h1 { max-width:900px; margin:28px 0 38px; font-size:clamp(48px,7vw,92px); font-weight:400; line-height:1; letter-spacing:-.055em; }
.legal-document h2 { margin:48px 0 14px; font-size:28px; font-weight:500; }
.legal-document p,.legal-document li { color:#51544f; font-size:17px; line-height:1.75; }
.legal-document a { color:#7b5b32; text-underline-offset:5px; }
.legal-lead { padding-left:22px; border-left:3px solid var(--brass); font-size:19px !important; }
.legal-next { margin-top:60px; padding:30px 34px; border:1px solid var(--line-dark); background:#f6f1e8; }
.legal-next h2 { margin-top:0; }

@media (max-width: 1180px) {
  .site-header__inner {
    grid-template-columns: 1fr auto auto;
    gap: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 50;
    display: grid;
    width: 50px;
    height: 50px;
    padding: 13px;
    border: 1px solid rgba(185, 141, 80, 0.65);
    border-radius: 4px;
    background: rgba(11, 13, 14, 0.4);
    place-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--brass-light);
    transition: transform 180ms ease, opacity 180ms ease;
  }

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

  .mobile-nav {
    position: fixed;
    z-index: 49;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--gutter) 50px;
    background: rgba(11, 13, 14, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav > a:not(.button) {
    padding: 14px 0;
    border-bottom: 1px solid var(--line-light);
    color: #fff;
    font-size: 24px;
    text-decoration: none;
  }

  .mobile-nav .button {
    margin-top: 32px;
  }

  .value__grid,
  .planning__grid,
  .experience__grid,
  .architects__grid,
  .cost__grid,
  .editorial-grid,
  .deliverables__grid,
  .budget-band__grid,
  .risks__grid,
  .partner-band__grid,
  .acoustic-scope__grid,
  .myths__grid,
  .selection__grid,
  .calibration__grid,
  .anti-catalog__grid {
    grid-template-columns: 1fr;
  }

  .system-hero-art {
    right: -60px;
    width: 680px;
    opacity: 0.44;
  }

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

  .acoustic-factor-grid li:nth-child(4n) {
    border-right: 1px solid var(--line-dark);
  }

  .acoustic-factor-grid li:nth-child(2n) {
    border-right: 0;
  }

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

  .systems-grid li:nth-child(4n) {
    border-right: 1px solid rgba(242, 238, 231, 0.16);
  }

  .systems-grid li:nth-child(2n) {
    border-right: 0;
  }

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

  .document-grid article:nth-child(3n) {
    border-right: 1px solid var(--line-dark);
  }

  .document-grid article:nth-child(2n) {
    border-right: 0;
  }

  .role-grid article:nth-child(2n) {
    border-right: 0;
  }

  .editorial-copy {
    padding-top: 0;
  }

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

  .scope-grid li:nth-child(3n) {
    border-right: 1px solid rgba(242, 238, 231, 0.16);
  }

  .scope-grid li:nth-child(2n) {
    border-right: 0;
  }

  .plan {
    min-height: 0;
  }

  .process-list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 54px;
  }

  .process-list::before {
    display: none;
  }

  .process-list li::before {
    display: none;
  }

  .process-list h3 {
    margin-top: 20px;
  }

  .wall-detail {
    min-height: 460px;
  }

  .architects__diagram {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  body {
    font-size: 17px;
  }

  .header-cta {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto;
    min-height: 82px;
  }

  .brand {
    color: var(--brass-light);
    font-size: 18px;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 1100px;
  }

  .hero__media img {
    object-position: 59% center;
  }

  .hero__fade {
    background: linear-gradient(180deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.92) 38%, rgba(4, 5, 5, 0.32) 66%, rgba(4, 5, 5, 0.04) 84%);
  }

  .hero__inner {
    justify-content: flex-start;
    min-height: 1100px;
    padding-top: 150px;
    padding-bottom: 38px;
  }

  .hero__copy {
    width: 100%;
    margin-bottom: auto;
  }

  .hero h1 {
    max-width: 590px;
    margin-bottom: 28px;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(48px, 11vw, 72px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    overflow-wrap: normal;
    hyphens: manual;
    text-wrap: wrap;
  }

  .hero__copy > p {
    max-width: 560px;
    font-size: 19px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 34px;
  }

  .hero__actions .button {
    width: min(100%, 480px);
  }

  .hero__actions .button--ghost {
    width: auto;
    min-height: 44px;
    padding: 0 0 7px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    color: var(--brass-light);
  }

  .proof-rail {
    display: block;
    margin-top: 50px;
    padding-top: 20px;
  }

  .proof-rail li {
    display: none;
  }

  .proof-rail li:first-child {
    display: block;
    color: var(--brass-light);
  }

  .inner-hero,
  .inner-hero__inner {
    min-height: 930px;
  }

  .inner-hero__media img {
    object-position: 56% center;
  }

  .inner-hero__fade {
    background: linear-gradient(180deg, rgba(4, 5, 5, 0.98) 0%, rgba(4, 5, 5, 0.9) 47%, rgba(4, 5, 5, 0.48) 74%, rgba(4, 5, 5, 0.24) 100%);
  }

  .inner-hero__inner {
    padding-top: 112px;
    padding-bottom: 30px;
  }

  .breadcrumbs {
    margin-bottom: 72px;
  }

  .inner-hero__copy {
    width: 100%;
    margin: 0 0 auto;
  }

  .inner-hero--blueprint .inner-hero__copy {
    width: 100%;
  }

  .inner-hero--acoustic .inner-hero__copy {
    width: 100%;
  }

  .inner-hero--system .inner-hero__copy {
    width: 100%;
  }

  .system-hero-art {
    top: 300px;
    right: -340px;
    width: 820px;
    opacity: 0.18;
  }

  .acoustic-hero-art {
    top: 280px;
    right: -260px;
    width: 900px;
    opacity: 0.23;
  }

  .acoustic-label {
    display: none;
  }

  .blueprint-hero-art {
    top: 310px;
    right: -220px;
    width: 850px;
    opacity: 0.24;
  }

  .blueprint-label {
    display: none;
  }

  .inner-hero h1 {
    font-size: clamp(48px, 11.4vw, 68px);
    line-height: 1.02;
  }

  .inner-hero__copy > p:not(.eyebrow) {
    font-size: 18px;
  }

  .inner-hero .hero__actions {
    align-items: stretch;
  }

  .inner-hero .button {
    width: min(100%, 520px);
  }

  .editorial-grid h2 {
    font-size: clamp(42px, 11vw, 62px);
  }

  .scope-grid,
  .format-grid,
  .systems-grid,
  .document-grid,
  .role-grid,
  .acoustic-task-grid,
  .acoustic-factor-grid,
  .integration-grid,
  .system-layer-grid,
  .display-choice__grid {
    grid-template-columns: 1fr;
  }

  .system-layer-grid article,
  .system-layer-grid article:nth-child(3n) {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
  }

  .system-layer-grid span {
    margin-bottom: 24px;
  }

  .display-choice__grid {
    gap: 58px;
  }

  .acoustic-task-grid article {
    min-height: 0;
    padding: 30px 0 36px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .wave-icon,
  .wall-icon,
  .noise-icon {
    height: 92px;
  }

  .wave-icon i:nth-child(3) { height: 90px; }
  .noise-icon i:nth-child(3) { height: 90px; }

  .acoustic-factor-grid li,
  .acoustic-factor-grid li:nth-child(2n),
  .acoustic-factor-grid li:nth-child(4n) {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
  }

  .acoustic-factor-grid span {
    margin-bottom: 22px;
  }

  .integration-grid {
    gap: 54px;
  }

  .scope-checklist {
    grid-template-columns: 1fr;
  }

  .scope-checklist li,
  .scope-checklist li:nth-child(2n) {
    border-right: 0;
  }

  .scope-grid li,
  .scope-grid li:nth-child(2n),
  .scope-grid li:nth-child(3n) {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
  }

  .scope-grid span {
    margin-bottom: 26px;
  }

  .systems-grid li,
  .systems-grid li:nth-child(2n),
  .systems-grid li:nth-child(4n),
  .document-grid article,
  .document-grid article:nth-child(2n),
  .document-grid article:nth-child(3n) {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
  }

  .systems-grid span,
  .document-grid span {
    margin-bottom: 24px;
  }

  .role-grid article,
  .role-grid article:nth-child(2n) {
    min-height: 0;
    padding: 28px 0 32px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .role-grid article:last-child {
    padding-inline: 24px;
  }

  .role-grid h3 {
    margin-top: 22px;
  }

  .partner-band__diagram {
    aspect-ratio: 1.5 / 1;
  }

  .format-grid {
    gap: 54px;
  }

  .budget-band h2 {
    font-size: clamp(42px, 11vw, 62px);
  }

  .value__grid {
    gap: 58px;
  }

  .value__intro h2 {
    font-family: var(--serif);
    font-size: clamp(44px, 11.5vw, 68px);
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .feature-list li {
    grid-template-columns: 48px 1fr;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .section-heading .section-rule {
    flex: 0 0 auto;
    width: 74px;
    height: 2px;
  }

  .solution-list {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .solution-item,
  .solution-item:first-child,
  .solution-item:last-child {
    padding: 0;
    border-left: 0;
  }

  .solution-item p {
    min-height: 0;
  }

  .planning__copy h2,
  .architects__copy h2,
  .cost__copy h2 {
    font-size: clamp(40px, 10.5vw, 60px);
  }

  .plan__label {
    display: none;
  }

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

  .process-list li {
    display: grid;
    grid-template-columns: 58px 1fr;
    padding: 26px 0;
    border-bottom: 1px solid var(--line-dark);
    column-gap: 16px;
  }

  .process-list span {
    grid-row: 1 / 3;
    font-size: 28px;
  }

  .process-list h3 {
    min-height: 0;
    margin: 0 0 6px;
  }

  .experience {
    padding-top: 24px;
  }

  .experience__year {
    font-size: clamp(128px, 40vw, 210px);
  }

  .wall-detail {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 28px;
  }

  .wall-detail__layers {
    height: 300px;
  }

  .wall-detail ul {
    margin: 28px 0 0;
  }

  .wall-detail li::before {
    display: none;
  }

  .architects__diagram {
    min-height: 320px;
  }

  .architects__rail {
    display: none;
  }

  .plan-paper {
    order: -1;
  }

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact__status {
    grid-column: auto;
    margin-top: -20px !important;
  }

  .site-footer__top,
  .site-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__nav a,
  .site-footer__nav span,
  .site-footer__nav :first-child,
  .site-footer__nav :last-child {
    padding: 14px 0;
    border-right: 0;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .section {
    padding-block: 76px;
  }

  .hero {
    min-height: 770px;
  }

  .hero__inner {
    min-height: 770px;
    padding-top: 126px;
    padding-bottom: 28px;
  }

  .inner-hero,
  .inner-hero__inner {
    min-height: 850px;
  }

  .inner-hero__inner {
    padding-top: 104px;
    padding-bottom: 26px;
  }

  .breadcrumbs {
    margin-bottom: 54px;
  }

  .breadcrumbs li:last-child {
    display: none;
  }

  .breadcrumbs li + li::before {
    display: none;
  }

  .inner-hero h1 {
    font-size: clamp(43px, 12.2vw, 54px);
  }

  .inner-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.5;
  }

  .inner-hero--blueprint .inner-hero__inner {
    min-height: 900px;
  }

  .inner-hero--acoustic,
  .inner-hero--acoustic .inner-hero__inner {
    min-height: 900px;
  }

  .inner-hero--system,
  .inner-hero--system .inner-hero__inner {
    min-height: 900px;
  }

  .inner-hero--blueprint {
    min-height: 900px;
  }

  .blueprint-hero-art {
    top: 360px;
    right: -350px;
    width: 820px;
  }

  .acoustic-hero-art {
    top: 350px;
    right: -390px;
    width: 860px;
  }

  .system-hero-art {
    top: 360px;
    right: -420px;
    width: 810px;
  }

  .inner-hero .hero__actions {
    margin-top: 28px;
  }

  .inner-hero .button--ghost {
    width: auto;
    min-height: 44px;
    padding: 0 0 7px;
    border-width: 0 0 1px;
    border-radius: 0;
    background: transparent;
    color: var(--brass-light);
  }

  .editorial-grid h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .editorial-copy .lead {
    font-size: 25px;
  }

  .readiness-list li {
    grid-template-columns: 48px 1fr;
  }

  .deliverables-list li {
    grid-template-columns: 46px 1fr;
    font-size: 16px;
  }

  .risk-list li {
    padding-right: 0;
    font-size: 16px;
  }

  .partner-band__diagram {
    aspect-ratio: 1.1 / 1;
  }

  .acoustic-scope h2,
  .myths__intro h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .scope-checklist li {
    padding-right: 0;
  }

  .acoustic-caveat p {
    padding: 20px 0 20px 20px;
    background: transparent;
  }

  .integration-visual {
    height: 220px;
  }

  .myth-list article {
    grid-template-columns: 48px 1fr;
  }

  .selection__intro h2,
  .calibration h2,
  .anti-catalog h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .selection-list li,
  .calibration-list article {
    grid-template-columns: 46px 1fr;
  }

  .projection-visual,
  .display-visual {
    height: 230px;
  }

  .projection-visual__screen {
    right: 24px;
  }

  .projection-visual__projector {
    left: 24px;
  }

  .projection-visual__beam {
    left: 86px;
    width: calc(100% - 128px);
  }

  .display-visual span {
    inset: 30px 34px 48px;
  }

  .anti-catalog li {
    padding-right: 0;
    font-size: 16px;
  }

  .hero h1 {
    font-size: clamp(42px, 10.6vw, 48px);
  }

  .hero__copy > p {
    font-size: 17px;
    line-height: 1.55;
  }

  .button {
    min-height: 58px;
    padding: 0 22px;
    gap: 20px;
    font-size: 16px;
  }

  .value__intro h2 {
    font-size: clamp(42px, 12.4vw, 58px);
  }

  .feature-list li {
    grid-template-columns: 40px 1fr;
  }

  .planning__copy h2,
  .architects__copy h2,
  .cost__copy h2 {
    font-size: clamp(38px, 11.7vw, 52px);
  }

  .experience__copy h2 {
    font-size: 36px;
  }

  .architects__diagram {
    min-height: 250px;
  }

  .faq-item button {
    font-size: 16px;
  }

  .contact h2 {
    font-size: 44px;
  }
}

@media (max-width: 1180px) {
  .contact-route-art { right:-130px; width:700px; opacity:.4; }
  .channel-status__grid { grid-template-columns:1fr; }
  .channel-status__button,
  .channel-status .contact__status { grid-column:auto; }
  .channel-status .contact__status { margin-top:-26px !important; }

  .heritage-hero-art { right: -130px; width: 650px; opacity: 0.42; }
  .heritage__grid,
  .leadership__grid,
  .new-region__grid,
  .privacy-promise__grid { grid-template-columns: 1fr; gap: 52px; }
  .leadership-mark { max-width: 660px; }

  .team-hero-art {
    right: -140px;
    width: 640px;
    opacity: 0.42;
  }

  .diagnostic-hero-art {
    right: -120px;
    width: 620px;
    opacity: 0.45;
  }

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

  .diagnostics__grid,
  .constraints__grid {
    grid-template-columns: 1fr;
  }

  .diagnostics__intro {
    position: static;
  }

  .diagnostics__intro > p:not(.eyebrow) {
    max-width: 760px;
  }

  .constraints__links {
    grid-column: auto;
  }
}

@media (max-width: 820px) {
  .inner-hero--contact-route .inner-hero__copy { width:100%; }
  .contact-route-art { top:380px; right:-420px; width:820px; opacity:.14; }
  .channel-list div { grid-template-columns:1fr; gap:7px; }

  .inner-hero--heritage .inner-hero__copy { width: 100%; }
  .heritage-hero-art { top: 310px; right: -340px; width: 760px; opacity: 0.15; }
  .heritage-constants { grid-template-columns: 1fr; }

  .inner-hero--team .inner-hero__copy {
    width: 100%;
  }

  .team-hero-art {
    top: 310px;
    right: -360px;
    width: 760px;
    opacity: 0.15;
  }

  .inner-hero--diagnostic .inner-hero__copy {
    width: 100%;
  }

  .diagnostic-hero-art {
    top: 270px;
    right: -330px;
    width: 760px;
    opacity: 0.16;
  }

  .diagnostic-radar {
    width: 430px;
    height: 430px;
  }

  .symptom-grid,
  .diagnostic-list,
  .decision-grid,
  .upgrade-scale__grid {
    grid-template-columns: 1fr;
  }

  .symptom-grid article,
  .diagnostic-list li {
    min-height: 0;
  }

  .symptom-grid h3 {
    margin-top: 28px;
  }

  .decision-card {
    min-height: 250px;
  }

  .decision-card small {
    margin-top: 42px;
  }

  .upgrade-scale__grid article {
    min-height: 0;
  }

  .constraints__links {
    flex-direction: column;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .inner-hero--contact-route,
  .inner-hero--contact-route .inner-hero__inner { min-height:920px; }
  .contact-route-art { display:none; }
  .channel-status h2 { font-size:clamp(40px,12vw,56px); }
  .legal-document { padding-top:36px; }
  .legal-document h1 { font-size:46px; }
  .legal-document h2 { font-size:24px; }
  .legal-next { padding:24px 22px; }

  .inner-hero--heritage,
  .inner-hero--heritage .inner-hero__inner { min-height: 930px; }
  .heritage-hero-art { top: 400px; right: -440px; width: 820px; }
  .heritage h2,
  .leadership h2,
  .new-region h2,
  .privacy-promise h2 { font-size: clamp(40px, 12vw, 56px); }
  .leadership-mark { min-height: 300px; }
  .leadership-mark span { font-size: 78px; }

  .inner-hero--team,
  .inner-hero--team .inner-hero__inner {
    min-height: 920px;
  }

  .team-hero-art {
    top: 390px;
    right: -430px;
    width: 820px;
  }

  .inner-hero--diagnostic,
  .inner-hero--diagnostic .inner-hero__inner {
    min-height: 900px;
  }

  .diagnostic-hero-art {
    top: 360px;
    right: -420px;
    width: 810px;
  }

  .symptom-grid article,
  .diagnostic-list li,
  .decision-card,
  .upgrade-scale__grid article {
    padding: 24px;
  }

  .diagnostics__intro h2,
  .constraints h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .diagnostic-list {
    border-left: 0;
  }

  .diagnostic-list li {
    border-left: 1px solid var(--line-dark);
  }

  .constraint-list li {
    grid-template-columns: 42px 1fr;
    gap: 12px;
  }
}

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

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