:root {
  --ink: #20252a;
  --ink-soft: #2e343a;
  --paper: #f0f1ee;
  --white: #fbfaf7;
  --muted: #68717a;
  --line: #d9dad4;
  --cyan: #4db8d2;
  --blue: #2c649f;
  --accent: #275886;
  --shadow: 0 20px 50px rgba(32, 37, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Inter, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-140%);
  border-radius: 4px;
}

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

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

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
}

.topbar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a:hover {
  color: var(--cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(5, 5, 5, 0.08);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 116px;
  min-width: 116px;
}

.brand img {
  width: 100%;
  height: auto;
  padding: 6px 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

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

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

.site-nav a[aria-current="page"] {
  color: var(--blue);
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 4px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle__line {
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero__image {
  position: absolute;
  inset: 0;
  background-image: url("../assets/about-installation.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.58;
  transform: scale(1.02);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.62) 42%, rgba(5, 5, 5, 0.18)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.3), rgba(5, 5, 5, 0.82));
}

.hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 0;
  width: 180px;
  height: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--accent));
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
  gap: 48px;
  min-height: 82svh;
  padding-block: 78px;
}

.hero__content {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow,
.projects .eyebrow,
.quote .eyebrow,
.footer .eyebrow {
  color: var(--cyan);
}

.eyebrow span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

p,
a,
li,
small,
strong {
  overflow-wrap: break-word;
}

h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: 4.8rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 22px;
  font-size: 2.8rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
  font-weight: 900;
}

.hero__lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero__actions,
.section__heading {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button--primary {
  background: var(--cyan);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--accent);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 4px 4px 0 var(--accent);
}

.button--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.button--light:hover,
.button--light:focus-visible {
  border-color: var(--cyan);
}

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

.hero__panel {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero__panel div {
  display: grid;
  gap: 3px;
  padding: 22px;
  background: rgba(5, 5, 5, 0.72);
}

.hero__count {
  color: var(--cyan);
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
}

.hero__panel span:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.service-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.service-strip__inner {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.service-strip span,
.service-strip a {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.service-strip a:hover,
.service-strip a:focus-visible {
  color: var(--blue);
}

.section {
  padding-block: 96px;
}

.section__intro {
  max-width: 760px;
}

.section__heading {
  justify-content: space-between;
  margin-bottom: 42px;
}

.header__inner > *,
.hero__layout > *,
.page-hero__inner > *,
.split-layout > *,
.detail-layout > *,
.contact-grid > *,
.inner-cta__layout > * {
  min-width: 0;
}

.section__heading > div {
  max-width: 720px;
}

.section__heading--light {
  color: var(--white);
}

.section__summary {
  max-width: 370px;
  margin-bottom: 0;
  color: var(--muted);
}

.section__heading--light .section__summary {
  color: rgba(255, 255, 255, 0.72);
}

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

.about__layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 42px 58px;
  align-items: start;
}

.about__layout .section__intro {
  grid-column: 1 / -1;
}

.about__media {
  position: relative;
}

.about__main {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.about__badge {
  position: absolute;
  right: -26px;
  bottom: 26px;
  max-width: 240px;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-left: 5px solid var(--cyan);
  border-radius: 4px;
}

.about__badge strong,
.about__badge span {
  display: block;
}

.about__badge strong {
  margin-bottom: 6px;
  font-size: 1rem;
}

.about__badge span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.about__body {
  padding-top: 16px;
}

.about__body > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.05rem;
}

.tabs {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}

.tabs__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  gap: 1px;
}

.tabs__button {
  min-height: 54px;
  border: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tabs__button.is-active {
  background: var(--ink);
  color: var(--cyan);
}

.tabs__panel {
  padding: 26px;
}

.tabs__panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.services {
  background: var(--white);
}

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

.service-card {
  min-height: 320px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.service-card:hover {
  background: var(--ink);
  color: var(--white);
}

.service-card__number {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.service-card li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-card:hover li {
  color: rgba(255, 255, 255, 0.86);
}

.service-card li + li {
  margin-top: 8px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: var(--cyan);
}

.projects {
  background: var(--ink);
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 270px;
  gap: 18px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-soft);
}

.project-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.05), rgba(5, 5, 5, 0.82));
}

.project-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.project-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.project-card__content span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card__content h3 {
  margin-bottom: 0;
  font-size: 1.28rem;
}

.project-card--large .project-card__content h3 {
  font-size: 2rem;
}

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

.process__layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 56px;
  align-items: start;
}

.process__steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process__steps article {
  display: grid;
  grid-template-columns: 64px 150px 1fr;
  gap: 22px;
  align-items: start;
  padding: 26px;
  background: var(--white);
}

.process__steps span {
  color: var(--accent);
  font-weight: 900;
}

.process__steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.quote {
  padding-block: 96px;
  background:
    linear-gradient(90deg, rgba(77, 184, 210, 0.1), transparent 26%),
    var(--ink);
  color: var(--white);
}

.quote__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 60px;
  align-items: start;
}

.quote__content {
  position: sticky;
  top: 126px;
}

.quote__content p {
  color: rgba(255, 255, 255, 0.76);
}

.quote__phone {
  display: inline-flex;
  margin-top: 12px;
  color: var(--cyan);
  font-size: 1.3rem;
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
}

.quote-form span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  padding: 11px 12px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 184, 210, 0.16);
}

.quote-form__message,
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form button {
  width: fit-content;
}

.footer {
  background: #0d0f12;
  color: var(--white);
  padding-top: 64px;
}

.footer__layout {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 1fr 1fr;
  gap: 44px;
  padding-bottom: 42px;
}

.footer__brand img {
  width: 150px;
  margin-bottom: 18px;
}

.footer p,
.footer__list {
  color: rgba(255, 255, 255, 0.7);
}

.footer h2 {
  margin-bottom: 18px;
  font-size: 1rem;
  text-transform: uppercase;
}

.footer__list li + li {
  margin-top: 10px;
}

