:root {
  --ink: #1b1c1b;
  --ink-deep: #101110;
  --ink-soft: #242524;
  --panel: #202120;
  --paper: #f5f5f3;
  --white: #ffffff;
  --muted: #afb2b4;
  --muted-dark: #85898b;
  --silver: #aeb2b5;
  --silver-bright: #d7d9da;
  --silver-mid: #8e9295;
  --silver-deep: #6d7174;
  --brand-gradient: linear-gradient(105deg, #d7d9da 0%, #aeb2b5 52%, #6d7174 100%);
  --line: rgba(247, 247, 244, 0.13);
  --line-strong: rgba(247, 247, 244, 0.24);
  --silver-line: rgba(174, 178, 181, 0.42);
  --display: "Montserrat", "Century Gothic", "Avenir Next", sans-serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --section-width: 1360px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-color: var(--silver) var(--ink-deep);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
}

::-webkit-scrollbar-track {
  background: var(--ink-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-gradient);
  border: 3px solid var(--ink-deep);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--silver-bright);
}

body {
  margin: 0;
  min-width: 280px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.menu-open,
body.call-dialog-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
p,
blockquote,
dl,
dd {
  margin: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--silver);
  color: var(--ink-deep);
}

:focus-visible {
  outline: 2px solid var(--silver-bright);
  outline-offset: 5px;
}

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

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

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.cursor-dot,
.cursor-ring {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--silver-bright);
  box-shadow: 0 0 14px rgba(215, 217, 218, 0.85);
  transition: width 180ms var(--ease), height 180ms var(--ease), opacity 140ms ease, background 180ms ease;
}

.cursor-ring {
  width: 31px;
  height: 31px;
  border: 1px solid rgba(215, 217, 218, 0.72);
  background: rgba(174, 178, 181, 0.035);
  transition: width 220ms var(--ease), height 220ms var(--ease), opacity 160ms ease, background 220ms ease, border-color 220ms ease, transform 90ms linear;
}

.cursor-dot.is-visible,
.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-dot.is-interactive {
  width: 8px;
  height: 8px;
  background: var(--paper);
}

.cursor-ring.is-interactive {
  width: 47px;
  height: 47px;
  border-color: var(--silver-bright);
  background: rgba(174, 178, 181, 0.12);
}

.cursor-ring.is-pressed {
  width: 24px;
  height: 24px;
  background: rgba(174, 178, 181, 0.2);
}

@media (hover: hover) and (pointer: fine) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled textarea,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled label,
  body.custom-cursor-enabled summary {
    cursor: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: block;
  }
}

.section-inner {
  width: min(var(--section-width), calc(100% - 80px));
  margin-inline: auto;
}

.section-pad {
  padding-block: 144px;
}

.section-pad-small {
  padding-block: 72px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: var(--ink);
  border-bottom: 1px solid transparent;
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  background: var(--ink);
  border-bottom-color: var(--line);
}

.scroll-progress {
  position: absolute;
  inset: auto auto -1px 0;
  width: 100%;
  height: 1px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left center;
  box-shadow: 0 0 16px rgba(174, 178, 181, 0.7);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) auto minmax(200px, 1fr);
  align-items: center;
  gap: 36px;
  width: min(1480px, calc(100% - 56px));
  min-height: 94px;
  margin-inline: auto;
}

.brand {
  position: relative;
  display: block;
  width: 215px;
  aspect-ratio: 800 / 323;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.desktop-nav a {
  position: relative;
  padding-block: 14px;
  color: rgba(247, 247, 244, 0.72);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 200ms ease;
}

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

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--paper);
}

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

.header-call {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 12px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.header-call small {
  display: block;
  margin-bottom: 1px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.call-pulse {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: var(--silver);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(174, 178, 181, 0.75);
}

.call-pulse::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(174, 178, 181, 0.55);
  border-radius: 50%;
  animation: signal-pulse 2.4s ease-out infinite;
}

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

.hero {
  position: relative;
  min-height: 920px;
  padding-top: 170px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 36%, rgba(174, 178, 181, 0.1), transparent 28%),
    radial-gradient(circle at 10% 80%, rgba(142, 146, 149, 0.07), transparent 25%),
    var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  top: 94px;
  bottom: 0;
  left: calc(50% + 86px);
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line-strong) 12%, var(--line) 82%, transparent);
}

.hero::after {
  content: "";
  position: absolute;
  top: 94px;
  left: 5%;
  width: 90%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
}

.hero-circuit {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-circuit-one {
  top: 132px;
  right: -100px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(174, 178, 181, 0.12);
  border-radius: 50%;
}

.hero-circuit-one::before,
.hero-circuit-one::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-circuit-one::before {
  inset: 76px;
  border: 1px dashed rgba(174, 178, 181, 0.12);
}

.hero-circuit-one::after {
  top: 50%;
  left: -280px;
  width: 280px;
  height: 1px;
  border-radius: 0;
  background: rgba(174, 178, 181, 0.12);
}

.hero-circuit-two {
  bottom: 124px;
  left: -80px;
  width: 260px;
  height: 140px;
  border-top: 1px solid rgba(247, 247, 244, 0.07);
  border-right: 1px solid rgba(247, 247, 244, 0.07);
  transform: skewX(-35deg);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.8fr);
  align-items: center;
  gap: clamp(70px, 8vw, 150px);
}

.hero-copy {
  padding-bottom: 24px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 28px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 36px;
  height: 1px;
  background: var(--brand-gradient);
  box-shadow: 0 0 12px rgba(174, 178, 181, 0.55);
}

.hero h1,
.thank-you-card h1 {
  max-width: 880px;
  font-family: var(--display);
  font-size: clamp(3.65rem, 6.2vw, 6.6rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 em {
  background: var(--brand-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-style: normal;
}

.hero-intro {
  max-width: 670px;
  margin-top: 34px;
  color: #c7cdcf;
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 16px 18px 16px 23px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms var(--ease);
}

.button-primary {
  background: var(--silver-bright);
  color: #171818;
  box-shadow: 0 12px 36px rgba(174, 178, 181, 0.13);
}

.button-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.button-ghost {
  border-color: var(--line-strong);
  color: var(--paper);
  background: rgba(247, 247, 244, 0.02);
}

.button-ghost:hover {
  border-color: var(--silver);
  background: rgba(174, 178, 181, 0.06);
  transform: translateY(-3px);
}

.button-arrow {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--body);
  font-size: 0.85rem;
}

.hero-accreditation {
  width: 132px;
  margin-top: 28px;
  padding: 7px 9px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hero-accreditation img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-panel {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), transparent 35%),
    rgba(21, 21, 20, 0.72);
  border: 1px solid var(--line-strong);
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.25);
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 54px;
  pointer-events: none;
}

.hero-panel::before {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--silver);
  border-left: 2px solid var(--silver);
}

.hero-panel::after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid rgba(174, 178, 181, 0.5);
  border-bottom: 2px solid rgba(174, 178, 181, 0.5);
}

.panel-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-photo {
  position: relative;
  flex: 1 1 auto;
  min-height: 360px;
  margin: 24px 0 20px;
  overflow: hidden;
  background: #101110;
  border: 1px solid rgba(247, 247, 244, 0.14);
  isolation: isolate;
}

