:root {
  --bg: #ffffff;
  --paper: #fffefe;
  --ink: #111315;
  --muted: #666a6e;
  --line: #d9d9d3;
  --blue: #123d6d;
  --red: #c5332f;
  --accent: #ff5a1f;
  --stone: #f1f1ee;
  --radius: 8px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 12px 16px; border-radius: 6px; background: var(--paper); color: var(--ink); font-weight: 800; transform: translateY(-160%); transition: transform .2s var(--ease); }
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--accent); outline-offset: 3px; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
input, textarea, select { min-height: 44px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-video, .intro-video { display: none; }
}

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

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

section {
  scroll-margin-top: 118px;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  animation: loaderExit 1s var(--ease) .15s forwards;
  pointer-events: none;
}

.page-loader.is-done {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(20px, 4vw, 64px);
  transition: background .35s var(--ease), padding .35s var(--ease), border .35s var(--ease), box-shadow .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  border-bottom: 1px solid rgba(17, 19, 21, .08);
  padding-top: 7px;
  padding-bottom: 7px;
  box-shadow: 0 10px 34px rgba(17, 19, 21, .06);
  backdrop-filter: blur(16px);
}

.brand img {
  width: clamp(82px, 7vw, 118px);
  height: auto;
  transition: width .35s var(--ease), transform .35s var(--ease);
}

.site-header.is-scrolled .brand img {
  width: clamp(42px, 3vw, 48px);
}

.site-header.is-scrolled .desktop-nav {
  font-size: 12px;
  gap: clamp(14px, 1.6vw, 24px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  margin-left: auto;
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

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

.menu-toggle,
.menu-close {
  border: 0;
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 14px 34px rgba(17, 19, 21, .16);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}

.site-header.is-scrolled .menu-toggle {
  width: 38px;
  height: 38px;
  box-shadow: 0 10px 26px rgba(17, 19, 21, .14);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: width .25s var(--ease), transform .25s var(--ease);
}

.menu-toggle span:nth-child(2) {
  width: 14px;
}

.menu-toggle:hover {
  transform: translateY(-2px);
  background: #050607;
  box-shadow: 0 18px 40px rgba(17, 19, 21, .2);
}

.menu-toggle:hover span:nth-child(1) {
  width: 16px;
  transform: translateX(3px);
}

.menu-toggle:hover span:nth-child(2) {
  width: 24px;
}

.menu-toggle:hover span:nth-child(3) {
  width: 16px;
  transform: translateX(-3px);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(380px, .8fr);
  overflow: hidden;
  pointer-events: none;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-100%);
  transition: transform .75s var(--ease);
}

.menu-panel.is-open {
  pointer-events: auto;
  transform: translateY(0);
}

.menu-visual {
  overflow: hidden;
}

.menu-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.05);
  opacity: .78;
}

.menu-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 6vw, 88px);
}

.menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 34px;
  line-height: 1;
}

.menu-content nav {
  display: grid;
  gap: 12px;
}

.menu-content nav a {
  font-size: clamp(42px, 8vw, 94px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: 0;
}

.menu-content p {
  margin: 48px 0 0;
  color: rgba(255, 254, 254, .68);
  font-size: 15px;
}

@media (max-width: 760px) {
  .menu-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-visual {
    display: none;
  }

  .menu-content {
    min-width: 0;
    padding: 76px 32px 32px;
  }

  .menu-content nav a {
    overflow-wrap: anywhere;
    font-size: clamp(34px, 11vw, 52px);
  }
}

.section-pad {
  padding: clamp(90px, 11vw, 160px) clamp(20px, 4vw, 64px);
}

.hero {
  padding-top: clamp(104px, 11vw, 150px);
  padding-bottom: clamp(64px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, .95fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  min-height: clamp(760px, 88vh, 980px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 980px;
  min-width: 0;
}

.hero > * {
  min-width: 0;
}

.small-line,
.intro-label,
.section-heading span,
.project-copy span,
.about-copy span,
.contact-copy span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(58px, 8.4vw, 124px);
  line-height: .86;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(38px, 6vw, 92px);
  line-height: .92;
  letter-spacing: 0;
}

h3 {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.05;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 24px);
  overflow-wrap: break-word;
}

.hero-visual {
  align-self: stretch;
  min-height: clamp(480px, 56vw, 720px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f6f7f8 100%);
}

.hero-visual img {
  width: 118%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(.86) contrast(1.04);
}

.hero-visual .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.04);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-height: 52px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 14px;
  font-weight: 800;
}

.btn span {
  grid-area: 1 / 1;
  transition: transform .35s var(--ease);
}

.btn span:last-child {
  transform: translateY(145%);
}

.btn:hover span:first-child {
  transform: translateY(-145%);
}

.btn:hover span:last-child {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
}

.btn:hover {
  box-shadow: 0 16px 36px rgba(17, 19, 21, .16);
  transform: translateY(-2px);
}

.hero-media {
  height: clamp(360px, 44vw, 640px);
  border-radius: var(--radius);
}

.image-reveal {
  position: relative;
  overflow: hidden;
  background: var(--stone);
}

.image-reveal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  transform-origin: right;
  transition: transform 1.1s var(--ease);
}

.image-reveal.is-visible::after {
  transform: scaleX(0);
}

.hero-media img,
.service-image img,
.about-media img {
  width: 100%;
  height: 115%;
  object-fit: cover;
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, .25fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 66px);
  padding-top: clamp(64px, 7vw, 112px);
  padding-bottom: clamp(64px, 7vw, 112px);
  border-top: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}

.intro-video,
.intro::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.intro-video {
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(.86) brightness(1.18);
  opacity: .56;
  transition: opacity .55s var(--ease);
}

.intro::after {
  z-index: 1;
  content: "";
  background: rgba(255, 255, 255, .58);
  transition: background .55s var(--ease);
}

.intro > .intro-label,
.intro > .intro-text {
  position: relative;
  z-index: 2;
}

.intro h2 {
  max-width: 1180px;
  font-size: clamp(44px, 4.4vw, 78px);
  line-height: .97;
}

.intro p {
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 19px);
}

.experience-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  min-height: clamp(720px, 82vw, 1040px);
  background: var(--ink);
}

.experience-image {
  min-height: 100%;
  border-radius: 0;
}

.experience-image img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  filter: saturate(.95) contrast(1.04);
}

.logo-lockup {
  position: absolute;
  top: clamp(22px, 4vw, 54px);
  left: clamp(20px, 4vw, 64px);
  z-index: 2;
  width: clamp(118px, 11vw, 184px);
  padding: 10px 12px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(12px);
}

.logo-lockup img {
  width: 100%;
  height: auto;
}

.experience-panels {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.metric-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: clamp(42px, 6vw, 84px);
  overflow: hidden;
  isolation: isolate;
}

.metric-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, .12);
  transform: translateY(100%);
  transition: transform .55s var(--ease);
}

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

.metric-panel-accent {
  background: var(--accent);
  color: var(--paper);
}

.metric-panel-dark {
  background: var(--ink);
  color: var(--paper);
}

.metric-panel strong {
  margin-top: clamp(44px, 7vw, 92px);
  font-size: clamp(96px, 16vw, 230px);
  font-weight: 900;
  line-height: .76;
  letter-spacing: 0;
}

.metric-panel p {
  width: min(100%, 380px);
  margin: 26px 0 0;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  color: currentColor;
  font-size: clamp(18px, 2vw, 24px);
}

.metric-panel b {
  color: currentColor;
}

.arrow-badge {
  position: absolute;
  top: clamp(28px, 4vw, 58px);
  left: clamp(28px, 4vw, 58px);
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 999px;
  color: currentColor;
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.arrow-badge svg,
.social-circle svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.metric-panel:hover .arrow-badge {
  transform: translate(8px, -8px);
  background: rgba(255, 255, 255, .14);
}

.section-heading {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: clamp(20px, 4vw, 70px);
  align-items: start;
  margin-bottom: clamp(36px, 6vw, 76px);
  border-top: 1px solid var(--line);
  padding-top: 26px;
}

.section-heading h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: stretch;
}

.service.section-pad {
  padding-top: 0;
}

.service .section-heading {
  padding-top: 20px;
}

.service-main {
  align-self: end;
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-main p,
.about-copy p,
.project-copy p,
.contact-copy p,
.workflow-item p {
  color: var(--muted);
}

.service-main ul {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.service-main li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.service-image {
  min-height: 620px;
  border-radius: var(--radius);
}

.process {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #151719 url("assets/images/planning-renovation.png") center / cover no-repeat;
  color: var(--paper);
}

.process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(115deg, rgba(9, 12, 14, .9), rgba(11, 14, 16, .74));
}

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

.process .section-heading {
  border-top-color: rgba(255, 255, 255, .32);
}

.process .section-heading > span {
  color: #b8d7f4;
}

.workflow {
  display: grid;
  gap: 10px;
  max-width: 1180px;
}

.workflow-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .11);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}

.workflow-item summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 38px;
  gap: 16px;
  align-items: center;
  min-height: 78px;
  padding: 18px 26px;
  cursor: pointer;
  list-style: none;
}

.workflow-item summary::-webkit-details-marker {
  display: none;
}

.workflow-item summary::marker {
  content: "";
}

.workflow-item summary span {
  color: #b8d7f4;
  font-size: 13px;
  font-weight: 800;
}

.workflow-item summary b {
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 800;
  line-height: 1.05;
}

.workflow-item summary i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 50%;
  color: var(--paper);
  font-size: 23px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transition: transform .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.workflow-item p {
  max-width: 760px;
  max-height: 0;
  margin: 0 64px;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.5;
  opacity: 0;
  transition: max-height .4s var(--ease), margin .4s var(--ease), opacity .25s ease;
}

.workflow-item:is(:hover, :focus-within, [open]) {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .2);
  transform: translateX(10px);
}

.workflow-item:is(:hover, :focus-within, [open]) p {
  max-height: 100px;
  margin: -4px 64px 26px;
  opacity: 1;
}

.workflow-item:is(:hover, :focus-within, [open]) summary i {
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(45deg);
}

.workflow-item summary:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: -5px;
}

