:root {
  --ink: #090b0c;
  --ink-soft: #0f1214;
  --panel: #14181a;
  --paper: #f4efe5;
  --paper-soft: #e7e0d4;
  --muted: #a5aaa8;
  --amber: #ffb21f;
  --amber-soft: #ffd077;
  --teal: #56c7c2;
  --line-dark: rgba(244, 239, 229, 0.16);
  --line-light: rgba(9, 11, 12, 0.18);
  --pad: clamp(1.25rem, 4.4vw, 4.5rem);
  --display: "Arial Narrow", "Aptos Narrow", "Roboto Condensed",
    "Helvetica Neue Condensed", Impact, sans-serif;
  --sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 5px;
}

.skipLink {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skipLink:focus {
  transform: translateY(0);
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.7rem;
  padding: 0 var(--pad);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(9, 11, 12, 0.94);
  backdrop-filter: blur(16px);
}

.brandLink {
  justify-self: start;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brandLogo {
  display: block;
  width: clamp(8rem, 11vw, 10rem);
  height: auto;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.8vw, 2rem);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.desktopNav a,
.headerCta,
.textLink {
  transition:
    color 160ms ease,
    opacity 160ms ease;
}

.desktopNav a:hover {
  color: var(--amber);
}

.headerCta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(244, 239, 229, 0.48);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.headerCta:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.arrow {
  font-size: 1.05em;
  line-height: 1;
}

.mobileMenu {
  display: none;
  justify-self: end;
}

.mobileMenu summary {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 0.42rem;
  border: 1px solid var(--line-dark);
}

.mobileMenu summary::-webkit-details-marker {
  display: none;
}

.mobileMenu summary span {
  display: block;
  width: 1.2rem;
  height: 1px;
  background: var(--paper);
}

.mobileMenu nav {
  position: fixed;
  top: 5rem;
  right: 0;
  left: 0;
  display: grid;
  padding: 1rem var(--pad) 2rem;
  border-bottom: 1px solid var(--line-dark);
  background: var(--ink);
}

.mobileMenu:not([open]) nav {
  display: none;
}

.mobileMenu nav a {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(34rem, 0.97fr);
  min-height: calc(100vh - 5.7rem);
  max-height: 58rem;
  border-bottom: 1px solid var(--line-dark);
}

.heroCopy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(3.2rem, 6.5vh, 6.2rem) var(--pad) clamp(2.8rem, 5.5vh, 5rem);
}

.eyebrow,
.sectionLabel {
  margin: 0;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.eyebrow > span {
  width: 1.9rem;
  height: 1px;
  background: var(--teal);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  margin: 2.2rem 0 2.8rem;
  font-family: var(--display);
  font-size: clamp(4.2rem, 7.1vw, 8.2rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.79;
  text-transform: uppercase;
}

.hero h1 strong {
  color: var(--amber);
  font: inherit;
}

.hero h1.homeHeroExpanded {
  font-size: clamp(3.8rem, 6.2vw, 7.25rem);
  line-height: 0.8;
}

.hero h1.homeHeroExpanded span:last-child {
  margin-top: 0.12em;
  font-size: 0.78em;
  letter-spacing: -0.035em;
}

.heroIntro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.72fr) minmax(16rem, 1.28fr);
  align-items: end;
  gap: 2.2rem;
}

.heroIntro > p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.65;
}

.heroActions {
  display: grid;
  gap: 1.2rem;
}

.button {
  display: inline-flex;
  min-height: 3.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0.95rem 1.3rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.buttonPrimary {
  background: var(--amber);
  color: var(--ink);
}

.buttonPrimary:hover {
  transform: translateY(-2px);
  background: var(--amber-soft);
}

.textLink {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.textLink:hover {
  color: var(--amber);
}

.planVisual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: clamp(2rem, 4.1vw, 4.2rem) clamp(1.4rem, 3.7vw, 3.8rem) 2rem;
  border-left: 1px solid var(--line-dark);
  background-color: #0d1112;
  background-image:
    linear-gradient(rgba(86, 199, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.055) 1px, transparent 1px);
  background-size: 28px 28px;
}

.planVisual::before {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(86, 199, 194, 0.08);
  content: "";
  filter: blur(70px);
}

.homeHeroPhotometric {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
  background-color: #050809;
  background-image:
    linear-gradient(rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  place-items: center;
}

.homeHeroPhotometric::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 9, 0.88) 0%,
      rgba(5, 8, 9, 0.62) 18%,
      rgba(5, 8, 9, 0.24) 40%,
      transparent 68%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 9, 0.38) 0%,
      transparent 20%,
      transparent 72%,
      rgba(5, 8, 9, 0.5) 100%
    ),
    radial-gradient(
      circle at 64% 45%,
      transparent 34%,
      rgba(5, 8, 9, 0.2) 100%
    );
  content: "";
  pointer-events: none;
}

.homeHeroPhotometric::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  border: 1px solid rgba(86, 199, 194, 0.08);
  content: "";
  pointer-events: none;
}

.homeHeroPhotometric img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.76;
  filter: brightness(0.88) contrast(0.94);
  object-fit: contain;
  object-position: center;
}