.hero-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 14, 13, 0.04) 30%, rgba(13, 14, 13, 0.93) 100%),
    linear-gradient(120deg, rgba(174, 178, 181, 0.16), transparent 48%);
  pointer-events: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  width: 62px;
  height: 1px;
  background: var(--silver);
  box-shadow: 0 0 16px rgba(174, 178, 181, 0.68);
}

.project-slideshow,
.project-slide {
  position: absolute;
  inset: 0;
}

.project-slideshow {
  z-index: 0;
  overflow: hidden;
}

.project-slide {
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: opacity 850ms ease, visibility 0s linear 850ms;
}

.project-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.project-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-photo .project-slide img {
  object-position: var(--project-position, 48% 50%);
  filter: saturate(0.72) contrast(1.1) brightness(0.72);
}

.project-slideshow.is-running .project-slide.is-active:nth-child(4n + 1) img {
  animation: project-burn-one 4.6s linear both;
}

.project-slideshow.is-running .project-slide.is-active:nth-child(4n + 2) img {
  animation: project-burn-two 4.6s linear both;
}

.project-slideshow.is-running .project-slide.is-active:nth-child(4n + 3) img {
  animation: project-burn-three 4.6s linear both;
}

.project-slideshow.is-running .project-slide.is-active:nth-child(4n + 4) img {
  animation: project-burn-four 4.6s linear both;
}

.panel-services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.panel-services > div {
  padding: 13px 11px 12px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.panel-services span {
  color: var(--silver);
  font-family: var(--display);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
}

.panel-services p {
  margin-top: 4px;
  color: var(--paper);
  font-size: 0.67rem;
  line-height: 1.4;
}

.hero-foot {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 65px;
  padding-bottom: 38px;
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.scroll-line {
  position: relative;
  width: 72px;
  height: 1px;
  overflow: hidden;
  background: var(--line-strong);
}

.scroll-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--silver);
  transform: translateX(-100%);
  animation: line-travel 2.6s ease-in-out infinite;
}

.assurance-strip {
  border-bottom: 1px solid var(--line);
  background: var(--ink-deep);
}

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

.assurance-grid > div {
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 24px;
  padding: 25px 40px;
  border-left: 1px solid var(--line);
}

.assurance-grid > div:last-child {
  border-right: 1px solid var(--line);
}

.assurance-icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(174, 178, 181, 0.32);
  background: linear-gradient(145deg, rgba(174, 178, 181, 0.14), rgba(174, 178, 181, 0.025));
  color: var(--silver);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
  transition: color 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, transform 350ms var(--ease);
}

.assurance-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: var(--assurance-icon) center / contain no-repeat;
  mask: var(--assurance-icon) center / contain no-repeat;
}

.assurance-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 9px;
  height: 9px;
  border-bottom: 1px solid rgba(174, 178, 181, 0.36);
  border-left: 1px solid rgba(174, 178, 181, 0.36);
}

.assurance-icon-local {
  --assurance-icon: url("icons/map-pin.svg");
}

.assurance-icon-care {
  --assurance-icon: url("icons/shield-check.svg");
}

.assurance-icon-practical {
  --assurance-icon: url("icons/wrench.svg");
}

.assurance-grid > div:hover .assurance-icon {
  border-color: rgba(215, 217, 218, 0.68);
  background: linear-gradient(145deg, rgba(174, 178, 181, 0.24), rgba(174, 178, 181, 0.06));
  color: var(--silver-bright);
  box-shadow: 0 0 26px rgba(174, 178, 181, 0.13);
  transform: translateY(-2px);
}

.assurance-grid p {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.assurance-grid strong {
  color: var(--paper);
  font-size: 0.84rem;
  font-weight: 600;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 500px);
  align-items: end;
  gap: 90px;
  margin-bottom: 72px;
}

.section-heading h2,
.depth-content h2,
.urgent-copy h2,
.why-copy h2,
.contact-copy h2 {
  font-family: var(--display);
  font-size: clamp(2.9rem, 4.7vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.section-heading > p {
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.services {
  position: relative;
  background: var(--ink);
}

.services::before {
  content: "";
  position: absolute;
  top: 90px;
  right: 5%;
  width: 210px;
  height: 1px;
  background: var(--line);
}

.services::after {
  content: "";
  position: absolute;
  top: 86px;
  right: calc(5% + 210px);
  width: 9px;
  height: 9px;
  background: var(--ink);
  border: 1px solid var(--silver);
  border-radius: 50%;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  padding: clamp(30px, 3vw, 47px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.008);
  transition: background 350ms ease, transform 350ms var(--ease), border-color 350ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(174, 178, 181, 0.1);
  border-radius: 50%;
  transition: border-color 350ms ease, transform 450ms var(--ease);
}

.service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brand-gradient);
  transition: width 450ms var(--ease);
}

.service-card:hover,
.service-card:focus-within {
  z-index: 2;
  background: rgba(174, 178, 181, 0.035);
  border-color: rgba(174, 178, 181, 0.35);
  transform: translateY(-6px);
}

.service-card:hover::before,
.service-card:focus-within::before {
  border-color: rgba(174, 178, 181, 0.35);
  transform: scale(1.18);
}

.service-card:hover::after,
.service-card:focus-within::after {
  width: 100%;
}

.service-card-accent {
  background: linear-gradient(135deg, rgba(174, 178, 181, 0.08), rgba(174, 178, 181, 0.01));
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 58px;
}

.service-icon {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(174, 178, 181, 0.32);
  background: linear-gradient(145deg, rgba(174, 178, 181, 0.14), rgba(174, 178, 181, 0.025));
  color: var(--silver);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
  transition: color 300ms ease, border-color 300ms ease, background 300ms ease, box-shadow 300ms ease, transform 350ms var(--ease);
}

.service-icon::before {
  content: "";
  width: 24px;
  height: 24px;
  background: currentColor;
  -webkit-mask: var(--service-icon) center / contain no-repeat;
  mask: var(--service-icon) center / contain no-repeat;
  transition: transform 350ms var(--ease);
}

.service-icon::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-bottom: 1px solid rgba(174, 178, 181, 0.36);
  border-left: 1px solid rgba(174, 178, 181, 0.36);
}

.service-icon-installation {
  --service-icon: url("icons/plug-zap.svg");
}

.service-icon-lighting {
  --service-icon: url("icons/lightbulb.svg");
}

.service-icon-fault {
  --service-icon: url("icons/triangle-alert.svg");
}

.service-icon-inspection {
  --service-icon: url("icons/clipboard-check.svg");
}

.service-icon-rewiring {
  --service-icon: url("icons/cable.svg");
}

.service-icon-emergency {
  --service-icon: url("icons/siren.svg");
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  border-color: rgba(215, 217, 218, 0.68);
  background: linear-gradient(145deg, rgba(174, 178, 181, 0.24), rgba(174, 178, 181, 0.06));
  color: var(--silver-bright);
  box-shadow: 0 0 26px rgba(174, 178, 181, 0.13);
  transform: translateY(-3px);
}

.service-card:hover .service-icon::before,
.service-card:focus-within .service-icon::before {
  transform: scale(1.08);
}