@media (min-width: 981px) {
  .workflow {
    display: flex;
    gap: 8px;
    max-width: none;
    min-height: 560px;
  }

  .workflow-item {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    min-width: 0;
    transition: flex .55s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  }

  .workflow-item summary {
    position: relative;
    display: flex;
    flex: 1 1 auto;
    min-height: 0;
    padding: 22px 16px;
  }

  .workflow-item summary span {
    position: absolute;
    top: 22px;
    left: 16px;
  }

  .workflow-item summary b {
    margin-top: 52px;
    color: var(--paper);
    font-size: clamp(19px, 1.9vw, 28px);
    white-space: nowrap;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .workflow-item summary i {
    position: absolute;
    bottom: 18px;
    left: 16px;
  }

  .workflow-item:is(:hover, :focus-within, [open]) {
    flex: 4.5 1 0;
    transform: none;
  }

  .workflow-item:is(:hover, :focus-within, [open]) summary {
    display: grid;
    flex: 0 0 auto;
    grid-template-columns: 48px minmax(0, 1fr) 38px;
    gap: 16px;
    min-height: 110px;
    padding: 26px 28px 0;
  }

  .workflow-item:is(:hover, :focus-within, [open]) summary span,
  .workflow-item:is(:hover, :focus-within, [open]) summary i {
    position: static;
  }

  .workflow-item:is(:hover, :focus-within, [open]) summary b {
    margin: 0;
    font-size: clamp(26px, 3vw, 42px);
    white-space: normal;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .workflow-item:is(:hover, :focus-within, [open]) p {
    max-height: 150px;
    margin: 20px 28px 32px 92px;
  }
}

/* Clear, horizontal project phases inspired by the 3offerten workflow. */
.process {
  background: var(--paper);
  color: var(--ink);
}

.process::before {
  display: none;
}

.process .section-heading {
  border-top-color: var(--line);
}

.process .section-heading > span {
  color: var(--blue);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  border-top: 1px solid var(--ink);
}

.workflow-phase {
  display: flex;
  flex-direction: column;
  min-height: 315px;
  padding: clamp(26px, 3vw, 44px) clamp(18px, 2.2vw, 34px);
  border-right: 1px solid var(--line);
  background: transparent;
  transition: background .35s var(--ease), transform .35s var(--ease);
}

.workflow-phase:last-child {
  border-right: 0;
}

.workflow-phase:hover {
  background: #f2f3f1;
  transform: translateY(-7px);
}

.workflow-phase > span {
  margin-bottom: clamp(32px, 4vw, 58px);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.workflow-phase h3 {
  margin-bottom: 22px;
  font-size: clamp(24px, 2.3vw, 36px);
}

.workflow-phase > div {
  display: grid;
  gap: 8px;
}

.workflow-phase > div b {
  font-size: 14px;
  line-height: 1.2;
}

.workflow-phase p {
  margin: auto 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.projects {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(32px, 6vw, 90px);
  background: var(--ink);
  color: var(--paper);
}

.project-copy {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.project-copy p {
  max-width: 480px;
  color: rgba(255, 254, 254, .68);
}

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

.project-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #202326;
}

.project-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.project-card-large img {
  height: 640px;
}

.project-card figcaption {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 22px;
}

.project-card span {
  max-width: 410px;
  color: rgba(255, 254, 254, .68);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(32px, 7vw, 100px);
  align-items: center;
}

.about-media {
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-media img {
  height: 100%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
  gap: clamp(32px, 8vw, 120px);
  align-items: end;
  background: var(--stone);
}

.contact-person {
  margin-top: 28px;
  color: var(--ink);
}

.contact-person a {
  color: var(--blue);
  font-weight: 800;
}

.contact-panel {
  display: block;
  padding: clamp(28px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(17, 19, 21, .08);
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.contact-form label > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(17, 19, 21, .32);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  outline: 0;
  padding: 14px 0;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

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

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

.contact-form ::placeholder {
  color: rgba(102, 106, 110, .66);
}

.form-submit {
  justify-self: start;
  min-width: 190px;
  margin-top: 8px;
  background: var(--accent);
  border-color: var(--accent);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer {
  display: block;
  padding: clamp(70px, 8vw, 120px) clamp(20px, 5vw, 104px) clamp(38px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr .9fr;
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-brand strong {
  max-width: 310px;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.05;
}

.footer-logo {
  width: 142px;
  filter: brightness(0) invert(1);
}

.footer-nav,
.footer-contact,
.footer-social {
  display: grid;
  gap: 10px;
}

.footer-nav > span,
.footer-contact > span,
.footer-social > span {
  margin-bottom: 22px;
  color: rgba(255, 254, 254, .5);
  font-size: 15px;
  font-weight: 800;
}

.footer-contact p,
.footer-bottom p {
  margin: 0;
}

.site-footer p,
.site-footer a,
.footer-bottom {
  color: rgba(255, 254, 254, .72);
}

.site-footer a {
  width: fit-content;
  transition: color .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}

.site-footer a:hover {
  color: var(--paper);
  transform: translateX(5px);
}

.footer-social {
  grid-template-columns: repeat(2, 82px);
  align-items: start;
}

.footer-social > span {
  grid-column: 1 / -1;
}

.social-circle {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 90, 31, .72);
  border-radius: 999px;
  color: var(--paper);
}

.social-circle:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: clamp(62px, 7vw, 106px);
  padding-top: 38px;
  border-top: 1px solid rgba(255, 254, 254, .18);
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
}

.vm-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
}

.vm-credit img {
  width: 92px;
  height: auto;
  filter: brightness(0) invert(1);
}

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

.team-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  min-height: min(880px, 92vh);
  padding: clamp(138px, 14vw, 210px) clamp(20px, 5vw, 104px) clamp(72px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
}

.team-hero-copy > span,
.team-contact-band > div > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-hero-copy h1 {
  margin: 20px 0 30px;
  font-size: clamp(58px, 8.1vw, 126px);
}

.team-hero-copy p {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 24px);
  line-height: 1.42;
}

.team-hero-media {
  position: relative;
  min-height: clamp(440px, 58vw, 700px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9e8e5;
}

.team-hero-media > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.88) contrast(1.03);
}

.team-hero-logo {
  position: absolute;
  right: clamp(22px, 3vw, 46px);
  bottom: clamp(22px, 3vw, 46px);
  width: clamp(92px, 11vw, 156px);
  height: auto;
  opacity: .72;
}

.team-directory {
  padding-bottom: clamp(82px, 10vw, 150px);
}

.team-person {
  display: grid;
  grid-template-columns: minmax(150px, .52fr) minmax(220px, 1fr) minmax(240px, .8fr);
  gap: 24px;
  align-items: end;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid var(--line);
  background: #f5f5f2;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}

.team-person:hover {
  border-color: rgba(17, 19, 21, .44);
  background: var(--paper);
  transform: translateY(-5px);
}

.team-person-lead {
  margin-bottom: clamp(54px, 7vw, 96px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.team-person-lead:hover {
  border-color: var(--ink);
  background: #202326;
}

.team-role {
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-person-lead .team-role {
  color: #b8d7f4;
}

.team-name {
  font-size: clamp(28px, 3.2vw, 52px);
  font-weight: 800;
  line-height: .95;
}

.team-details {
  display: grid;
  gap: 7px;
  justify-items: start;
}

.team-details a {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.team-person-lead .team-details a {
  color: rgba(255, 255, 255, .74);
}

.team-details a:hover {
  color: var(--accent);
}

.team-group + .team-group {
  margin-top: clamp(44px, 6vw, 82px);
}

.team-group-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.team-grid .team-person {
  grid-template-columns: 1fr;
  min-height: 260px;
}

.team-contact-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  padding: clamp(58px, 8vw, 116px) clamp(20px, 5vw, 104px);
  background: var(--ink);
  color: var(--paper);
}

.team-contact-band p {
  margin: 20px 0 0;
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.02;
}

.team-contact-band a {
  color: var(--paper);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.team-contact-band a:hover {
  color: var(--accent);
}

.team-footer-bottom {
  margin-top: 0;
}

.legal-page {
  padding-top: 130px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 64px) 90px;
}

.legal-content h1 {
  font-size: clamp(50px, 9vw, 112px);
}

.legal-content h2 {
  margin-top: 46px;
  font-size: clamp(26px, 4vw, 48px);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderExit {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

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

  .menu-panel,
  .intro,
  .hero,
  .experience-split,
  .service-grid,
  .projects,
  .about,
  .contact,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .menu-visual {
    display: none;
  }

  .workflow-item summary {
    min-height: 72px;
    padding-inline: 22px;
  }

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

  .workflow-phase:nth-child(2) {
    border-right: 0;
  }

  .workflow-phase:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .project-copy {
    position: static;
  }

  .service-image {
    min-height: 460px;
  }

  .experience-split {
    min-height: 0;
  }

  .experience-image {
    min-height: 560px;
  }

  .hero {
    min-height: auto;
    gap: 36px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .footer-top {
    gap: 42px;
  }

  .team-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .team-person {
    grid-template-columns: 1fr 1fr;
  }

  .team-person .team-details {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 640px) {
  .section-pad {
    padding-inline: 18px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .brand img {
    width: 76px;
  }

  .site-header.is-scrolled {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .site-header.is-scrolled .brand img {
    width: 40px;
  }

  .menu-toggle,
  .menu-close {
    width: 46px;
    height: 46px;
  }

  .site-header.is-scrolled .menu-toggle {
    width: 36px;
    height: 36px;
  }

  h1 {
    font-size: clamp(52px, 16vw, 76px);
  }

  h2 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-media {
    height: 285px;
  }

  .hero {
    padding-top: 118px;
    padding-bottom: 72px;
    gap: 28px;
    width: 100%;
    max-width: 100vw;
  }

  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 36px);
  }

  .hero-text {
    width: 100%;
    max-width: min(100%, 330px);
    font-size: 17px;
    line-height: 1.45;
    overflow-wrap: normal;
  }

  .hero-visual {
    min-height: 300px;
    margin-inline: -18px;
    border-radius: 0;
  }

  .hero-visual img {
    width: 124%;
    object-position: center right;
  }

  .hero-visual .hero-video {
    object-position: center;
  }

  .logo-lockup {
    width: 108px;
    padding: 8px 9px;
  }

  .experience-image {
    min-height: 390px;
  }

  .metric-panel {
    min-height: 340px;
    padding: 34px 24px;
  }

  .metric-panel strong {
    font-size: clamp(88px, 28vw, 130px);
  }

  .arrow-badge {
    width: 58px;
    height: 58px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
  }

  .workflow-item summary {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 10px;
    padding: 16px;
  }

  .workflow-item summary b {
    font-size: 20px;
  }

  .workflow-item summary i {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .workflow-item p,
  .workflow-item:is(:hover, :focus-within, [open]) p {
    margin-left: 16px;
    margin-right: 16px;
    font-size: 15px;
  }

  .workflow-item:is(:hover, :focus-within, [open]) p {
    margin-top: -2px;
    margin-bottom: 20px;
  }

  .workflow-item:is(:hover, :focus-within, [open]) {
    transform: none;
  }

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

  .workflow-phase,
  .workflow-phase:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .workflow-phase:last-child {
    border-bottom: 0;
  }

  .workflow-phase > span {
    margin-bottom: 28px;
  }

  .team-hero {
    padding-inline: 18px;
  }

  .team-hero-media {
    min-height: 360px;
    margin-inline: -18px;
    border-radius: 0;
  }

  .team-person,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-grid .team-person {
    min-height: 0;
  }

  .team-contact-band {
    display: grid;
    padding-inline: 18px;
  }

  .project-card img,
  .project-card-large img {
    height: 380px;
  }

  .project-card figcaption {
    display: grid;
  }

  .vm-credit {
    justify-content: flex-start;
  }

  .footer-social {
    grid-template-columns: repeat(2, 70px);
  }

  .social-circle {
    width: 70px;
    height: 70px;
  }
}

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

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

/* Project workflow: one expandable step at a time on wide screens. */
.process .workflow {
  display: flex;
  gap: 8px;
  max-width: none;
  min-height: 500px;
  border: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #111315;
}

.process .workflow-item {
  position: relative;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 0;
  background: #181b1e;
  box-shadow: none;
  color: var(--paper);
  isolation: isolate;
  transition: flex .55s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.process .workflow-item::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image: linear-gradient(180deg, rgba(8, 10, 12, .18), rgba(8, 10, 12, .84)), var(--workflow-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity .45s var(--ease);
}

.process .workflow-item:first-child {
  border-radius: 6px 0 0 6px;
}

.process .workflow-item:last-child {
  border-radius: 0 6px 6px 0;
}

.process .workflow-item summary {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  min-height: 0;
  padding: 22px 16px;
  color: var(--paper);
  z-index: 1;
}

.process .workflow-item summary span {
  position: absolute;
  top: 22px;
  left: 16px;
  color: #b8d7f4;
}

.process .workflow-item summary b {
  margin-top: 56px;
  color: var(--paper);
  font-size: clamp(18px, 1.8vw, 27px);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.process .workflow-item summary i {
  position: absolute;
  top: 18px;
  right: 16px;
  bottom: auto;
  left: auto;
  border-color: rgba(255, 255, 255, .58);
  color: var(--paper);
}

.process .workflow-item p,
.process .workflow-item:is(:hover, :focus-within, [open]) p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .78);
  opacity: 0;
  position: relative;
  z-index: 1;
}

.process .workflow-item:hover:not([open]) {
  border-color: rgba(255, 255, 255, .48);
  background: #202427;
  transform: none;
}

.process .workflow-item:hover:not([open])::after {
  opacity: .3;
}

.process .workflow-item[open] {
  flex: 5 1 0;
  border-color: var(--accent);
  background: #0e1012;
  transform: none;
}

.process .workflow-item[open]::after {
  opacity: .62;
}

.process .workflow-item[open] summary {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  min-height: 118px;
  padding: 28px 78px 0 30px;
  align-items: start;
}

.process .workflow-item[open] summary span {
  position: static;
}

.process .workflow-item[open] summary b {
  margin: 0;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1;
  white-space: normal;
  writing-mode: horizontal-tb;
  transform: none;
}

.process .workflow-item[open] summary i {
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
  border-color: var(--accent);
  background: var(--accent);
  transform: rotate(45deg);
}

.process .workflow-item[open] p {
  max-height: 190px;
  margin: 22px 30px 34px 94px;
  opacity: 1;
}

@media (max-width: 980px) {
  .process .workflow {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 8px;
    border-radius: 6px;
  }

  .process .workflow-item,
  .process .workflow-item:first-child,
  .process .workflow-item:last-child {
    display: block;
    border-radius: 0;
  }

  .process .workflow-item summary,
  .process .workflow-item[open] summary {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 38px;
    gap: 16px;
    min-height: 82px;
    padding: 20px 24px;
    align-items: center;
  }

  .process .workflow-item summary span,
  .process .workflow-item[open] summary span {
    position: static;
  }

  .process .workflow-item summary b,
  .process .workflow-item[open] summary b {
    margin: 0;
    font-size: clamp(22px, 3vw, 32px);
    white-space: normal;
    writing-mode: horizontal-tb;
    transform: none;
  }

  .process .workflow-item summary i {
    position: absolute;
    top: 18px;
    right: 18px;
    bottom: auto;
    left: auto;
    margin: 0;
  }

  .process .workflow-item[open] summary i {
    position: absolute;
    top: 18px;
    right: 18px;
    bottom: auto;
    left: auto;
    margin: 0;
  }

  .process .workflow-item[open] p {
    margin: -2px 24px 24px 88px;
  }
}

@media (max-width: 620px) {
  .process .workflow-item summary,
  .process .workflow-item[open] summary {
    grid-template-columns: 34px minmax(0, 1fr) 32px;
    gap: 10px;
    min-height: 70px;
    padding: 17px;
  }

  .process .workflow-item[open] p {
    margin: -2px 17px 20px 61px;
    font-size: 15px;
  }
}

/* Team directory: a calm, editorial staff overview. */
.team-showcase {
  padding-top: clamp(150px, 17vw, 230px);
  padding-bottom: clamp(84px, 11vw, 160px);
}

.team-showcase-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.team-showcase-intro > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-showcase-intro h1 {
  margin: 0;
  font-size: clamp(48px, 6.4vw, 96px);
  line-height: .94;
}

.team-showcase-intro p {
  max-width: 650px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.48;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(66px, 9vw, 126px);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line);
}

.team-member {
  display: flex;
  min-height: 338px;
  padding: clamp(24px, 2.4vw, 38px) clamp(16px, 1.8vw, 28px);
  flex-direction: column;
  align-items: center;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background .35s var(--ease), color .35s var(--ease);
}

.team-member:last-child {
  border-right: 0;
}

.team-member:hover {
  background: #f2f3f1;
  transform: none;
}

.member-avatar {
  display: grid;
  width: clamp(78px, 7vw, 112px);
  height: clamp(78px, 7vw, 112px);
  margin-bottom: 25px;
  place-items: center;
  border: 1px solid rgba(17, 19, 21, .18);
  border-radius: 50%;
  background: #e7e8e4;
  color: var(--ink);
  font-size: clamp(20px, 1.8vw, 29px);
  font-weight: 800;
  letter-spacing: 0;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}

.team-member:hover .member-avatar {
  transform: translateY(-5px) rotate(-4deg);
  background: var(--ink);
  color: var(--paper);
}

.team-member-lead .member-avatar {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.member-role {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.team-member h2 {
  margin: 10px 0 0;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.04;
}

.member-contact {
  display: grid;
  gap: 5px;
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.member-contact a {
  color: inherit;
  overflow-wrap: anywhere;
}

.member-contact a:hover {
  color: var(--accent);
}

.team-page .team-contact-band {
  border-top: 1px solid var(--ink);
}

@media (max-width: 1180px) {
  .team-members {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .team-member:nth-child(3) {
    border-right: 0;
  }

  .team-member:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .team-showcase-intro h1 br {
    display: none;
  }

  .team-members {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 52px;
  }

  .team-member,
  .team-member:nth-child(3) {
    min-height: 290px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .team-member:nth-child(even) {
    border-right: 0;
  }

  .team-member:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 500px) {
  .team-showcase {
    padding-inline: 18px;
  }

  .team-members {
    grid-template-columns: 1fr;
  }

  .team-member,
  .team-member:nth-child(3),
  .team-member:nth-child(even) {
    min-height: 0;
    border-right: 0;
  }

  .team-member:last-child {
    border-bottom: 0;
  }
}

/* Keep the workflow as one continuous, dark section. */
.process {
  background: var(--ink);
  color: var(--paper);
  padding-bottom: 0;
}

.process .section-heading {
  margin-bottom: clamp(38px, 5vw, 68px);
  border-top-color: rgba(255, 255, 255, .28);
}

.process .section-heading h2 {
  color: var(--paper);
}

.process .section-heading > span {
  color: #b8d7f4;
}

.process .workflow {
  border-radius: 0;
}

/* Architectural service showcase. */
.service.section-pad {
  padding-top: clamp(76px, 9vw, 140px);
  padding-bottom: clamp(108px, 11vw, 176px);
  background: #fafaf8;
}

.service-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 84px);
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

.service-showcase-copy {
  position: relative;
  z-index: 0;
  padding-top: 12px;
}

.service-showcase-copy::before {
  position: absolute;
  z-index: -1;
  top: 280px;
  right: -32px;
  width: 320px;
  height: 310px;
  content: "";
  background-image: radial-gradient(circle, rgba(17, 19, 21, .14) 1px, transparent 1.2px);
  background-size: 12px 12px;
  opacity: .42;
  mask-image: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent);
  pointer-events: none;
}

.service-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(38px, 4vw, 64px);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-eyebrow span {
  display: block;
  width: 84px;
  height: 1px;
  background: var(--line);
}

.service-eyebrow span::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.service-showcase-copy h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(44px, 3.6vw, 64px);
  line-height: .96;
}

.title-accent {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05em;
  font-weight: 400;
  font-style: italic;
}

.service-intro {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 22px;
  max-width: 570px;
  margin-top: clamp(36px, 4vw, 54px);
}

.service-progress {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding-top: 2px;
  color: var(--ink);
  font-family: "Courier New", monospace;
  font-size: 11px;
}

.service-progress i {
  display: block;
  width: 1px;
  height: 52px;
  background: #84857f;
}

.service-intro p {
  margin: 0;
  color: #363836;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.55;
}

.service-accordion {
  margin-top: clamp(34px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid #e5e5e1;
  border-radius: 16px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 60px rgba(17, 19, 21, .06), 0 2px 8px rgba(17, 19, 21, .03);
}

.service-accordion details + details {
  border-top: 1px solid #e5e5e1;
}

.service-accordion summary {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 18px;
  min-height: 68px;
  padding: 20px 26px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  transition: background .3s var(--ease), padding .3s var(--ease);
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary::marker {
  content: "";
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.service-icon-wrap,
.service-trust-card .service-trust-icon-wrap {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0;
  border: 1px solid rgba(17, 19, 21, .1);
  border-radius: 8px;
  background: rgba(17, 19, 21, .025);
  color: var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}

.service-icon,
.service-trust-icon,
.service-cta-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .32s var(--ease);
}

.service-accordion .service-icon {
  width: 20px;
  height: 20px;
}

.service-icon-wrap-plus {
  justify-self: end;
}

.service-accordion details:hover .service-icon-wrap:first-child {
  border-color: rgba(17, 19, 21, .18);
  background: rgba(17, 19, 21, .06);
  transform: translateY(-1px);
}

.service-accordion summary b {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: uppercase;
}

.service-accordion details p {
  max-height: 0;
  margin: 0 60px 0 82px;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  opacity: 0;
  transition: max-height .35s var(--ease), margin .35s var(--ease), opacity .2s ease;
}

.service-accordion details:hover summary {
  background: #f5f5f2;
}

.service-accordion details[open] summary {
  background: #f5f5f2;
}

.service-accordion details[open] .service-icon-wrap-plus .service-icon {
  transform: rotate(45deg);
}

.service-accordion details[open] p {
  max-height: 100px;
  margin: -4px 60px 22px 82px;
  opacity: 1;
}

.service-accordion summary:focus-visible,
.service-cta:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: -3px;
}

.service-cta {
  display: inline-flex;
  min-height: 50px;
  margin-top: 38px;
  padding: 5px 6px 5px 26px;
  align-items: center;
  gap: 20px;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(17, 19, 21, .14);
  color: var(--paper);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: transform .3s var(--ease), background .3s var(--ease);
}

.service-cta > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.service-cta-icon {
  width: 18px;
  height: 18px;
  transition: transform .3s var(--ease);
}

.service-cta:hover {
  background: #282b2d;
  transform: translateY(-3px);
}

.service-cta:hover .service-cta-icon {
  transform: translateX(3px);
}

.service-showcase-visual {
  position: relative;
  padding-bottom: 74px;
}

.service-showcase-image {
  position: relative;
  min-height: clamp(510px, 46vw, 690px);
  overflow: hidden;
  border-radius: 18px;
  background: #efefec;
}

.service-showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.service-showcase-visual:hover .service-showcase-image img {
  transform: scale(1.02);
}

.service-blueprint {
  position: absolute;
  inset: auto auto 0 0;
  width: 42%;
  height: 32%;
  border-top: 1px solid rgba(17, 19, 21, .2);
  border-right: 1px solid rgba(17, 19, 21, .2);
  background-image: linear-gradient(90deg, rgba(17, 19, 21, .18) 1px, transparent 1px), linear-gradient(rgba(17, 19, 21, .18) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .42;
  pointer-events: none;
}

.service-trust-card {
  position: absolute;
  right: 5%;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(90%, 750px);
  overflow: hidden;
  border: 1px solid rgba(17, 19, 21, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 20px 55px rgba(17, 19, 21, .08);
  backdrop-filter: blur(14px);
}

.service-trust-card > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  min-height: 110px;
  padding: 25px 22px;
  align-items: start;
}

.service-trust-card > div + div {
  border-left: 1px solid #e5e5e1;
}

.service-trust-icon {
  width: 20px;
  height: 20px;
}

.service-trust-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

.service-trust-card strong,
.service-trust-card span {
  display: block;
}

.service-trust-card span {
  margin-top: 4px;
  color: var(--muted);
}

/* Full-screen hero video. */
.hero.section-pad {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: clamp(210px, 25vh, 320px) clamp(20px, 4vw, 64px) clamp(76px, 9vw, 142px);
  overflow: hidden;
  border-bottom: 0;
  background: #d1d1cf;
  color: var(--paper);
  isolation: isolate;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #d1d1cf;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(17, 19, 21, .42);
}

.hero-visual .hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: #d1d1cf;
  filter: saturate(.76) contrast(1.05);
}

.hero-copy {
  max-width: 980px;
}

.hero h1 {
  color: var(--paper);
}

.hero-text {
  color: rgba(255, 255, 255, .82);
}

/* Keep the navigation legible over the full-screen hero video. */
.site-header:not(.is-scrolled) {
  border-bottom: 1px solid rgba(17, 19, 21, .08);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 8px 28px rgba(17, 19, 21, .05);
  backdrop-filter: blur(14px);
}

/* Shared section label. */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: clamp(26px, 3vw, 38px);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.section-eyebrow i {
  display: block;
  width: 84px;
  height: 1px;
  background: var(--line);
}

.section-eyebrow i::before {
  display: block;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-radius: 50%;
  background: currentcolor;
  content: "";
}

.section-heading {
  display: block;
}

.intro .section-eyebrow {
  margin-bottom: 28px;
}

.project-copy .section-eyebrow,
.about-copy .section-eyebrow,
.contact-copy .section-eyebrow {
  margin-bottom: 28px;
}

.process .section-eyebrow,
.projects .section-eyebrow {
  color: var(--paper);
}

.process .section-eyebrow i,
.projects .section-eyebrow i {
  background: rgba(255, 255, 255, .38);
}

/* Quality and company section. */
.quality-section {
  display: block;
  padding-top: clamp(100px, 10vw, 148px);
  padding-bottom: clamp(88px, 9vw, 128px);
  background: #fbfbfa;
}

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(500px, .95fr);
  gap: clamp(46px, 5vw, 82px);
  align-items: center;
}

.quality-image-card {
  margin: 0;
  aspect-ratio: 1.43 / 1;
  border: 1px solid rgba(17, 19, 21, .10);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(15, 20, 25, .06), 0 2px 8px rgba(15, 20, 25, .03);
  transition: transform .7s var(--ease), border-color .7s var(--ease);
}

.quality-image-card:hover {
  border-color: rgba(17, 19, 21, .18);
  transform: translateY(-2px);
}

.quality-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s var(--ease);
}

.quality-image-card:hover img {
  transform: scale(1.015);
}

.quality-content {
  max-width: 660px;
}

.quality-eyebrow {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: clamp(34px, 4vw, 52px);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.quality-eyebrow i {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.quality-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 4vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.quality-description {
  margin-top: clamp(34px, 4vw, 54px);
}

.quality-description p {
  max-width: 610px;
  margin: 0;
  color: #3f4244;
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.66;
}

.quality-description p + p {
  margin-top: 28px;
}

.quality-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(68px, 8vw, 104px) 0 0;
  padding: 0;
  list-style: none;
}

.quality-benefit-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 22px;
  min-width: 0;
  padding: 12px clamp(22px, 3vw, 46px);
  transition: transform .3s ease;
}

.quality-benefit-item:first-child {
  padding-left: 0;
}

.quality-benefit-item + .quality-benefit-item {
  border-left: 1px solid rgba(17, 19, 21, .10);
}

.quality-benefit-item:hover {
  transform: translateY(-2px);
}

.quality-benefit-item svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.quality-benefit-item span {
  display: grid;
  align-content: center;
  gap: 7px;
}

.quality-benefit-item strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.quality-benefit-item small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .quality-layout {
    gap: clamp(34px, 5vw, 64px);
    grid-template-columns: minmax(0, 1fr) minmax(360px, .94fr);
  }

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

  .quality-benefit-item:nth-child(3) {
    padding-left: 0;
  }

  .quality-benefit-item:nth-child(3) {
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .quality-section {
    padding-top: 82px;
    padding-bottom: 78px;
  }

  .quality-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .quality-content {
    display: contents;
  }

  .quality-eyebrow {
    grid-row: 1;
    margin-bottom: 0;
  }

  .quality-content h2 {
    grid-row: 2;
    font-size: clamp(40px, 11vw, 52px);
  }

  .quality-image-card {
    grid-row: 3;
    aspect-ratio: 1.35 / 1;
  }

  .quality-description {
    grid-row: 4;
    margin-top: 0;
  }

  .quality-description p {
    font-size: 16px;
  }

  .quality-benefits {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 58px;
  }

  .quality-benefit-item,
  .quality-benefit-item:first-child,
  .quality-benefit-item:nth-child(3) {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 24px 0;
  }

  .quality-benefit-item + .quality-benefit-item {
    border-top: 1px solid rgba(17, 19, 21, .10);
    border-left: 0;
  }

  .quality-benefit-item svg {
    width: 40px;
    height: 40px;
  }
}

/* Architectural project process. */
.process {
  position: relative;
  overflow: hidden;
  padding-bottom: clamp(82px, 9vw, 140px);
  background: #0d0f10;
}

.process::before {
  position: absolute;
  z-index: 0;
  top: 48px;
  right: -6vw;
  width: min(58vw, 980px);
  height: 60%;
  display: block;
  opacity: .24;
  pointer-events: none;
  content: "";
  background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 80px 80px;
  transform: skewY(-12deg);
}

.process-header,
.process-progress,
.process .workflow {
  position: relative;
  z-index: 1;
}

.process-header {
  max-width: 860px;
  padding-top: 10px;
}

.process-index {
  width: fit-content;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.process-header h2 {
  max-width: none;
  margin: 0;
  color: #f5f5f3;
  font-size: clamp(48px, 4.6vw, 76px);
  line-height: .92;
  white-space: nowrap;
}

.process-header h2 .title-accent {
  color: #f5f5f3;
  font-size: 1.02em;
}

.process-header p {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.64);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
}

.process-progress {
  display: flex;
  gap: 12px;
  margin: clamp(44px, 6vw, 76px) 0 34px;
  overflow-x: auto;
  overflow-y: hidden;
  border-bottom: 1px solid rgba(255,255,255,.16);
  scrollbar-width: none;
}

.process-progress::-webkit-scrollbar { height: 0; }

.process-progress-step {
  position: relative;
  flex: 0 0 150px;
  min-width: 150px;
  min-height: 45px;
  padding: 0 0 17px;
  border: 0;
  background: transparent;
  color: rgba(255,255,255,.48);
  cursor: pointer;
  text-align: center;
  transition: flex-basis .5s cubic-bezier(.22,1,.36,1), color .25s var(--ease);
}

.process-progress-step.is-active { flex-basis: clamp(480px, 43vw, 720px); }
.process-progress-step span { display: block; font-size: 13px; }
.process-progress-step i {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: #0d0f10;
  transform: translateX(-50%);
}
.process-progress-step.is-active,
.process-progress-step.is-complete { color: var(--accent); }
.process-progress-step.is-active i { border-color: var(--accent); background: var(--accent); box-shadow: inset 0 0 0 3px #f5f5f3; }
.process-progress-step.is-complete i { border-color: rgba(255,255,255,.75); }
.process-progress-step:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.process .workflow {
  display: flex;
  min-height: 420px;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  scroll-snap-type: x proximity;
  overflow-anchor: none;
  scrollbar-color: rgba(255,255,255,.3) transparent;
}

.process .workflow-item,
.process .workflow-item:first-child,
.process .workflow-item:last-child {
  flex: 0 0 150px;
  min-width: 150px;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  background: #141719;
  box-shadow: none;
  scroll-snap-align: start;
  transition: flex-basis .5s cubic-bezier(.22,1,.36,1), transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}

.process .workflow-item::after {
  background-image: linear-gradient(90deg, rgba(8,10,11,.94) 0%, rgba(8,10,11,.72) 48%, rgba(8,10,11,.25) 100%), var(--workflow-image);
  filter: grayscale(100%);
}

.process .workflow-item[open] {
  flex: 0 0 clamp(480px, 43vw, 720px);
  border-color: var(--accent);
  background: #171a1c;
}

.process .workflow-item[open]::after { opacity: .74; }
.process .workflow-item:hover:not([open]) { border-color: rgba(255,255,255,.28); background: #191d20; transform: translateY(-2px); }
.process .workflow-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -5px; }

.process .workflow-item summary,
.process .workflow-item[open] summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  grid-template-rows: auto 1fr auto;
  min-height: 418px;
  padding: 20px;
  color: #f5f5f3;
}

.process .workflow-item summary span,
.process .workflow-item[open] summary span {
  position: static;
  grid-column: 1;
  grid-row: 1;
  color: rgba(255,255,255,.64);
  font-size: 17px;
}
.process .workflow-item[open] summary span { color: var(--accent); }
.process .workflow-item[open] summary span::after { content: " / " attr(data-total); color: rgba(255,255,255,.64); }

.process-card-icon,
.process-toggle-icon {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-card-icon { width: 32px; height: 32px; align-self: center; color: rgba(255,255,255,.76); }
.process-toggle-icon { width: 17px; height: 17px; transition: transform .4s var(--ease); }
.process .workflow-item summary > .process-toggle-icon { grid-column: 2; grid-row: 1; justify-self: end; padding: 8px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; box-sizing: content-box; }
.process .workflow-item summary > .process-card-icon { grid-column: 1; grid-row: 2; }
.process .workflow-item[open] .process-toggle-icon { border-color: var(--accent); background: var(--accent); color: #fff; transform: rotate(45deg); }

.process .workflow-item summary b,
.process .workflow-item[open] summary b {
  grid-column: 1 / -1;
  grid-row: 3;
  align-self: end;
  margin: 0;
  color: #f5f5f3;
  font-size: clamp(17px, 1.45vw, 23px);
  line-height: 1.08;
  white-space: normal;
  writing-mode: horizontal-tb;
  transform: none;
}

.process .workflow-item:not([open]) summary {
  grid-template-columns: 42px 1fr 34px;
  grid-template-rows: auto 1fr;
}

.process .workflow-item:not([open]) summary span {
  grid-column: 1;
  grid-row: 1;
}

.process .workflow-item:not([open]) summary > .process-toggle-icon {
  grid-column: 3;
  grid-row: 1;
}

.process .workflow-item:not([open]) summary > .process-card-icon {
  grid-column: 1;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}

.process .workflow-item:not([open]) summary b {
  grid-column: 2 / 4;
  grid-row: 2;
  align-self: end;
  justify-self: end;
  margin: 0 2px 2px 0;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1;
  white-space: nowrap;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.process .workflow-item[open] summary {
  grid-template-columns: 1fr 42px;
  grid-template-rows: auto 1fr auto;
  min-height: 160px;
  padding: 28px 30px 0;
}
.process .workflow-item[open] summary b { align-self: end; font-size: clamp(34px, 3.1vw, 48px); }
.process .workflow-item[open] .process-card-icon { align-self: center; width: 34px; height: 34px; color: rgba(255,255,255,.9); }

.process .workflow-item p,
.process .workflow-item[open] p {
  position: relative;
  z-index: 1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: rgba(255,255,255,.76);
  opacity: 0;
}
.process .workflow-item[open] p { max-height: 180px; margin: 20px 112px 34px 30px; opacity: 1; font-size: 16px; line-height: 1.55; }

@media (max-width: 760px) {
  .process::before { display: none; }
  .process-header h2 { font-size: clamp(44px, 13vw, 62px); white-space: normal; }
  .process-progress { display: grid; grid-template-columns: repeat(8, 64px); gap: 0; margin: 38px 0 24px; overflow-x: auto; scrollbar-gutter: auto; }
  .process-progress-step,
  .process-progress-step.is-active { min-width: 0; flex-basis: auto; }
  .process .workflow { display: grid; min-height: 0; overflow: visible; padding: 0; }
  .process .workflow-item,
  .process .workflow-item[open] { min-width: 0; min-height: 0; flex-basis: auto; }
  .process .workflow-item summary,
  .process .workflow-item[open] summary { grid-template-columns: 32px 1fr 34px; grid-template-rows: 1fr; min-height: 72px; padding: 18px; align-items: center; }
  .process .workflow-item summary span,
  .process .workflow-item[open] summary span { font-size: 14px; }
  .process .workflow-item summary b,
  .process .workflow-item[open] summary b { align-self: center; font-size: 19px; }
  .process .workflow-item[open] summary b { font-size: 22px; }
  .process-card-icon,
  .process .workflow-item[open] .process-card-icon { grid-column: 1; grid-row: 1; width: 25px; height: 25px; }
  .process .workflow-item summary b { grid-column: 2; grid-row: 1; }
  .process .workflow-item:not([open]) summary b {
    align-self: center;
    justify-self: stretch;
    margin: 0;
    white-space: normal;
    writing-mode: horizontal-tb;
    transform: none;
  }
  .process .workflow-item summary span { display: none; }
  .process .workflow-item summary > .process-toggle-icon { grid-column: 3; grid-row: 1; }
  .process .workflow-item[open]::after { opacity: .6; }
  .process .workflow-item[open] p { max-width: 520px; min-height: 164px; margin: 0; padding: 118px 18px 24px; color: #f5f5f3; }
}

@media (max-width: 1080px) {
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase-copy {
    max-width: 760px;
  }

  .service-showcase-visual {
    max-width: 980px;
  }
}

@media (max-width: 680px) {
  .hero.section-pad {
    min-height: 100svh;
    padding: 154px 22px 68px;
  }

  .service.section-pad {
    padding-top: 64px;
    padding-bottom: 84px;
  }

  .service-showcase-copy::before {
    display: none;
  }

  .service-eyebrow {
    margin-bottom: 32px;
  }

  .service-showcase-copy h2 {
    font-size: clamp(39px, 11vw, 52px);
  }

  .service-intro {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 14px;
  }

  .service-progress i {
    height: 46px;
  }

  .service-accordion summary {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 14px;
    min-height: 60px;
    padding: 17px;
  }

  .service-accordion summary b {
    font-size: 11px;
    letter-spacing: 0;
  }

  .service-accordion .service-icon {
    width: 18px;
    height: 18px;
  }

  .service-icon-wrap,
  .service-trust-card .service-trust-icon-wrap {
    width: 30px;
    height: 30px;
  }

  .service-accordion details p,
  .service-accordion details[open] p {
    margin-right: 17px;
    margin-left: 61px;
  }

  .service-showcase-visual {
    padding-bottom: 0;
  }

  .service-showcase-image {
    min-height: 390px;
    border-radius: 12px;
  }

  .service-trust-card {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 16px;
    border-radius: 12px;
  }

  .service-trust-card > div {
    min-height: 0;
    padding: 18px;
  }

  .service-trust-card > div + div {
    border-top: 1px solid #e5e5e1;
    border-left: 0;
  }
}

/* Project transition: existing project stories presented as an interactive handover flow. */
.project-transition-section {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0d0f10;
  color: var(--paper);
}

.project-transition-layout {
  display: grid;
  grid-template-columns: minmax(270px, .76fr) minmax(390px, 1.1fr) minmax(210px, .48fr);
  gap: clamp(22px, 2.6vw, 48px);
  align-items: start;
}

.project-transition-copy {
  min-width: 0;
}

.project-transition-index {
  width: fit-content;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.project-transition-copy h2 {
  max-width: 480px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(42px, 3.65vw, 64px);
  line-height: .98;
}

.project-transition-copy > p {
  max-width: 440px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, .66);
  font-size: 16px;
  line-height: 1.6;
}

.project-transition-accordion {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .025);
}

.project-transition-item {
  position: relative;
  width: 100%;
  min-height: 72px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 42px;
  gap: 14px;
  align-items: center;
  padding: 16px 18px 16px 22px;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: min-height .5s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
}

.project-transition-item:first-child { border-top: 0; }

.project-transition-item::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 2px;
  background: var(--accent);
  content: "";
  opacity: 0;
  transition: opacity .35s var(--ease);
}

.project-transition-item:hover,
.project-transition-item:focus-visible {
  background: rgba(255, 255, 255, .045);
}

.project-transition-item:focus-visible,
.project-transition-next-button:focus-visible,
.project-transition-preview-card:focus-visible,
.project-transition-progress button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.project-transition-item.is-active {
  min-height: 150px;
  background: rgba(255, 255, 255, .055);
}

.project-transition-item.is-active::before { opacity: 1; }

.project-transition-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  font-weight: 700;
}

.project-transition-item.is-active .project-transition-number {
  border-color: rgba(255, 255, 255, .55);
  color: var(--paper);
}

.project-transition-item-content {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.project-transition-item-content strong {
  color: var(--paper);
  font-size: 18px;
  line-height: 1.18;
}

.project-transition-item-content > span {
  display: block;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-5px);
  transition: max-height .5s var(--ease), opacity .35s var(--ease), transform .5s var(--ease);
}

.project-transition-item.is-active .project-transition-item-content > span {
  max-height: 90px;
  opacity: 1;
  transform: translateY(0);
}

.project-transition-item-action,
.project-transition-next-button,
.project-transition-preview-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  color: var(--paper);
}

.project-transition-item-action svg,
.project-transition-next-button svg,
.project-transition-preview-icon svg,
.project-transition-preview-content > svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.project-transition-item.is-active .project-transition-item-action {
  border-color: var(--accent);
  background: var(--accent);
}

.project-transition-progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 8px;
  margin-top: 34px;
}

.project-transition-progress button {
  position: relative;
  min-height: 44px;
  padding: 0 0 16px;
  border: 0;
  border-bottom: 4px solid rgba(255, 255, 255, .1);
  background: transparent;
  color: rgba(255, 255, 255, .48);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.project-transition-progress button.is-active {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.project-transition-main-card,
.project-transition-preview-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: var(--radius);
  background: #171a1c;
}

.project-transition-main-card {
  min-height: clamp(510px, 48vw, 660px);
}

.project-transition-main-card > img,
.project-transition-preview-card > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity .35s var(--ease), transform .7s var(--ease);
}

.project-transition-main-overlay,
.project-transition-preview-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(8, 10, 11, .34), rgba(8, 10, 11, .08) 44%, rgba(8, 10, 11, .76));
  pointer-events: none;
}

.project-transition-main-card:hover > img,
.project-transition-preview-card:hover > img,
.project-transition-preview-card:focus-visible > img { transform: scale(1.02); }

.project-transition-main-card.is-updating > img,
.project-transition-main-card.is-updating .project-transition-main-content,
.project-transition-main-card.is-updating .project-transition-card-count,
.project-transition-preview-card.is-updating > img,
.project-transition-preview-card.is-updating .project-transition-preview-content { opacity: .18; }

.project-transition-main-content {
  position: absolute;
  z-index: 1;
  top: 34px;
  left: 34px;
  max-width: min(80%, 340px);
  transition: opacity .3s var(--ease), transform .45s var(--ease);
}

.project-transition-current-label,
.project-transition-preview-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: #111315;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-transition-main-content h3 {
  margin: 16px 0 4px;
  color: var(--paper);
  font-size: clamp(31px, 2.5vw, 43px);
  line-height: 1;
}

.project-transition-main-content p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, .8);
  font-size: 16px;
  line-height: 1.5;
}

.project-transition-next-button {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 34px;
  border: 0;
  background: rgba(13, 15, 16, .9);
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.project-transition-next-button:hover { background: var(--accent); transform: translateY(-2px); }

.project-transition-card-count {
  position: absolute;
  right: 34px;
  bottom: 32px;
  z-index: 1;
  color: var(--paper);
  font-size: 14px;
  font-weight: 700;
  transition: opacity .3s var(--ease);
}

.project-transition-card-count i {
  width: 42px;
  height: 1px;
  display: inline-block;
  margin: 0 8px 4px;
  background: rgba(255, 255, 255, .6);
}

.project-transition-preview-card {
  width: 100%;
  min-height: clamp(330px, 34vw, 480px);
  padding: 24px;
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}

.project-transition-preview-card:hover { border-color: rgba(255, 255, 255, .6); transform: translateY(-3px); }

.project-transition-preview-overlay {
  background: linear-gradient(to bottom, rgba(8, 10, 11, .32), rgba(8, 10, 11, .06) 44%, rgba(8, 10, 11, .74));
}

.project-transition-preview-icon { position: absolute; top: 24px; left: 24px; }
.project-transition-preview-label { position: absolute; top: 24px; right: 24px; background: rgba(255,255,255,.58); }

.project-transition-preview-content {
  position: absolute;
  right: 24px;
  bottom: 26px;
  left: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 4px 14px;
  transition: opacity .3s var(--ease);
}

.project-transition-preview-content strong {
  grid-column: 1 / -1;
  color: var(--paper);
  font-size: 22px;
  line-height: 1.08;
}

.project-transition-preview-content > span {
  grid-column: 1;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.45;
}

.project-transition-preview-content > svg {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
}

@media (max-width: 1180px) {
  .project-transition-layout { grid-template-columns: minmax(0, 1.3fr) minmax(220px, .7fr); }
  .project-transition-copy { grid-column: 1 / -1; max-width: 720px; }
  .project-transition-copy > p { max-width: 580px; }
  .project-transition-preview-card { min-height: 100%; }
}

@media (max-width: 980px) {
  .project-transition-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .project-transition-copy { grid-column: 1 / -1; max-width: 720px; }
  .project-transition-copy > p { max-width: 580px; }
  .project-transition-preview-card { max-width: none; }
}

@media (max-width: 680px) {
  .project-transition-section { padding-top: 76px; padding-bottom: 82px; }
  .project-transition-layout { grid-template-columns: 1fr; gap: 22px; }
  .project-transition-index { margin-bottom: 20px; }
  .project-transition-copy h2 { font-size: clamp(42px, 12vw, 58px); }
  .project-transition-copy > p { margin: 22px 0 28px; }
  .project-transition-item { min-height: 68px; padding: 15px 14px 15px 16px; }
  .project-transition-item.is-active { min-height: 138px; }
  .project-transition-main-card { min-height: 430px; }
  .project-transition-main-content { top: 24px; left: 24px; }
  .project-transition-main-content h3 { font-size: 34px; }
  .project-transition-next-button { top: 24px; right: 24px; }
  .project-transition-card-count { right: 24px; bottom: 24px; }
  .project-transition-preview-card { min-height: 245px; }
  .project-transition-preview-icon { top: 18px; left: 18px; }
  .project-transition-preview-label { top: 18px; right: 18px; }
  .project-transition-preview-content { right: 18px; bottom: 20px; left: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-transition-item,
  .project-transition-item-content > span,
  .project-transition-main-card > img,
  .project-transition-preview-card > img,
  .project-transition-main-content,
  .project-transition-preview-content,
  .project-transition-card-count,
  .project-transition-next-button,
  .project-transition-preview-card { transition: none; }
}

/* Footer: structured contact area with the existing brand and contact data. */
.site-footer {
  padding: clamp(56px, 6vw, 96px) clamp(20px, 5vw, 104px) clamp(32px, 4vw, 60px);
  background: #0d0f10;
  color: var(--paper);
}

.footer-container {
  display: grid;
  gap: clamp(58px, 6vw, 92px);
}

.footer-cta {
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  min-height: 128px;
  padding: 26px 36px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  background: #111416;
}

.footer-cta-icon {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.footer-cta-copy h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.15;
}

.footer-cta-copy p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
}

.footer-cta-button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 27px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: transparent;
  color: var(--accent) !important;
  font-size: 16px;
  font-weight: 800;
  transition: background-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.footer-cta-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .3s var(--ease);
}

.footer-cta-button:hover {
  background: var(--accent);
  color: var(--paper) !important;
  transform: translateY(-2px) !important;
}

.footer-cta-button:hover svg { transform: translateX(4px); }

.site-footer a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(230px, 1.22fr) minmax(170px, .9fr) minmax(240px, 1.04fr) minmax(150px, .66fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}

.site-footer .footer-brand {
  min-width: 0;
  display: grid;
  gap: 20px;
  padding-right: clamp(32px, 4vw, 72px);
  border-right: 1px solid rgba(255, 255, 255, .1);
}

.site-footer .footer-logo {
  width: clamp(145px, 10vw, 175px);
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer .footer-brand strong {
  max-width: 310px;
  color: var(--paper);
  font-size: clamp(26px, 2.1vw, 34px);
  line-height: 1.05;
}

.site-footer .footer-brand p {
  max-width: 295px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 15px;
  line-height: 1.65;
}

.footer-quality-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-quality-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
}

.footer-quality-list svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.site-footer .footer-nav,
.site-footer .footer-contact,
.site-footer .footer-direct {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0;
}

.footer-column-title {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 4px 0 25px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .25em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column-title::before {
  width: 16px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.site-footer .footer-nav a {
  width: 100%;
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .78);
  font-size: 16px;
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.site-footer .footer-nav a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform .3s var(--ease);
}

.site-footer .footer-nav a:hover {
  border-color: var(--accent);
  color: var(--paper);
  transform: none;
}

.site-footer .footer-nav a:hover svg { transform: translateX(4px); }

.site-footer .footer-contact {
  font-style: normal;
}

.footer-contact-item {
  min-height: 74px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  font-style: normal;
  line-height: 1.5;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.footer-contact-item p { margin: 0; }

.footer-contact-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: rgba(255, 255, 255, .74);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}

.footer-contact-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.site-footer .footer-contact a { width: fit-content; }

.site-footer .footer-contact a:hover {
  color: var(--paper);
  transform: translateX(2px);
}

.site-footer .footer-contact a:hover .footer-contact-icon {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-direct-actions {
  display: grid;
  gap: 27px;
}

.footer-direct-actions > div {
  display: grid;
  gap: 12px;
  justify-items: start;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
}

.footer-icon-button {
  position: relative;
  width: 96px !important;
  height: 82px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 11px;
  background: rgba(255, 255, 255, .02);
  color: var(--accent) !important;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}

.footer-icon-button::after {
  position: absolute;
  right: 20px;
  bottom: 0;
  left: 20px;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: var(--accent);
  content: "";
  transition: right .3s var(--ease), left .3s var(--ease);
}

.footer-icon-button svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  transition: transform .3s var(--ease);
}

.site-footer .footer-icon-button:hover {
  border-color: var(--accent);
  background: rgba(255, 255, 255, .06);
  transform: none;
}

.footer-icon-button:hover svg { transform: translateY(-2px); }
.footer-icon-button:hover::after { right: 12px; left: 12px; }

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .66);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}

.footer-legal p,
.footer-legal a {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0 22px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.footer-legal p { padding-left: 0; }
.footer-legal a { border-left: 1px solid rgba(255, 255, 255, .15); }
.site-footer .footer-legal a:hover { color: var(--paper); transform: none; }

.site-footer .vm-credit {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .66);
  font-size: 14px;
}

.site-footer .vm-credit:hover { color: var(--paper); transform: none; }

.site-footer .vm-credit img {
  width: clamp(59px, 4.5vw, 78px);
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 1160px) {
  .footer-main { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px clamp(40px, 8vw, 92px); }
  .site-footer .footer-brand { padding-right: 0; border-right: 0; }
}

@media (max-width: 720px) {
  .site-footer { padding: 48px 18px 34px; }
  .footer-container { gap: 48px; }
  .footer-cta { grid-template-columns: 1fr; gap: 18px; padding: 25px 22px; }
  .footer-cta-icon { width: 48px; height: 48px; }
  .footer-cta-copy p { font-size: 16px; }
  .site-footer .footer-cta-button { width: 100%; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .site-footer .footer-brand,
  .site-footer .footer-nav,
  .site-footer .footer-contact,
  .site-footer .footer-direct { padding-top: 34px; border-top: 1px solid rgba(255, 255, 255, .1); }
  .site-footer .footer-brand { padding-right: 0; border-right: 0; border-top: 0; padding-top: 0; }
  .footer-column-title { margin-top: 0; }
  .footer-direct-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .footer-icon-button { width: 100% !important; max-width: 132px; }
  .site-footer .footer-bottom { display: grid; gap: 26px; padding-top: 28px; }
  .footer-legal { gap: 8px 0; }
  .footer-legal p { width: 100%; }
  .footer-legal a { padding: 0 16px; }
  .footer-legal a:first-of-type { padding-left: 0; border-left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .footer-cta-button,
  .footer-cta-button svg,
  .site-footer .footer-nav a,
  .site-footer .footer-nav a svg,
  .footer-contact-item,
  .footer-contact-icon,
  .footer-icon-button,
  .footer-icon-button::after,
  .footer-icon-button svg { transition: none; }
}

/* Full-screen homepage hero with the existing renovation video. */
.hero-page .site-header:not(.is-scrolled) {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-page .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }

.hero-page .site-header:not(.is-scrolled) .desktop-nav { color: rgba(255, 255, 255, .9); }
.hero-page .site-header:not(.is-scrolled) .desktop-nav a::after { background: rgba(255, 255, 255, .82); }

.hero-page .site-header:not(.is-scrolled) .hero-contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 13px 0 18px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  color: var(--paper);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.hero-page .site-header:not(.is-scrolled) .hero-contact-link::after { display: none; }

.hero-contact-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .3s var(--ease);
}

.hero-page .site-header:not(.is-scrolled) .hero-contact-link:hover {
  border-color: var(--accent);
  background: var(--accent);
  transform: translateY(-2px);
}

.hero-page .site-header:not(.is-scrolled) .hero-contact-link:hover svg { transform: translateX(4px); }

.hero-page .site-header:not(.is-scrolled) .menu-toggle {
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(8, 10, 12, .56);
  box-shadow: none;
}

.hero-section.section-pad {
  position: relative;
  min-height: 100svh;
  display: block;
  padding: clamp(174px, 22vh, 250px) clamp(20px, 4vw, 64px) clamp(92px, 11vh, 140px);
  overflow: hidden;
  border-bottom: 0;
  background: #0d0f10;
  color: var(--paper);
  isolation: isolate;
}

.hero-section .hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: #0d0f10;
}

.hero-section .hero-background::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(7, 10, 12, .96) 0%, rgba(7, 10, 12, .87) 25%, rgba(7, 10, 12, .58) 48%, rgba(7, 10, 12, .24) 75%, rgba(7, 10, 12, .32) 100%), linear-gradient(180deg, rgba(5, 7, 9, .38) 0%, rgba(5, 7, 9, .04) 45%, rgba(5, 7, 9, .66) 100%);
  pointer-events: none;
}

.hero-section .hero-background .hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  background: #0d0f10;
  filter: saturate(.78) contrast(1.04);
}

.hero-section .hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-width: none;
  min-width: 0;
}

.hero-section .hero-headline {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(64px, 6.15vw, 102px);
  line-height: .91;
  letter-spacing: 0;
}

.hero-section .hero-headline > span,
.hero-section .hero-headline > em {
  display: block;
}

.hero-section .hero-headline .title-accent {
  color: var(--paper);
  font-size: 1.04em;
}

.hero-section .hero-headline.reveal {
  opacity: 1;
  transform: none;
}

.hero-section .hero-headline > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.hero-section .hero-headline > em { transition-delay: .12s; }
.hero-section .hero-headline > span:last-child { transition-delay: .24s; }
.hero-section .hero-headline.is-visible > * { opacity: 1; transform: translateY(0); }

.hero-section .hero-text {
  max-width: 590px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
}

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

.hero-section .hero-action {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
  transition: transform .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}

.hero-section .hero-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .3s var(--ease);
}

.hero-section .hero-action-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #111315;
}