.planTopline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.planTopline span:first-child {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.planTopline i {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 1rem rgba(86, 199, 194, 0.75);
}

.planFrame {
  position: relative;
  width: 100%;
  height: calc(100% - 7.5rem);
  min-height: 30rem;
  margin-top: 2.2rem;
  border: 1px solid rgba(244, 239, 229, 0.28);
  transform: rotate(-2.5deg);
}

.planFrame::before,
.planFrame::after,
.room,
.wall {
  position: absolute;
  display: block;
  border: 1px solid rgba(244, 239, 229, 0.31);
  content: "";
}

.planFrame::before {
  inset: 7% 4% 10% 7%;
}

.planFrame::after {
  inset: 18% 24% 28% 16%;
}

.roomOne {
  top: 13%;
  right: 6%;
  width: 31%;
  height: 35%;
}

.roomTwo {
  right: 9%;
  bottom: 8%;
  width: 28%;
  height: 31%;
}

.roomThree {
  bottom: 12%;
  left: 5%;
  width: 27%;
  height: 33%;
}

.wall {
  width: 1px;
  height: 23%;
  border: 0;
  background: rgba(244, 239, 229, 0.42);
}

.wallOne {
  top: 12%;
  left: 47%;
}

.wallTwo {
  top: 42%;
  right: 23%;
  transform: rotate(90deg);
}

.wallThree {
  bottom: 11%;
  left: 51%;
  transform: rotate(90deg);
}

.wallFour {
  top: 52%;
  left: 17%;
}

.heat {
  position: absolute;
  display: grid;
  width: clamp(7.5rem, 11vw, 10.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(86, 199, 194, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      #ffe9a6 0 4%,
      var(--amber) 5% 16%,
      rgba(255, 128, 0, 0.88) 17% 28%,
      rgba(255, 178, 31, 0.18) 45%,
      rgba(86, 199, 194, 0.1) 60%,
      transparent 71%
    );
  box-shadow: 0 0 3.5rem rgba(255, 178, 31, 0.14);
  animation: heat-pulse 5.2s ease-in-out infinite;
}

.heat i {
  width: 0.72rem;
  height: 0.72rem;
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.heatOne {
  top: 12%;
  left: 14%;
}

.heatTwo {
  top: 15%;
  right: 9%;
  animation-delay: -1.2s;
}

.heatThree {
  bottom: 5%;
  left: 31%;
  animation-delay: -2.5s;
}

.heatFour {
  right: -1%;
  bottom: 12%;
  animation-delay: -3.6s;
}

.measure {
  position: absolute;
  color: var(--amber);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
}

.measureOne {
  top: -1.5rem;
  left: 42%;
}

.measureTwo {
  top: 48%;
  right: -2.8rem;
  transform: rotate(90deg);
}

.north {
  position: absolute;
  right: 2%;
  bottom: 2%;
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 1rem;
  font-weight: 700;
}

.planMetrics {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.planMetrics div {
  display: grid;
}

.planMetrics div:last-child {
  text-align: right;
}

.planMetrics strong {
  font-family: var(--display);
  font-size: 2rem;
  font-stretch: condensed;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.planMetrics span {
  margin-top: 0.35rem;
  color: var(--teal);
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.proofRail {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem var(--pad);
  background: var(--paper);
  color: var(--ink);
}

.proofRail p,
.proofRail span {
  margin: 0;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proofRail p {
  color: rgba(9, 11, 12, 0.58);
}

.proofRail div {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.proofRail i {
  width: 0.32rem;
  height: 0.32rem;
  transform: rotate(45deg);
  background: var(--amber);
}

.sectionDark,
.sectionLight {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.sectionDark {
  background: var(--ink);
  color: var(--paper);
}

.sectionLight {
  background: var(--paper);
  color: var(--ink);
}

.sectionLight .sectionLabel {
  color: #80641e;
}

.introGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(18rem, 0.5fr);
  gap: 5rem;
  margin-top: 2.2rem;
}

.intro h2,
.sectionHeading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.4vw, 7.6rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.introGrid > div {
  align-self: end;
}

.introGrid > div > p {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.lightLink {
  color: var(--paper);
}

.capabilityRow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 5rem;
}

.capabilityRow span {
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sectionHeading {
  margin-bottom: 4rem;
}

.sectionHeading h2 {
  max-width: 66rem;
  margin-top: 1.5rem;
  font-size: clamp(3.1rem, 5.6vw, 6.3rem);
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.serviceCard {
  min-width: 0;
  padding: 2.4rem clamp(1.2rem, 2.5vw, 2.8rem) 3rem;
}

.serviceCard + .serviceCard {
  border-left: 1px solid var(--line-light);
}

.serviceNumber {
  margin: 0 0 5rem;
  color: #80641e;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

.serviceCard h3,
.processGrid h3,
.deliverableGrid h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.serviceCard > p:not(.serviceNumber) {
  min-height: 7rem;
  margin: 0;
  color: rgba(9, 11, 12, 0.67);
  line-height: 1.7;
}

.serviceCard ul {
  display: grid;
  gap: 0.65rem;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.serviceCard li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.serviceCard li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.3rem;
  height: 0.3rem;
  background: var(--amber);
  content: "";
  transform: rotate(45deg);
}

.splitHeading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  align-items: end;
  gap: 5rem;
}

.splitHeading > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.processGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.processGrid li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  min-height: 14rem;
  padding: 2.2rem 2rem 2.2rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.processGrid li:nth-child(odd) {
  padding-right: 3rem;
  border-right: 1px solid var(--line-dark);
}

.processGrid li:nth-child(even) {
  padding-left: 3rem;
}

.processGrid > li > span,
.deliverableGrid span {
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
}

.processGrid h3 {
  font-size: clamp(1.8rem, 2.7vw, 3rem);
}

.processGrid p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.workHeading .textLink {
  align-self: end;
  margin-bottom: 0.3rem;
}

.projectGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.2vw, 2rem);
}

.project {
  min-width: 0;
  margin: 0;
}

.projectWide {
  grid-column: span 2;
}

.projectImage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-soft);
}

.projectWide .projectImage {
  aspect-ratio: 16 / 9;
}

.projectImage img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.project:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.projectPhotometric .projectImage {
  width: 100%;
  margin-inline: 0;
  aspect-ratio: 4 / 3;
  background: #050708;
}

.projectPhotometric figcaption {
  width: 100%;
  margin-inline: 0;
}

.projectPhotometric .projectImage img.projectFcLevelsImage {
  width: 100%;
  object-fit: contain;
  object-position: center;
  filter: contrast(1.12) saturate(1.02);
}

.projectPhotometric:hover .projectImage img.projectFcLevelsImage {
  transform: none;
  filter: contrast(1.12) saturate(1.02);
}

.projectImage > span {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  background: var(--amber);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.65rem;
}

.project figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 2rem;
  border-bottom: 1px solid var(--line-light);
}

.project figcaption p {
  margin: 0;
  color: rgba(9, 11, 12, 0.58);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project figcaption h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.deliverables {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.deliverableGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.deliverableGrid > div {
  padding: 2rem 2rem 0 0;
}

.deliverableGrid > div + div {
  padding-left: 2rem;
  border-left: 1px solid var(--line-dark);
}

.deliverableGrid h3 {
  margin-top: 2.8rem;
  font-size: 1.65rem;
}

.deliverableGrid p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
}

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 10rem) var(--pad) 4rem;
  background:
    linear-gradient(rgba(86, 199, 194, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.04) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 32px 32px;
}

.contactGlow {
  position: absolute;
  top: 48%;
  right: 7%;
  width: clamp(18rem, 37vw, 40rem);
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid rgba(86, 199, 194, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      #fff4c9 0 2%,
      var(--amber) 3% 10%,
      rgba(255, 128, 0, 0.78) 15%,
      rgba(255, 178, 31, 0.12) 40%,
      transparent 68%
    );
  box-shadow:
    0 0 0 2.5rem rgba(255, 178, 31, 0.025),
    0 0 0 5rem rgba(255, 178, 31, 0.018);
}

.contact > *:not(.contactGlow) {
  position: relative;
  z-index: 1;
}

.contact h2 {
  max-width: 61rem;
  margin-top: 1.8rem;
}

.contactLead {
  max-width: 31rem;
  margin: 2.2rem 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.contactButton {
  width: min(100%, 25rem);
}

.contactDetails {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.5rem;
  margin-top: 7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contactDetails a:hover {
  color: var(--amber);
}

footer {
  display: grid;
  grid-template-columns: minmax(12rem, 0.85fr) minmax(15rem, 1.15fr);
  align-items: end;
  gap: 2rem;
  padding: 3rem var(--pad);
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
}

footer .brand {
  font-size: 1rem;
}

footer p,
footer div {
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.6;
}

footer div {
  display: grid;
  justify-items: end;
}

.footerNav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem 1.3rem;
}

.footerNav a {
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footerNav a:hover {
  color: var(--amber);
}

.footerMeta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  justify-items: initial;
  width: 100%;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line-dark);
}

.footerLegal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1.2rem;
}

.footerLegal a {
  color: var(--muted);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footerLegal a:hover {
  color: var(--amber);
}

/* Shared interior-page system */

.pageHero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(27rem, 0.92fr);
  min-height: 42rem;
  border-bottom: 1px solid var(--line-dark);
}

.pageHeroCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(4.5rem, 8vw, 8rem) var(--pad);
}

.pageHero h1 {
  display: flex;
  flex-direction: column;
  max-width: 60rem;
  margin: 2.2rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(3.9rem, 6.4vw, 7.5rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.82;
  text-transform: uppercase;
}

.pageHero h1 strong {
  color: var(--amber);
  font: inherit;
}

.pageHeroIntro {
  max-width: 41rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.pageHeroButton {
  width: min(100%, 22rem);
  margin-top: 2.2rem;
}

.pageHeroVisual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-left: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 57% 51%, rgba(255, 178, 31, 0.23), transparent 4%),
    radial-gradient(circle at 57% 51%, rgba(255, 108, 0, 0.19), transparent 20%),
    linear-gradient(rgba(86, 199, 194, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.05) 1px, transparent 1px),
    #0d1112;
  background-size: auto, auto, 28px 28px, 28px 28px, auto;
}

.pageHeroVisual::before {
  position: absolute;
  top: 50%;
  left: 57%;
  width: clamp(8rem, 13vw, 12rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      #fff2b8 0 4%,
      var(--amber) 5% 17%,
      rgba(255, 109, 0, 0.9) 18% 31%,
      rgba(255, 178, 31, 0.16) 48%,
      transparent 72%
    );
  box-shadow: 0 0 7rem rgba(255, 178, 31, 0.18);
  content: "";
  transform: translate(-50%, -50%);
  animation: heat-pulse 5.2s ease-in-out infinite;
}

.pageHeroCode {
  position: absolute;
  top: clamp(2rem, 4vw, 4rem);
  right: clamp(1.5rem, 3vw, 3.5rem);
  left: clamp(1.5rem, 3vw, 3.5rem);
  display: flex;
  justify-content: space-between;
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.techOrbit {
  position: absolute;
  top: 50%;
  left: 57%;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 239, 229, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbitOne {
  width: 38%;
}

.orbitTwo {
  width: 61%;
  border-color: rgba(86, 199, 194, 0.22);
}

.orbitThree {
  width: 84%;
  border-style: dashed;
}

.techCross {
  position: absolute;
  width: 1rem;
  height: 1rem;
}

.techCross::before,
.techCross::after {
  position: absolute;
  background: var(--teal);
  content: "";
}

.techCross::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.techCross::after {
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
}

.crossOne {
  top: 21%;
  left: 16%;
}

.crossTwo {
  right: 13%;
  bottom: 23%;
}

.heroLux {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3.5rem);
  bottom: clamp(2rem, 4vw, 4rem);
  display: grid;
  text-align: right;
}

.heroLux strong {
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.8vw, 5.2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.heroLux span {
  margin-top: 0.7rem;
  color: var(--teal);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.pageSection {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.editorialGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.editorialGrid h2,
.portfolioIntro h2,
.offerBand h2,
.contactFormWrap h2 {
  max-width: 58rem;
  margin: 1.4rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5.8vw, 6.6rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.longCopy {
  align-self: end;
}

.longCopy p {
  margin: 0 0 1.4rem;
  color: rgba(9, 11, 12, 0.68);
  font-size: 1.03rem;
  line-height: 1.8;
}

.statGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(4rem, 8vw, 8rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.statGrid.reducedStats {
  grid-template-columns: repeat(2, 1fr);
}

.statGrid > div {
  display: grid;
  gap: 0.75rem;
  padding: 2.2rem 1.4rem;
}

.statGrid > div + div {
  border-left: 1px solid var(--line-light);
}

.statGrid strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.statGrid span {
  color: rgba(9, 11, 12, 0.58);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.valueGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.valueGrid article {
  padding: 2.5rem 2.2rem 1rem 0;
}

.valueGrid article + article {
  padding-left: 2.2rem;
  border-left: 1px solid var(--line-dark);
}

.valueGrid span,
.inputGrid span,
.contactPromise span {
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 0.67rem;
}

.valueGrid h3,
.inputGrid h3 {
  margin: 4.5rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.valueGrid p,
.inputGrid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.audienceGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
}

.audienceList {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.audienceList li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.6vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.audienceList span {
  padding-top: 0.25rem;
  color: #80641e;
  font-family: "Courier New", monospace;
  font-size: 0.66rem;
}

.teamSection {
  padding: clamp(5rem, 8vw, 8rem) var(--pad);
  border-top: 1px solid var(--line-light);
}

.teamHeading {
  max-width: 48rem;
  margin: 0 auto clamp(3rem, 6vw, 5.5rem);
  text-align: center;
}

.teamHeading h2 {
  margin: 0.75rem 0 1.25rem;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

/* Homepage calculated-light field */

.planVisual.homeLightField {
  isolation: isolate;
  padding: clamp(2rem, 4.1vw, 4.2rem) clamp(1.4rem, 3.7vw, 3.8rem);
  background:
    linear-gradient(rgba(86, 199, 194, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 60% 54%, rgba(255, 178, 31, 0.12), transparent 28%),
    #0d1112;
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.planVisual.homeLightField::before {
  display: none;
}

.homeFieldCode {
  z-index: 5;
}

.homeFieldOrbit {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: 59%;
  aspect-ratio: 1;
  border: 1px solid rgba(244, 239, 229, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.fieldOrbitOne {
  width: 37%;
}

.fieldOrbitTwo {
  width: 61%;
  border-color: rgba(86, 199, 194, 0.27);
}

.fieldOrbitThree {
  width: 87%;
  border-color: rgba(244, 239, 229, 0.2);
  border-style: dashed;
}

.homeFieldGlow {
  position: absolute;
  z-index: 3;
  top: 58%;
  left: 69%;
  display: grid;
  width: clamp(8rem, 14vw, 13rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      #fff2bd 0 4%,
      var(--amber) 5% 17%,
      rgba(255, 105, 0, 0.94) 18% 30%,
      rgba(255, 178, 31, 0.2) 43%,
      rgba(255, 178, 31, 0.07) 58%,
      transparent 72%
  );
  box-shadow: 0 0 7rem rgba(255, 178, 31, 0.18);
  transform: translate(-50%, -50%);
}

.homeFieldGlow i {
  width: 0.75rem;
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 50%;
}

.homeFieldAxis {
  position: absolute;
  z-index: 1;
  top: 52%;
  left: 59%;
  background: rgba(244, 239, 229, 0.1);
  transform: translate(-50%, -50%);
}

.axisHorizontal {
  width: 88%;
  height: 1px;
}

.axisVertical {
  width: 1px;
  height: 88%;
}

.homeLightField .techCross {
  z-index: 4;
}

.homeLightField .crossOne {
  top: 19%;
  left: 13%;
}

.homeLightField .crossTwo {
  right: 12%;
  bottom: 21%;
}

.homeFieldLabel {
  position: absolute;
  z-index: 5;
  bottom: clamp(2rem, 4vw, 4rem);
  left: clamp(1.5rem, 3.7vw, 3.8rem);
  display: grid;
  gap: 0.5rem;
}

.homeFieldLabel span,
.homeFieldLabel strong {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.homeFieldLabel span {
  color: var(--teal);
}

.homeFieldLabel strong {
  color: rgba(244, 239, 229, 0.66);
}

.homeLightField .heroLux {
  z-index: 5;
}

.teamHeading > p:last-child {
  max-width: 40rem;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.teamGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3.25rem);
}

.teamCard {
  min-width: 0;
  border-top: 1px solid var(--line-light);
}

.teamPortrait {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 35%;
  background-color: #e5e2de;
  background-repeat: no-repeat;
  background-size: 367.17% 253.61%;
  filter: grayscale(1);
}

.teamPortraitStefan {
  object-position: center 32%;
}

.teamCardCopy {
  padding-top: 1.5rem;
}

.teamCardCopy > p:first-child {
  margin: 0 0 0.55rem;
  color: #80641e;
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.teamCard h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.teamCardCopy > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Inside Stetra */

.cultureSection {
  padding: clamp(5.5rem, 9vw, 9rem) var(--pad);
  border-top: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    var(--ink);
  background-size: 32px 32px;
  color: var(--paper);
}

.cultureIntro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.cultureIntro h2 {
  max-width: 58rem;
  margin: 1.1rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 6.25vw, 7rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.cultureStory {
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
}

.cultureStory p {
  max-width: 35rem;
  margin: 0;
  color: rgba(244, 239, 229, 0.7);
  font-size: 1rem;
  line-height: 1.8;
}

.cultureStory span {
  display: block;
  margin-top: 1.8rem;
  color: var(--amber);
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cultureGallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(5, clamp(8.5rem, 11vw, 12rem));
  gap: clamp(0.55rem, 1vw, 0.9rem);
}

.culturePhoto {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(244, 239, 229, 0.12);
  background: var(--panel);
}

.culturePhotoLead {
  grid-column: 1 / 6;
  grid-row: 1 / 4;
}

.culturePhotoRun {
  grid-column: 6 / 13;
  grid-row: 1 / 3;
}

.culturePhotoGuest {
  grid-column: 6 / 13;
  grid-row: 3 / 6;
}

.culturePhotoStefan {
  grid-column: 1 / 3;
  grid-row: 4 / 6;
}

.culturePhotoDinner {
  grid-column: 3 / 6;
  grid-row: 4 / 6;
}

.culturePhoto img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) contrast(1.04) brightness(0.88);
  transition: filter 240ms ease, transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.culturePhotoRun img {
  object-position: center 62%;
}

.culturePartnerMedia img {
  object-position: center 42%;
}

.culturePhotoStefan img,
.culturePhotoDinner img {
  object-position: center 40%;
}

.culturePhoto::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(4, 6, 7, 0.86) 100%);
  pointer-events: none;
}

.culturePhotoGuest::after {
  display: none;
}

.culturePhoto figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 0.85rem;
  padding: clamp(0.9rem, 1.6vw, 1.4rem);
}

.culturePhoto figcaption span {
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.culturePhoto figcaption p {
  margin: 0;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.culturePartnerFeature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(16rem, 0.7fr);
  height: 100%;
}

.culturePartnerMedia {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.culturePartnerMedia::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(4, 6, 7, 0.82) 100%);
  pointer-events: none;
}

.culturePartnerMedia img {
  position: absolute;
  inset: 0;
}

.culturePartnerStory {
  display: grid;
  align-content: end;
  padding: clamp(1.25rem, 2.4vw, 2.6rem);
  border-left: 1px solid rgba(244, 239, 229, 0.14);
  background:
    linear-gradient(rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    #0d1112;
  background-size: 24px 24px;
}

.culturePartnerStory p {
  margin: 0 0 1.1rem;
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.culturePartnerStory h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.25vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-transform: uppercase;
}

.culturePhotoLocation {
  position: absolute;
  z-index: 2;
  top: clamp(0.55rem, 1vw, 0.8rem);
  right: clamp(0.55rem, 1vw, 0.8rem);
  padding: 0.36rem 0.5rem 0.32rem;
  border: 1px solid rgba(244, 239, 229, 0.18);
  background: rgba(4, 6, 7, 0.76);
  color: rgba(244, 239, 229, 0.88);
  font-family: "Courier New", monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

@media (hover: hover) {
  .culturePhoto:hover img {
    filter: saturate(0.95) contrast(1.03) brightness(0.96);
    transform: scale(1.025);
  }
}

@media (max-width: 960px) {
  .cultureIntro {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cultureStory {
    max-width: 42rem;
  }

  .cultureGallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: clamp(15rem, 31vw, 20rem);
  }

  .culturePhoto,
  .culturePhotoStefan {
    grid-column: auto;
    grid-row: auto;
  }

  .culturePhotoLead {
    grid-column: 1 / -1;
    grid-row: span 2;
  }

  .culturePhotoRun,
  .culturePhotoDinner {
    grid-column: 1 / -1;
    grid-row: span 1;
  }

  .culturePhotoGuest {
    grid-column: 1 / -1;
    grid-row: span 2;
  }
}

@media (max-width: 680px) {
  .cultureIntro h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.94;
  }

  .cultureGallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .culturePhoto,
  .culturePhotoLead,
  .culturePhotoRun,
  .culturePhotoGuest,
  .culturePhotoStefan,
  .culturePhotoDinner {
    grid-column: 1;
    grid-row: auto;
    height: 20rem;
    min-height: 0;
  }

  .culturePhotoLead {
    height: 26rem;
  }

  .culturePhotoRun {
    height: 16rem;
  }

  .culturePhotoGuest {
    height: 38rem;
    order: 5;
  }

  .culturePhoto > .culturePhotoLocation,
  .culturePartnerMedia > .culturePhotoLocation {
    position: absolute;
    z-index: 3;
    top: 0.65rem;
    right: 0.65rem;
    max-width: calc(100% - 1.3rem);
    padding: 0.34rem 0.46rem 0.3rem;
    font-size: 0.52rem;
    line-height: 1;
    white-space: nowrap;
  }

  .culturePhoto figcaption {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    gap: 0.65rem;
    padding: 0.85rem;
  }

  .culturePhoto figcaption span {
    font-size: 0.56rem;
  }

  .culturePhoto figcaption p {
    font-size: 0.66rem;
  }

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

  .culturePartnerStory {
    min-height: 11rem;
    padding: 1.25rem;
    border-top: 1px solid rgba(244, 239, 229, 0.14);
    border-left: 0;
  }

  .culturePartnerStory h3 {
    font-size: clamp(1.9rem, 9vw, 2.7rem);
  }
}

/* Services */

.servicesList {
  padding: 0 var(--pad);
}

.serviceRow {
  display: grid;
  grid-template-columns: minmax(8rem, 0.34fr) minmax(18rem, 0.9fr) minmax(18rem, 0.76fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(3.5rem, 6vw, 6rem) 0;
  border-bottom: 1px solid var(--line-light);
}

.serviceRowIndex span {
  color: #80641e;
  font-family: "Courier New", monospace;
  font-size: 0.72rem;
}

.serviceRowIndex p {
  margin: 3.5rem 0 0;
  color: rgba(9, 11, 12, 0.54);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.serviceRowBody h2 {
  margin: 0 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.3vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.serviceRowBody p {
  max-width: 40rem;
  margin: 0;
  color: rgba(9, 11, 12, 0.67);
  line-height: 1.75;
}

.serviceRow ul {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.serviceRow li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.serviceRow li::before {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  margin-right: 0.8rem;
  background: var(--amber);
  content: "";
  transform: rotate(45deg);
}

.offerBand {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(24rem, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  background: var(--amber);
  color: var(--ink);
}

.offerBand .sectionLabel {
  color: rgba(9, 11, 12, 0.58);
}

.offerFacts {
  align-self: end;
}

.offerFacts.priceRemoved {
  align-self: center;
}

.offerFacts.priceRemoved p {
  padding: 1.6rem 0;
}

.offerFacts p {
  display: grid;
  margin: 0;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(9, 11, 12, 0.28);
}

.offerFacts strong {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.offerFacts span {
  margin-top: 0.45rem;
  color: rgba(9, 11, 12, 0.63);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inputGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}

.inputGrid > div {
  padding: 2.2rem 1.8rem 0 0;
}

.inputGrid > div + div {
  padding-left: 1.8rem;
  border-left: 1px solid var(--line-dark);
}

.inputGrid h3 {
  margin-top: 4rem;
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
}

.faqSection {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.faqList {
  border-top: 1px solid var(--line-light);
}

.faqList details {
  border-bottom: 1px solid var(--line-light);
}

.faqList summary {
  position: relative;
  padding: 1.7rem 3rem 1.7rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 700;
  list-style: none;
  text-transform: uppercase;
}

.faqList summary::-webkit-details-marker {
  display: none;
}

.faqList summary::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  color: #80641e;
  content: "+";
  transform: translateY(-50%);
}

.faqList details[open] summary::after {
  content: "−";
}

.faqList p {
  max-width: 55rem;
  margin: 0;
  padding: 0 0 2rem;
  color: rgba(9, 11, 12, 0.66);
  line-height: 1.75;
}

/* Calculators */

.calculatorNotice {
  padding: 1.2rem var(--pad);
  background: var(--amber);
  color: var(--ink);
}

.calculatorNotice p {
  max-width: 78rem;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
}

.calculatorsSection {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.calculatorsSection .splitHeading > p {
  color: rgba(9, 11, 12, 0.65);
}

.calculatorStack {
  display: grid;
  gap: 1.2rem;
}

.unitSwitch {
  display: flex;
  justify-content: flex-end;
  gap: 0.45rem;
}

.unitSwitch button {
  min-width: 7rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.unitSwitch button.active,
.unitSwitch button:hover {
  background: var(--ink);
  color: var(--paper);
}

.calculatorPanel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 0.62fr) minmax(22rem, 1fr) minmax(15rem, 0.58fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  overflow: hidden;
  padding: clamp(2.2rem, 4vw, 4rem);
  border: 1px solid var(--line-light);
}

.calculatorIntro > span {
  color: #80641e;
  font-family: "Courier New", monospace;
  font-size: 0.68rem;
}

.calculatorIntro h2 {
  margin: 3rem 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-transform: uppercase;
}

.calculatorIntro p {
  margin: 0;
  color: rgba(9, 11, 12, 0.62);
  line-height: 1.65;
}

.calculatorInputs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  gap: 1rem;
}

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

.calculatorVisual {
  position: relative;
  grid-column: 1 / -1;
  height: 7rem;
  overflow: hidden;
  border: 1px solid rgba(9, 11, 12, 0.22);
  background:
    linear-gradient(rgba(9, 11, 12, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 12, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.18);
  background-size: 16px 16px;
  color: var(--ink);
}

.calculatorVisualHeader {
  position: absolute;
  z-index: 3;
  top: 0.48rem;
  right: 0.65rem;
  left: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.calculatorVisualHeader span,
.calculatorVisualHeader b {
  font-family: "Courier New", monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.calculatorVisualHeader span {
  color: rgba(9, 11, 12, 0.5);
}

.calculatorVisualHeader b {
  color: #80641e;
  text-align: right;
}

.calculatorVisualStage {
  position: absolute;
  inset: 2.05rem 0.7rem 0.55rem;
}

.visualRoomPlane {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(67%, 17rem);
  height: 64%;
  border: 1px solid rgba(9, 11, 12, 0.46);
  background:
    linear-gradient(rgba(9, 11, 12, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 12, 0.055) 1px, transparent 1px),
    rgba(244, 239, 229, 0.55);
  background-size: 12px 12px;
  transform: translate(-50%, -47%);
  transition: width 180ms ease, height 180ms ease;
}

.visualDimension {
  position: absolute;
  color: rgba(9, 11, 12, 0.62);
  font-family: "Courier New", monospace;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
}

.visualDimension span {
  position: relative;
  z-index: 1;
  display: inline-block;
  background: rgba(244, 239, 229, 0.98);
}

.visualDimensionTop {
  top: -1.05rem;
  right: 0;
  left: 0;
  display: grid;
  height: 0.9rem;
  place-items: center;
}

.visualDimensionTop::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(9, 11, 12, 0.38);
  content: "";
}

.visualDimensionTop::after {
  position: absolute;
  top: calc(50% - 0.22rem);
  right: 0;
  left: 0;
  height: 0.44rem;
  border-right: 1px solid rgba(9, 11, 12, 0.38);
  border-left: 1px solid rgba(9, 11, 12, 0.38);
  content: "";
}

.visualDimensionTop span {
  padding: 0.12rem 0.3rem;
}

.visualDimensionSide {
  top: 0;
  right: -1.55rem;
  bottom: 0;
  display: grid;
  width: 1rem;
  place-items: center;
  writing-mode: vertical-rl;
}

.visualDimensionSide::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(9, 11, 12, 0.38);
  content: "";
}

.visualDimensionSide::after {
  position: absolute;
  top: 0;
  right: calc(50% - 0.22rem);
  bottom: 0;
  width: 0.44rem;
  border-top: 1px solid rgba(9, 11, 12, 0.38);
  border-bottom: 1px solid rgba(9, 11, 12, 0.38);
  content: "";
}

.visualDimensionSide span {
  padding: 0.3rem 0.12rem;
}

.visualRoomCombined {
  background:
    linear-gradient(rgba(9, 11, 12, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 12, 0.05) 1px, transparent 1px),
    rgba(244, 239, 229, 0.55);
  background-size: 12px 12px, 12px 12px, auto;
}

.visualFixtureGrid {
  position: absolute;
  inset: 0.3rem;
  display: grid;
  align-items: center;
  justify-items: center;
  gap: 0.12rem;
}

.visualFixtureGrid i {
  width: 0.34rem;
  aspect-ratio: 1;
  border: 1px solid rgba(9, 11, 12, 0.38);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0.45rem rgba(255, 178, 31, 0.55);
}

.visualStageNote {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.18rem 0.3rem;
  background: rgba(244, 239, 229, 0.9);
  color: rgba(9, 11, 12, 0.65);
  font-family: "Courier New", monospace;
  font-size: 0.47rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.visualCableStage {
  display: grid;
  grid-template-columns: 3.25rem minmax(4rem, 1fr) 3.25rem;
  align-items: center;
  gap: 0.65rem;
}

.visualCableNode {
  display: grid;
  align-content: center;
  height: 2.55rem;
  border: 1px solid rgba(9, 11, 12, 0.38);
  background: rgba(244, 239, 229, 0.7);
  text-align: center;
}

.visualCableNode small,
.visualCableNode b {
  font-family: "Courier New", monospace;
  line-height: 1.1;
}

.visualCableNode small {
  color: rgba(9, 11, 12, 0.48);
  font-size: 0.45rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visualCableNode b {
  margin-top: 0.2rem;
  font-size: 0.62rem;
}

.visualCableRoute {
  position: relative;
  height: 2px;
  background: rgba(9, 11, 12, 0.3);
}

.visualCableRoute::after {
  position: absolute;
  top: 50%;
  right: -0.08rem;
  width: 0.38rem;
  aspect-ratio: 1;
  border-top: 1px solid rgba(9, 11, 12, 0.52);
  border-right: 1px solid rgba(9, 11, 12, 0.52);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.visualCableRoute em {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  color: rgba(9, 11, 12, 0.58);
  font-family: "Courier New", monospace;
  font-size: 0.5rem;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
}

.visualCableRoute i {
  position: absolute;
  top: -1px;
  left: 0;
  width: var(--drop-level, 50%);
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.visualArtworkStage {
  --art-frame-width: 72%;
  --art-fixture-count: 3;
  --art-note-clearance: 1.7rem;
}

.calculatorInputs .calculatorVisualArtwork {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  height: clamp(10rem, 13vw, 13rem);
}

.visualArtFrame {
  position: absolute;
  top: 1.15rem;
  bottom: var(--art-note-clearance);
  left: 50%;
  width: var(--art-frame-width);
  height: auto;
  border: 2px solid rgba(9, 11, 12, 0.55);
  background: rgba(244, 239, 229, 0.5);
  transform: translateX(-50%);
}

.visualArtFixtures {
  position: absolute;
  z-index: 2;
  top: -0.1rem;
  left: 50%;
  display: grid;
  width: var(--art-frame-width);
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: start;
  justify-items: center;
  transform: translateX(-50%);
}

.visualArtworkStage .visualStageNote {
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 1.2rem;
  align-items: flex-end;
  justify-content: flex-end;
  line-height: 1.25;
  text-align: right;
  white-space: normal;
}

.visualArtFixtures i {
  position: relative;
  width: 0.42rem;
  aspect-ratio: 1;
  border: 1px solid rgba(9, 11, 12, 0.42);
  border-radius: 50%;
  background: var(--amber);
}

.visualArtFixtures i::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 1px;
  height: 1rem;
  background: linear-gradient(rgba(255, 178, 31, 0.7), transparent);
  content: "";
}

.visualArtBeams {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  overflow: hidden;
}

.visualArtBeams i {
  width: 145%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 178, 31, 0.5),
    rgba(255, 178, 31, 0.14) 48%,
    transparent 72%
  );
}

.visualChandelierRoom {
  width: min(70%, 18rem);
}

.calculatorVisualChandelier {
  height: clamp(15rem, 20vw, 20rem);
}

.visualChandelierRing {
  --chandelier-scale: 26%;
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--chandelier-scale);
  aspect-ratio: 1;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 178, 31, 0.38),
    rgba(255, 178, 31, 0.08) 55%,
    transparent 70%
  );
  box-shadow: 0 0 0.8rem rgba(255, 178, 31, 0.3);
  transform: translate(-50%, -50%);
}

@media (min-width: 1151px) {
  .calculatorVisual {
    position: absolute;
    top: calc(100% + 0.9rem);
    right: 0;
    left: 0;
  }
}

.roomCalculatorPanel .calculatorVisual {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  height: clamp(14rem, 21vw, 21.5rem);
}

.roomCalculatorPanel .visualRoomCombined {
  transform: translate(-50%, -50%);
}

.roomCalculatorPanel .visualFixtureGrid {
  inset: 0.55rem;
  gap: 0.22rem;
}

.roomCalculatorPanel .visualFixtureGrid i {
  width: 0.55rem;
}

.roomCalculatorPanel .visualStageNote {
  bottom: -0.2rem;
  max-width: 100%;
  padding: 0.25rem 0.4rem;
  font-size: 0.52rem;
  line-height: 1.25;
  text-align: right;
  white-space: normal;
}

.roomCalculatorResults {
  grid-template-rows: repeat(4, minmax(0, 1fr));
  align-self: stretch;
}

.roomCalculatorResults .calculatorResult {
  min-height: 0;
  padding: 0.85rem 1.15rem;
}

.roomCalculatorResults .calculatorResult p {
  margin: 0 0 0.3rem;
}

.roomCalculatorResults .calculatorResult strong {
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
}

.roomCalculatorResults .calculatorResult span {
  margin-top: 0.45rem;
  font-size: 0.55rem;
  line-height: 1.25;
}

@media (min-width: 681px) and (max-width: 1150px) {
  .calculatorPanel .roomCalculatorResults {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
}

.calculatorInputs label,
.contactForm label {
  display: grid;
  gap: 0.55rem;
  color: rgba(9, 11, 12, 0.68);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calculatorInputs input,
.calculatorInputs select,
.contactForm input,
.contactForm select,
.contactForm textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(9, 11, 12, 0.28);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.22);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
}

.contactForm textarea {
  min-height: 10rem;
  resize: vertical;
}

.calculatorResult {
  display: grid;
  min-height: 10rem;
  align-content: end;
  padding: 1.5rem;
  background: var(--ink);
  color: var(--paper);
}

.calculatorResult strong {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4.8rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.calculatorResult span {
  margin-top: 0.7rem;
  color: var(--teal);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculatorResult.calculatorResultWarning {
  box-shadow: inset 0 0 0 2px var(--amber);
}

.calculatorResult.calculatorResultWarning span {
  color: var(--amber);
  line-height: 1.35;
}

.multiResult {
  display: grid;
  gap: 0.6rem;
}

.multiResult .calculatorResult {
  min-height: 7rem;
}

.multiResult .calculatorResult strong {
  font-size: clamp(1.8rem, 3.3vw, 3.6rem);
}

.calculatorReuse {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(9, 11, 12, 0.6);
  font-size: 0.74rem;
}

.iesCalculatorPanel {
  align-items: stretch;
}

.iesCalculatorPanel .calculatorIntro h2 {
  margin-top: 2.35rem;
}

.iesCalculatorPreview {
  position: relative;
  min-width: 0;
  min-height: clamp(12rem, 16vw, 16rem);
  overflow: hidden;
  border: 1px solid rgba(9, 11, 12, 0.22);
  background:
    linear-gradient(rgba(9, 11, 12, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 11, 12, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.18);
  background-size: 16px 16px;
}

.iesPolarStage {
  position: absolute;
  top: 2.35rem;
  right: 1rem;
  bottom: 1.8rem;
  left: 1rem;
}

.iesPolarRing,
.iesPolarAxis,
.iesPolarLobe,
.iesPolarOrigin {
  position: absolute;
  display: block;
}

.iesPolarRing {
  top: 50%;
  left: 50%;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 132, 130, 0.34);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.iesPolarRingOuter {
  width: min(92%, 14rem);
  border-style: dashed;
}

.iesPolarRingMiddle {
  width: min(67%, 10rem);
}

.iesPolarRingInner {
  width: min(40%, 6rem);
  border-color: rgba(9, 11, 12, 0.28);
}

.iesPolarAxis {
  top: 50%;
  left: 50%;
  background: rgba(9, 11, 12, 0.24);
  transform: translate(-50%, -50%);
}

.iesPolarAxisHorizontal {
  width: min(96%, 15rem);
  height: 1px;
}

.iesPolarAxisVertical {
  width: 1px;
  height: min(96%, 15rem);
}

.iesPolarLobe {
  top: 50%;
  left: 50%;
  width: min(26%, 3.75rem);
  height: min(48%, 5.5rem);
  border-radius: 50% 50% 44% 44%;
  transform-origin: 50% 0;
}

.iesPolarLobeTeal {
  background: linear-gradient(
    rgba(86, 199, 194, 0.6),
    rgba(86, 199, 194, 0.08)
  );
  transform: translate(-50%, 0) rotate(-7deg);
}

.iesPolarLobeAmber {
  background: linear-gradient(
    rgba(255, 178, 31, 0.72),
    rgba(255, 178, 31, 0.08)
  );
  transform: translate(-50%, 0) rotate(7deg);
}

.iesPolarOrigin {
  top: 50%;
  left: 50%;
  width: 0.55rem;
  aspect-ratio: 1;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0.8rem rgba(255, 178, 31, 0.62);
  transform: translate(-50%, -50%);
}

.iesCalculatorLegend {
  position: absolute;
  right: 0.65rem;
  bottom: 0.5rem;
  left: 0.65rem;
  display: flex;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(9, 11, 12, 0.55);
  font-family: "Courier New", monospace;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.iesCalculatorLink {
  min-height: clamp(12rem, 16vw, 16rem);
  align-content: center;
  color: var(--paper);
  text-decoration: none;
  transition:
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.iesCalculatorLink p {
  margin: 0 0 0.65rem;
}

.iesCalculatorLink strong {
  font-size: clamp(2.15rem, 3.3vw, 4rem);
  font-weight: 700;
  line-height: 0.88;
  text-transform: uppercase;
}

.iesCalculatorLink span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  background: var(--amber);
  color: var(--ink);
}

.iesCalculatorLink span b {
  color: var(--ink);
  font-size: 1.2rem;
}

.iesCalculatorLink:hover,
.iesCalculatorLink:focus-visible {
  background: #111718;
  box-shadow: inset 0 0 0 2px var(--amber);
  outline: 0;
  transform: translateY(-2px);
}

.iesViewerPage {
  background: var(--paper);
}

.iesViewerIntro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  border-bottom: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(86, 199, 194, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 76% 40%, rgba(255, 178, 31, 0.11), transparent 28%),
    var(--ink);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

.iesViewerIntro h1 {
  max-width: 12ch;
  margin: clamp(3rem, 7vw, 7rem) 0 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8.1vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-transform: uppercase;
}

.iesViewerIntro h1 strong {
  display: block;
  color: var(--amber);
  font-weight: inherit;
}

.iesViewerIntroCopy {
  display: grid;
  gap: 1.8rem;
  align-content: end;
}

.iesViewerIntroCopy > p {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.75;
}

.iesViewerFeatures {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.iesViewerFeatures span {
  padding: 0.58rem 0.7rem;
  border: 1px solid var(--line-dark);
  color: var(--paper);
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.iesViewerPrivacy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin: 0;
  padding: 1.2rem var(--pad);
  border-bottom: 1px solid rgba(9, 11, 12, 0.22);
  background: var(--teal);
  color: var(--ink);
}

.iesViewerPrivacy strong {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.iesViewerPrivacy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.iesViewerShell {
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid var(--line-light);
  background: var(--paper);
}

.iesViewerFrame {
  display: block;
  width: 100%;
  height: 170rem;
  min-height: 0;
  overflow: hidden;
  border: 0;
  background: var(--paper);
}

/* Portfolio */

.photometricPortfolio {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  background:
    linear-gradient(rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(255, 178, 31, 0.08), transparent 24%),
    var(--ink);
  background-size: 32px 32px, 32px 32px, auto, auto;
}

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

.photometricGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: clamp(0.65rem, 1.1vw, 1rem);
}

.photometricPlanCard {
  min-width: 0;
  margin: 0;
  padding: clamp(0.65rem, 1vw, 0.9rem);
  border: 1px solid var(--line-dark);
  background: rgba(15, 18, 20, 0.9);
}

.photometricPlanFeature {
  grid-column: span 2;
}

.photometricPlanImage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #080a0b;
}

.photometricPlanFeature .photometricPlanImage {
  aspect-ratio: 8 / 4.55;
}

.photometricPlanImage::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(244, 239, 229, 0.08);
  content: "";
  pointer-events: none;
}

.photometricPlanImage img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05) brightness(0.9);
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.photometricPlanCard:hover img {
  transform: scale(1.02);
  filter: saturate(1) contrast(1.02) brightness(0.98);
}

.photometricPlanCard figcaption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 0.35rem 0.4rem;
}

.photometricPlanCard figcaption > span {
  padding-top: 0.15rem;
  color: var(--teal);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.photometricPlanCard figcaption p {
  margin: 0 0 0.35rem;
  color: var(--amber);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photometricPlanCard figcaption h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 2.35rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.photometricPortfolio .capabilityRow {
  padding-top: 0.25rem;
  border-top: 1px solid var(--line-dark);
}

.portfolioIntro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  align-items: end;
  gap: clamp(3rem, 8vw, 8rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad) 4rem;
}

.portfolioIntro > p {
  margin: 0;
  color: rgba(9, 11, 12, 0.64);
  line-height: 1.75;
}

.portfolioGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding: 0 var(--pad) clamp(5rem, 9vw, 9rem);
  background: var(--paper);
}

.portfolioProject {
  min-width: 0;
  margin: 0;
  padding: 0.65rem;
  border: 1px solid var(--line-light);
}

.featureProject {
  grid-column: span 2;
}

.portfolioImage {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ink-soft);
}

.featureProject .portfolioImage {
  aspect-ratio: 8 / 4.55;
}

.portfolioImage img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.07);
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.portfolioProject:hover img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.portfolioImage span,
.articleImage > span {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  padding: 0.55rem 0.65rem;
  background: var(--amber);
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.portfolioProject figcaption {
  padding: 1rem 0.4rem 0.5rem;
}

.portfolioProject figcaption p {
  margin: 0 0 0.35rem;
  color: #80641e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolioProject figcaption h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 960px) {
  .photometricGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photometricPlanFeature {
    grid-column: auto;
  }

  .photometricPlanFeature .photometricPlanImage {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 680px) {
  .photometricGrid {
    grid-template-columns: 1fr;
  }
}

/* Blog */

.pageHeroActions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 1.75rem;
  margin-top: 2rem;
}

.pageHeroActions .textLink {
  color: rgba(255, 255, 255, 0.82);
}

.planGuide {
  padding: clamp(5rem, 9vw, 9rem) var(--pad) 0;
}

.planGuideIntro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.75fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
}

.planGuideIntro h2,
.articleLibraryHeading h2,
.planFaq h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.3vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.planGuideIntro > div:last-child p {
  margin: 0 0 1.15rem;
  color: rgba(9, 11, 12, 0.66);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.75;
}

.planPathGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(3.5rem, 7vw, 7rem);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.planPathCard {
  padding: clamp(2rem, 4vw, 3.5rem);
}

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

.planPathCardFeatured {
  background: var(--amber);
}

.planPathCard h3 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  letter-spacing: -0.035em;
  line-height: 0.95;
  text-transform: uppercase;
}

.planPathCard > p:not(.articleMeta) {
  min-height: 7.5rem;
  color: rgba(9, 11, 12, 0.66);
  line-height: 1.65;
}

.serviceBridge {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.8fr) minmax(14rem, 0.55fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(4rem, 8vw, 8rem);
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--ink);
  color: white;
}

.serviceBridge h2 {
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.serviceBridge p,
.serviceBridge li,
.serviceBridge small {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.serviceBridge ul {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding-left: 1.15rem;
}

.serviceBridgeAction {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.articleLibraryHeading {
  padding-top: clamp(5rem, 9vw, 9rem);
}

.blogSection {
  padding-top: clamp(3rem, 5vw, 5rem);
}

.planFaq {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
  border-top: 1px solid var(--line-light);
}

.planFaqList details {
  border-top: 1px solid var(--line-light);
}

.planFaqList details:last-child {
  border-bottom: 1px solid var(--line-light);
}

.planFaqList summary {
  cursor: pointer;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 750;
  letter-spacing: -0.02em;
}

.planFaqList details p {
  max-width: 48rem;
  margin: 0;
  padding: 0 2.5rem 1.6rem 0;
  color: rgba(9, 11, 12, 0.65);
  line-height: 1.7;
}

.blogSection {
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.featuredArticle {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(20rem, 0.7fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  padding-bottom: clamp(4rem, 7vw, 7rem);
  border-bottom: 1px solid var(--line-light);
}

.articleImage {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--ink-soft);
}

.articleImage img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.08);
  transition:
    transform 500ms ease,
    filter 500ms ease;
}

.articleImage:hover img {
  transform: scale(1.02);
  filter: saturate(1) contrast(1.02);
}

.articleMeta {
  margin: 0 0 1.4rem;
  color: #80641e;
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featuredArticle h2,
.articleCard h2 {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.3vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.92;
  text-transform: uppercase;
}

.featuredArticle > div > p:not(.articleMeta),
.articleCard > p:not(.articleMeta) {
  color: rgba(9, 11, 12, 0.64);
  line-height: 1.7;
}

.featuredArticle .textLink {
  margin-top: 1.2rem;
}

.articleGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5rem 1.5rem;
  padding-top: clamp(4rem, 7vw, 7rem);
}

.articleCard .articleImage {
  margin-bottom: 1.5rem;
}

.articleCard h2 {
  font-size: clamp(1.8rem, 2.7vw, 2.9rem);
}

.articleCard > span {
  display: block;
  margin-top: 1.2rem;
  color: rgba(9, 11, 12, 0.5);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.topicBand {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3rem;
  padding: 2rem var(--pad);
  background: var(--amber);
  color: var(--ink);
}

.topicBand > p {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.topicBand > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.topicBand span {
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(9, 11, 12, 0.35);
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Contact */

.contactPage {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 9vw, 9rem) var(--pad);
}

.contactFormWrap > div > p:not(.sectionLabel) {
  max-width: 38rem;
  color: rgba(9, 11, 12, 0.63);
  line-height: 1.7;
}

.contactFormWrap h2 {
  font-size: clamp(2.8rem, 4.6vw, 5.3rem);
}

.contactForm {
  display: grid;
  gap: 1.2rem;
  margin-top: 3rem;
}

.contactActions {
  display: grid;
  gap: 1rem;
  justify-items: start;
  margin-top: 3rem;
}

.contactActions .button {
  width: min(100%, 26rem);
}

.contactActions p {
  max-width: 38rem;
  margin: 0.5rem 0 0;
  color: rgba(9, 11, 12, 0.6);
  font-size: 0.8rem;
  line-height: 1.7;
}

.fieldGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.contactForm button {
  width: min(100%, 22rem);
  border: 0;
  cursor: pointer;
}

.formNote {
  max-width: 36rem;
  margin: 0;
  color: rgba(9, 11, 12, 0.55);
  font-size: 0.72rem;
}

.contactSidebar {
  display: grid;
  gap: 2.5rem;
  align-content: start;
  padding: 2rem;
  border: 1px solid var(--line-light);
}

.contactSidebar > div {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-light);
}

.contactSidebar > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.contactSidebar a {
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.contactSidebar a:hover {
  color: #80641e;
}

.contactSidebar address,
.contactSidebar li {
  color: rgba(9, 11, 12, 0.66);
  font-style: normal;
  line-height: 1.65;
}

.contactSidebar ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contactSidebar li::before {
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  margin-right: 0.75rem;
  background: var(--amber);
  content: "";
  transform: rotate(45deg);
}

.contactPromise {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: clamp(4rem, 7vw, 7rem) var(--pad);
}

.contactPromise > div {
  padding: 0 2.2rem 0 0;
}

.contactPromise > div + div {
  padding-left: 2.2rem;
  border-left: 1px solid var(--line-dark);
}

.contactPromise h2 {
  margin: 4rem 0 0.8rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.contactPromise p {
  max-width: 24rem;
  margin: 0;
  color: var(--muted);
}

/* Interior CTA */

.innerCta {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 10vw, 10rem) var(--pad);
  background:
    linear-gradient(rgba(86, 199, 194, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.04) 1px, transparent 1px),
    var(--ink-soft);
  background-size: 32px 32px;
}

.innerCta > *:not(.contactGlow) {
  position: relative;
  z-index: 1;
}

.innerCta h2 {
  max-width: 64rem;
  margin: 1.8rem 0 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.4vw, 7.6rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 0.88;
  text-transform: uppercase;
}

.innerCta > p:not(.sectionLabel) {
  max-width: 34rem;
  margin: 2rem 0;
  color: var(--muted);
  line-height: 1.75;
}

.innerCta .button {
  width: min(100%, 25rem);
}

.ctaEmailLink {
  display: block;
  width: fit-content;
  margin-top: 1.15rem;
  color: rgba(244, 239, 229, 0.68);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ctaEmailLink:hover,
.ctaEmailLink:focus-visible {
  color: var(--teal);
}

@keyframes heat-pulse {
  0%,
  100% {
    opacity: 0.87;
    transform: scale(0.98);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@media (max-width: 1150px) {
  .desktopNav {
    gap: 0.9rem;
  }

  .hero {
    grid-template-columns: 1fr 1fr;
  }

  .heroIntro {
    grid-template-columns: 1fr;
  }

  .planFrame {
    min-height: 27rem;
  }

  .siteHeader {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }

  .headerCta {
    gap: 0.8rem;
    padding-right: 0.8rem;
    padding-left: 0.8rem;
    font-size: 0.64rem;
  }

  .calculatorPanel {
    grid-template-columns: minmax(14rem, 0.8fr) minmax(20rem, 1.2fr);
  }

  .calculatorResult,
  .multiResult {
    grid-column: 1 / -1;
  }

  .multiResult {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .siteHeader {
    grid-template-columns: 1fr auto;
    min-height: 5rem;
  }

  .desktopNav,
  .headerCta {
    display: none;
  }

  .mobileMenu {
    display: block;
  }

  .mobileMenu nav {
    width: 100vw;
    max-width: 100vw;
  }

  .hero {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .heroCopy {
    min-height: 42rem;
  }

  .hero h1 {
    font-size: clamp(4.4rem, 13.5vw, 7.5rem);
  }

  .heroIntro {
    grid-template-columns: minmax(12rem, 0.8fr) minmax(18rem, 1.2fr);
  }

  .planVisual,
  .homeHeroPhotometric {
    min-height: 44rem;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .homeHeroPhotometric::before {
    background:
      linear-gradient(
        180deg,
        rgba(5, 8, 9, 0.74) 0%,
        rgba(5, 8, 9, 0.36) 15%,
        transparent 34%,
        transparent 72%,
        rgba(5, 8, 9, 0.52) 100%
      );
  }

  .pageHero {
    grid-template-columns: 1fr;
  }

  .pageHeroCopy {
    min-height: 35rem;
  }

  .pageHeroVisual {
    min-height: 35rem;
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .proofRail {
    align-items: flex-start;
    flex-direction: column;
  }

  .introGrid,
  .splitHeading,
  .editorialGrid,
  .audienceGrid,
  .teamGrid,
  .offerBand,
  .portfolioIntro,
  .featuredArticle,
  .contactPage {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .teamGrid {
    max-width: 34rem;
    margin-inline: auto;
  }

  .statGrid,
  .inputGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .statGrid > div:nth-child(3),
  .statGrid > div:nth-child(4),
  .inputGrid > div:nth-child(3),
  .inputGrid > div:nth-child(4) {
    border-top: 1px solid var(--line-light);
  }

  .statGrid > div:nth-child(3),
  .inputGrid > div:nth-child(3) {
    border-left: 0;
  }

  .inputGrid > div:nth-child(3) {
    padding-left: 0;
  }

  .serviceRow {
    grid-template-columns: minmax(7rem, 0.25fr) minmax(0, 0.75fr);
  }

  .serviceRow ul {
    grid-column: 2;
  }

  .serviceGrid {
    grid-template-columns: 1fr;
  }

  .serviceCard + .serviceCard {
    border-top: 1px solid var(--line-light);
    border-left: 0;
  }

  .serviceNumber {
    margin-bottom: 2.5rem;
  }

  .serviceCard > p:not(.serviceNumber) {
    min-height: 0;
  }

  .projectGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projectWide {
    grid-column: span 2;
  }

  .portfolioGrid,
  .articleGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contactPromise {
    grid-template-columns: 1fr;
  }

  .contactPromise > div,
  .contactPromise > div + div {
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .contactPromise h2 {
    margin-top: 2rem;
  }

  .iesViewerIntro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .iesViewerIntroCopy {
    max-width: 44rem;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer p {
    text-align: right;
  }

  .footerMeta {
    grid-column: 1 / -1;
    justify-items: initial;
  }
}

@media (max-width: 680px) {
  .siteHeader {
    padding-right: 1rem;
  }

  .brand {
    max-width: 7.75rem;
  }

  .brandLogo {
    width: 100%;
  }

  .heroCopy {
    min-height: 39rem;
  }

  .hero h1 {
    margin: 1.8rem 0 2.5rem;
    font-size: clamp(3.65rem, 18vw, 5.6rem);
    line-height: 0.88;
  }

  .hero h1.homeHeroExpanded {
    line-height: 0.88;
  }

  .heroIntro {
    grid-template-columns: 1fr;
  }

  .planVisual,
  .homeHeroPhotometric {
    min-height: clamp(26rem, 110vw, 36rem);
  }

  .planFrame {
    min-height: 24rem;
  }

  .heat {
    width: clamp(6rem, 29vw, 8rem);
  }

  .proofRail div {
    display: grid;
    gap: 0.8rem;
  }

  .proofRail i {
    display: none;
  }

  .intro h2,
  .sectionHeading h2,
  .contact h2,
  .innerCta h2 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.94;
  }

  .pageHeroCopy {
    min-height: 32rem;
  }

  .pageHero h1 {
    font-size: clamp(3.35rem, 16vw, 5.4rem);
    line-height: 0.9;
  }

  .pageHeroVisual {
    min-height: 27rem;
  }

  .orbitOne {
    width: 48%;
  }

  .orbitTwo {
    width: 76%;
  }

  .orbitThree {
    width: 104%;
  }

  .statGrid,
  .valueGrid,
  .inputGrid,
  .articleGrid,
  .portfolioGrid {
    grid-template-columns: 1fr;
  }

  .statGrid > div,
  .statGrid > div + div,
  .statGrid > div:nth-child(3),
  .statGrid > div:nth-child(4) {
    padding: 1.6rem 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
    border-left: 0;
  }

  .valueGrid article,
  .valueGrid article + article {
    padding: 2.2rem 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .valueGrid h3 {
    margin-top: 2.5rem;
  }

  .serviceRow {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .serviceRowIndex {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .serviceRowIndex p {
    margin: 0;
  }

  .serviceRow ul {
    grid-column: auto;
  }

  .offerBand h2 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .inputGrid > div,
  .inputGrid > div + div,
  .inputGrid > div:nth-child(3) {
    padding: 2rem 0;
    border-top: 0;
    border-bottom: 1px solid var(--line-dark);
    border-left: 0;
  }

  .inputGrid h3 {
    margin-top: 2rem;
  }

  .calculatorPanel {
    grid-template-columns: 1fr;
    padding: 1.4rem;
  }

  .iesCalculatorPreview,
  .iesCalculatorLink {
    min-height: 13rem;
  }

  .iesCalculatorLink {
    width: 100%;
  }

  .calculatorInputs {
    grid-template-columns: 1fr;
  }

  .calculatorResult,
  .multiResult {
    grid-column: auto;
  }

  .multiResult {
    grid-template-columns: 1fr;
  }

  .unitSwitch {
    justify-content: stretch;
  }

  .unitSwitch button {
    flex: 1;
  }

  .iesViewerIntro {
    gap: 2.75rem;
    padding: 4.5rem 1.25rem;
  }

  .iesViewerIntro h1 {
    margin-top: 2.75rem;
    font-size: clamp(3.2rem, 14vw, 5.4rem);
    line-height: 0.9;
  }

  .iesViewerPrivacy {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 1.2rem 1.25rem;
  }

  .iesViewerFrame {
    height: 242rem;
  }

  .portfolioIntro {
    padding-bottom: 2.5rem;
  }

  .featureProject {
    grid-column: auto;
  }

  .featureProject .portfolioImage,
  .portfolioImage {
    aspect-ratio: 4 / 3;
  }

  .topicBand {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .fieldGrid {
    grid-template-columns: 1fr;
  }

  .capabilityRow {
    margin-top: 3rem;
  }

  .processGrid {
    grid-template-columns: 1fr;
  }

  .processGrid li,
  .processGrid li:nth-child(odd),
  .processGrid li:nth-child(even) {
    grid-template-columns: 2.5rem 1fr;
    min-height: 0;
    padding: 2rem 0;
    border-right: 0;
  }

  .projectGrid {
    grid-template-columns: 1fr;
  }

  .projectWide {
    grid-column: auto;
  }

  .projectWide .projectImage,
  .projectImage {
    aspect-ratio: 4 / 3;
  }

  .deliverableGrid {
    grid-template-columns: 1fr;
  }

  .deliverableGrid > div,
  .deliverableGrid > div + div {
    padding: 2rem 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .deliverableGrid h3 {
    margin-top: 1.5rem;
  }

  .contactGlow {
    top: 24%;
    right: -35%;
    opacity: 0.6;
  }

  .contactDetails {
    display: grid;
    margin-top: 5rem;
  }

  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  footer p {
    text-align: left;
  }

  .footerNav {
    justify-content: flex-start;
  }

  .footerMeta {
    grid-column: auto;
    display: grid;
    justify-items: start;
    gap: 0.35rem;
  }

  .footerLegal {
    justify-content: flex-start;
  }
}

/* Photometric project gallery */

.photometricFilters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 3.5rem;
}

.photometricFilters button {
  min-height: 2.35rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line-dark);
  background: transparent;
  color: rgba(244, 239, 229, 0.72);
  font: 700 0.61rem/1 "Courier New", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.photometricFilters button:hover,
.photometricFilters button:focus-visible {
  border-color: var(--teal);
  color: var(--paper);
}

.photometricFilters button.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--ink);
}

.photometricGallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.2rem;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.photometricCard {
  min-width: 0;
  background: #090c0d;
}

.photometricCard[hidden] {
  display: none;
}

.photometricThumb {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #111718;
}

.photometricThumb::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.76));
  content: "";
  pointer-events: none;
}

.photometricThumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.05);
  transition: transform 450ms ease, filter 450ms ease;
}

.photometricCard:hover .photometricThumb img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.photometricThumb > span {
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.5rem 0.58rem;
  background: var(--amber);
  color: var(--ink);
  font: 700 0.58rem/1 "Courier New", monospace;
  letter-spacing: 0.1em;
}

.photometricThumb > i {
  position: absolute;
  z-index: 1;
  right: 0.9rem;
  bottom: 0.85rem;
  color: var(--paper);
  font: normal 700 0.6rem/1 "Courier New", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.photometricBody {
  padding: 1.35rem;
}

.photometricTags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.photometricTags span {
  color: var(--teal);
  font: 700 0.56rem/1 "Courier New", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.photometricBody h3 {
  min-height: 2em;
  margin: 0.85rem 0 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.7rem, 2.15vw, 2.55rem);
  font-stretch: condensed;
  font-weight: 500;
  line-height: 0.97;
  text-transform: uppercase;
}

.photometricBody > p {
  min-height: 4.8em;
  margin: 0.9rem 0 1.25rem;
  color: rgba(244, 239, 229, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}

.photometricActions {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
}

.photometricActions a {
  color: var(--paper);
  font: 700 0.58rem/1 "Courier New", monospace;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.photometricActions a:first-child {
  color: var(--amber);
}

.photometricActions a:hover,
.photometricActions a:focus-visible {
  color: var(--teal);
}

@media (max-width: 980px) {
  .photometricGallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .photometricFilters {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 2.5rem;
  }

  .photometricFilters button {
    width: 100%;
  }

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

  .photometricBody h3,
  .photometricBody > p {
    min-height: 0;
  }
}

/* Portfolio hero — parking lot foot-candle plan */

.pageHeroVisual.parkingHero {
  isolation: isolate;
  background:
    linear-gradient(rgba(86, 199, 194, 0.052) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.052) 1px, transparent 1px),
    #0d1112;
  background-size: 28px 28px, 28px 28px, auto;
}

.parkingPhotometricImage {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.96;
  filter: saturate(0.96) contrast(1.08);
}

.parkingHero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 12, 13, 0.26), transparent 22%, transparent 78%, rgba(9, 12, 13, 0.18)),
    linear-gradient(180deg, rgba(9, 12, 13, 0.42), transparent 20%, transparent 72%, rgba(9, 12, 13, 0.5));
  content: "";
  pointer-events: none;
}

.pageHeroVisual.parkingHero::before {
  display: none;
}

.parkingHero .pageHeroCode {
  z-index: 6;
  top: clamp(1.6rem, 3vw, 3rem);
  font-size: 0.55rem;
}

@media (max-width: 980px) {
  .planGuideIntro,
  .serviceBridge,
  .planFaq {
    grid-template-columns: 1fr;
  }

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

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

  .planPathCard > p:not(.articleMeta) {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .pageHeroActions {
    align-items: flex-start;
    flex-direction: column;
  }

  .pageHeroActions .button,
  .serviceBridgeAction .button {
    width: 100%;
    justify-content: center;
  }

  .serviceBridge {
    margin-inline: calc(var(--pad) * -1);
  }
}

.parkingHero .techCross {
  z-index: 6;
  opacity: 0.7;
}

.parkingHero .crossOne {
  top: 16%;
  left: 8%;
}

.parkingHero .crossTwo {
  right: 8%;
  bottom: 17%;
}

.parkingPlan {
  display: none;
  position: absolute;
  inset: clamp(4.8rem, 8vw, 7.2rem) clamp(1.4rem, 3.2vw, 3rem) clamp(5.8rem, 8vw, 7.5rem);
}

.siteBoundary {
  position: absolute;
  inset: 0;
  isolation: isolate;
  overflow: hidden;
  clip-path: polygon(3% 8%, 34% 2%, 73% 4%, 96% 15%, 100% 80%, 92% 95%, 51% 100%, 8% 92%, 0 74%, 0 22%);
  background: #ff362e;
}

.siteBoundary::before {
  position: absolute;
  z-index: -1;
  inset: 2px;
  clip-path: inherit;
  background:
    linear-gradient(rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 199, 194, 0.035) 1px, transparent 1px),
    #0d1112;
  background-size: 14px 14px, 14px 14px, auto;
  content: "";
}

.parkingBuilding {
  position: absolute;
  z-index: 1;
  top: 13%;
  left: 8%;
  display: flex;
  width: 24%;
  height: 24%;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 239, 229, 0.28);
  color: rgba(244, 239, 229, 0.44);
  font: 700 0.5rem/1 "Courier New", monospace;
  letter-spacing: 0.12em;
}

.parkingBuilding::before,
.parkingBuilding::after {
  position: absolute;
  background: rgba(244, 239, 229, 0.2);
  content: "";
}

.parkingBuilding::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

.parkingBuilding::after {
  top: 0;
  left: 63%;
  width: 1px;
  height: 100%;
}

.parkingBuilding span:last-child {
  position: absolute;
  right: -2.7rem;
  bottom: -0.15rem;
  color: var(--teal);
  font-size: 0.45rem;
}

.parkingStrip {
  position: absolute;
  z-index: 1;
  height: 10%;
  border-top: 1px solid rgba(86, 199, 194, 0.42);
  border-bottom: 1px solid rgba(86, 199, 194, 0.42);
  background: repeating-linear-gradient(
    90deg,
    transparent 0 calc(8.333% - 1px),
    rgba(86, 199, 194, 0.38) calc(8.333% - 1px) 8.333%
  );
  transform: skewX(-4deg);
}

.stripNorth {
  top: 18%;
  right: 8%;
  width: 51%;
}

.stripSouth {
  right: 10%;
  bottom: 18%;
  width: 73%;
}

.stripWest {
  bottom: 36%;
  left: 8%;
  width: 38%;
}

.driveAisle {
  position: absolute;
  z-index: 1;
  top: 44%;
  right: 8%;
  width: 72%;
  height: 16%;
  border-top: 1px dashed rgba(244, 239, 229, 0.18);
  border-bottom: 1px dashed rgba(244, 239, 229, 0.18);
}

.driveAisle span {
  position: absolute;
  top: 50%;
  right: 2%;
  color: rgba(244, 239, 229, 0.26);
  font: 700 0.45rem/1 "Courier New", monospace;
  letter-spacing: 0.1em;
  transform: translateY(-50%);
}

.fcCalculationGrid {
  position: absolute;
  z-index: 3;
  inset: 13% 7% 17% 7%;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  align-items: center;
  justify-items: center;
  pointer-events: none;
}

.fcCalculationGrid span {
  color: rgba(235, 255, 252, 0.62);
  font: 700 clamp(0.42rem, 0.66vw, 0.59rem)/1 "Courier New", monospace;
  text-shadow: 0 0 0.55rem rgba(86, 199, 194, 0.72);
}

.fcCalculationGrid span:nth-child(4n + 1),
.fcCalculationGrid span:nth-child(7n) {
  color: var(--teal);
}

.fcContour {
  position: absolute;
  z-index: 2;
  display: block;
  border: 1px solid rgba(255, 178, 31, 0.34);
  border-radius: 48% 52% 45% 55%;
  pointer-events: none;
}

.contourA {
  top: 21%;
  left: 31%;
  width: 31%;
  height: 43%;
  transform: rotate(-7deg);
}

.contourB {
  top: 27%;
  right: 15%;
  width: 30%;
  height: 49%;
  border-color: rgba(86, 199, 194, 0.28);
  transform: rotate(8deg);
}

.contourC {
  bottom: 12%;
  left: 17%;
  width: 52%;
  height: 40%;
  border-color: rgba(244, 239, 229, 0.16);
  border-style: dashed;
  transform: rotate(2deg);
}

.lightPole {
  position: absolute;
  z-index: 4;
  display: block;
  width: clamp(4rem, 8vw, 7.2rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    #fff4c8 0 3%,
    var(--amber) 4% 9%,
    rgba(255, 107, 0, 0.88) 10% 16%,
    rgba(255, 178, 31, 0.22) 25%,
    rgba(255, 178, 31, 0.07) 48%,
    transparent 68%
  );
  filter: drop-shadow(0 0 1.1rem rgba(255, 133, 0, 0.22));
  transform: translate(-50%, -50%);
}

.lightPole::after {
  position: absolute;
  inset: 31%;
  border: 1px solid rgba(255, 178, 31, 0.38);
  border-radius: 50%;
  content: "";
}

.lightPole b {
  position: absolute;
  top: 48%;
  left: 62%;
  color: var(--amber);
  font: 700 0.43rem/1 "Courier New", monospace;
  letter-spacing: 0.08em;
}

.poleA {
  top: 35%;
  left: 43%;
}

.poleB {
  top: 39%;
  left: 75%;
}

.poleC {
  top: 72%;
  left: 33%;
}

.poleD {
  top: 69%;
  left: 68%;
}

.propertyLineNote {
  position: absolute;
  z-index: 3;
  bottom: 5.5%;
  left: 9%;
  color: #ff625c;
  font: 700 0.44rem/1 "Courier New", monospace;
  letter-spacing: 0.1em;
}

.planNorth {
  position: absolute;
  z-index: 3;
  top: 9%;
  right: 7%;
  display: grid;
  justify-items: center;
  color: var(--paper);
  font: 700 0.5rem/1 "Courier New", monospace;
}

.planNorth span {
  color: var(--teal);
  font-size: 1.6rem;
  line-height: 0.9;
}

.photometricLegend {
  position: absolute;
  right: 0;
  bottom: -2.6rem;
  left: 0;
  display: flex;
  gap: clamp(0.6rem, 1.5vw, 1.4rem);
  align-items: center;
  color: rgba(244, 239, 229, 0.46);
  font: 700 clamp(0.4rem, 0.55vw, 0.52rem)/1 "Courier New", monospace;
  letter-spacing: 0.08em;
}

.photometricLegend span:nth-last-child(-n + 3) {
  color: var(--teal);
}

.photometricLegend span:nth-child(3) {
  margin-left: auto;
}

.photometricLegend i {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.35rem;
  vertical-align: -0.07rem;
}

.legendPole {
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0.5rem rgba(255, 178, 31, 0.7);
}

.legendGrid {
  border: 1px solid var(--teal);
}

.parkingHero .heroLux {
  z-index: 7;
  right: clamp(1.2rem, 2.4vw, 2.5rem);
  bottom: clamp(1rem, 2vw, 1.7rem);
}

.parkingHero .heroLux strong {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

@media (max-width: 680px) {
  .parkingPlan {
    inset: 4.5rem 0.8rem 5.5rem;
  }

  .fcCalculationGrid {
    right: 4%;
    left: 4%;
  }

  .photometricLegend span:nth-child(1),
  .photometricLegend span:nth-child(2),
  .parkingBuilding span,
  .driveAisle span {
    display: none;
  }

  .photometricLegend span:nth-child(3) {
    margin-left: 0;
  }
}

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