.service-card h3 {
  max-width: 330px;
  font-family: var(--display);
  font-size: clamp(1.32rem, 1.8vw, 1.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.service-card > p {
  max-width: 360px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.service-card-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  padding-top: 32px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.service-card-action > span {
  color: var(--silver);
  font-size: 0.95rem;
  transition: transform 250ms var(--ease);
}

.service-card:hover .service-card-action > span,
.service-card:focus-visible .service-card-action > span {
  transform: translate(3px, -3px);
}

.service-depth {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
  background: var(--ink-deep);
}

.service-depth-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.92fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
}

.depth-photo {
  position: relative;
  height: 660px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101110;
  isolation: isolate;
}

.depth-photo::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 14, 13, 0.02) 38%, rgba(13, 14, 13, 0.92) 100%),
    linear-gradient(145deg, rgba(174, 178, 181, 0.16), transparent 48%);
  pointer-events: none;
}

.depth-photo::after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  width: 72px;
  height: 1px;
  background: var(--silver);
  box-shadow: 0 0 16px rgba(174, 178, 181, 0.62);
}

.depth-photo .project-slide img {
  object-position: var(--project-position, 50% 48%);
  filter: saturate(0.68) contrast(1.08) brightness(0.68);
}

.depth-readout {
  position: absolute;
  z-index: 3;
  right: 30px;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.depth-readout span,
.depth-readout strong {
  font-family: var(--display);
  font-size: 0.57rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.depth-readout span {
  color: var(--muted);
}

.depth-readout strong {
  margin-left: auto;
  color: var(--silver);
}

.depth-content h2 {
  margin-bottom: 52px;
}

.service-accordions {
  border-top: 1px solid var(--line);
}

.service-accordions details {
  border-bottom: 1px solid var(--line);
}

.service-accordions summary {
  display: flex;
  min-height: 80px;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

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

.summary-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.summary-icon::before,
.summary-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--silver);
  transform: translate(-50%, -50%);
  transition: transform 250ms ease;
}

.summary-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .summary-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.service-accordions details > p {
  max-width: 610px;
  padding: 0 62px 28px 0;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.75;
}

.urgent-panel {
  position: relative;
  display: grid;
  grid-template-columns: 120px minmax(0, 1.2fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 50px;
  min-height: 330px;
  padding: 60px 68px;
  overflow: hidden;
  background: var(--silver-bright);
  color: #1b1c1c;
}

.urgent-panel::before {
  content: "";
  position: absolute;
  top: -320px;
  right: -100px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(24, 25, 25, 0.13);
  border-radius: 50%;
}

.urgent-panel::after {
  content: "";
  position: absolute;
  top: -245px;
  right: -24px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(24, 25, 25, 0.1);
  border-radius: 50%;
}

.urgent-signal {
  position: relative;
  width: 106px;
  height: 106px;
}

.urgent-signal span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(24, 25, 25, 0.52);
  border-radius: 50%;
  animation: urgent-pulse 2.8s ease-out infinite;
}

.urgent-signal span:nth-child(2) {
  animation-delay: 0.85s;
}

.urgent-signal span:nth-child(3) {
  inset: 43px;
  background: #1b1c1c;
  border: 0;
  animation: none;
  box-shadow: 0 0 0 8px rgba(24, 25, 25, 0.1);
}

.eyebrow-dark {
  color: rgba(24, 25, 25, 0.62);
}

.eyebrow-dark > span {
  background: #1b1c1c;
  box-shadow: none;
}

.urgent-copy {
  position: relative;
  z-index: 2;
}

.urgent-copy h2 {
  font-size: clamp(2.4rem, 3.8vw, 4.4rem);
}

.urgent-copy > p:last-child {
  max-width: 640px;
  margin-top: 22px;
  color: rgba(24, 25, 25, 0.74);
  font-size: 0.92rem;
}

.urgent-call {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 20px;
  padding: 28px 0 17px;
  border-bottom: 1px solid rgba(24, 25, 25, 0.52);
}

.urgent-call small {
  grid-column: 1 / -1;
  color: rgba(24, 25, 25, 0.66);
  font-family: var(--display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.urgent-call span {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.urgent-call b {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 250ms var(--ease);
}

.urgent-call:hover b {
  transform: translate(4px, -4px);
}

.why-us {
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  bottom: -270px;
  left: -270px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(174, 178, 181, 0.08);
  border-radius: 50%;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1fr);
  gap: clamp(80px, 10vw, 170px);
}

.why-copy {
  position: sticky;
  top: 145px;
  align-self: start;
}

.why-copy h2 {
  white-space: nowrap;
}

.why-break-mobile {
  display: none;
}

.why-intro {
  max-width: 610px;
  margin-top: 35px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--silver-line);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--silver);
  font-size: 1rem;
  transition: transform 250ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.why-points {
  padding-left: clamp(48px, 4.5vw, 86px);
  border-top: 1px solid var(--line);
}

.why-point {
  min-height: 215px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.why-point h3 {
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.3;
}

.why-point p {
  max-width: 560px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reviews {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.reviews::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--brand-gradient);
}

.reviews-orbit {
  position: absolute;
  top: -300px;
  right: -120px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(29, 29, 27, 0.08);
  border-radius: 50%;
}

.reviews-orbit::before,
.reviews-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(29, 29, 27, 0.06);
  border-radius: 50%;
}

.reviews-orbit::before {
  inset: 90px;
}

.reviews-orbit::after {
  inset: 180px;
}

.reviews .eyebrow {
  color: #697174;
}

.reviews-heading > p {
  color: #626a6d;
}

.review-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  border-top: 1px solid rgba(29, 29, 27, 0.16);
  border-bottom: 1px solid rgba(29, 29, 27, 0.16);
}

.review-rail {
  display: flex;
  min-height: 460px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-block: 48px;
  border-right: 1px solid rgba(29, 29, 27, 0.16);
  color: #5d6567;
  font-family: var(--display);
  font-size: 0.61rem;
  letter-spacing: 0.14em;
}

.review-rail i {
  width: 1px;
  height: 225px;
  background: linear-gradient(to bottom, var(--silver), rgba(29, 29, 27, 0.15));
}

.review-viewport {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  transition: height 300ms var(--ease);
}

.review-track {
  display: flex;
  height: 100%;
  transition: transform 650ms var(--ease);
  will-change: transform;
}

.review-slide {
  display: flex;
  min-width: 100%;
  min-height: 460px;
  flex-direction: column;
  justify-content: center;
  padding: 70px clamp(50px, 7vw, 110px) 82px;
}

.quote-mark {
  height: 53px;
  margin-bottom: 11px;
  color: var(--silver);
  font-family: Georgia, serif;
  font-size: 5.6rem;
  line-height: 1;
}

.review-slide blockquote {
  max-width: 1060px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.25vw, 2.25rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.48;
}

.review-slide footer {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.review-slide footer::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--silver);
}