.hero-section .hero-action-secondary { background: rgba(13, 15, 16, .22); }
.hero-section .hero-action:hover { transform: translateY(-2px); }
.hero-section .hero-action:hover svg { transform: translateX(4px); }
.hero-section .hero-action-primary:hover { background: #ff6b37; }
.hero-section .hero-action-secondary:hover { border-color: var(--paper); background: rgba(255, 255, 255, .14); }

.hero-section .hero-scroll-indicator {
  position: absolute;
  z-index: 1;
  bottom: clamp(28px, 4vw, 58px);
  left: clamp(20px, 4vw, 64px);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  transition: color .3s var(--ease);
}

.hero-section .hero-scroll-indicator svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  animation: heroArrowDown 2.2s var(--ease) infinite;
}

.hero-section .hero-scroll-indicator:hover { color: var(--paper); }

.hero-section .hero-section-navigation {
  position: absolute;
  z-index: 1;
  top: 46%;
  right: clamp(24px, 5vw, 86px);
  display: grid;
  grid-template-columns: 2px auto;
  gap: 16px;
  align-items: center;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
}

.hero-section .hero-section-navigation i {
  width: 2px;
  height: 66px;
  background: var(--accent);
}

.hero-section .hero-mouse-indicator {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(27px, 4vw, 56px);
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
}