.footer a:hover {
  color: var(--cyan);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--page-image, url("../assets/about-installation.jpg"));
  background-size: cover;
  background-position: center;
  opacity: 0.46;
  transform: scale(1.03);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.58)),
    linear-gradient(180deg, rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.84));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
  gap: 48px;
  align-items: end;
  min-height: 420px;
  padding-block: 92px;
}

.page-hero h1 {
  margin-bottom: 18px;
  font-size: 4rem;
}

.page-hero p {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--cyan);
}

.page-hero__stat {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-hero__stat span {
  display: block;
  padding: 18px;
  background: rgba(5, 5, 5, 0.72);
}

.page-hero__stat strong {
  display: block;
  color: var(--cyan);
  font-size: 2rem;
  line-height: 1;
}

.page-hero__stat small {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  text-transform: uppercase;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: start;
}

.lead-text {
  color: var(--muted);
  font-size: 1.06rem;
}

.content-stack {
  display: grid;
  gap: 22px;
}

.content-stack p {
  color: var(--muted);
}

.number-grid,
.value-grid,
.service-link-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.number-card,
.value-card,
.service-link-card,
.testimonial-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.number-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 2.2rem;
  line-height: 1;
}

.number-card span,
.value-card p,
.service-link-card p,
.testimonial-card p {
  color: var(--muted);
}

.value-card span,
.service-link-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 900;
}

.service-link-card {
  display: grid;
  align-content: space-between;
  min-height: 285px;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-link-card__media {
  height: 170px;
  margin: -28px -28px 24px;
  overflow: hidden;
  background: var(--ink);
}

figure.service-link-card__media {
  margin: -28px -28px 24px;
}

figure.media-tile {
  margin: 0;
}

.service-link-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: transform 260ms ease, opacity 260ms ease;
}

.missing-image {
  position: relative;
  display: grid;
  min-height: 100%;
  place-content: center;
  gap: 8px;
  padding: 24px;
  overflow: hidden;
  border: 1px dashed rgba(77, 184, 210, 0.48);
  background:
    linear-gradient(135deg, rgba(77, 184, 210, 0.14), rgba(39, 88, 134, 0.14)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 20px),
    var(--ink);
  color: var(--white);
  text-align: center;
}

.missing-image::before {
  content: "";
  width: 46px;
  height: 34px;
  margin-inline: auto;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.72;
  box-shadow: inset 16px -10px 0 rgba(77, 184, 210, 0.18);
}

.missing-image span,
.missing-image strong {
  position: relative;
  z-index: 1;
}

.missing-image span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.missing-image strong {
  font-size: 1.08rem;
  line-height: 1.25;
}

.service-link-card__media .missing-image,
.image-band__media .missing-image {
  height: 100%;
}

.detail-image.missing-image {
  aspect-ratio: 16 / 9;
  margin-bottom: 34px;
}

.service-link-card:hover,
.service-link-card:focus-within {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-4px);
}

.service-link-card:hover .service-link-card__media img,
.service-link-card:focus-within .service-link-card__media img {
  opacity: 1;
  transform: scale(1.06);
}

.service-link-card:hover p,
.service-link-card:focus-within p {
  color: rgba(255, 255, 255, 0.76);
}

.service-link-card a {
  margin-top: 24px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-link-card:hover a,
.service-link-card:focus-within a {
  color: var(--cyan);
}

.category-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.category-panel + .category-panel {
  margin-top: 18px;
}

.category-panel__label,
.category-panel__list {
  background: var(--white);
  padding: 28px;
}

.category-panel__label {
  display: grid;
  align-content: center;
  background: var(--ink);
  color: var(--white);
}

.category-panel__label span {
  color: var(--cyan);
  font-weight: 900;
}

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

.category-panel__list a {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-weight: 800;
}

.category-panel__list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 44px;
  align-items: start;
}

.detail-main,
.detail-sidebar__box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-main {
  padding: 38px;
}

.detail-main h2,
.detail-main h3 {
  margin-top: 0;
}

.detail-main p {
  color: var(--muted);
}

.detail-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
}

.detail-sidebar {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
}

.detail-sidebar__box {
  padding: 24px;
}

.detail-sidebar__box--dark {
  background: var(--ink);
  color: var(--white);
}

.detail-sidebar h2,
.detail-sidebar h3 {
  margin-bottom: 18px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.service-menu {
  display: grid;
  gap: 8px;
}

.service-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 10px 12px;
  background: var(--paper);
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.service-menu a[aria-current="page"],
.service-menu a:hover,
.service-menu a:focus-visible {
  background: var(--ink);
  color: var(--cyan);
}

.detail-sidebar__box--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.project-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.project-index-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 6px;
  background: var(--ink);
}

.project-index-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  opacity: 0.84;
  transition: transform 220ms ease, opacity 220ms ease;
}

.project-index-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.06), rgba(5, 5, 5, 0.82));
}

.project-index-card:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.project-index-card__content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.project-index-card__content span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-index-card__content h2 {
  margin: 8px 0 0;
  font-size: 1.45rem;
}

.quote-page {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
}

.contact-card a {
  color: var(--cyan);
  font-weight: 900;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.72);
}

.inner-cta {
  padding-block: 70px;
  background: var(--ink);
  color: var(--white);
}

.inner-cta__layout {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.inner-cta p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.visual-frame {
  position: relative;
  display: grid;
  gap: 18px;
}

.visual-frame--stack {
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  align-items: end;
}

.visual-frame img {
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.visual-frame__main {
  aspect-ratio: 4 / 5;
}

.visual-frame__side {
  aspect-ratio: 1 / 1.18;
  margin-bottom: 34px;
}

.visual-frame__note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 18px;
  background: var(--ink);
  color: var(--white);
  border-left: 5px solid var(--cyan);
  border-radius: 4px;
}

.visual-frame__note strong,
.visual-frame__note span {
  display: block;
}

.visual-frame__note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.image-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 440px;
  background: var(--ink);
  color: var(--white);
  border-radius: 6px;
  overflow: hidden;
}

.image-band__media {
  min-height: 360px;
}

.image-band__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band__content {
  display: grid;
  align-content: center;
  padding: 46px;
}