.review-slide footer strong {
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.review-slide footer time {
  color: #6c7376;
  font-size: 0.74rem;
}

.carousel-controls {
  position: absolute;
  right: 0;
  bottom: -78px;
  left: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.carousel-dot {
  width: 24px;
  height: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dot::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin: auto;
  background: rgba(29, 29, 27, 0.25);
  border-radius: 50%;
  transition: background 200ms ease, box-shadow 200ms ease;
}

.carousel-dot.is-active::before {
  background: var(--silver);
  box-shadow: 0 0 0 5px rgba(174, 178, 181, 0.13);
}

.carousel-buttons {
  display: flex;
  gap: 8px;
}

.carousel-buttons button {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(29, 29, 27, 0.22);
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.carousel-buttons button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.carousel-autoplay-icon {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
}

.carousel-autoplay-icon::before,
.carousel-autoplay-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.carousel-autoplay-icon[data-icon="pause"]::before,
.carousel-autoplay-icon[data-icon="pause"]::after {
  top: 1px;
  width: 2px;
  height: 14px;
  border-radius: 999px;
}

.carousel-autoplay-icon[data-icon="pause"]::before {
  left: 4px;
}

.carousel-autoplay-icon[data-icon="pause"]::after {
  right: 4px;
}

.carousel-autoplay-icon[data-icon="play"]::before {
  inset: 1px 1px 1px 3px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.carousel-autoplay-icon[data-icon="play"]::after {
  display: none;
}

.contact {
  position: relative;
  padding-top: 210px;
  overflow: hidden;
  background: var(--ink-deep);
}

.contact-circuit {
  position: absolute;
  top: 100px;
  right: 7%;
  width: 320px;
  height: 100px;
  border-top: 1px solid var(--silver-line);
  border-left: 1px solid var(--silver-line);
  transform: skewX(-45deg);
}

.contact-circuit::before,
.contact-circuit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--ink-deep);
  border: 1px solid var(--silver);
  border-radius: 50%;
}

.contact-circuit::before {
  top: -5px;
  right: -5px;
}

.contact-circuit::after {
  bottom: -5px;
  left: -5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.82fr) minmax(520px, 1fr);
  align-items: start;
  gap: clamp(70px, 10vw, 165px);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.direct-contact {
  margin-top: 58px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-copy .direct-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-phone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.75rem, 2.6vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.3;
}

.direct-phone span {
  color: var(--silver);
  font-size: 1.5rem;
  transition: transform 250ms var(--ease);
}

.direct-phone:hover span {
  transform: translate(4px, -4px);
}

.contact-copy .direct-contact > p:last-child {
  margin-top: 7px;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.contact-details {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  margin-top: 38px;
}

.contact-details dt {
  margin-bottom: 10px;
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-details dd {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.75;
}

.contact-details a {
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-details a:hover {
  color: var(--paper);
  border-color: var(--silver-line);
}

.form-wrap {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.018);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 23px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-dark);
  font-family: var(--display);
  font-size: 0.54rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading span:first-child {
  color: var(--paper);
}

#contact-form {
  padding: clamp(30px, 4vw, 55px);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

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

.form-field {
  position: relative;
  margin-bottom: 27px;
}

.form-field label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 9px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--silver);
}

.form-field label small {
  color: var(--muted-dark);
  font-family: var(--body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 55px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, 0.018);
  color: var(--paper);
  font-size: 1rem;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--silver);
  background: rgba(174, 178, 181, 0.035);
  box-shadow: 0 0 0 3px rgba(174, 178, 181, 0.08);
}

.form-field select {
  appearance: none;
  padding-right: 50px;
  cursor: pointer;
}

.form-field select option {
  background: var(--ink-soft);
  color: var(--paper);
}

.select-wrap {
  position: relative;
}

.select-wrap > span {
  position: absolute;
  top: 50%;
  right: 18px;
  color: var(--silver);
  font-size: 1.15rem;
  pointer-events: none;
  transform: translateY(-55%);
}

.consent-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
  margin: 1px 0 28px;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.55;
  cursor: pointer;
}

.consent-field input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.custom-checkbox {
  position: relative;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  border: 1px solid var(--line-strong);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.custom-checkbox::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--ink-deep);
  border-bottom: 2px solid var(--ink-deep);
  opacity: 0;
  transform: rotate(45deg);
}

.consent-field input:checked + .custom-checkbox {
  background: var(--silver);
  border-color: var(--silver);
}

.consent-field input:checked + .custom-checkbox::after {
  opacity: 1;
}

.consent-field input:focus-visible + .custom-checkbox {
  border-color: var(--silver);
  box-shadow: 0 0 0 4px rgba(174, 178, 181, 0.13);
}

.form-submit {
  width: 100%;
}

.form-submit[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

.form-status {
  margin-top: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 125, 125, 0.42);
  background: rgba(118, 28, 28, 0.18);
  color: var(--paper);
  font-size: 0.72rem;
  line-height: 1.6;
}

.form-footnote {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 0.67rem;
  line-height: 1.7;
  text-align: center;
}

.form-footnote a {
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: 290px minmax(240px, 1fr) auto;
  align-items: center;
  gap: 60px;
  min-height: 190px;
}

.footer-brand {
  position: relative;
  display: block;
  width: min(265px, 100%);
  aspect-ratio: 800 / 323;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-top > p {
  max-width: 500px;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.footer-call {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--silver-line);
  font-family: var(--display);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-call span,
.footer-bottom a span {
  color: var(--silver);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  min-height: 82px;
  border-top: 1px solid var(--line);
  color: var(--muted-dark);
  font-size: 0.65rem;
}

.footer-bottom address {
  text-align: center;
}

.footer-meta-links {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 28px;
}

.footer-meta-links a {
  justify-self: end;
  color: var(--muted);
}

.mobile-action-bar {
  display: none;
}

.call-dialog {
  width: min(680px, calc(100vw - 48px));
  max-width: none;
  max-height: none;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  color: var(--paper);
}

.call-dialog::backdrop {
  background: rgba(7, 9, 9, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(0.72);
  backdrop-filter: blur(18px) saturate(0.72);
}

.call-dialog[open]::backdrop {
  animation: call-dialog-backdrop-in 260ms ease both;
}

.call-dialog-panel {
  position: relative;
  max-height: calc(100vh - 48px);
  padding: clamp(38px, 5vw, 64px);
  overflow: hidden auto;
  background:
    linear-gradient(140deg, rgba(174, 178, 181, 0.08), transparent 38%),
    #181918;
  border: 1px solid rgba(247, 247, 244, 0.2);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.55), 0 0 50px rgba(174, 178, 181, 0.07);
  isolation: isolate;
}

.call-dialog[open] .call-dialog-panel {
  animation: call-dialog-panel-in 430ms var(--ease) both;
}

.call-dialog-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -210px;
  right: -170px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(174, 178, 181, 0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(174, 178, 181, 0.025);
}

.call-dialog-panel::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 76px;
  height: 2px;
  background: var(--brand-gradient);
  box-shadow: 0 0 18px rgba(174, 178, 181, 0.65);
}

.call-dialog-close {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  width: 46px;
  height: 46px;
  padding: 0;
  background: rgba(247, 247, 244, 0.025);
  border: 1px solid var(--line-strong);
  color: var(--paper);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms var(--ease);
}

.call-dialog-close:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  transform: rotate(4deg);
}

.call-dialog-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 1px;
  background: currentColor;
}

.call-dialog-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.call-dialog-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.call-dialog-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 64px;
  color: var(--silver-bright);
  font-family: var(--display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.call-dialog-phone-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(174, 178, 181, 0.34);
  background: rgba(174, 178, 181, 0.08);
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 0 100%);
}

.call-dialog-phone-icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background: currentColor;
  -webkit-mask: url("icons/phone.svg") center / contain no-repeat;
  mask: url("icons/phone.svg") center / contain no-repeat;
}