.hero-section .hero-mouse-indicator svg {
  width: 38px;
  height: 38px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.hero-section .hero-mouse-indicator i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-page .site-header:not(.is-scrolled) a:focus-visible,
.hero-section .hero-action:focus-visible,
.hero-section .hero-scroll-indicator:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@keyframes heroArrowDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

@media (max-width: 980px) {
  .hero-section.section-pad { padding-top: clamp(150px, 18vh, 190px); }
  .hero-section .hero-background .hero-video { object-position: 65% center; }
  .hero-section .hero-content { width: min(100%, 670px); }
  .hero-section .hero-section-navigation { right: 28px; }
}

@media (max-width: 680px) {
  .hero-page .site-header:not(.is-scrolled) .brand img { width: 84px; }
  .hero-section.section-pad { min-height: 100svh; padding: 152px 22px 104px; }
  .hero-section .hero-background .hero-video { object-position: 60% center; }
  .hero-section .hero-background::after { background: linear-gradient(90deg, rgba(7, 10, 12, .85), rgba(7, 10, 12, .45) 70%, rgba(7, 10, 12, .4)), linear-gradient(180deg, rgba(5, 7, 9, .42), rgba(5, 7, 9, .12) 40%, rgba(5, 7, 9, .8)); }
  .hero-section .hero-headline { font-size: clamp(48px, 14vw, 64px); line-height: .94; }
  .hero-section .hero-text { margin-top: 24px; font-size: 16px; }
  .hero-section .hero-actions { display: grid; margin-top: 28px; }
  .hero-section .hero-action { width: 100%; min-height: 54px; justify-content: space-between; gap: 16px; }
  .hero-section .hero-section-navigation,
  .hero-section .hero-mouse-indicator { display: none; }
  .hero-section .hero-scroll-indicator { bottom: 34px; left: 22px; font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-section .hero-headline > *,
  .hero-section .hero-action,
  .hero-section .hero-action svg,
  .hero-section .hero-scroll-indicator svg,
  .hero-contact-link,
  .hero-contact-link svg { animation: none; transition: none; }
}

/* Contact section and reCAPTCHA form. */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(560px, 1fr);
  gap: clamp(44px, 6vw, 94px);
  align-items: center;
  min-height: 820px;
  padding-top: clamp(112px, 10vw, 150px);
  padding-bottom: clamp(112px, 10vw, 150px);
  background: #f7f7f5;
}

.contact-section > *,
.contact-form-card {
  min-width: 0;
}

.contact-content {
  max-width: 650px;
}

.contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: clamp(34px, 4vw, 52px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-eyebrow i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
}

.contact-eyebrow b {
  width: 42px;
  height: 1px;
  background: rgba(17, 19, 21, .28);
}

.contact-section .contact-copy h2 {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 3.75vw, 66px);
  line-height: .96;
  letter-spacing: 0;
}