.image-band__content p {
  color: rgba(255, 255, 255, 0.74);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.media-tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.media-tile img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 260ms ease, opacity 260ms ease;
}

.media-tile:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.media-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--cyan);
  border-radius: 4px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.division-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.division-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--white);
}

.division-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
  transition: transform 260ms ease, opacity 260ms ease;
}

.division-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.88));
}

.division-card:hover img,
.division-card:focus-within img {
  opacity: 0.72;
  transform: scale(1.06);
}

.division-card__content {
  position: relative;
  z-index: 1;
}

.division-card__content span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.division-card__content p {
  color: rgba(255, 255, 255, 0.76);
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-chip-grid span,
.service-chip-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-chip-grid a:hover,
.service-chip-grid a:focus-visible {
  border-color: var(--cyan);
  color: var(--blue);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.placeholder-media {
  min-height: 150px;
  margin: -28px -28px 22px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

.proof-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-weight: 900;
}

.proof-card p {
  color: var(--muted);
}

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

.process-line article {
  padding: 28px;
  background: var(--white);
}

.process-line span {
  color: var(--blue);
  font-weight: 900;
}

.process-line p {
  color: var(--muted);
}

body.animations-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 680ms ease, transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

body.animations-ready .reveal.reveal--left {
  transform: translateX(-28px);
}

body.animations-ready .reveal.reveal--right {
  transform: translateX(28px);
}

body.animations-ready .reveal.reveal--zoom {
  transform: scale(0.96);
}

body.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

body.animations-ready .home-hero__content.reveal,
body.animations-ready .home-hero__index.reveal,
body.animations-ready .page-hero__inner > .reveal {
  opacity: 1;
  transform: none;
}

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

  body.animations-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero__layout,
  .process__layout,
  .quote__layout,
  .page-hero__inner,
  .split-layout,
  .detail-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .quote__content {
    position: static;
  }

  .detail-sidebar {
    position: static;
  }

  .number-grid,
  .value-grid,
  .service-link-grid,
  .testimonial-grid,
  .media-grid,
  .division-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 860px) {
  .topbar__inner {
    justify-content: center;
  }

  .header__inner {
    min-height: 56px;
  }

  .brand {
    width: 92px;
    min-width: 92px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 116px 16px auto;
    display: grid;
    gap: 0;
    padding: 8px;
    max-height: calc(100svh - 132px);
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 12px;
    border-radius: 4px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--paper);
  }

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero__layout {
    min-height: auto;
  }

  .hero__layout {
    padding-block: 70px 44px;
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2rem;
  }

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

  .section {
    padding-block: 72px;
  }

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

  .about__badge {
    right: 14px;
  }

  .process__steps article {
    grid-template-columns: 52px 1fr;
  }

  .process__steps p {
    grid-column: 2;
  }

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

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

  .page-hero__inner {
    min-height: 340px;
    padding-block: 70px;
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .category-panel {
    grid-template-columns: 1fr;
  }

  .category-panel__list {
    grid-template-columns: 1fr;
  }

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

  .inner-cta__layout {
    display: grid;
  }

  .visual-frame--stack {
    grid-template-columns: 1fr;
  }

  .visual-frame__side {
    margin-bottom: 0;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar {
    display: none;
  }

  .site-nav {
    inset: 64px 12px auto;
    max-height: calc(100svh - 76px);
  }

  h1 {
    font-size: 2.45rem;
  }

  .page-hero h1 {
    font-size: 2.18rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .page-hero__inner {
    min-height: 300px;
    padding-block: 56px;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__panel,
  .services__grid,
  .projects__grid,
  .project-index-grid,
  .number-grid,
  .value-grid,
  .service-link-grid,
  .testimonial-grid,
  .media-grid,
  .division-grid,
  .proof-grid,
  .process-line {
    grid-template-columns: 1fr;
  }

  .division-card {
    min-height: 350px;
  }

  .hero__panel div {
    padding: 18px;
  }

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

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .projects__grid {
    grid-auto-rows: 320px;
  }

  .project-index-card,
  .project-index-card img {
    min-height: 300px;
  }

  .project-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-card--large .project-card__content h3 {
    font-size: 1.45rem;
  }

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

  .process__steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .process__steps p {
    grid-column: auto;
  }

  .quote,
  .section {
    padding-block: 58px;
  }

  .quote-form {
    padding: 20px;
  }

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

  .footer__bottom {
    flex-direction: column;
  }

  .detail-main,
  .detail-sidebar__box,
  .number-card,
  .value-card,
  .proof-card,
  .service-link-card,
  .testimonial-card {
    padding: 22px;
  }

  .placeholder-media {
    margin: -22px -22px 20px;
  }

  .service-link-card__media {
    margin: -22px -22px 20px;
  }

  figure.service-link-card__media {
    margin: -22px -22px 20px;
  }

  .image-band__content {
    padding: 28px;
  }

  .image-band__media,
  .image-band__media img {
    min-height: 280px;
  }

  .visual-frame__note {
    position: static;
    max-width: none;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 2.18rem;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.58rem;
  }

  .hero__actions,
  .section__heading {
    align-items: stretch;
  }

  .hero__actions .button,
  .section__heading .button,
  .inner-cta__layout .button {
    width: 100%;
  }

  .button {
    min-height: 46px;
    padding-inline: 16px;
  }

  .service-link-card__media {
    height: 150px;
  }
}

/* 2026 editorial redesign */

body {
  background: var(--paper);
}

.topbar__inner > span:first-child {
  margin-right: auto;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 78px;
}

.brand {
  width: 108px;
  min-width: 108px;
}

.brand img {
  padding-block: 8px;
}

.site-nav {
  gap: 34px;
  font-size: 0.78rem;
}

.site-nav > a,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  line-height: 1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: inherit;
  font-weight: inherit;
  text-transform: uppercase;
}

.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-dropdown__trigger:hover::after,
.nav-dropdown__trigger:focus-visible::after,
.nav-dropdown__trigger.is-current::after,
.nav-dropdown.is-open .nav-dropdown__trigger::after {
  transform: scaleX(1);
}

.nav-dropdown__trigger.is-current {
  color: var(--blue);
}

.nav-dropdown__chevron {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown.is-open .nav-dropdown__chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -24px;
  z-index: 20;
  display: grid;
  width: 286px;
  padding: 10px;
  visibility: hidden;
  border-top: 3px solid var(--cyan);
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.nav-dropdown__menu a {
  padding: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible,
.nav-dropdown__menu a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: var(--cyan);
}

.nav-dropdown.is-open .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.home-hero {
  position: relative;
  min-height: 730px;
  height: calc(100svh - 120px);
  max-height: 860px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.home-hero__media,
.home-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

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

.home-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.92) 0%, rgba(3, 5, 8, 0.62) 44%, rgba(3, 5, 8, 0.14) 76%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.16), rgba(3, 5, 8, 0.64));
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  padding-block: 88px 42px;
  flex-direction: column;
  justify-content: space-between;
}

.home-hero__content {
  max-width: 780px;
}

.home-hero h1 {
  max-width: 760px;
  margin: 20px 0 24px;
  color: var(--white);
  font-size: 4.9rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-hero__content > p:not(.eyebrow) {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.12rem;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.76);
}

.button--glass {
  border: 1px solid rgba(255, 255, 255, 0.52);
  background: rgba(5, 5, 5, 0.18);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button--glass:hover,
.button--glass:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.home-hero__index {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.32);
}

.home-hero__index span {
  display: grid;
  gap: 4px;
  padding: 22px 28px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero__index strong {
  color: var(--white);
  font-size: 1.75rem;
  line-height: 1;
}

.editorial-intro {
  background: var(--white);
}

.editorial-intro__layout {
  display: grid;
  grid-template-columns: 0.55fr 1.65fr 0.9fr;
  gap: 52px;
  align-items: start;
}

.editorial-intro h2 {
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.13;
}

.editorial-intro__layout > div p {
  margin-top: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--cyan);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  gap: 18px;
  color: var(--blue);
}

.home-services {
  background: #eceeea;
}

.home-mobile-summary {
  display: none;
}

.division-showcase {
  display: grid;
  gap: 86px;
  margin-top: 54px;
}

.division-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: center;
}