.call-dialog h2 {
  max-width: 560px;
  margin-top: 34px;
  font-family: var(--display);
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.call-dialog h2 + p {
  max-width: 570px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.call-dialog-number {
  display: inline-block;
  margin-top: 30px;
  color: var(--silver-bright);
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.45rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.1;
  white-space: nowrap;
  transition: color 220ms ease;
}

.call-dialog-number:hover {
  color: var(--paper);
}

.call-dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}

.call-dialog-actions .button {
  width: 100%;
}

.call-dialog-copy-icon {
  width: 18px;
  height: 18px;
  background: currentColor;
  -webkit-mask: url("icons/copy.svg") center / contain no-repeat;
  mask: url("icons/copy.svg") center / contain no-repeat;
}

@keyframes call-dialog-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes call-dialog-panel-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.975);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.motion-ready .reveal {
  --reveal-x: 0px;
  --reveal-y: 40px;
  --reveal-scale: 1;
  --reveal-delay: 0ms;
  --reveal-duration: 820ms;
  opacity: 0;
  translate: var(--reveal-x) var(--reveal-y);
  scale: var(--reveal-scale);
}

.motion-ready .reveal[data-reveal="left"] {
  --reveal-x: -44px;
  --reveal-y: 0px;
}

.motion-ready .reveal[data-reveal="right"] {
  --reveal-x: 44px;
  --reveal-y: 0px;
}

.motion-ready .reveal[data-reveal="scale"] {
  --reveal-y: 22px;
  --reveal-scale: 0.965;
  --reveal-duration: 900ms;
}

.motion-ready .reveal[data-reveal="card"] {
  --reveal-y: 38px;
  --reveal-scale: 0.985;
}

.motion-ready .reveal[data-reveal="heading"] {
  --reveal-y: 30px;
  --reveal-duration: 880ms;
}

.motion-ready .reveal[data-reveal="fade"] {
  --reveal-y: 14px;
  --reveal-duration: 700ms;
}

.motion-ready .reveal[data-reveal-delay="1"] {
  --reveal-delay: 100ms;
}

.motion-ready .reveal[data-reveal-delay="2"] {
  --reveal-delay: 200ms;
}

.motion-ready [data-stagger] > .reveal:nth-child(3n + 2) {
  --reveal-delay: 85ms;
}

.motion-ready [data-stagger] > .reveal:nth-child(3n + 3) {
  --reveal-delay: 170ms;
}

.motion-ready .reveal.is-visible {
  animation: reveal-item var(--reveal-duration) var(--ease) var(--reveal-delay) both;
}

.motion-ready .reveal.is-visible .eyebrow > span {
  animation: reveal-accent 720ms var(--ease) calc(var(--reveal-delay) + 220ms) both;
  transform-origin: left;
}

@keyframes reveal-item {
  from {
    opacity: 0;
    translate: var(--reveal-x) var(--reveal-y);
    scale: var(--reveal-scale);
  }

  to {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }
}