.contact-section .contact-copy h2 .title-accent {
  font-size: 1.02em;
}

.contact-intro {
  max-width: 550px;
  margin: clamp(30px, 3vw, 42px) 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin: clamp(42px, 5vw, 66px) 0 0;
  color: #3f4244;
  font-style: normal;
}

.contact-details > strong {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.contact-details p,
.contact-details a {
  display: flex;
  align-items: center;
  gap: 17px;
  width: fit-content;
  min-height: 28px;
  margin: 0;
  color: inherit;
  font-size: 17px;
  line-height: 1.45;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.contact-details svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.contact-details a:hover {
  color: var(--ink);
  transform: translateX(2px);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form-card {
  display: block;
  padding: clamp(30px, 3.5vw, 44px);
  border: 1px solid rgba(17, 19, 21, .10);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(15, 20, 25, .08), 0 3px 12px rgba(15, 20, 25, .03);
}

.contact-form-card:hover {
  transform: translateY(-1px);
}

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

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

.contact-section .contact-form label {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.contact-section .contact-form label > span:first-child {
  color: #303337;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.contact-section .contact-form input,
.contact-section .contact-form select,
.contact-section .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 19, 21, .15);
  border-radius: 8px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-section .contact-form input,
.contact-section .contact-form select {
  min-height: 60px;
  padding: 0 18px;
}

.contact-section .contact-form textarea {
  min-height: 178px;
  padding: 17px 18px;
  resize: vertical;
}

.contact-section .contact-form select {
  appearance: none;
  padding-right: 38px;
  font-size: 14px;
  cursor: pointer;
}

.contact-section .contact-form ::placeholder {
  color: #8a8e95;
  opacity: 1;
}

.contact-section .contact-form input:hover,
.contact-section .contact-form select:hover,
.contact-section .contact-form textarea:hover {
  border-color: rgba(17, 19, 21, .28);
}

.contact-section .contact-form input:focus,
.contact-section .contact-form select:focus,
.contact-section .contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, .13);
}

.contact-select-wrap {
  position: relative;
  display: block;
}

.contact-select-wrap svg {
  position: absolute;
  top: 50%;
  right: 17px;
  width: 20px;
  height: 20px;
  pointer-events: none;
  fill: none;
  stroke: var(--muted);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.contact-message-field { grid-column: 1 / -1; }

.contact-section .hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.recaptcha-slot {
  min-height: 78px;
  display: flex;
  align-items: flex-start;
}

.recaptcha-slot:empty { display: none; }

.recaptcha-message {
  display: none;
  margin: -12px 0 0;
  color: #a63527;
  font-size: 14px;
  line-height: 1.45;
}

.recaptcha-message.is-visible { display: block; }

.contact-section .form-submit {
  min-width: 280px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  justify-self: start;
  padding: 0 23px 0 28px;
  border: 1px solid var(--accent);
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}

.contact-section .form-submit svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-section .form-submit-loader { display: none; animation: contactSpinner .75s linear infinite; }
.contact-section .form-submit.is-loading .form-submit-arrow { display: none; }
.contact-section .form-submit.is-loading .form-submit-loader { display: block; }

.contact-section .form-submit:hover:not(:disabled) {
  background: #e94c18;
  border-color: #e94c18;
  transform: translateY(-2px);
}

.contact-section .form-submit:hover:not(:disabled) .form-submit-arrow { transform: translateX(4px); }
.contact-section .form-submit:active:not(:disabled) { transform: translateY(0) scale(.99); }

.contact-section .form-submit:disabled {
  cursor: not-allowed;
  opacity: .56;
}

.contact-section .form-submit:focus-visible,
.contact-details a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.contact-section .form-status {
  display: none;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 15px 17px;
  border: 1px solid rgba(17, 19, 21, .12);
  border-radius: 8px;
  color: #3f4244;
  font-size: 14px;
  line-height: 1.45;
}

.contact-section .form-status.is-visible { display: flex; }
.contact-section .form-status.is-success { border-color: rgba(39, 119, 72, .22); color: #256b42; }
.contact-section .form-status.is-error { border-color: rgba(177, 54, 39, .24); color: #9d3428; }

.contact-section .form-status svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@keyframes contactSpinner { to { transform: rotate(360deg); } }

@media (max-width: 1120px) {
  .contact-section {
    grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr);
    gap: clamp(38px, 5vw, 68px);
  }

  .contact-section .contact-copy h2 { font-size: clamp(48px, 5vw, 66px); }
  .contact-form-card { padding: 36px; }
}

@media (max-width: 860px) {
  .contact-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-content { max-width: 680px; }
  .contact-form-card { width: 100%; max-width: 680px; }
}

@media (max-width: 560px) {
  .contact-section {
    gap: 54px;
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .contact-section .contact-copy h2 { font-size: clamp(40px, 12vw, 52px); }
  .contact-details p,
  .contact-details a { font-size: 16px; }
  .contact-form-card { padding: 26px 20px; border-radius: 13px; }
  .contact-section .contact-form { gap: 24px; }
  .contact-section .form-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-section .contact-form textarea { min-height: 154px; }
  .recaptcha-slot { min-height: 76px; overflow: hidden; }
  .contact-section .form-submit { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .contact-form-card,
  .contact-details a,
  .contact-section .form-submit,
  .contact-section .form-submit svg,
  .contact-section .contact-form input,
  .contact-section .contact-form select,
  .contact-section .contact-form textarea { animation: none; transition: none; }
}

/* Static 404 page using the existing dark Mobisol visual language. */
.not-found-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: #0d0f10;
  color: var(--paper);
}

.not-found-page .site-header {
  position: absolute;
  background: transparent;
}

.not-found-page .brand img { filter: brightness(0) invert(1); }
.not-found-page .desktop-nav { color: rgba(255, 255, 255, .9); }
.not-found-page .desktop-nav a::after { background: rgba(255, 255, 255, .82); }

.not-found-page .hero-contact-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 17px;
  padding: 0 13px 0 18px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  color: var(--paper);
}

.not-found-main {
  flex: 1;
  display: grid;
  align-items: center;
  padding-top: clamp(170px, 20vh, 250px);
  padding-bottom: clamp(92px, 12vh, 150px);
  background:
    linear-gradient(90deg, rgba(7, 10, 12, .98), rgba(7, 10, 12, .78)),
    url("assets/images/hero-building-renovation.png") center / cover no-repeat;
}

.not-found-panel { max-width: 760px; }

.not-found-eyebrow {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.not-found-panel h1 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(58px, 7.4vw, 112px);
  line-height: .9;
}

.not-found-panel h1 .title-accent { color: var(--paper); }

.not-found-panel > p:not(.not-found-eyebrow) {
  max-width: 580px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.6;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.not-found-page .hero-action {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: var(--radius);
  color: var(--paper);
  font-size: 16px;
  font-weight: 800;
}

.not-found-page .hero-action svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.not-found-page .hero-action-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #111315;
}

.not-found-page .hero-action-secondary { background: rgba(13, 15, 16, .28); }

.not-found-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 4vw, 64px);
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
}

.not-found-footer p { margin: 0; }
.not-found-footer nav { display: flex; gap: 22px; }
.not-found-footer a:hover { color: var(--paper); }
.not-found-footer a:focus-visible,
.not-found-page .hero-action:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

/* Shared service navigation and static service pages. */
.services-nav-menu,
.mobile-services-menu,
.footer-service-menu { position: relative; }

.services-nav-menu summary,
.mobile-services-menu summary,
.footer-service-menu summary { cursor: pointer; list-style: none; }

.services-nav-menu summary::-webkit-details-marker,
.mobile-services-menu summary::-webkit-details-marker,
.footer-service-menu summary::-webkit-details-marker { display: none; }

.services-nav-menu summary { display: inline-flex; align-items: center; gap: 5px; }
.services-nav-menu summary svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .25s var(--ease); }
.services-nav-menu[open] summary svg { transform: rotate(180deg); }

.services-nav-panel {
  position: absolute; top: calc(100% + 14px); right: 0; z-index: 80;
  display: grid; width: min(310px, 32vw); padding: 10px;
  border: 1px solid rgba(255, 255, 255, .12); border-radius: 8px;
  color: var(--paper);
  background: rgba(14, 16, 18, .96); box-shadow: 0 22px 50px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.services-nav-panel a {
  padding: 11px 12px;
  border-radius: 4px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.3;
  transition: color .2s var(--ease), background-color .2s var(--ease);
}
.services-nav-panel a::after { display: none; }
.services-nav-panel a:hover,
.services-nav-panel a:focus-visible {
  color: var(--paper);
  background: rgba(255, 90, 31, .18);
}
.services-nav-menu summary:focus-visible,
.mobile-services-menu summary:focus-visible,
.footer-service-menu summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }

.service-detail-link {
  display: inline-flex; margin: 0 60px 22px 82px; color: var(--blue);
  font-size: 13px; font-weight: 800; text-decoration: underline; text-underline-offset: 4px;
}

.service-detail-page { background: #f7f7f5; }
.service-detail-page .site-header:not(.is-scrolled) { color: var(--paper); }
.service-detail-page .site-header:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
.service-detail-page .site-header:not(.is-scrolled) .desktop-nav a::after { background: var(--paper); }
.service-detail-page .site-header:not(.is-scrolled) .menu-toggle { background: var(--paper); color: var(--ink); }
.service-detail-page .site-header:not(.is-scrolled) .services-nav-panel { color: var(--paper); }

.service-detail-hero {
  position: relative; display: grid; align-content: end; min-height: min(760px, 88svh);
  padding-top: 160px; padding-bottom: clamp(70px, 8vw, 130px); overflow: hidden;
  color: var(--paper); isolation: isolate; background: #111315;
}

.service-detail-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(90deg, rgba(10, 13, 15, .92) 0%, rgba(10, 13, 15, .68) 45%, rgba(10, 13, 15, .22) 100%), var(--service-hero-image) center / cover no-repeat;
}

.service-detail-hero::after { content: ""; position: absolute; inset: auto 0 0; z-index: -1; height: 42%; background: linear-gradient(transparent, rgba(10, 13, 15, .45)); }
.service-breadcrumb { position: absolute; top: 134px; display: flex; flex-wrap: wrap; gap: 8px; color: rgba(255, 255, 255, .72); font-size: 13px; }
.service-breadcrumb a:hover { color: var(--paper); }
.service-detail-hero-copy { max-width: 790px; }

.service-detail-eyebrow,
.section-eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: inherit; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.section-eyebrow { color: var(--blue); }
.service-detail-eyebrow::after,
.section-eyebrow i { width: 42px; height: 1px; background: currentColor; content: ""; }

.service-detail-hero h1,
.service-detail-content h2 { margin: 0; font-size: clamp(44px, 5.6vw, 88px); letter-spacing: 0; line-height: .96; }
.service-detail-hero h1 { max-width: 760px; overflow-wrap: anywhere; hyphens: auto; }
.service-detail-hero h1 .title-accent,
.service-detail-content h2 .title-accent { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.service-detail-hero-copy > p:not(.service-detail-eyebrow) { max-width: 630px; margin: 28px 0 0; color: rgba(255, 255, 255, .8); font-size: clamp(16px, 1.35vw, 20px); line-height: 1.6; }

.service-detail-page .hero-action { display: inline-flex; align-items: center; justify-content: space-between; gap: 38px; min-height: 56px; margin-top: 34px; padding: 0 22px; border: 1px solid transparent; border-radius: 7px; font-size: 15px; font-weight: 800; transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease); }
.service-detail-page .hero-action:hover { transform: translateY(-2px); }
.service-detail-page .hero-action svg,
.service-related-grid svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.service-detail-page .hero-action-primary { background: var(--accent); color: var(--ink); }

.service-detail-content { padding-top: clamp(76px, 10vw, 144px); padding-bottom: clamp(76px, 10vw, 144px); }
.service-detail-content > section { margin-top: clamp(84px, 12vw, 170px); }
.service-detail-content > section:first-child { margin-top: 0; }
.service-detail-section,
.service-detail-media,
.service-detail-related,
.service-detail-contact { display: grid; grid-template-columns: minmax(150px, .58fr) minmax(0, 1.42fr); gap: clamp(42px, 7vw, 130px); }
.service-detail-content h2 { max-width: 720px; color: var(--ink); font-size: clamp(38px, 4.4vw, 70px); }
.service-detail-content p { max-width: 680px; color: #4c5154; font-size: 17px; line-height: 1.65; }

.service-detail-list { display: grid; gap: 12px; margin: 28px 0 0; padding: 0; list-style: none; }
.service-detail-list li { position: relative; padding: 13px 0 13px 26px; border-bottom: 1px solid var(--line); font-weight: 700; }
.service-detail-list li::before { position: absolute; top: 18px; left: 0; width: 10px; height: 10px; border: 2px solid var(--accent); border-radius: 50%; content: ""; }

.service-detail-media figure { order: 2; margin: 0; overflow: hidden; border-radius: 8px; background: var(--stone); }
.service-detail-media figure img { width: 100%; min-height: 430px; object-fit: cover; }
.service-detail-media > div { align-self: center; }

.service-detail-process,
.service-detail-benefits,
.service-detail-faq { padding: clamp(36px, 5vw, 76px); border-radius: 8px; background: var(--ink); color: var(--paper); }
.service-detail-process h2,
.service-detail-benefits h2,
.service-detail-faq h2 { color: var(--paper); }
.service-detail-process .section-eyebrow,
.service-detail-benefits .section-eyebrow,
.service-detail-faq .section-eyebrow { color: var(--accent); }

.service-detail-process ol { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: clamp(38px, 5vw, 68px) 0 0; padding: 0; list-style: none; }
.service-detail-process li { min-height: 210px; padding: 0 28px; border-left: 1px solid rgba(255, 255, 255, .17); }
.service-detail-process li:first-child { padding-left: 0; border-left: 0; }
.service-detail-process li span { display: block; margin-bottom: 52px; color: var(--accent); font-size: 13px; font-weight: 800; }
.service-detail-process li strong { display: block; font-size: clamp(18px, 1.6vw, 24px); line-height: 1.15; }
.service-detail-process li p { margin: 14px 0 0; color: rgba(255, 255, 255, .68); font-size: 14px; }

.service-detail-benefits > div:not(.section-eyebrow) { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; margin-top: 52px; }
.service-detail-benefits article { padding: 0 30px; border-left: 1px solid rgba(255, 255, 255, .17); }
.service-detail-benefits article:first-child { padding-left: 0; border-left: 0; }

/* Ratgeber: editorial content uses the same visual system as the service pages. */
.guide-hero { position: relative; min-height: 560px; overflow: hidden; background: #f4f4f1; display: grid; align-content: center; }
.guide-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #f4f4f1 40%, rgba(244,244,241,.72) 61%, rgba(244,244,241,.1)), var(--guide-image) center right / min(56vw, 880px) auto no-repeat; opacity: .78; pointer-events: none; }
.guide-hero > * { position: relative; z-index: 1; }
.guide-hero-copy { width: min(700px, 56%); padding: 82px 0 34px; }
.guide-hero h1, .guide-overview-hero h1 { max-width: 760px; margin: 22px 0; font-size: clamp(3rem, 6.2vw, 6.4rem); line-height: .96; letter-spacing: 0; overflow-wrap: anywhere; hyphens: auto; }
.guide-hero-copy > p:not(.guide-meta), .guide-overview-hero > p { max-width: 610px; font-size: clamp(1.05rem, 1.4vw, 1.28rem); line-height: 1.55; }
.guide-meta { margin-top: 30px; font-size: .88rem; color: #5c6168; }
.guide-body { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(300px, .82fr); gap: clamp(42px, 7vw, 120px); padding-top: clamp(64px, 9vw, 140px); padding-bottom: clamp(64px, 9vw, 140px); }
.guide-copy { max-width: 760px; }
.guide-copy section { margin-bottom: clamp(40px, 5vw, 72px); }
.guide-copy h2, .guide-checklist h2, .guide-faq h2 { margin: 0 0 21px; font-size: clamp(2rem, 3.35vw, 4rem); line-height: 1.04; letter-spacing: 0; }
.guide-copy p { max-width: 690px; margin: 0 0 17px; font-size: 1.05rem; line-height: 1.68; color: #3f444a; }
.guide-checklist { padding-top: 9px; }
.guide-checklist ul { display: grid; gap: 0; margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid #d7d8d5; }
.guide-checklist li { position: relative; padding: 17px 0 17px 28px; border-bottom: 1px solid #d7d8d5; font-weight: 650; }
.guide-checklist li::before { content: '✓'; position: absolute; left: 1px; color: #ff5a26; }
.guide-aside { align-self: start; position: sticky; top: 110px; overflow: hidden; border: 1px solid #e0e0dc; border-radius: 8px; background: #f5f5f2; }
.guide-aside img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.guide-aside > div { padding: 27px; }
.guide-aside ul { margin: 19px 0 23px; padding: 0; list-style: none; border-top: 1px solid #d9dad7; }
.guide-aside li { border-bottom: 1px solid #d9dad7; }
.guide-aside li a { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 53px; color: #111316; font-weight: 700; text-decoration: none; }
.guide-aside li a span { color: #ff5a26; font-size: 1.25rem; }
.guide-overview-link { color: #111316; font-weight: 750; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.guide-faq { padding-top: 0; padding-bottom: clamp(64px, 9vw, 140px); display: grid; grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr); gap: clamp(38px, 8vw, 150px); }
.guide-faq > div { border-top: 1px solid #d9dad7; }
.guide-faq details { border-bottom: 1px solid #d9dad7; }
.guide-faq summary { display: flex; justify-content: space-between; gap: 22px; align-items: center; min-height: 76px; padding: 14px 0; cursor: pointer; font-size: 1.03rem; font-weight: 750; list-style: none; }
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq summary span { display: inline-grid; place-items: center; flex: 0 0 30px; width: 30px; height: 30px; border: 1px solid #aeb0ad; border-radius: 50%; font-size: 1.2rem; transition: transform .2s ease; }
.guide-faq details[open] summary span { transform: rotate(45deg); }
.guide-faq details p { max-width: 650px; margin: 0; padding: 0 38px 25px 0; color: #4a5056; line-height: 1.6; }
.guide-contact { margin-bottom: clamp(64px, 9vw, 140px); }
.guide-overview-hero { min-height: 460px; display: grid; align-content: center; background: linear-gradient(125deg, #f6f6f3 0%, #f6f6f3 58%, rgba(246,246,243,.5)), url('assets/images/illustration-sanierung.png') right center / min(53vw, 820px) auto no-repeat; }
.guide-overview-hero .service-breadcrumb { margin-bottom: 50px; }
.guide-overview-hero > p { margin: 0; }
.guide-overview-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-top: clamp(50px, 7vw, 110px); padding-bottom: clamp(64px, 9vw, 140px); }
.guide-overview-grid article { overflow: hidden; border: 1px solid #dfdfdb; border-radius: 8px; background: #f8f8f6; }
.guide-overview-grid img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.guide-overview-grid article > div { padding: 26px; }
.guide-overview-grid article > div > p:first-child { margin: 0 0 15px; font-size: .72rem; letter-spacing: .13em; text-transform: uppercase; font-weight: 800; color: #ff5a26; }
.guide-overview-grid h2 { margin: 0 0 16px; font-size: clamp(1.55rem, 2vw, 2.25rem); line-height: 1.04; letter-spacing: 0; }
.guide-overview-grid h2 em { font-family: var(--font-serif, Georgia, serif); font-weight: 400; }
.guide-overview-grid article > div > p:not(:first-child) { min-height: 112px; color: #50565c; line-height: 1.55; }
.guide-overview-grid a { color: #111316; font-weight: 800; text-underline-offset: 5px; }
.guide-overview-grid a span { color: #ff5a26; margin-left: 8px; }
@media (max-width: 900px) { .guide-hero { min-height: 0; } .guide-hero::after { background: linear-gradient(90deg, #f4f4f1 28%, rgba(244,244,241,.85) 68%), var(--guide-image) center right / auto 100% no-repeat; } .guide-hero-copy { width: min(700px, 78%); padding-top: 98px; } .guide-body, .guide-faq { grid-template-columns: 1fr; } .guide-aside { position: static; max-width: 650px; } .guide-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .guide-hero { min-height: 560px; } .guide-hero::after { background: linear-gradient(0deg, #f4f4f1 17%, rgba(244,244,241,.82) 64%, rgba(244,244,241,.34)), var(--guide-image) center top / auto 48% no-repeat; } .guide-hero-copy { width: 100%; padding: 210px 0 34px; } .guide-hero h1, .guide-overview-hero h1 { font-size: clamp(2.65rem, 13vw, 4rem); } .guide-body { gap: 52px; } .guide-copy p { font-size: 1rem; } .guide-faq { gap: 25px; } .guide-faq summary { min-height: 67px; font-size: .96rem; } .guide-faq details p { padding-right: 0; } .guide-overview-hero { min-height: 430px; background-position: 82vw 0; background-size: auto 100%; } .guide-overview-hero .service-breadcrumb { margin-bottom: 34px; } .guide-overview-grid { grid-template-columns: 1fr; } .guide-overview-grid article > div > p:not(:first-child) { min-height: 0; } }
.service-detail-benefits h3 { margin: 0; color: var(--paper); font-size: 20px; }
.service-detail-benefits article p,
.service-detail-audience { color: rgba(255, 255, 255, .7); font-size: 15px; }
.service-detail-audience { max-width: 780px; margin: 48px 0 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .17); }

.service-related-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-related-grid a { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 86px; padding: 22px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); font-size: 17px; font-weight: 800; transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.service-related-grid a:hover { transform: translateY(-3px); background: var(--ink); color: var(--paper); }
.service-related-overview { grid-column: 1 / -1; }

.service-detail-faq { display: grid; grid-template-columns: minmax(180px, .64fr) minmax(0, 1.36fr); gap: clamp(36px, 6vw, 110px); }
.service-detail-faq > .section-eyebrow { grid-column: 1 / -1; margin: 0; }
.service-detail-faq h2 { grid-column: 1; }
.service-detail-faq > div:last-child { grid-column: 2; }
.service-detail-faq details { border-top: 1px solid rgba(255, 255, 255, .2); }
.service-detail-faq details:last-child { border-bottom: 1px solid rgba(255, 255, 255, .2); }
.service-detail-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 0; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; }
.service-detail-faq summary::-webkit-details-marker { display: none; }
.service-detail-faq summary span { display: grid; place-items: center; width: 30px; height: 30px; border: 1px solid rgba(255, 255, 255, .42); border-radius: 50%; transition: transform .25s var(--ease), background .25s var(--ease); }
.service-detail-faq details[open] summary span { transform: rotate(45deg); background: var(--accent); color: var(--ink); }
.service-detail-faq details p { max-width: 620px; margin: 0; padding: 0 40px 20px 0; color: rgba(255, 255, 255, .7); font-size: 15px; }

.service-detail-contact { align-items: end; padding: clamp(36px, 5vw, 70px); border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.service-detail-contact > div:last-child { display: grid; justify-items: start; gap: 16px; }
.service-detail-contact .hero-action { margin: 0; }
.service-contact-direct { color: var(--blue); font-size: 15px; font-weight: 800; }
.service-contact-direct:hover { color: var(--accent); }

.footer-service-menu summary { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, .16); }
.footer-service-menu summary svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; transition: transform .25s var(--ease); }
.footer-service-menu[open] summary svg { transform: rotate(90deg); }
.footer-service-menu > div { display: grid; gap: 7px; padding: 12px 0 8px 14px; }
.footer-service-menu > div a { padding: 3px 0; border: 0; color: rgba(255, 255, 255, .68); font-size: 13px; }
.footer-service-menu > div a:hover { color: var(--accent); }

@media (max-width: 980px) {
  .service-breadcrumb { top: 120px; }
  .service-detail-section, .service-detail-media, .service-detail-related, .service-detail-contact, .service-detail-faq { grid-template-columns: 1fr; }
  .service-detail-media figure { order: 0; }
  .service-detail-process ol { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail-process li:nth-child(3) { padding-left: 0; border-left: 0; }
  .service-detail-process li:nth-child(-n + 2) { margin-bottom: 38px; }
  .service-detail-benefits > div:not(.section-eyebrow) { grid-template-columns: 1fr; gap: 22px; }
  .service-detail-benefits article { padding: 22px 0 0; border-top: 1px solid rgba(255, 255, 255, .17); border-left: 0; }
  .service-detail-benefits article:first-child { padding-top: 0; border-top: 0; }
  .service-detail-faq > .section-eyebrow, .service-detail-faq h2, .service-detail-faq > div:last-child { grid-column: auto; }
}

@media (max-width: 640px) {
  .service-detail-hero { min-height: 690px; padding-top: 154px; }
  .service-breadcrumb { top: 112px; font-size: 12px; }
  .service-detail-hero h1 { font-size: clamp(42px, 13.5vw, 58px); }
  .service-detail-content { padding-top: 70px; padding-bottom: 70px; }
  .service-detail-content > section { margin-top: 82px; }
  .service-detail-content h2 { font-size: clamp(37px, 11.5vw, 50px); }
  .service-detail-media figure img { min-height: 270px; }
  .service-detail-process, .service-detail-benefits, .service-detail-faq, .service-detail-contact { padding: 28px 22px; }
  .service-detail-process ol { grid-template-columns: 1fr; }
  .service-detail-process li, .service-detail-process li:nth-child(3) { min-height: 0; margin: 0; padding: 24px 0; border-top: 1px solid rgba(255, 255, 255, .17); border-left: 0; }
  .service-detail-process li:first-child { padding-top: 0; border-top: 0; }
  .service-detail-process li span { margin-bottom: 22px; }
  .service-related-grid { grid-template-columns: 1fr; }
  .service-related-overview { grid-column: auto; }
  .service-detail-faq summary { font-size: 16px; }
  .service-detail-faq details p { padding-right: 0; }
  .service-detail-contact .hero-action { width: 100%; }
  .service-detail-link { margin: 0 24px 22px; }
}

.service-accordion .service-detail-link { display: block; margin: 11px 0 0; }
.service-accordion details[open] p { max-height: 145px; }

.mobile-services-menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: inherit;
  font-size: clamp(42px, 8vw, 94px);
  font-weight: 800;
  line-height: .9;
}

.mobile-services-menu summary span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 400;
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.mobile-services-menu[open] summary span { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); color: var(--ink); }
.mobile-services-menu > div { display: grid; gap: 11px; margin: 18px 0 8px; padding: 0 0 6px 18px; border-left: 1px solid rgba(255, 255, 255, .35); }
.mobile-services-menu > div a { color: rgba(255, 255, 255, .76); font-size: clamp(17px, 3vw, 27px); font-weight: 700; line-height: 1.2; }
.mobile-services-menu > div a:hover { color: var(--accent); }

.project-editorial-note {
  max-width: 520px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.55;
}

.project-editorial-note strong { color: var(--paper); }

.form-privacy-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-privacy-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 980px) {
  .not-found-page .desktop-nav { display: none; }
}

@media (max-width: 640px) {
  .not-found-main { padding-top: 152px; }
  .not-found-panel h1 { font-size: clamp(48px, 14vw, 64px); }
  .not-found-actions { display: grid; }
  .not-found-page .hero-action { width: 100%; justify-content: space-between; gap: 16px; }
  .not-found-footer { display: grid; }
}