.division-feature--reverse {
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
}

.division-feature--reverse .division-feature__image {
  order: 2;
}

.division-feature__image {
  position: relative;
  display: block;
  min-height: 480px;
  overflow: hidden;
  background: var(--ink);
}

.division-feature__image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 480ms ease;
}

.division-feature__image:hover img,
.division-feature__image:focus-visible img {
  transform: scale(1.035);
}

.division-feature__image > span {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  background: var(--cyan);
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 900;
}

.division-feature__content h3 {
  margin: 16px 0 18px;
  font-size: 2.7rem;
  line-height: 1.08;
}

.division-feature__content p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--muted);
}

.capability-band {
  padding-block: 96px;
  background: var(--ink);
  color: var(--white);
}

.capability-band__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: start;
}

.capability-band h2 {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 3rem;
  line-height: 1.08;
}

.capability-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.capability-list li {
  position: relative;
  padding: 17px 36px 17px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.capability-list li::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 4px;
  color: var(--cyan);
  font-weight: 900;
}

.project-preview {
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: repeat(2, 300px);
  gap: 18px;
}

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

.portfolio-card--wide {
  grid-row: 1 / 3;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 420ms ease, opacity 420ms ease;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(3, 5, 8, 0.88));
}

.portfolio-card > div {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  z-index: 1;
}

.portfolio-card span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-card h3 {
  margin: 4px 0 0;
  font-size: 1.65rem;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  opacity: 1;
  transform: scale(1.045);
}

.process-editorial {
  background: #eceeea;
}

.process-editorial__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 40px;
  border-top: 1px solid #bfc5ca;
}

.process-editorial__grid article {
  min-height: 260px;
  padding: 30px 30px 30px 0;
  border-right: 1px solid #bfc5ca;
}

.process-editorial__grid article + article {
  padding-left: 30px;
}

.process-editorial__grid article:last-child {
  border-right: 0;
}

.process-editorial__grid span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-editorial__grid h3 {
  margin: 54px 0 14px;
  font-size: 1.55rem;
}

.process-editorial__grid p {
  color: var(--muted);
}