@keyframes reveal-accent {
  from {
    opacity: 0;
    transform: scaleX(0);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

.thank-you-page {
  min-height: 100vh;
  overflow: hidden;
}

.thank-you-main {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 60px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 35%, rgba(174, 178, 181, 0.12), transparent 30%),
    var(--ink);
}

.thank-you-main::before,
.thank-you-main::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.thank-you-main::before {
  top: 0;
  bottom: 0;
  left: 12%;
  width: 1px;
  background: var(--line);
}

.thank-you-main::after {
  top: 12%;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
}

.thank-you-orbit {
  position: absolute;
  top: 50%;
  left: 75%;
  width: min(70vw, 760px);
  height: min(70vw, 760px);
  border: 1px solid rgba(174, 178, 181, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.thank-you-orbit span {
  position: absolute;
  border-radius: 50%;
}

.thank-you-orbit span:nth-child(1) {
  inset: 90px;
  border: 1px dashed var(--line);
  animation: orbit-spin 35s linear infinite;
}

.thank-you-orbit span:nth-child(2) {
  inset: 190px;
  border: 1px solid rgba(174, 178, 181, 0.26);
}

.thank-you-orbit span:nth-child(3) {
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  background: var(--silver);
  box-shadow: 0 0 20px rgba(174, 178, 181, 0.8);
}

.thank-you-card {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(36px, 7vw, 86px);
  background: rgba(21, 21, 20, 0.84);
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.28);
}

.thank-you-brand {
  position: relative;
  display: block;
  width: min(250px, 100%);
  aspect-ratio: 800 / 323;
  margin: -25px 0 35px;
}

.thank-you-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thank-you-card h1 {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.thank-you-card > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 1rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

@keyframes signal-pulse {
  0% {
    opacity: 0.75;
    transform: scale(0.55);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(1.6);
  }
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes line-travel {
  0% {
    transform: translateX(-100%);
  }
  45%,
  55% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes urgent-pulse {
  0% {
    opacity: 0.62;
    transform: scale(0.35);
  }
  78%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes project-burn-one {
  from {
    transform: scale(1.025) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.15) translate3d(-1.7%, -1%, 0);
  }
}

@keyframes project-burn-two {
  from {
    transform: scale(1.14) translate3d(-1.2%, -0.8%, 0);
  }
  to {
    transform: scale(1.025) translate3d(1.2%, 0.7%, 0);
  }
}

@keyframes project-burn-three {
  from {
    transform: scale(1.035) translate3d(-1.6%, 0.8%, 0);
  }
  to {
    transform: scale(1.145) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes project-burn-four {
  from {
    transform: scale(1.13) translate3d(1.1%, -0.6%, 0);
  }
  to {
    transform: scale(1.035) translate3d(-1%, 0.8%, 0);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: 205px 1fr auto;
  }

  .desktop-nav {
    justify-self: end;
  }

  .header-call {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.78fr);
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 6.2vw, 5.6rem);
  }

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

  .hero-photo {
    min-height: 330px;
  }

  .assurance-grid > div {
    padding-inline: 24px;
  }

  .urgent-panel {
    grid-template-columns: 86px minmax(0, 1fr) minmax(260px, 0.65fr);
    gap: 34px;
    padding-inline: 45px;
  }

  .urgent-signal {
    width: 78px;
    height: 78px;
  }

  .urgent-signal span:nth-child(3) {
    inset: 32px;
  }

  .contact-grid {
    grid-template-columns: minmax(330px, 0.72fr) minmax(500px, 1fr);
    gap: 65px;
  }
}

@media (max-width: 980px) {
  .motion-ready .reveal {
    --reveal-y: 30px;
    --reveal-duration: 740ms;
  }

  .motion-ready .reveal[data-reveal="left"] {
    --reveal-x: -30px;
  }

  .motion-ready .reveal[data-reveal="right"] {
    --reveal-x: 30px;
  }

  .motion-ready .reveal[data-reveal="scale"] {
    --reveal-y: 18px;
    --reveal-scale: 0.975;
    --reveal-duration: 780ms;
  }

  .motion-ready [data-stagger] > .reveal:nth-child(n) {
    --reveal-delay: 0ms;
  }

  .section-inner {
    width: min(var(--section-width), calc(100% - 48px));
  }

  .section-pad {
    padding-block: 110px;
  }

  .header-inner {
    grid-template-columns: 205px 1fr;
    width: calc(100% - 36px);
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: grid;
    width: 50px;
    height: 50px;
    justify-self: end;
    place-content: center;
    gap: 7px;
    padding: 0;
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--paper);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
    transition: transform 250ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: block;
    padding: 132px 24px 40px;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background: rgba(10, 10, 9, 0.86);
    opacity: 0;
    transform: translateY(-10px);
    -webkit-backdrop-filter: blur(24px) brightness(0.45) saturate(0.65);
    backdrop-filter: blur(24px) brightness(0.45) saturate(0.65);
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms;
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-inner {
    display: flex;
    max-width: 720px;
    min-height: 100%;
    flex-direction: column;
    margin-inline: auto;
  }

  .mobile-nav-inner > a:not(.button) {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: clamp(1.5rem, 5vw, 2.4rem);
    font-weight: 300;
    letter-spacing: -0.03em;
  }

  .mobile-nav-inner > a:not(.button) span {
    color: var(--silver);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }

  .mobile-nav-contact {
    margin-top: auto;
    padding-top: 36px;
  }

  .mobile-nav-contact p {
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    padding-top: 158px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }

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

  .hero h1 {
    font-size: clamp(4rem, 9vw, 6.3rem);
  }

  .hero-panel {
    width: min(620px, 100%);
    min-height: 650px;
    justify-self: end;
  }

  .hero-foot {
    margin-top: 55px;
  }

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

  .assurance-grid > div {
    min-height: 105px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid > div:last-child {
    border-bottom: 0;
  }

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

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

  .depth-photo {
    width: min(680px, 100%);
    height: 610px;
  }

  .depth-content {
    max-width: 760px;
  }

  .urgent-panel {
    grid-template-columns: 88px 1fr;
  }

  .urgent-call {
    grid-column: 2;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .why-copy {
    position: static;
  }

  .why-points {
    max-width: 800px;
    padding-left: 0;
  }

  .contact {
    padding-top: 175px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .contact-copy {
    max-width: 720px;
  }

  .contact-details {
    max-width: 560px;
  }

  .form-wrap {
    width: min(760px, 100%);
  }

  .footer-top {
    grid-template-columns: 260px 1fr;
  }

  .footer-call {
    grid-column: 2;
    width: max-content;
    margin-top: -35px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    padding-block: 20px;
  }

  .footer-bottom address {
    display: none;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .motion-ready .services-grid[data-stagger] > .reveal:nth-child(even) {
    --reveal-delay: 75ms;
  }
}

@media (max-width: 720px) {
  .motion-ready .reveal {
    --reveal-y: 22px;
    --reveal-duration: 640ms;
  }

  .motion-ready .reveal[data-reveal="left"],
  .motion-ready .reveal[data-reveal="right"] {
    --reveal-x: 0px;
    --reveal-y: 24px;
  }

  .motion-ready .reveal[data-reveal="scale"] {
    --reveal-y: 14px;
    --reveal-scale: 0.985;
    --reveal-duration: 680ms;
  }

  .motion-ready .reveal[data-reveal="card"] {
    --reveal-y: 24px;
    --reveal-scale: 0.992;
  }

  .motion-ready .reveal[data-reveal="heading"] {
    --reveal-y: 20px;
  }

  .motion-ready .reveal[data-reveal-delay="1"] {
    --reveal-delay: 55ms;
  }

  .motion-ready .reveal[data-reveal-delay="2"] {
    --reveal-delay: 110ms;
  }

  .motion-ready [data-stagger] > .reveal:nth-child(n) {
    --reveal-delay: 0ms;
  }

  html {
    scroll-padding-top: 82px;
  }

  body {
    padding-bottom: 70px;
  }

  .section-inner {
    width: calc(100% - 34px);
  }

  .section-pad {
    padding-block: 90px;
  }

  .section-pad-small {
    padding-block: 48px;
  }

  .header-inner {
    width: calc(100% - 24px);
    min-height: 82px;
  }

  .brand {
    width: 182px;
  }

  .brand img {
    width: 100%;
  }

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

  .mobile-nav {
    padding-top: 112px;
    padding-bottom: 95px;
  }

  .hero {
    padding-top: 132px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 15vw, 5.2rem);
    line-height: 1.01;
  }

  .hero-intro {
    margin-top: 28px;
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 33px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-panel {
    min-height: 510px;
    padding: 20px;
  }

  .panel-heading {
    gap: 15px;
    font-size: 0.48rem;
  }

  .hero-photo {
    min-height: 290px;
    margin-block: 20px 18px;
  }

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

  .hero-foot,
  .assurance-strip {
    display: none;
  }

  .assurance-grid > div {
    padding-inline: 23px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 48px;
  }

  .section-heading h2,
  .depth-content h2,
  .urgent-copy h2,
  .why-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.65rem, 12vw, 4.1rem);
  }

  .why-copy h2 {
    max-width: none;
    font-size: clamp(2rem, 10.2vw, 2.9rem);
    line-height: 1.06;
  }

  .why-break-desktop {
    display: none;
  }

  .why-break-mobile {
    display: initial;
  }

  .section-heading > p {
    font-size: 0.9rem;
  }

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

  .service-card {
    min-height: 330px;
    padding: 30px 27px;
  }

  .card-top {
    margin-bottom: 46px;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .service-icon::before {
    width: 22px;
    height: 22px;
  }

  .depth-photo {
    height: 480px;
  }

  .depth-readout {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .service-accordions summary {
    min-height: 75px;
    font-size: 0.95rem;
  }

  .service-accordions details > p {
    padding-right: 20px;
  }

  .urgent-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 38px 27px;
  }

  .urgent-signal {
    width: 62px;
    height: 62px;
  }

  .urgent-signal span:nth-child(3) {
    inset: 26px;
  }

  .urgent-call {
    grid-column: auto;
  }

  .why-grid {
    gap: 52px;
  }

  .why-point {
    min-height: auto;
    padding-block: 34px;
  }

  .review-carousel {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .review-rail {
    min-height: 520px;
    padding-block: 35px;
  }

  .review-rail i {
    height: 290px;
  }

  .review-viewport,
  .review-slide {
    min-height: 520px;
  }

  .review-slide {
    padding: 50px 24px 58px;
  }

  .quote-mark {
    margin-bottom: 0;
    font-size: 4.8rem;
  }

  .review-slide blockquote {
    font-size: clamp(1.1rem, 5.3vw, 1.35rem);
    line-height: 1.52;
  }

  .review-slide footer {
    flex-wrap: wrap;
    gap: 8px 13px;
    margin-top: 28px;
  }

  .review-slide footer time {
    flex-basis: calc(100% - 45px);
    margin-left: 45px;
  }

  .carousel-controls {
    bottom: -72px;
    left: 42px;
  }

  .carousel-buttons button {
    width: 48px;
    height: 48px;
  }

  .contact {
    padding-top: 160px;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    padding-inline: 23px;
  }

  #contact-form {
    padding: 28px 22px;
  }

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

  .site-footer {
    padding-bottom: 15px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-block: 28px 42px;
  }

  .footer-call {
    grid-column: auto;
    width: max-content;
    margin-top: 9px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 20px;
  }

  .footer-meta-links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    min-height: 70px;
    background: var(--ink-deep);
    border-top: 1px solid var(--line-strong);
    box-shadow: 0 -12px 35px rgba(0, 0, 0, 0.24);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 2px));
    transition: opacity 250ms ease, transform 380ms var(--ease), visibility 0s linear 380ms;
  }

  .mobile-action-bar.is-visible {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-action-bar a {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: center;
    padding: 11px 12px;
    font-family: var(--display);
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
  }

  .mobile-action-bar a:first-child {
    align-items: flex-start;
    flex-direction: column;
    border-right: 1px solid var(--line);
  }

  .mobile-action-bar a:first-child span {
    color: var(--muted-dark);
    font-family: var(--body);
    font-size: 0.51rem;
    letter-spacing: 0.12em;
  }

  .mobile-action-bar a:first-child strong {
    color: var(--paper);
    font-size: 0.74rem;
    font-weight: 500;
  }

  .mobile-action-bar a:last-child {
    gap: 10px;
    background: var(--silver-bright);
    color: #171818;
  }

  .thank-you-card {
    padding: 35px 27px 42px;
  }

  .thank-you-brand {
    margin-bottom: 20px;
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .button {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 3.05rem;
  }

  .hero-panel {
    min-height: 465px;
  }

  .hero-photo {
    min-height: 250px;
  }

  .panel-services p {
    font-size: 0.59rem;
  }

  .depth-photo {
    height: 420px;
  }

  .review-viewport,
  .review-slide,
  .review-rail {
    min-height: 575px;
  }

  .carousel-dots {
    gap: 4px;
  }

  .carousel-buttons button {
    width: 44px;
    height: 44px;
  }

  .direct-phone {
    font-size: 1.6rem;
  }
}

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

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

  .motion-ready .reveal,
  .motion-ready .reveal.is-visible {
    opacity: 1;
    translate: 0 0;
    scale: 1;
    animation: none !important;
  }

  .motion-ready .reveal.is-visible .eyebrow > span {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .project-slide {
    transition: none !important;
  }

  .project-slide img {
    animation: none !important;
    transform: scale(1.02) !important;
    will-change: auto;
  }
}

.hero {
  min-height: max(860px, 100svh);
  padding: 164px 0 84px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 32%, rgba(215, 217, 218, 0.075), transparent 29%),
    linear-gradient(145deg, #0d0e0d 0%, #151615 54%, #1d1e1d 100%);
}

.hero::before {
  top: 86px;
  right: -10vw;
  bottom: auto;
  left: auto;
  width: clamp(560px, 58vw, 930px);
  height: clamp(560px, 58vw, 930px);
  border: 1px solid rgba(215, 217, 218, 0.13);
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.hero::after {
  top: 230px;
  right: 4vw;
  bottom: auto;
  left: auto;
  width: clamp(360px, 37vw, 590px);
  height: clamp(360px, 37vw, 590px);
  border: 1px dashed rgba(215, 217, 218, 0.18);
  border-radius: 50%;
  background: transparent;
  pointer-events: none;
}

.hero-circuit-one {
  top: 304px;
  right: 20%;
  width: 330px;
  height: 330px;
  border: 1px dotted rgba(215, 217, 218, 0.16);
  border-radius: 50%;
}

.hero-circuit-one::before {
  inset: 58px;
  border: 1px solid rgba(215, 217, 218, 0.08);
}

.hero-circuit-one::after {
  display: none;
}

.hero-circuit-two {
  top: auto;
  right: auto;
  bottom: -350px;
  left: 32%;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(215, 217, 218, 0.07);
  border-radius: 50%;
  transform: none;
}

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

.hero-prefix {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: clamp(58px, 6.5vw, 102px);
  color: var(--silver-bright);
  font-family: var(--display);
  font-size: clamp(0.72rem, 0.95vw, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.28em;
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}

.hero-prefix span {
  width: clamp(30px, 4vw, 58px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-bright));
}

.hero-prefix span:last-child {
  background: linear-gradient(90deg, var(--silver-bright), transparent);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.72fr);
  align-items: end;
  gap: clamp(64px, 7.2vw, 128px);
}

.hero-copy {
  max-width: 820px;
  padding-bottom: 6px;
}

.hero h1 {
  max-width: 820px;
  font-family: var(--display);
  font-size: clamp(4.35rem, 6.3vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
}

.hero-intro {
  max-width: 720px;
  margin-top: clamp(34px, 4vw, 52px);
  color: #c4c8ca;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.72;
}

.hero-conversion {
  width: min(100%, 560px);
  justify-self: end;
}

.hero-contact-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: linear-gradient(125deg, #f4f4f2 0%, #d9dcdd 58%, #c4c7c9 100%);
  color: #101110;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.hero-call-row,
.hero-whatsapp-row {
  display: grid;
  align-items: center;
  transition: background-color 220ms ease;
}

.hero-call-row {
  min-height: 98px;
  grid-template-columns: 54px minmax(0, 1fr) 40px;
  gap: 19px;
  padding: 18px 22px;
}

.hero-call-row:hover {
  background: rgba(255, 255, 255, 0.58);
}

.hero-whatsapp-row {
  min-height: 72px;
  grid-template-columns: 48px minmax(0, 1fr) 26px;
  gap: 16px;
  padding: 13px 24px 15px;
  border-top: 1px solid rgba(16, 17, 16, 0.18);
  font-size: 0.98rem;
}

.hero-whatsapp-row:hover {
  background: rgba(255, 255, 255, 0.36);
}

.hero-whatsapp-row strong {
  color: #159c49;
  font-weight: 700;
}

.hero-call-copy {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--display);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-call-copy strong {
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.hero-icon,
.hero-card-arrow {
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.hero-icon {
  width: 54px;
  height: 54px;
}

.hero-card-arrow {
  width: 40px;
  height: 40px;
}

.hero-chevron {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
}

.hero-icon::before,
.hero-card-arrow::before,
.hero-chevron::before {
  content: "";
  width: 21px;
  height: 21px;
  background: currentColor;
  -webkit-mask: var(--hero-icon-url) center / contain no-repeat;
  mask: var(--hero-icon-url) center / contain no-repeat;
}

.hero-icon-phone {
  --hero-icon-url: url("icons/phone.svg");
}

.hero-icon-whatsapp {
  --hero-icon-url: url("icons/whatsapp.svg");
  width: 46px;
  height: 46px;
  border-color: transparent;
  color: #17aa52;
}

.hero-icon-whatsapp::before {
  width: 39px;
  height: 39px;
}

.hero-icon-arrow-up {
  --hero-icon-url: url("icons/arrow-up-right.svg");
}

.hero-icon-arrow-down {
  --hero-icon-url: url("icons/arrow-down.svg");
}

.hero-icon-chevron-right {
  --hero-icon-url: url("icons/chevron-right.svg");
}

.hero-quote {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 18px;
  padding: 17px 22px 17px 28px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, transform 220ms var(--ease);
}

.hero-quote:hover {
  border-color: var(--silver-bright);
  background: var(--silver-bright);
  color: #101110;
  transform: translateY(-3px);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
  margin-top: 28px;
}

.hero-trust-link {
  display: grid;
  min-height: 68px;
  place-items: center;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #fff;
  background-image: none;
  color-scheme: light;
  isolation: isolate;
  opacity: 1;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  transition: border-color 220ms ease, transform 220ms var(--ease), box-shadow 220ms ease;
}

.hero-trust-link:hover {
  border-color: var(--silver-bright);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(-4px);
}

.hero-trust-link img {
  width: 100%;
  max-width: 118px;
  max-height: 62px;
  object-fit: contain;
  filter: none;
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-trust-niceic img {
  max-width: 96%;
  max-height: 58px;
}

.hero-trust-checkatrade img {
  max-width: 100%;
  max-height: 34px;
}

.hero-trust-tradesmen img {
  max-width: 92%;
  max-height: 62px;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 8px;
  color: #1f1f1f;
  line-height: 1;
  text-align: center;
}

.google-rating-logo {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  overflow: hidden;
}

.hero-google-rating .google-rating-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 136px;
  height: 136px;
  max-width: none;
  max-height: none;
  transform: translate(-50%, -50%);
}

.google-rating-badge strong {
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.google-rating-copy {
  display: grid;
  justify-items: start;
  gap: 3px;
  text-align: left;
}

.google-rating-line {
  display: flex;
  align-items: center;
  gap: 3px;
}

.google-rating-star {
  color: #f4b400;
  font-size: 0.78rem;
  line-height: 0.8;
}

.google-rating-platform {
  color: #4f5152;
  font-family: var(--body);
  font-size: 0.61rem;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.75fr);
    gap: 52px;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.35vw, 5.65rem);
  }

  .hero-call-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding: 150px 0 90px;
  }

  .hero::before {
    top: 180px;
    right: -32vw;
  }

  .hero::after {
    top: 285px;
    right: -17vw;
  }

  .hero-circuit-one {
    top: 360px;
    right: -9%;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .hero h1 {
    max-width: 850px;
    font-size: clamp(4.25rem, 10.5vw, 6.4rem);
  }

  .hero-conversion {
    width: min(100%, 720px);
    justify-self: start;
  }

  .hero-call-copy {
    align-items: baseline;
    flex-direction: row;
    gap: 9px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 126px 0 58px;
  }

  .hero::before {
    top: 190px;
    right: -74vw;
    width: 150vw;
    height: 150vw;
  }

  .hero::after {
    top: 280px;
    right: -42vw;
    width: 96vw;
    height: 96vw;
  }

  .hero-circuit-one {
    top: 320px;
    right: -44vw;
    width: 90vw;
    height: 90vw;
  }

  .hero-circuit-two {
    bottom: -250px;
    left: -55%;
    width: 560px;
    height: 560px;
  }

  .hero-prefix {
    gap: 14px;
    margin-bottom: 50px;
    font-size: 0.66rem;
    letter-spacing: 0.24em;
  }

  .hero-prefix span {
    width: 30px;
  }

  .hero-layout {
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15.2vw, 5.2rem);
    line-height: 1.01;
  }

  .hero-intro {
    margin-top: 31px;
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-call-row {
    min-height: 92px;
    grid-template-columns: 46px minmax(0, 1fr) 36px;
    gap: 15px;
    padding: 16px 18px;
  }

  .hero-whatsapp-row {
    min-height: 70px;
    grid-template-columns: 43px minmax(0, 1fr) 24px;
    gap: 13px;
    padding: 12px 19px 14px;
    font-size: 0.93rem;
  }

  .hero-icon {
    width: 46px;
    height: 46px;
  }

  .hero-icon-whatsapp {
    width: 43px;
    height: 43px;
  }

  .hero-icon-whatsapp::before {
    width: 36px;
    height: 36px;
  }

  .hero-card-arrow {
    width: 36px;
    height: 36px;
  }

  .hero-call-copy {
    font-size: 0.72rem;
  }

  .hero-call-copy strong {
    font-size: 0.94rem;
  }

  .hero-quote {
    min-height: 72px;
    padding: 15px 18px 15px 22px;
    font-size: 0.72rem;
  }

  .hero-trust {
    gap: 6px;
    margin-top: 22px;
  }

  .hero-trust-link {
    min-height: 64px;
    padding: 3px;
  }

  .google-rating-badge {
    flex-direction: column;
  }

  .google-rating-copy {
    justify-items: center;
    gap: 1px;
    text-align: center;
  }

  .google-rating-logo {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-google-rating .google-rating-mark {
    width: 90px;
    height: 90px;
  }

  .google-rating-badge strong {
    font-size: 0.46rem;
  }

  .google-rating-star {
    font-size: 0.55rem;
  }

  .google-rating-platform {
    font-size: 0.4rem;
  }
}

@media (max-width: 390px) {
  .hero-prefix {
    gap: 10px;
    font-size: 0.58rem;
  }

  .hero-prefix span {
    width: 22px;
  }

  .hero h1 {
    font-size: clamp(2.82rem, 14.8vw, 3.55rem);
  }

  .hero-call-row {
    grid-template-columns: 40px minmax(0, 1fr) 32px;
    gap: 12px;
    padding-inline: 14px;
  }

  .hero-call-copy {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .hero-call-copy strong {
    font-size: 0.88rem;
  }

  .hero-icon {
    width: 40px;
    height: 40px;
  }

  .hero-card-arrow {
    width: 32px;
    height: 32px;
  }

  .hero-icon::before,
  .hero-card-arrow::before,
  .hero-chevron::before {
    width: 18px;
    height: 18px;
  }

  .hero-whatsapp-row {
    grid-template-columns: 38px minmax(0, 1fr) 20px;
    gap: 10px;
    padding-inline: 14px;
    font-size: 0.82rem;
  }

  .hero-icon-whatsapp {
    width: 38px;
    height: 38px;
  }

  .hero-icon-whatsapp::before {
    width: 33px;
    height: 33px;
  }

  .hero-quote {
    letter-spacing: 0.12em;
  }

  .hero-trust-link {
    min-height: 58px;
    padding: 2px;
  }

  .hero-trust-link img {
    max-height: 44px;
  }

  .hero-trust-niceic img {
    max-width: 100%;
    max-height: 40px;
  }

  .hero-trust-checkatrade img {
    max-height: 25px;
  }

  .hero-trust-tradesmen img {
    max-width: 96%;
    max-height: 46px;
  }

  .google-rating-logo {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .hero-google-rating .google-rating-mark {
    width: 78px;
    height: 78px;
  }

  .google-rating-badge strong {
    font-size: 0.4rem;
  }

  .google-rating-star {
    font-size: 0.48rem;
  }

  .google-rating-platform {
    font-size: 0.36rem;
  }
}

.hero-layout {
  align-items: stretch;
}

.hero-conversion {
  width: min(100%, 600px);
  justify-self: start;
  margin-top: clamp(38px, 4vw, 52px);
}

.hero-visual {
  width: 100%;
  min-height: 780px;
  align-self: stretch;
}

.hero-visual .hero-photo {
  min-height: 540px;
  margin: 0;
}

.hero-visual-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--display);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-visual-footer span:last-child {
  color: var(--silver-bright);
  text-align: right;
}

@media (max-width: 1180px) {
  .hero-visual {
    min-height: 730px;
  }

  .hero-visual .hero-photo {
    min-height: 490px;
  }
}

@media (max-width: 980px) {
  .hero-visual {
    width: min(720px, 100%);
    min-height: 680px;
    justify-self: end;
  }

  .hero-visual .hero-photo {
    min-height: 470px;
  }
}

@media (max-width: 720px) {
  .hero-conversion {
    margin-top: 36px;
  }

  .hero-visual {
    width: 100%;
    min-height: 535px;
    padding: 20px;
  }

  .hero-visual .hero-photo {
    min-height: 350px;
  }

  .hero-visual-footer {
    gap: 14px;
    font-size: 0.48rem;
  }
}

@media (max-width: 390px) {
  .hero-visual {
    min-height: 485px;
  }

  .hero-visual .hero-photo {
    min-height: 310px;
  }

  .hero-visual-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .hero-visual-footer span:last-child {
    text-align: left;
  }
}