.project-cta {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.project-cta > img,
.project-cta__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-cta > img {
  object-fit: cover;
  object-position: center;
}

.project-cta__shade {
  background: linear-gradient(90deg, rgba(3, 5, 8, 0.9), rgba(3, 5, 8, 0.54) 52%, rgba(3, 5, 8, 0.12));
}

.project-cta__content {
  position: relative;
  z-index: 1;
}

.project-cta h2 {
  max-width: 760px;
  margin: 18px 0 34px;
  font-size: 3.7rem;
  line-height: 1.03;
}

@media (max-width: 980px) {
  .site-nav {
    gap: 22px;
  }

  .home-hero {
    min-height: 680px;
  }

  .home-hero h1 {
    font-size: 4rem;
  }

  .editorial-intro__layout {
    grid-template-columns: 1fr 2fr;
    gap: 32px;
  }

  .editorial-intro__layout > div {
    grid-column: 2;
  }

  .division-feature,
  .division-feature--reverse {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .division-feature__image,
  .division-feature__image img {
    min-height: 400px;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .header__inner {
    min-height: 64px;
  }

  .brand {
    width: 92px;
    min-width: 92px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    inset: 64px 12px auto;
    display: none;
    max-height: calc(100svh - 76px);
    padding: 18px;
    overflow-y: auto;
    align-items: stretch;
    gap: 4px;
    border-top: 3px solid var(--cyan);
    background: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav > a,
  .nav-dropdown__trigger {
    width: 100%;
    min-height: 50px;
    padding: 12px;
    justify-content: space-between;
    color: var(--white);
  }

  .site-nav > a::after,
  .nav-dropdown__trigger::after {
    display: none;
  }

  .site-nav > a[aria-current="page"],
  .nav-dropdown__trigger.is-current {
    background: rgba(255, 255, 255, 0.08);
    color: var(--cyan);
  }

  .nav-dropdown__menu {
    position: static;
    display: none;
    width: auto;
    padding: 4px 0 8px 14px;
    visibility: visible;
    border-top: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: grid;
  }

  .home-hero {
    height: auto;
    min-height: 650px;
    max-height: none;
  }

  .home-hero__media {
    object-position: 64% center;
  }

  .home-hero__shade {
    background: linear-gradient(90deg, rgba(3, 5, 8, 0.9), rgba(3, 5, 8, 0.56));
  }

  .home-hero__inner {
    min-height: 650px;
    padding-block: 62px 28px;
  }

  .home-hero h1 {
    font-size: 3.15rem;
  }

  .home-hero__index {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .home-hero__index span {
    grid-template-columns: 58px 1fr;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .editorial-intro__layout,
  .division-feature,
  .division-feature--reverse,
  .capability-band__layout {
    grid-template-columns: 1fr;
  }

  .editorial-intro__layout {
    gap: 24px;
  }

  .editorial-intro__layout > div {
    grid-column: auto;
  }

  .editorial-intro h2,
  .division-feature__content h3,
  .capability-band h2 {
    font-size: 2.15rem;
  }

  .division-showcase {
    gap: 66px;
  }

  .division-feature--reverse .division-feature__image {
    order: 0;
  }

  .division-feature__image,
  .division-feature__image img {
    min-height: 330px;
  }

  .capability-band__layout {
    gap: 42px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 320px);
  }

  .portfolio-card--wide {
    grid-row: auto;
  }

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

  .process-editorial__grid article,
  .process-editorial__grid article + article {
    min-height: 220px;
    padding: 24px;
    border-right: 1px solid #bfc5ca;
    border-bottom: 1px solid #bfc5ca;
  }

  .process-editorial__grid h3 {
    margin-top: 34px;
  }

  .project-cta {
    min-height: 520px;
  }

  .project-cta > img {
    object-position: 64% center;
  }

  .project-cta__shade {
    background: rgba(3, 5, 8, 0.68);
  }

  .project-cta h2 {
    font-size: 2.65rem;
  }
}

@media (max-width: 480px) {
  .home-hero h1 {
    font-size: 2.65rem;
  }

  .home-hero__content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .division-feature__image,
  .division-feature__image img {
    min-height: 280px;
  }

  .division-feature__image > span {
    width: 64px;
    height: 64px;
  }

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

  .process-editorial__grid article,
  .process-editorial__grid article + article {
    min-height: 190px;
    border-right: 0;
  }

  .project-cta h2 {
    font-size: 2.2rem;
  }
}

/* Inner pages */

.page-hero--editorial,
.division-page .page-hero {
  min-height: 580px;
}

.projects-page .page-hero::before {
  background-image: url("../assets/hero-commercial-hd.jpg");
}

.contact-page .page-hero::before {
  background-image: url("../assets/contact-consultation-hd.jpg");
}

.division-page--residential .page-hero::before {
  background-image: url("../assets/hero-residential-hd.jpg");
}

.division-page--commercial .page-hero::before {
  background-image: url("../assets/hero-commercial-hd.jpg");
}

.division-page--renovation .page-hero::before {
  background-image: url("../assets/hero-renovation-service-hd.jpg");
}

.page-hero--editorial::before,
.division-page .page-hero::before {
  opacity: 0.78;
  transform: scale(1.01);
}

.page-hero--editorial::after,
.division-page .page-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.9) 0%, rgba(3, 5, 8, 0.58) 48%, rgba(3, 5, 8, 0.12) 78%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.08), rgba(3, 5, 8, 0.68));
}

.page-hero--editorial .page-hero__inner,
.division-page .page-hero__inner {
  min-height: 580px;
  padding-block: 90px 62px;
}

.page-hero--editorial h1,
.division-page .page-hero h1 {
  max-width: 780px;
  margin: 18px 0 20px;
  font-size: 4.45rem;
  line-height: 0.98;
}

.division-page .split-layout {
  gap: 80px;
}

.division-page .service-link-grid {
  gap: 1px;
  background: #cfd3d7;
  border: 1px solid #cfd3d7;
}

.division-page .service-link-card {
  min-height: 250px;
  border: 0;
  border-radius: 0;
  background: var(--white);
}

.division-page .service-link-card::before {
  content: "";
  width: 42px;
  height: 3px;
  margin-bottom: 28px;
  background: var(--cyan);
}

.division-page .service-link-card__media,
.division-page .placeholder-media {
  display: none;
}

.division-page .service-link-card:hover,
.division-page .service-link-card:focus-within {
  background: var(--ink);
}

.division-page .proof-card,
.division-page .value-card {
  min-height: 250px;
  border-radius: 0;
  border-color: #cfd3d7;
}

.division-page .proof-card h3,
.division-page .value-card h3 {
  margin-top: 40px;
}

.division-page .process-line {
  background: #cfd3d7;
  border-color: #cfd3d7;
}

.division-page .process-line article {
  min-height: 270px;
  padding-top: 34px;
}

.division-page .process-line h3 {
  margin-top: 54px;
}

.division-page .image-band {
  min-height: 520px;
  border-radius: 0;
}

.division-page .image-band__content {
  padding: 58px;
}

.division-page .projects {
  background: var(--ink);
}

.division-page .project-index-card {
  border-radius: 0;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 270px;
  grid-auto-flow: dense;
  gap: 16px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  background: var(--ink);
  color: var(--white);
}

.gallery-card--tall {
  grid-row: span 2;
}

.gallery-card--wide {
  grid-column: span 2;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 420ms ease, opacity 420ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(3, 5, 8, 0.9));
}

.gallery-card > div {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
}

.gallery-card span {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin: 5px 0 0;
  font-size: 1.55rem;
}

.gallery-card:hover img {
  opacity: 1;
  transform: scale(1.045);
}

.project-types {
  background: #eceeea;
}

.project-types__layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}

.project-types__links {
  display: grid;
  border-top: 1px solid #bfc5ca;
}

.project-types__links a {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 20px;
  padding: 23px 4px;
  align-items: center;
  border-bottom: 1px solid #bfc5ca;
  font-size: 1.05rem;
  font-weight: 900;
}

.project-types__links span {
  color: var(--accent);
  font-size: 0.75rem;
}

.project-types__links strong {
  color: var(--blue);
  transition: transform 180ms ease;
}

.project-types__links a:hover strong {
  transform: translateX(5px);
}

.contact-editorial {
  background: var(--white);
}

.contact-editorial__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
  align-items: start;
}

.contact-editorial__details > p:not(.eyebrow) {
  color: var(--muted);
}

.contact-list {
  display: grid;
  margin: 42px 0;
  border-top: 1px solid #cfd3d7;
}

.contact-list div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #cfd3d7;
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-weight: 800;
}

.contact-list a:hover {
  color: var(--blue);
}

.contact-editorial__image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.contact-editorial__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-editorial__form {
  padding: 48px;
  border-top: 4px solid var(--cyan);
  background: #eceeea;
}

.quote-form--editorial {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.quote-form--editorial input,
.quote-form--editorial select,
.quote-form--editorial textarea {
  border: 0;
  border-bottom: 1px solid #aeb5bc;
  border-radius: 0;
  background: transparent;
}

.quote-form--editorial input:focus,
.quote-form--editorial select:focus,
.quote-form--editorial textarea:focus {
  border-color: var(--blue);
  outline: 2px solid transparent;
}

.quote-form--editorial textarea {
  resize: vertical;
}

.contact-service-links {
  padding-block: 0;
  background: var(--ink);
  color: var(--white);
}

.contact-service-links__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-service-links__grid a {
  display: grid;
  min-height: 210px;
  padding: 34px;
  align-content: end;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease;
}

.contact-service-links__grid a:last-child {
  border-right: 0;
}

.contact-service-links__grid a:hover {
  background: rgba(255, 255, 255, 0.07);
}

.contact-service-links__grid span {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
}

.contact-service-links__grid strong {
  font-size: 1.25rem;
}

.contact-service-links__grid small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 900px) {
  .contact-editorial__layout,
  .project-types__layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

@media (max-width: 760px) {
  .nav-toggle {
    position: relative;
    z-index: 70;
    display: flex !important;
    flex: 0 0 44px;
    visibility: visible !important;
    opacity: 1 !important;
    border-color: var(--ink) !important;
    background: var(--ink) !important;
  }

  .nav-toggle__line {
    background: var(--white);
  }

  .site-nav.is-open {
    display: grid;
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .eyebrow {
    display: flex;
    max-width: 100%;
    flex-wrap: wrap;
    line-height: 1.35;
  }

  .home-hero__content,
  .page-hero__inner > div:first-child {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .home-hero .hero__actions {
    display: grid;
    max-width: 320px;
    grid-template-columns: 1fr;
  }

  .home-hero .hero__actions .button {
    width: 100%;
  }

  .page-hero--editorial,
  .division-page .page-hero,
  .page-hero--editorial .page-hero__inner,
  .division-page .page-hero__inner {
    min-height: 480px;
  }

  .page-hero--editorial h1,
  .division-page .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero--editorial .page-hero__stat,
  .division-page .page-hero__stat {
    display: none;
  }

  .division-page .split-layout {
    gap: 34px;
  }

  .division-page .image-band__content {
    padding: 30px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 320px;
  }

  .gallery-card--tall,
  .gallery-card--wide {
    grid-row: auto;
    grid-column: auto;
  }

  .contact-editorial__form {
    padding: 28px;
  }

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

  .contact-service-links__grid a {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 480px) {
  .page-hero--editorial h1,
  .division-page .page-hero h1 {
    font-size: 2.45rem;
  }

  .contact-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .gallery-grid {
    grid-auto-rows: 280px;
  }
}

/* Transparent home hero header and lighter typography */

h1,
h2,
h3 {
  font-weight: 400;
}

.home-hero h1,
.page-hero h1 {
  font-weight: 300;
}

.division-feature__content h3,
.portfolio-card h3,
.gallery-card h3,
.project-index-card__content h2,
.service-link-card h3,
.value-card h3,
.proof-card h3,
.process-line h3,
.process-editorial__grid h3,
.contact-editorial h2,
.contact-service-links__grid strong {
  font-weight: 400;
}

.home-page .topbar {
  display: none;
}

.home-page .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  backdrop-filter: none;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

.home-page .header__inner {
  min-height: 104px;
  transition: min-height 240ms ease;
}

.home-page .brand {
  position: relative;
  width: 132px;
  min-width: 132px;
}

.home-page .brand img {
  max-height: 82px;
  padding-block: 8px;
  object-fit: contain;
}

.home-page .brand__logo {
  transition: opacity 200ms ease;
}

.home-page .brand__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.home-page .site-header.is-scrolled {
  border-bottom-color: rgba(5, 5, 5, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(18px);
}

.home-page .site-header.is-scrolled .header__inner {
  min-height: 78px;
}

.home-page .site-header.is-scrolled .brand__logo--light {
  opacity: 0;
}

.home-page .site-header.is-scrolled .brand__logo--dark {
  opacity: 1;
}

.home-page .site-nav > a,
.home-page .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 0.9);
}

.home-page .site-nav > a:hover,
.home-page .site-nav > a:focus-visible,
.home-page .site-nav > a[aria-current="page"],
.home-page .nav-dropdown__trigger:hover,
.home-page .nav-dropdown__trigger:focus-visible,
.home-page .nav-dropdown__trigger.is-current {
  color: var(--white);
}

.home-page .site-nav a::after,
.home-page .nav-dropdown__trigger::after {
  background: var(--cyan);
}

.home-page .nav-toggle {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(5, 5, 5, 0.2);
}

.home-page .nav-toggle__line {
  background: var(--white);
}

@media (min-width: 761px) {
  .home-page .site-header.is-scrolled .site-nav > a,
  .home-page .site-header.is-scrolled .nav-dropdown__trigger {
    color: var(--ink-soft);
  }

  .home-page .site-header.is-scrolled .site-nav > a:hover,
  .home-page .site-header.is-scrolled .site-nav > a:focus-visible,
  .home-page .site-header.is-scrolled .site-nav > a[aria-current="page"],
  .home-page .site-header.is-scrolled .nav-dropdown__trigger:hover,
  .home-page .site-header.is-scrolled .nav-dropdown__trigger:focus-visible,
  .home-page .site-header.is-scrolled .nav-dropdown__trigger.is-current {
    color: var(--ink);
  }
}

.home-page .site-header.is-scrolled .nav-toggle {
  border-color: rgba(5, 5, 5, 0.18);
  background: rgba(5, 5, 5, 0.04);
}

.home-page .site-header.is-scrolled .nav-toggle__line {
  background: var(--ink);
}

.home-page .home-hero {
  height: 100svh;
  min-height: 720px;
  max-height: 980px;
}

.home-page .home-hero__slides {
  position: absolute;
  inset: 0;
}

.home-page .home-hero__slide {
  opacity: 0;
  transform: scale(1.11);
  transition: opacity 1.25s ease;
  will-change: opacity, transform;
}

.home-page .home-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  animation: home-hero-slide-zoom 8s ease-out forwards;
}

.home-page .home-hero__shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.78) 0%, rgba(3, 5, 8, 0.44) 44%, rgba(3, 5, 8, 0.12) 78%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.26), rgba(3, 5, 8, 0.58));
}

.home-page .home-hero__inner {
  z-index: 3;
  padding-block: 174px 44px;
}

.home-hero__slider-controls {
  position: absolute;
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 42px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-hero__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.2);
  color: var(--white);
  line-height: 1;
  backdrop-filter: blur(8px);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.home-hero__arrow:hover,
.home-hero__arrow:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.home-hero__dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.home-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: width 180ms ease, border-radius 180ms ease, background 180ms ease;
}

.home-hero__dot.is-active {
  width: 28px;
  border-radius: 4px;
  background: var(--cyan);
}

.home-hero__dot:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

@keyframes home-hero-slide-zoom {
  from {
    transform: scale(1.025);
  }

  to {
    transform: scale(1.105);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .site-header,
  .home-page .header__inner,
  .home-page .brand__logo {
    transition: none;
  }

  .home-page .home-hero__slide {
    animation: none;
    transition: none;
    transform: scale(1.045);
  }
}

@media (max-width: 760px) {
  .home-page .header__inner {
    min-height: 78px;
  }

  .home-page .brand {
    width: 104px;
    min-width: 104px;
  }

  .home-page .brand img {
    max-height: 66px;
  }

  .home-page .site-nav {
    inset: 78px 12px auto;
  }

  .home-page .site-nav > a,
  .home-page .nav-dropdown__trigger {
    color: var(--white);
  }

  .home-page .home-hero {
    min-height: 720px;
  }

  .home-page .home-hero__inner {
    min-height: 720px;
    padding-block: 132px 28px;
  }

  .home-hero__slider-controls {
    top: 90px;
    right: 12px;
    bottom: auto;
    gap: 8px;
  }

  .home-hero__arrow {
    width: 38px;
    height: 38px;
  }
}

/* Shared transparent-to-white headers for inner pages */

body:not(.home-page) .topbar {
  display: none;
}

body:not(.home-page) .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    backdrop-filter 240ms ease;
}

body:not(.home-page) .header__inner {
  min-height: 104px;
  transition: min-height 240ms ease;
}

body:not(.home-page) .brand {
  position: relative;
  width: 132px;
  min-width: 132px;
}

body:not(.home-page) .brand__logo {
  width: 100%;
  max-height: 82px;
  padding-block: 8px;
  object-fit: contain;
  transition: opacity 200ms ease;
}

body:not(.home-page) .brand__logo--dark {
  position: absolute;
  inset: 0;
  opacity: 0;
}

body:not(.home-page) .site-nav > a,
body:not(.home-page) .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 0.9);
}

body:not(.home-page) .site-nav > a:hover,
body:not(.home-page) .site-nav > a:focus-visible,
body:not(.home-page) .site-nav > a[aria-current="page"],
body:not(.home-page) .nav-dropdown__trigger:hover,
body:not(.home-page) .nav-dropdown__trigger:focus-visible,
body:not(.home-page) .nav-dropdown__trigger.is-current {
  color: var(--white);
}

body:not(.home-page) .nav-toggle {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(5, 5, 5, 0.2);
}

body:not(.home-page) .nav-toggle__line {
  background: var(--white);
}

body:not(.home-page) .site-header.is-scrolled {
  border-bottom-color: rgba(5, 5, 5, 0.1);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 8px 28px rgba(5, 5, 5, 0.1);
  backdrop-filter: blur(18px);
}

body:not(.home-page) .site-header.is-scrolled .header__inner {
  min-height: 78px;
}

body:not(.home-page) .site-header.is-scrolled .brand__logo--light {
  opacity: 0;
}

body:not(.home-page) .site-header.is-scrolled .brand__logo--dark {
  opacity: 1;
}

body:not(.home-page) .site-header.is-scrolled .nav-toggle {
  border-color: rgba(5, 5, 5, 0.18);
  background: rgba(5, 5, 5, 0.04);
}

body:not(.home-page) .site-header.is-scrolled .nav-toggle__line {
  background: var(--ink);
}

body:not(.home-page) .page-hero,
body:not(.home-page) .page-hero__inner {
  min-height: clamp(580px, 72svh, 760px);
}

body:not(.home-page) .page-hero::before {
  opacity: 0.76;
  transform: scale(1.02);
}

body:not(.home-page) .page-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 5, 8, 0.88) 0%, rgba(3, 5, 8, 0.56) 50%, rgba(3, 5, 8, 0.14) 82%),
    linear-gradient(180deg, rgba(3, 5, 8, 0.14), rgba(3, 5, 8, 0.66));
}

body:not(.home-page) .page-hero__inner {
  padding-block: 158px 72px;
}

@media (min-width: 761px) {
  body:not(.home-page) .site-header.is-scrolled .site-nav > a,
  body:not(.home-page) .site-header.is-scrolled .nav-dropdown__trigger {
    color: var(--ink-soft);
  }

  body:not(.home-page) .site-header.is-scrolled .site-nav > a:hover,
  body:not(.home-page) .site-header.is-scrolled .site-nav > a:focus-visible,
  body:not(.home-page) .site-header.is-scrolled .site-nav > a[aria-current="page"],
  body:not(.home-page) .site-header.is-scrolled .nav-dropdown__trigger:hover,
  body:not(.home-page) .site-header.is-scrolled .nav-dropdown__trigger:focus-visible,
  body:not(.home-page) .site-header.is-scrolled .nav-dropdown__trigger.is-current {
    color: var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.home-page) .site-header,
  body:not(.home-page) .header__inner,
  body:not(.home-page) .brand__logo {
    transition: none;
  }
}

@media (max-width: 760px) {
  body:not(.home-page) .header__inner {
    min-height: 78px;
  }

  body:not(.home-page) .brand {
    width: 104px;
    min-width: 104px;
  }

  body:not(.home-page) .brand__logo {
    max-height: 66px;
  }

  body:not(.home-page) .site-nav {
    inset: 78px 12px auto;
  }

  body:not(.home-page) .site-nav > a,
  body:not(.home-page) .nav-dropdown__trigger {
    color: var(--white);
  }

  body:not(.home-page) .page-hero,
  body:not(.home-page) .page-hero__inner {
    min-height: 520px;
  }

  body:not(.home-page) .page-hero__inner {
    padding-block: 124px 56px;
  }
}

/* Generated service photography */

.division-page .service-link-card {
  display: flex;
  min-height: 430px;
  padding: 0;
  flex-direction: column;
}

.division-page .service-link-card::before {
  display: none;
}

.division-page .service-link-card__media,
.division-page figure.service-link-card__media {
  display: block;
  width: 100%;
  height: 220px;
  margin: 0;
  flex: 0 0 220px;
}

.division-page .service-link-card__media img {
  opacity: 1;
}

.division-page .service-link-card > div {
  display: flex;
  padding: 26px 28px 30px;
  flex: 1;
  flex-direction: column;
}

.division-page .service-link-card h3 {
  margin-top: 0;
}

.division-page .service-link-card p {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .division-page .service-link-card {
    min-height: 390px;
  }

  .division-page .service-link-card__media,
  .division-page figure.service-link-card__media {
    height: 200px;
    flex-basis: 200px;
  }

  .division-page .service-link-card > div {
    padding: 22px;
  }
}

/* Softer mobile menu trigger */

@media (max-width: 760px) {
  .nav-toggle,
  .home-page .nav-toggle,
  body:not(.home-page) .nav-toggle,
  .home-page .site-header.is-scrolled .nav-toggle,
  body:not(.home-page) .site-header.is-scrolled .nav-toggle {
    border-color: rgba(32, 37, 42, 0.18) !important;
    background: rgba(251, 250, 247, 0.78) !important;
    box-shadow: 0 8px 20px rgba(32, 37, 42, 0.08);
    backdrop-filter: blur(12px);
  }

  .nav-toggle__line,
  .home-page .nav-toggle__line,
  body:not(.home-page) .nav-toggle__line,
  .home-page .site-header.is-scrolled .nav-toggle__line,
  body:not(.home-page) .site-header.is-scrolled .nav-toggle__line {
    background: var(--ink) !important;
  }

  body.nav-open .nav-toggle {
    border-color: var(--accent) !important;
    background: var(--accent) !important;
  }

  body.nav-open .nav-toggle__line {
    background: var(--white) !important;
  }

  body.home-page:not(.nav-open) .site-header:not(.is-scrolled) .nav-toggle,
  body:not(.home-page):not(.nav-open) .site-header:not(.is-scrolled) .nav-toggle {
    border-color: rgba(255, 255, 255, 0.38) !important;
    background: transparent !important;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.home-page:not(.nav-open) .site-header:not(.is-scrolled) .nav-toggle__line,
  body:not(.home-page):not(.nav-open) .site-header:not(.is-scrolled) .nav-toggle__line {
    background: var(--white) !important;
  }
}

/* Cleaner first mobile viewport */

@media (max-width: 760px) {
  body.home-page .home-hero {
    height: 100svh;
    min-height: 560px;
    max-height: none;
  }

  body.home-page .home-hero__shade {
    background:
      linear-gradient(90deg, rgba(3, 5, 8, 0.72), rgba(3, 5, 8, 0.34)),
      linear-gradient(180deg, rgba(3, 5, 8, 0.2), rgba(3, 5, 8, 0.56));
  }

  body.home-page .home-hero__inner {
    min-height: 100svh;
    padding-block: 118px 54px;
    justify-content: center;
  }

  body.home-page .home-hero__content {
    max-width: calc(100vw - 32px);
  }

  body.home-page .home-hero__content .eyebrow,
  body.home-page .home-hero__content > p:not(.eyebrow),
  body.home-page .home-hero .hero__actions,
  body.home-page .home-hero__index,
  body.home-page .home-hero__slider-controls {
    display: none;
  }

  body.home-page .home-hero h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(2.9rem, 12vw, 3.7rem);
    line-height: 1.03;
  }

  body.home-page .header__inner {
    position: relative;
  }

  body.home-page .site-header:not(.is-scrolled) .nav-toggle {
    position: fixed;
    top: 17px;
    right: 16px;
    z-index: 80;
    display: flex !important;
    width: 44px;
    height: 44px;
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .home-mobile-summary {
    display: block;
    padding: 36px 0 48px;
    background: var(--white);
  }

  .home-mobile-summary__inner {
    display: grid;
    gap: 22px;
  }

  .home-mobile-summary__lead {
    max-width: 34rem;
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.72;
  }

  .home-mobile-summary__actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-mobile-summary__actions .button {
    width: 100%;
    justify-content: center;
  }

  .home-mobile-summary__stats {
    display: grid;
    margin-top: 4px;
    border-top: 1px solid var(--line);
  }

  .home-mobile-summary__stats span {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 18px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .home-mobile-summary__stats strong {
    color: var(--ink);
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1;
  }
}
