:root {
  /* Heard Building Group (heardbuildinggroup.com.au) */
  --bg: #2e2e2e;
  --bg-soft: #353535;
  --bg-elevated: #3d3d3d;
  --text: #e2e1e1;
  --text-rgb: 226, 225, 225;
  --text-muted: #999997;
  --text-subtle: #6b665f;
  --accent: #1fc317;
  --accent-rgb: 31, 195, 23;
  --accent-soft: rgba(var(--accent-rgb), 0.14);
  --accent-hover: #27d41e;
  --accent-on: #2e2e2e;
  --accent-warm: #b3a89a;
  --accent-warm-rgb: 179, 168, 154;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  /* Wider canvas on large desktops while respecting viewport */
  --content-max: min(100%, 96rem);
}

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

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

html.page-loading,
html.page-loading body {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  background: var(--bg);
  background-image: radial-gradient(
    ellipse 120% 80% at 50% 100%,
    rgba(var(--accent-rgb), 0.08) 0%,
    transparent 55%
  );
  transition:
    opacity 0.45s var(--ease-out),
    visibility 0.45s step-end;
}

.page-loader--done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem;
}

.page-loader__building {
  position: relative;
  width: 6rem;
  min-height: 6.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 0.22rem;
}

.page-loader__ground {
  width: 6.5rem;
  height: 0.2rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 20%,
    var(--accent) 80%,
    transparent
  );
  opacity: 0.55;
  border-radius: 1px;
  transform-origin: center;
  animation: page-loader-ground-in 0.5s var(--ease-out) forwards;
}

.page-loader__floor {
  display: block;
  height: 0.95rem;
  border-radius: 1px;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  background: linear-gradient(
    180deg,
    rgba(var(--accent-rgb), 0.18) 0%,
    rgba(24, 30, 27, 0.95) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transform-origin: center bottom;
  transform: scaleY(0);
  opacity: 0;
}

.page-loader__floor--1 {
  width: 4.25rem;
  animation: page-loader-floor-rise 0.55s var(--ease-out) 0.12s forwards;
}

.page-loader__floor--2 {
  width: 3.5rem;
  animation: page-loader-floor-rise 0.55s var(--ease-out) 0.32s forwards;
}

.page-loader__floor--3 {
  width: 2.85rem;
  animation: page-loader-floor-rise 0.55s var(--ease-out) 0.52s forwards;
}

.page-loader__roof {
  width: 3.4rem;
  height: 1.35rem;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
  opacity: 0;
  transform: translateY(0.75rem);
  animation: page-loader-roof-set 0.55s var(--ease-out) 0.78s forwards;
}

.page-loader__crane {
  position: absolute;
  top: 0;
  right: -0.2rem;
  width: 2px;
  height: 3.25rem;
  background: linear-gradient(
    180deg,
    var(--accent) 0%,
    rgba(var(--accent-rgb), 0.35) 100%
  );
  border-radius: 1px;
  transform-origin: top center;
  transform: rotate(12deg) scaleY(0);
  animation: page-loader-crane 0.65s var(--ease-out) 0.05s forwards;
}

.page-loader__crane::after {
  content: "";
  position: absolute;
  bottom: -0.1rem;
  left: 50%;
  width: 1.35rem;
  height: 2px;
  margin-left: -1.35rem;
  background: var(--accent);
  opacity: 0.85;
  border-radius: 1px;
  transform-origin: right center;
  transform: rotate(-8deg);
}

.page-loader__text {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  animation: page-loader-text-pulse 1.4s ease-in-out 0.2s infinite;
}

@keyframes page-loader-ground-in {
  from {
    opacity: 0;
    transform: scaleX(0.6);
  }
  to {
    opacity: 0.55;
    transform: scaleX(1);
  }
}

@keyframes page-loader-floor-rise {
  from {
    opacity: 0;
    transform: scaleY(0);
  }
  to {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes page-loader-roof-set {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-loader-crane {
  from {
    transform: rotate(12deg) scaleY(0);
  }
  to {
    transform: rotate(12deg) scaleY(1);
  }
}

@keyframes page-loader-text-pulse {
  0%,
  100% {
    opacity: 0.65;
  }
  50% {
    opacity: 1;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.65rem 1rem;
  background: var(--accent);
  color: var(--accent-on);
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: translate3d(0, 0, 0);
  transition:
    transform 0.38s var(--ease-out),
    background-color 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    backdrop-filter 0.35s var(--ease-out),
    -webkit-backdrop-filter 0.35s var(--ease-out);
}

.site-header.site-header--frosted:not(.site-header--hidden) {
  background: rgba(12, 15, 13, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.site-header.site-header--hidden {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

.site-header__inner {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.logo__img {
  display: block;
  height: clamp(1.75rem, 2.4vw, 2.25rem);
  width: auto;
  max-height: 2.25rem;
  object-fit: contain;
  transition: filter 0.2s var(--ease-out);
}

.logo:hover .logo__img {
  filter: brightness(1.08);
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: flex-end;
}

.nav a {
  color: rgba(var(--text-rgb), 0.88);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(12, 15, 13, 0.65);
}

.nav a:hover {
  color: var(--text);
}

.site-header.site-header--frosted:not(.site-header--hidden) .nav a {
  text-shadow: 0 1px 3px rgba(12, 15, 13, 0.85);
}

/* —— Mobile anchored nav —— */
.nav-toggle {
  display: none;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 0.5rem;
  background: rgba(24, 30, 27, 0.55);
  color: var(--text);
  cursor: pointer;
  transition:
    border-color 0.25s var(--ease-out),
    background-color 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.nav-toggle:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(24, 30, 27, 0.82);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.nav-toggle__icon {
  position: relative;
  display: block;
  width: 1.125rem;
  height: 0.875rem;
}

.nav-toggle__bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.45, 0.64, 1),
    opacity 0.22s ease,
    top 0.42s cubic-bezier(0.34, 1.45, 0.64, 1),
    width 0.32s var(--ease-out);
}

.nav-toggle__bar:nth-child(1) {
  top: 0;
}

.nav-toggle__bar:nth-child(2) {
  top: calc(50% - 1px);
}

.nav-toggle__bar:nth-child(3) {
  top: calc(100% - 2px);
}

.site-header--nav-open .nav-toggle__bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
}

.site-header--nav-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.35);
}

.site-header--nav-open .nav-toggle__bar:nth-child(3) {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}

.site-header--nav-open .nav-toggle {
  border-color: rgba(var(--accent-rgb), 0.5);
  background: rgba(24, 30, 27, 0.92);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.12);
}

.nav-panel {
  --nav-panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-panel-spring: cubic-bezier(0.34, 1.35, 0.64, 1);
}

.nav-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 1.25rem;
  left: 1.25rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 35%,
    var(--accent-hover) 65%,
    transparent
  );
  transform: scaleX(0);
  transform-origin: right center;
  opacity: 0;
  transition:
    transform 0.55s var(--nav-panel-spring),
    opacity 0.35s ease;
}

.site-header--nav-open .nav-panel::before {
  transform: scaleX(1);
  opacity: 1;
}

.nav--panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav--panel a {
  display: block;
  padding: 0.85rem 1.15rem;
  border-radius: 0.35rem;
  opacity: 0;
  transform: translate3d(0.65rem, 0, 0);
  transition:
    color 0.2s var(--ease-out),
    background-color 0.2s var(--ease-out),
    opacity 0.38s var(--nav-panel-ease),
    transform 0.48s var(--nav-panel-spring);
}

.nav--panel a:hover,
.nav--panel a:focus-visible {
  background: var(--accent-soft);
  color: var(--text);
}

.site-header--nav-open .nav--panel a {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-header--nav-open .nav--panel a:nth-child(1) {
  transition-delay: 0.06s;
}

.site-header--nav-open .nav--panel a:nth-child(2) {
  transition-delay: 0.1s;
}

.site-header--nav-open .nav--panel a:nth-child(3) {
  transition-delay: 0.14s;
}

.site-header--nav-open .nav--panel a:nth-child(4) {
  transition-delay: 0.18s;
}

@media (max-width: 48rem) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    right: 0;
    z-index: 1;
    width: min(17.5rem, calc(100vw - clamp(1.5rem, 6vw, 2.5rem) * 2));
    padding: 0.45rem;
    border: 1px solid var(--border-strong);
    border-radius: 0.75rem;
    background: rgba(18, 24, 21, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow:
      0 18px 40px rgba(0, 0, 0, 0.38),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    transform-origin: top right;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(0, -0.35rem, 0) scale(0.94);
    filter: blur(4px);
    transition:
      opacity 0.32s var(--nav-panel-ease),
      transform 0.48s var(--nav-panel-spring),
      visibility 0.32s step-end,
      filter 0.38s var(--nav-panel-ease);
  }

  .nav-panel:not([hidden]) {
    visibility: visible;
    pointer-events: auto;
  }

  .site-header--nav-open .nav-panel {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.36s var(--nav-panel-ease),
      transform 0.52s var(--nav-panel-spring),
      visibility 0s step-start,
      filter 0.42s var(--nav-panel-ease);
  }

  .nav--panel a {
    font-size: 1rem;
    letter-spacing: 0.03em;
    text-shadow: none;
  }
}

@media (min-width: 48.0625rem) {
  .nav-panel {
    position: static;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .nav-panel::before {
    display: none;
  }

  .nav--panel {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: flex-end;
  }

  .nav--panel a {
    padding: 0;
    opacity: 1;
    transform: none;
    transition: color 0.2s var(--ease-out);
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-toggle__bar,
  .nav-panel,
  .nav--panel a,
  .nav-panel::before {
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }

  .nav-panel {
    filter: none !important;
  }
}

.hero {
  --hero-gutter: clamp(1.25rem, 5vw, 3rem);
  --hero-viewport-h: 100vh;
  --hero-zoom-duration: 9s;
  --hero-zoom-ease: cubic-bezier(0.42, 0, 0.2, 1);
  --hero-crossfade: 1.05s;
  position: relative;
  min-height: var(--hero-viewport-h);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 var(--hero-gutter) 0;
  overflow: hidden;
  background: var(--bg);
}

@supports (height: 100dvh) {
  .hero {
    --hero-viewport-h: 100dvh;
  }
}

.hero-clip-def {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.hero__layout {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: calc(var(--hero-viewport-h) - var(--header-h));
  /* Reserve space for the fixed header so hero imagery starts beneath it */
  padding-top: var(--header-h);
}

.hero__main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__jobs {
  display: none;
}

.hero-job {
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  border-bottom: 1px solid var(--border);
  background: none;
  font: inherit;
  text-align: left;
  text-decoration: none;
  color: var(--text);
  cursor: pointer;
  overflow: hidden;
}

.hero-job:last-child {
  border-bottom: none;
}

.hero-job:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 1;
}

.hero-job__media {
  grid-area: 1 / 1;
  min-height: 0;
}

.hero-job__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 5.5rem;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-job:hover .hero-job__img {
    transform: scale(1.05);
  }
}

.hero-job__caption {
  grid-area: 1 / 1;
  align-self: end;
  z-index: 1;
  margin: 0;
  padding: 0.55rem 0.65rem 0.6rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(232, 234, 231, 0.95);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(12, 15, 13, 0.15) 28%,
    rgba(12, 15, 13, 0.88) 100%
  );
}

@media (min-width: 64rem) {
  .hero {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    overflow: visible;
  }

  .hero__inner {
    padding-right: clamp(2rem, 5vw, 4.5rem);
    max-width: min(44rem, 100%);
    z-index: 5;
  }

  .hero__layout {
    flex-direction: row;
    align-items: stretch;
    overflow: visible;
  }

  .hero__main {
    flex: 1;
    min-width: 0;
    padding-left: var(--hero-gutter);
  }

  .hero__jobs {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 8;
    flex: 0 0 clamp(17rem, 38%, 28rem);
    max-width: 28rem;
    margin-left: clamp(-3.25rem, -5.5vw, -2rem);
    border-left: 1px solid var(--border);
    background: var(--bg-soft);
    /* Smooth arch (SVG clipPath — true curve, not polygon segments) */
    clip-path: url(#hero-jobs-smooth-clip);
    -webkit-clip-path: url(#hero-jobs-smooth-clip);
  }

  .hero-job__caption {
    padding: 0.55rem 0.45rem 0.62rem clamp(1.2rem, 3.8vw, 2.65rem);
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-job {
    flex: 1 1 0;
    min-height: 0;
    border-bottom: 1px solid var(--border);
  }

  .hero__scrim {
    background:
      linear-gradient(
        90deg,
        rgba(12, 15, 13, 0.92) 0%,
        rgba(12, 15, 13, 0.78) 16%,
        rgba(12, 15, 13, 0.45) 34%,
        rgba(12, 15, 13, 0.12) 52%,
        transparent 68%
      ),
      linear-gradient(
        180deg,
        rgba(12, 15, 13, 0.18) 0%,
        transparent 38%,
        rgba(12, 15, 13, 0.12) 100%
      );
  }

  .hero__scrim::after {
    mask-image: linear-gradient(
      90deg,
      black 0%,
      black min(52%, 30rem),
      transparent min(68%, 38rem)
    );
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
  touch-action: pan-y;
  cursor: grab;
}

.hero__media:active {
  cursor: grabbing;
}

.hero__buf {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--hero-crossfade) var(--hero-zoom-ease);
  pointer-events: auto;
  z-index: 1;
}

.hero__buf.is-front {
  opacity: 1;
  z-index: 2;
}

.hero__media-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
  pointer-events: none;
}

.hero__media-img--video {
  will-change: auto;
  transform: translateZ(0);
}

.hero__media-img--video.hero__media-img--zooming {
  animation: none;
  transform: translateZ(0);
}

.hero__media-img.hero__media-img--zooming {
  animation: hero-zoom-in var(--hero-zoom-duration) var(--hero-zoom-ease) forwards;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Strong read on the left only; ~transparent from mid onward so the photo stays vivid */
  background:
    linear-gradient(
      90deg,
      rgba(12, 15, 13, 0.9) 0%,
      rgba(12, 15, 13, 0.82) 14%,
      rgba(12, 15, 13, 0.62) 24%,
      rgba(12, 15, 13, 0.28) 32%,
      rgba(12, 15, 13, 0.06) 38%,
      transparent 44%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 15, 13, 0.16) 0%,
      transparent 36%,
      rgba(12, 15, 13, 0.1) 100%
    );
}

.hero__scrim::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  /* Grain only over the text zone — not across the bright image side */
  mask-image: linear-gradient(
    90deg,
    black 0%,
    black min(42%, 28rem),
    transparent min(52%, 36rem)
  );
}

@keyframes hero-zoom-in {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero__inner {
  position: relative;
  isolation: isolate;
  max-width: 44rem;
  z-index: 2;
  padding-top: clamp(3rem, 10vw, 5rem);
}

.hero__banner-nav {
  position: absolute;
  left: 50%;
  bottom: calc(5.75rem + clamp(0.75rem, 2.5vw, 1.25rem));
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  pointer-events: auto;
}

.hero__banner-btn {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 15, 13, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(232, 234, 231, 0.95);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(12, 15, 13, 0.35);
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.hero__banner-btn:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(var(--accent-rgb), 0.22);
}

.hero__banner-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero__banner-btn:active {
  transform: scale(0.96);
}

@media (min-width: 64rem) {
  .hero__banner-nav {
    z-index: 9;
  }
}

.hero__metrics {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(12, 15, 13, 0.2) 0%,
    rgba(12, 15, 13, 0.78) 100%
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 64rem) {
  .hero__metrics {
    z-index: 1;
  }
}

.hero-metrics {
  list-style: none;
  margin: 0 auto;
  padding: clamp(0.85rem, 2.2vw, 1.15rem) clamp(1rem, 4vw, 2rem);
  max-width: var(--content-max);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.5rem);
  align-items: start;
  text-align: center;
}

@media (max-width: 40rem) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.5rem, 2vw, 0.75rem);
    padding: clamp(0.75rem, 2.5vw, 1rem) clamp(0.5rem, 2.5vw, 0.85rem);
  }

  .hero-metric__label {
    font-size: 0.5625rem;
    letter-spacing: 0.03em;
  }

  .hero-metric__sub {
    max-width: none;
    font-size: 0.5rem;
  }
}

.hero-metric {
  margin: 0;
  padding: 0;
}

.hero-metric__value {
  margin: 0 0 0.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--accent);
  text-shadow: 0 1px 1.25rem rgba(12, 15, 13, 0.5);
  font-variant-numeric: tabular-nums;
}

.hero-metric__suffix {
  font-weight: 600;
  margin-left: 0.02em;
}

.hero-metric__label {
  margin: 0;
  font-size: clamp(0.625rem, 1.35vw, 0.6875rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(232, 234, 231, 0.78);
  line-height: 1.35;
}

.hero-metric__sub {
  margin: 0.25rem auto 0;
  max-width: 13rem;
  font-size: clamp(0.5625rem, 1.15vw, 0.625rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(232, 234, 231, 0.58);
  line-height: 1.3;
}

.hero__inner::before {
  content: "";
  position: absolute;
  inset: -25% -5% -25% -35%;
  max-width: 52rem;
  background: radial-gradient(
    ellipse 70% 85% at 8% 50%,
    rgba(12, 15, 13, 0.32) 0%,
    rgba(12, 15, 13, 0.08) 45%,
    transparent 62%
  );
  pointer-events: none;
  z-index: -1;
}

/*
  Narrow viewports: avoid a “dark left / bright right” wash. Common pattern is a
  vertical (top-weighted) scrim so contrast is even left-to-right, with a
  subtle lift at the bottom for CTAs over bright foreground.
*/
@media (max-width: 48rem) {
  .site-header {
    padding: 0 clamp(0.75rem, 3vw, 1.5rem);
  }

  .site-header__inner {
    gap: 0.75rem;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero__main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
  }

  .hero__inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: var(--hero-gutter);
    padding-right: var(--hero-gutter);
    padding-bottom: clamp(2.5rem, 6vw, 3.5rem);
  }

  .hero__metrics {
    position: relative;
    flex-shrink: 0;
    margin-top: auto;
  }

  .hero__tagline {
    color: rgba(233, 236, 233, 0.94);
    text-shadow:
      0 1px 3px rgba(12, 15, 13, 0.92),
      0 0 1.25rem rgba(12, 15, 13, 0.55);
  }

  .hero__banner-nav {
    top: clamp(0.65rem, 2.5vw, 1rem);
    bottom: auto;
    left: auto;
    right: calc(var(--hero-gutter) + clamp(0.25rem, 2vw, 0.75rem));
    transform: none;
  }

  .hero__actions {
    max-width: 22rem;
  }

  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(12, 15, 13, 0.82) 0%,
      rgba(12, 15, 13, 0.48) 24%,
      rgba(12, 15, 13, 0.18) 50%,
      rgba(12, 15, 13, 0.42) 100%
    );
  }

  .hero__scrim::after {
    mask-image: none;
    opacity: 0.045;
  }

  .hero__inner::before {
    inset: -28% -8% -38% -8%;
    max-width: none;
    background: radial-gradient(
      ellipse 130% 95% at 50% 38%,
      rgba(12, 15, 13, 0.36) 0%,
      rgba(12, 15, 13, 0.1) 45%,
      transparent 70%
    );
  }
}

.hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.125rem, 5.2vw, 3.35rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
}

.hero__line {
  display: block;
  color: var(--text);
  text-shadow: 0 1px 2rem rgba(12, 15, 13, 0.55);
}

.hero__typed-wrap {
  display: inline-flex;
  align-items: center;
  min-height: 1.12em;
  color: var(--accent);
}

.hero__typed {
  display: inline-block;
  white-space: nowrap;
}

.hero__hammer {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 0.9em;
  height: 1em;
  margin-left: 0.28em;
  margin-top: -0.42em;
  align-self: flex-start;
  color: var(--accent);
  flex-shrink: 0;
  pointer-events: none;
}

.hero__hammer-svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__hammer-tool {
  transform-origin: right bottom;
  transform: rotate(4deg);
  will-change: transform;
}

.hero__hammer.is-striking .hero__hammer-tool {
  animation: hero-hammer-strike 0.42s cubic-bezier(0.45, 0.05, 0.25, 1) forwards;
}

.hero__hammer.is-striking-back .hero__hammer-tool {
  animation: hero-hammer-strike-back 0.32s cubic-bezier(0.45, 0.05, 0.25, 1)
    forwards;
}

@keyframes hero-hammer-strike {
  0% {
    transform: rotate(4deg);
  }
  38% {
    transform: rotate(-38deg);
  }
  62% {
    transform: rotate(-14deg);
  }
  100% {
    transform: rotate(4deg);
  }
}

@keyframes hero-hammer-strike-back {
  0% {
    transform: rotate(4deg);
  }
  45% {
    transform: rotate(-18deg);
  }
  100% {
    transform: rotate(4deg);
  }
}

.hero__tagline {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  text-shadow: 0 1px 1.5rem rgba(12, 15, 13, 0.5);
}

.hero__sub {
  margin: 0 0 2rem;
  max-width: 34rem;
  font-size: clamp(0.975rem, 1.6vw, 1.0625rem);
  line-height: 1.7;
  color: rgba(232, 234, 231, 0.92);
  font-weight: 400;
  text-shadow: 0 1px 1.25rem rgba(12, 15, 13, 0.45);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) clamp(1.25rem, 5vw, 3rem);
}

.section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section__inner--narrow {
  max-width: 38rem;
}

.section__inner--process {
  max-width: none;
  width: 100%;
  padding-left: clamp(1rem, 2.5vw, 2rem);
  padding-right: clamp(1rem, 2.5vw, 2rem);
}

.section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.section__header {
  margin-bottom: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.section__header--left {
  text-align: left;
  max-width: 28rem;
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.section__title--center {
  text-align: center;
}

.section__lede {
  margin: 0.75rem 0 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 26rem;
}

.section--intro {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.intro__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

.intro__col {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}

.intro__col--secondary {
  padding-top: clamp(1.25rem, 3vw, 1.75rem);
  border-top: 1px solid var(--border);
}

.intro__media {
  margin: 0 auto;
  width: min(100%, 16.5rem);
}

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

@media (max-width: 51.99rem) {
  .intro__col {
    display: contents;
  }

  .intro__row {
    grid-template-areas:
      "primary-head"
      "media"
      "secondary-head"
      "primary-body"
      "secondary-body";
  }

  .intro__col--primary .intro__head {
    grid-area: primary-head;
  }

  .intro__col--primary .intro__aside {
    grid-area: primary-body;
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
    border-top: 1px solid var(--border);
  }

  .intro__col--secondary {
    display: contents;
    padding-top: 0;
    border-top: none;
  }

  .intro__col--secondary .intro__head {
    grid-area: secondary-head;
  }

  .intro__col--secondary .intro__aside {
    grid-area: secondary-body;
    padding-top: clamp(1.25rem, 3vw, 1.75rem);
    border-top: 1px solid var(--border);
  }

  .intro__media {
    grid-area: media;
  }
}

@media (min-width: 52rem) {
  .intro__row {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: start;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .intro__col--primary {
    padding-right: clamp(0.5rem, 2vw, 1.25rem);
  }

  .intro__col--secondary {
    padding-top: 0;
    border-top: none;
    padding-left: clamp(0.5rem, 2vw, 1.25rem);
    border-left: 1px solid var(--border);
  }

  .intro__media {
    width: clamp(20rem, 32vw, 26.9375rem);
    align-self: center;
    margin: 0;
    padding-inline: clamp(1.25rem, 3vw, 2.5rem);
    border-inline: 1px solid var(--border);
  }
}

.intro__row .intro__head {
  margin-bottom: 0;
}

.intro__aside {
  margin-top: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.intro__aside p {
  margin: 0;
  font-size: clamp(0.9375rem, 0.32rem + 1.45vw, 1.0625rem);
  line-height: 1.75;
  color: var(--text-muted);
}

.intro__head {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--text);
}

.intro__head-line {
  display: block;
}

.intro__head-line + .intro__head-line {
  margin-top: 0.12em;
  color: var(--text-muted);
  font-weight: 400;
}

.intro__inquiry {
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
  padding-top: clamp(2rem, 5vw, 2.75rem);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  scroll-margin-top: calc(var(--header-h) + 0.75rem);
  border-radius: 2px;
  transition: box-shadow 0.45s var(--ease-out);
}

.intro__inquiry:target {
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.35);
}

.intro__inquiry-copy {
  max-width: 22rem;
}

.intro__inquiry-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.125rem, 2.2vw, 1.35rem);
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.intro__inquiry-lede {
  margin: 0.65rem 0 0;
  font-size: clamp(0.875rem, 0.28rem + 1.2vw, 0.96875rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.intro__inquiry form.intro-inquiry {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-inquiry {
  width: 100%;
  max-width: 32rem;
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.5rem);
  text-align: left;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.28),
    0 16px 44px rgba(0, 0, 0, 0.38);
}

.intro-inquiry__row {
  display: grid;
  gap: 1rem;
}

.intro-inquiry__row--split {
  grid-template-columns: 1fr;
}

@media (min-width: 32rem) {
  .intro-inquiry__row--split {
    grid-template-columns: 1fr 1fr;
  }
}

.intro-inquiry__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.intro-inquiry__field--postcode .intro-inquiry__input {
  max-width: 7.5rem;
}

.intro-inquiry__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.intro-inquiry__input {
  width: 100%;
  margin: 0;
  padding: 0.72rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  transition:
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out);
}

.intro-inquiry__input::placeholder {
  color: var(--text-subtle);
}

.intro-inquiry__input:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.intro-inquiry__input:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.55);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.intro-inquiry__input--invalid {
  border-color: rgba(220, 100, 90, 0.75);
}

.intro-inquiry__input--invalid:focus {
  border-color: rgba(220, 100, 90, 0.85);
  box-shadow: 0 0 0 3px rgba(220, 100, 90, 0.18);
}

.intro-inquiry__textarea {
  min-height: 6.5rem;
  resize: vertical;
}

.intro-inquiry__phone {
  display: flex;
  align-items: stretch;
}

.intro-inquiry__phone-prefix {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-right: 0;
  border-radius: 8px 0 0 8px;
}

.intro-inquiry__input--phone {
  border-radius: 0 8px 8px 0;
}

.intro-inquiry__feedback {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #e08a82;
}

.intro-inquiry__feedback[hidden] {
  display: none;
}

.intro-inquiry__file {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  padding: 0.65rem 0.75rem;
  background: var(--bg-soft);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.intro-inquiry__file-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 0.2s var(--ease-out),
    background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out);
}

.intro-inquiry__file-btn:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: var(--accent-soft);
}

.intro-inquiry__file-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.intro-inquiry__file-icon {
  flex-shrink: 0;
  opacity: 0.85;
}

.intro-inquiry__file-name {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.intro-inquiry__file-name--chosen {
  color: var(--text);
}

.intro-inquiry__submit {
  width: 100%;
  margin-top: 0.35rem;
}

.intro-inquiry__submit.processing {
  opacity: 0.7;
  cursor: wait;
}

.intro-inquiry__privacy {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.intro-inquiry ._form-branding {
  display: none !important;
}

.intro-inquiry .iti {
  width: 100%;
}

.intro-inquiry .iti input.intro-inquiry__input {
  padding-left: 3.25rem;
}

.intro-inquiry .iti--separate-dial-code .iti__selected-flag {
  background: var(--bg-soft);
  border: 1px solid var(--border-strong);
  border-radius: 8px 0 0 8px;
}

.intro-inquiry .iti__country-list {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
}

.intro-inquiry__input._has_error {
  border-color: rgba(220, 100, 90, 0.75);
}

.intro-inquiry ._error {
  position: relative;
  margin-top: 0.35rem;
}

.intro-inquiry ._error-inner {
  padding: 0.5rem 0.65rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #e08a82;
  background: rgba(220, 100, 90, 0.12);
  border-radius: 6px;
}

.intro-inquiry ._error-arrow {
  display: none;
}

.intro-inquiry__note {
  margin: 0.65rem 0 0;
  font-size: 0.6875rem;
  line-height: 1.45;
  text-align: center;
  color: var(--text-subtle);
}

.plan-split {
  --plan-split-angle: clamp(1.75rem, 5vw, 3.5rem);
  position: relative;
  margin-top: 0;
  background: var(--bg);
}

.plan-split__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}

.plan-split__grid::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--accent) 55%, #fff),
    transparent
  );
  opacity: 0.85;
}

.plan-split__panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(14rem, 42vw, 20rem);
  padding: clamp(1.35rem, 4vw, 2.1rem);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
}

.plan-split__panel--plans {
  z-index: 2;
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - var(--plan-split-angle)),
    0 100%
  );
  margin-bottom: calc(var(--plan-split-angle) * -0.6);
}

.plan-split__panel--scratch {
  clip-path: polygon(
    0 var(--plan-split-angle),
    100% 0,
    100% 100%,
    0 100%
  );
  padding-top: calc(clamp(1.35rem, 4vw, 2.1rem) + var(--plan-split-angle) * 0.35);
}

.plan-split__grid::after {
  left: 6%;
  right: 6%;
  top: calc(50% - 1px);
  height: 2px;
  transform: rotate(-2.75deg);
}

.plan-split__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.55s var(--ease-out);
}

.plan-split__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    165deg,
    rgba(12, 15, 13, 0.35) 0%,
    rgba(12, 15, 13, 0.55) 45%,
    rgba(12, 15, 13, 0.9) 100%
  );
}

.plan-split__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  max-width: 20rem;
}

.plan-split__heading {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.plan-split__btn {
  pointer-events: none;
}

.plan-split__panel:hover .plan-split__media,
.plan-split__panel:focus-visible .plan-split__media {
  transform: scale(1.06);
}

.plan-split__panel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

@media (min-width: 48rem) {
  .plan-split__grid {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
  }

  .plan-split__panel {
    align-items: center;
    min-height: clamp(15rem, 26vw, 22rem);
    isolation: auto;
  }

  .plan-split__panel--plans {
    z-index: 2;
    clip-path: polygon(
      0 0,
      calc(100% - var(--plan-split-angle)) 0,
      100% 100%,
      0 100%
    );
    margin-bottom: 0;
    margin-right: calc(var(--plan-split-angle) * -1);
    padding-right: calc(clamp(1.35rem, 4vw, 2.1rem) + var(--plan-split-angle) * 0.5);
  }

  .plan-split__panel--scratch {
    z-index: 1;
    clip-path: none;
    margin-top: 0;
    padding-top: clamp(1.35rem, 4vw, 2.1rem);
    padding-left: clamp(1.35rem, 4vw, 2.1rem);
  }

  .plan-split__grid::after {
    display: none;
  }

  .plan-split__panel--scratch .plan-split__content {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
  }
}

.section--reviews {
  --review-star: #fbbc04;
  padding-top: clamp(1.5rem, 4vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.25rem);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.reviews__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 0.35rem;
}

.reviews__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--text);
}

.reviews__google {
  margin-right: 0.15em;
  font-weight: 600;
  color: #9ec9ff;
  background: linear-gradient(
    90deg,
    #4285f4 0%,
    #ea4335 28%,
    #fbbc04 52%,
    #4285f4 72%,
    #34a853 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .reviews__google {
    color: transparent;
  }
}

.reviews__summary {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.reviews__stars {
  display: inline-flex;
  gap: 0.06rem;
  line-height: 1;
  color: var(--review-star);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.35);
}

.reviews__stars--inline {
  font-size: 0.8125rem;
}

.reviews__star {
  display: inline-block;
}

.reviews__aggregate {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.reviews__rating {
  margin-right: 0.2rem;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
}

.reviews__count {
  font-weight: 400;
}

.reviews__source {
  margin: 0 0 0.85rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
}

.reviews__google-link {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 45%, transparent);
  text-underline-offset: 0.15em;
  transition: color 0.2s var(--ease-out);
}

.reviews__google-link:hover {
  color: var(--text);
}

.reviews-carousel {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 2rem;
  gap: 0.35rem 0.5rem;
  align-items: center;
  outline: none;
}

.reviews-carousel:focus-visible {
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--bg-soft), 0 0 0 4px var(--accent);
}

.reviews-carousel__arrow {
  width: 2rem;
  height: 2rem;
  margin: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out);
}

.reviews-carousel__arrow:hover {
  color: var(--text);
  border-color: var(--accent);
  background: var(--accent-soft);
}

.reviews-carousel__arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.reviews-carousel__viewport {
  min-width: 0;
  width: 100%;
  overflow: hidden;
}

.reviews-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  transition: transform 0.38s var(--ease-out);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track {
    transition: none;
  }
}

.reviews-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 0 0.15rem;
  display: grid;
  grid-template-columns: repeat(var(--slide-cols, 1), minmax(0, 1fr));
  grid-template-rows: minmax(0, auto);
  gap: clamp(0.5rem, 1.75vw, 0.75rem);
  align-items: start;
}

@media (max-width: 39.99rem) {
  .reviews-carousel__slide {
    max-width: 36rem;
    margin-inline: auto;
  }
}

.review-card {
  margin: 0;
  padding: clamp(0.75rem, 2vw, 0.9rem) clamp(0.8rem, 2vw, 0.95rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.review-card__row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.review-card__avatar {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  background: var(--accent-soft);
  border: 1px solid var(--border-strong);
}

.review-card__who {
  flex: 1;
  min-width: 0;
}

.review-card__name {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.25;
}

.review-card__time {
  display: block;
  margin-top: 0.05rem;
  font-size: 0.6875rem;
  color: var(--text-subtle);
}

.review-card__stars {
  flex-shrink: 0;
  font-size: 0.6875rem;
  letter-spacing: -0.02em;
}

.review-card__text {
  margin: 0;
  font-size: clamp(0.8125rem, 0.8rem + 0.35vw, 0.875rem);
  line-height: 1.55;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.review-card--expanded .review-card__text {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.review-card__toggle {
  margin: 0.35rem 0 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  cursor: pointer;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--accent) 40%, transparent);
  text-underline-offset: 0.12em;
}

.review-card__toggle:hover {
  color: var(--text);
}

.review-card__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.review-card__toggle[hidden] {
  display: none;
}

.section--services {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.service-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

@media (min-width: 40rem) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 64rem) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--bg-soft);
  transition: background 0.25s var(--ease-out);
}

.service-card:hover {
  background: var(--bg-elevated);
}

.service-card__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.section--feature {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.feature__title {
  margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.feature__title-line {
  display: block;
}

.feature__title-line--accent {
  color: var(--accent);
  margin-top: 0.08em;
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature__body p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.section--why {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.section__header--why {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.why-heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  letter-spacing: -0.035em;
  line-height: 1.14;
  color: var(--text);
}

.why-heading__line {
  display: block;
}

.why-heading__line + .why-heading__line {
  margin-top: 0.12em;
}

.why-heading__accent {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.why-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.25rem);
}

@media (min-width: 40rem) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.75rem, 4vw, 2.5rem) clamp(1.25rem, 3vw, 2rem);
  }
}

@media (min-width: 64rem) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(1.5rem, 3vw, 2.25rem);
    row-gap: clamp(2rem, 4vw, 2.75rem);
  }
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 0;
  padding: clamp(1.25rem, 2.5vw, 1.5rem);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

.why-item:hover {
  background: rgba(24, 30, 27, 0.85);
  border-color: var(--border-strong);
}

.why-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-top: 0.1rem;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 2px;
}

.why-item__icon svg {
  width: 1.625rem;
  height: 1.625rem;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-item__body {
  min-width: 0;
}

.why-item__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.why-item__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.section--gallery {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.gallery {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}

@media (min-width: 36rem) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 56rem) {
  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery__item {
  margin: 0;
  position: relative;
}

.gallery__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 1.75rem 0.85rem 0.7rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f4f6f4;
  text-align: left;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(12, 15, 13, 0.35) 42%,
    rgba(12, 15, 13, 0.82) 100%
  );
}

.gallery__item--expandable {
  position: relative;
}

.gallery__trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.gallery__trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.gallery__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(12, 15, 13, 0);
  transition: background 0.25s var(--ease-out);
  pointer-events: none;
}

.gallery__trigger:hover .gallery__frame::after,
.gallery__trigger:focus-visible .gallery__frame::after {
  background: rgba(12, 15, 13, 0.5);
}

.gallery__view {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, calc(-50% + 4px));
  padding: 0.45rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(12, 15, 13, 0.88);
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  opacity: 0;
  transition:
    opacity 0.25s var(--ease-out),
    transform 0.25s var(--ease-out);
  pointer-events: none;
}

.gallery__trigger:hover .gallery__view,
.gallery__trigger:focus-visible .gallery__view {
  opacity: 1;
  transform: translate(-50%, -50%);
}

@media (prefers-reduced-motion: reduce) {
  .gallery__frame::after,
  .gallery__view {
    transition: none;
  }

  .gallery__trigger:hover .gallery__view,
  .gallery__trigger:focus-visible .gallery__view {
    transform: translate(-50%, -50%);
  }
}

body.gallery-project-open {
  overflow: hidden;
}

.gallery-project {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vmin, 1.25rem);
  pointer-events: none;
}

.gallery-project__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 9, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.45s var(--ease-out);
}

.gallery-project__dialog {
  position: relative;
  z-index: 1;
  width: min(70vw, 76rem);
  height: min(70dvh, 52rem);
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.08),
    0 24px 64px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.45s var(--ease-out),
    transform 0.52s var(--ease-out);
  pointer-events: none;
  overflow: hidden;
}

.gallery-project--open {
  pointer-events: auto;
}

.gallery-project--open .gallery-project__dialog {
  pointer-events: auto;
}

.gallery-project--closing .gallery-project__dialog {
  pointer-events: none;
}

.gallery-project--open .gallery-project__backdrop {
  opacity: 1;
}

.gallery-project--open .gallery-project__dialog {
  opacity: 1;
  transform: scale(1);
}

.gallery-project--closing .gallery-project__backdrop {
  opacity: 0;
}

.gallery-project--closing .gallery-project__dialog {
  opacity: 0;
  transform: scale(0.96);
}

.gallery-project__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(1rem, 2.5vw, 1.35rem) clamp(1rem, 3vw, 2rem) 0;
  flex-shrink: 0;
}

.gallery-project__intro {
  min-width: 0;
}

.gallery-project__eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.gallery-project__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.gallery-project__details {
  margin: 0.5rem 0 0;
  max-width: 42rem;
}

.gallery-project__details-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.gallery-project__details-toggle::-webkit-details-marker {
  display: none;
}

.gallery-project__details-toggle::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -0.15rem;
  transition: transform 0.2s var(--ease-out);
}

.gallery-project__details[open] .gallery-project__details-toggle::after {
  transform: rotate(-135deg);
  margin-top: 0.1rem;
}

.gallery-project__details-toggle:hover {
  color: var(--accent-hover);
}

.gallery-project__desc {
  margin: 0.65rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.gallery-project__close {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  background: var(--bg-soft);
  color: var(--text);
  cursor: pointer;
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s;
}

.gallery-project__close:hover {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: var(--accent-soft);
}

.gallery-project__close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery-project__media {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: clamp(0.65rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem)
    clamp(1rem, 2.5vw, 1.35rem);
}

.gallery-project__grid-wrap {
  flex: 1;
  min-height: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.gallery-project__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.gallery-project__grid-item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--bg);
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.2s var(--ease-out),
    box-shadow 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.gallery-project__grid-item:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.gallery-project__grid-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery-project__grid-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
}

.gallery-project__grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-project__carousel-wrap {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.gallery-project__carousel-wrap[hidden] {
  display: none !important;
}

.gallery-project__back {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin: 0;
  padding: 0.35rem 0.55rem 0.35rem 0.35rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.2s var(--ease-out);
}

.gallery-project__back:hover {
  color: var(--accent-hover);
}

.gallery-project__back:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery-project__back svg {
  flex-shrink: 0;
}

.gallery-project__viewport {
  position: relative;
  flex: 1;
  min-height: 12rem;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--border);
  background: var(--bg);
  touch-action: manipulation;
}

.gallery-project__track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.gallery-project__slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.65rem, 2vw, 1rem);
  box-sizing: border-box;
}

.gallery-project__slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 2px;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-project__controls {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding-bottom: 0.15rem;
}

.gallery-project__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.gallery-project__nav-btn {
  flex-shrink: 0;
}

.gallery-project__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  max-width: min(100%, 20rem);
}

@media (min-width: 40rem) {
  .gallery-project__grid {
    grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
  }
}

.gallery-project__dot {
  width: 0.45rem;
  height: 0.45rem;
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition:
    width 0.25s var(--ease-out),
    background 0.2s var(--ease-out),
    transform 0.2s var(--ease-out);
}

.gallery-project__dot:hover {
  background: rgba(var(--accent-rgb), 0.55);
  transform: scale(1.15);
}

.gallery-project__dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.gallery-project__dot--active {
  width: 1.35rem;
  background: var(--accent);
}

@media (prefers-reduced-motion: reduce) {
  .gallery-project__backdrop,
  .gallery-project__dialog,
  .gallery-project__track,
  .gallery-project__dot {
    transition: none;
  }
}

.section--process {
  background: linear-gradient(
    180deg,
    var(--bg-soft) 0%,
    var(--bg) 100%
  );
  border-top: 1px solid var(--border);
  padding-top: clamp(5rem, 12vw, 7rem);
  padding-bottom: clamp(5rem, 12vw, 7rem);
}

.section__header--process {
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.section__lede--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 32rem;
}

.process-stepper {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.process-lane {
  position: relative;
  width: 100%;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(var(--accent-rgb), 0.35) transparent;
  --process-stage-h: clamp(4.5rem, 10vw, 5.35rem);
}

.process-lane__rails {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0;
  z-index: 0;
  pointer-events: none;
}

.process-lane__rail {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-strong);
  border-radius: 1px;
}

.process-lane__rail--stage {
  top: calc(var(--process-stage-h) + 0.5rem);
}

.process-lane__rail-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--accent),
    color-mix(in srgb, var(--accent) 70%, #fff)
  );
  border-radius: inherit;
  transition: none;
  will-change: width;
}

.process-lane__grid {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.65rem, 2vw, 0.85rem);
  align-items: start;
}

.process-lane__stage {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.process-lane__stage-ledge {
  display: none;
}

.process-lane__gap {
  display: none;
}

.process-lane__arc {
  display: block;
  width: 100%;
  height: 1.25rem;
  flex-shrink: 0;
  overflow: visible;
  color: var(--border-strong);
}

.process-lane__arc-track,
.process-lane__arc-fill {
  fill: none;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.process-lane__arc-track {
  stroke: var(--border-strong);
}

.process-lane__arc-fill {
  stroke: var(--accent);
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

@media (min-width: 40rem) {
  .process-lane__grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-end;
    gap: 0;
    padding-bottom: 2.35rem;
  }

  .process-lane__stage {
    flex: 1 1 0;
    min-width: 0;
  }

  .process-lane__gap {
    position: relative;
    display: flex;
    flex: 0 0 clamp(1.35rem, 3.25vw, 2.75rem);
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    padding-bottom: 0.15rem;
  }

  .process-lane__gap .process-lane__thought {
    position: absolute;
    left: 50%;
    top: calc(100% + 0.35rem);
    transform: translateX(-50%);
    margin: 0;
    z-index: 3;
  }

  .process-lane {
    overflow-x: visible;
  }
}

.process-lane__thought-wrap {
  position: relative;
  z-index: 1;
  min-height: 2.35rem;
  margin-top: 0.85rem;
}

.process-lane__thought {
  margin: 0;
  padding: 0.4rem 0.75rem;
  width: max-content;
  max-width: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-align: center;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 999px;
  white-space: nowrap;
  opacity: 1;
}

.process-lane__thought[hidden] {
  display: none !important;
}

.process-lane__gap .process-lane__thought {
  margin-top: 0.5rem;
  min-height: 1.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.process-lane__thought-text {
  display: inline-block;
  min-width: 0.5ch;
}

.process-lane__thought-text::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.85em;
  margin-left: 1px;
  vertical-align: -0.1em;
  background: currentColor;
  opacity: 0.85;
  animation: process-thought-caret 0.55s step-end infinite;
}

.process-lane__thought.is-flipping .process-lane__thought-text {
  animation: process-thought-flip-out 0.12s var(--ease-out) forwards;
}

.process-lane__thought.is-flipping .process-lane__thought-text::after {
  animation: none;
  opacity: 0;
}

@keyframes process-thought-caret {
  50% {
    opacity: 0;
  }
}

@keyframes process-thought-flip-out {
  to {
    opacity: 0;
    transform: rotateX(-88deg) translateY(0.15rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-lane__thought-text::after {
    display: none;
  }
}

.process-stepper__tab {
  width: 100%;
  margin: 0;
  padding: clamp(0.85rem, 2vw, 1rem) clamp(0.65rem, 1.5vw, 0.85rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
  font-family: inherit;
  color: var(--text-muted);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition:
    color 0.25s var(--ease-out),
    border-color 0.25s var(--ease-out),
    background 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out);
}

.process-stepper__tab:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.process-stepper__tab.is-active {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(var(--accent-rgb), 0.1);
  box-shadow: 0 8px 28px rgba(12, 15, 13, 0.35);
  transform: translateY(-2px);
}

.process-stepper__tab.is-past {
  color: var(--text);
  border-color: rgba(var(--accent-rgb), 0.22);
  background: rgba(var(--accent-rgb), 0.05);
}

.process-stepper__tab:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.process-stepper__icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  color: var(--text-subtle);
  transition: color 0.25s var(--ease-out);
}

.process-stepper__tab.is-active .process-stepper__icon-wrap {
  color: var(--accent);
}

.process-stepper__icon {
  width: 2.75rem;
  height: 2.75rem;
}

.process-stepper__label {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.process-stepper__num {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.process-stepper__tab.is-active .process-stepper__num {
  color: var(--accent);
}

/* Discovery — magnifying glass pulse */
.process-stepper__tab.is-active .process-icon__glass {
  animation: process-discover-pulse 2.2s var(--ease-out) infinite;
  transform-origin: center;
}

.process-stepper__tab.is-active .process-icon__handle {
  animation: process-discover-tilt 2.2s var(--ease-out) infinite;
  transform-origin: 28px 28px;
}

/* Planning — blueprint lines draw */
.process-icon__line {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}

.process-stepper__tab.is-active .process-icon__line--1 {
  animation: process-line-draw 0.9s var(--ease-out) forwards;
}

.process-stepper__tab.is-active .process-icon__line--2 {
  animation: process-line-draw 0.9s var(--ease-out) 0.15s forwards;
}

.process-stepper__tab.is-active .process-icon__line--3 {
  animation: process-line-draw 0.9s var(--ease-out) 0.3s forwards;
}

.process-stepper__tab.is-active .process-icon__ruler {
  animation: process-ruler-fade 1.2s var(--ease-out) 0.4s forwards;
  opacity: 0;
}

/* Build — hammer tap */
.process-stepper__tab.is-active .process-icon__hammer-head,
.process-stepper__tab.is-active .process-icon__hammer-handle {
  animation: process-hammer-tap 1.1s var(--ease-out) infinite;
  transform-origin: 30px 20px;
}

.process-stepper__tab.is-active .process-icon__frame {
  animation: process-frame-settle 1.1s var(--ease-out) infinite;
  transform-origin: center bottom;
}

/* Handover — check draws in */
.process-icon__check {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
}

.process-stepper__tab.is-active .process-icon__check {
  animation: process-check-draw 0.85s var(--ease-out) forwards;
}

.process-stepper__tab.is-active .process-icon__knob {
  animation: process-knob-pop 0.5s var(--ease-out) 0.5s forwards;
  opacity: 0;
  transform: scale(0);
  transform-origin: center;
}

@keyframes process-discover-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

@keyframes process-discover-tilt {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-4deg);
  }
}

@keyframes process-line-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes process-ruler-fade {
  to {
    opacity: 0.45;
  }
}

@keyframes process-hammer-tap {
  0%,
  100% {
    transform: rotate(0deg);
  }
  35% {
    transform: rotate(-14deg);
  }
  55% {
    transform: rotate(4deg);
  }
}

@keyframes process-frame-settle {
  0%,
  100% {
    transform: scaleY(1);
  }
  35% {
    transform: scaleY(0.97);
  }
}

@keyframes process-check-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes process-knob-pop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-lane__rail-fill,
  .process-lane__sub,
  .process-lane__pill,
  .process-lane__link,
  .process-lane__stem,
  .process-stepper__tab {
    transition: none;
    animation: none !important;
  }

  .process-lane__sub.is-active .process-lane__pill {
    opacity: 1;
    transform: none;
  }

  .process-stepper__tab.is-active .process-stepper__icon-wrap *,
  .process-stepper__tab.is-active .process-icon__check,
  .process-stepper__tab.is-active .process-icon__line {
    animation: none !important;
    stroke-dashoffset: 0;
    opacity: 1;
    transform: none;
  }
}

.section--service-area {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.service-area-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.25rem);
  align-items: start;
}

.service-area-aside {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.service-area-map {
  order: 1;
}

@media (min-width: 52rem) {
  .service-area-layout {
    grid-template-columns: minmax(0, 20rem) minmax(0, 1fr);
    gap: clamp(1.75rem, 3vw, 2.5rem);
    align-items: stretch;
  }

  .service-area-aside {
    order: 1;
  }

  .service-area-map {
    order: 2;
  }
}

.service-area-aside__header {
  margin: 0;
  text-align: left;
}

.service-area-aside__lede {
  max-width: none;
}

.service-area-contact {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: 0.75rem;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
}

.service-area-contact__title {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text);
}

.service-area-contact__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-area-contact__link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.service-area-contact__link:hover {
  color: var(--accent-hover);
}

.service-area-contact__link--email {
  font-size: 0.9375rem;
  font-weight: 400;
  word-break: break-word;
}

.service-area-contact__hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.service-area-contact__hours p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-area-contact__hours p + p {
  margin-top: 0.35rem;
}

.service-area-map {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.service-area-map__canvas {
  display: block;
  width: 100%;
  height: clamp(18rem, 52vw, 28rem);
  min-height: 18rem;
}

.service-area-map__canvas .leaflet-container {
  width: 100%;
  height: 100%;
  min-height: inherit;
  font-family: var(--font-body);
}

.service-area-map__canvas--error {
  display: grid;
  place-items: center;
  padding: 2rem;
  text-align: center;
  background: linear-gradient(
    165deg,
    var(--bg-elevated) 0%,
    var(--bg-soft) 100%
  );
}

.service-area-map__error {
  margin: 0;
  max-width: 22rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.service-area-map__pin-wrap {
  background: transparent;
  border: none;
}

.service-area-map__pin {
  display: block;
  width: 28px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='40' viewBox='0 0 28 40'%3E%3Cpath fill='%233cb878' stroke='%23fff' stroke-width='1.5' d='M14 0C6.3 0 0 6.3 0 14c0 10.5 14 26 14 26s14-15.5 14-26C28 6.3 21.7 0 14 0z'/%3E%3Ccircle cx='14' cy='14' r='5' fill='%23fff'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.service-area-map__caption {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.85rem 1.1rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-subtle);
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.service-area-map__legend {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
  background: rgba(196, 121, 58, 0.45);
  border: 1px solid #e8954a;
}

.service-area-map__legend--circle {
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-on);
}

.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.035);
}

.site-footer {
  padding: clamp(2rem, 5vw, 2.75rem) clamp(1.25rem, 5vw, 3rem)
    clamp(2.25rem, 5vw, 3rem);
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.site-footer__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.site-footer__col {
  min-width: 0;
}

.site-footer__brand {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}

.site-footer__brand-name {
  font-weight: 600;
}

.site-footer__muted {
  margin: 0 0 1.35rem;
  font-size: 0.875rem;
  color: var(--text-subtle);
}

.site-footer__line {
  margin: 0 0 0.55rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.site-footer__line:last-child {
  margin-bottom: 0;
}

.site-footer__accent {
  color: var(--accent-hover);
}

.site-footer__accent--underline {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer__heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list li + li {
  margin-top: 0.45rem;
}

.site-footer__list--legal li + li {
  margin-top: 0.55rem;
}

.site-footer__link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  color: var(--accent-hover);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.55;
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.2s var(--ease-out);
}

.site-footer__link:hover {
  color: var(--text);
}

.site-footer__col--links {
  justify-self: end;
}

@media (max-width: 52rem) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .site-footer__col--legal {
    grid-column: 1 / -1;
  }

  .site-footer__col--links {
    justify-self: start;
  }
}

@media (max-width: 32rem) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.footer-popup {
  width: min(56rem, calc(100vw - 2rem));
  max-width: none;
  max-height: min(88vh, 52rem);
  margin: auto;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  color: var(--text);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.45);
}

.footer-popup::backdrop {
  background: rgba(8, 10, 9, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.footer-popup__panel {
  display: flex;
  flex-direction: column;
  min-height: min(80vh, 44rem);
}

.footer-popup__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--border);
}

.footer-popup__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.footer-popup__close {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border-strong);
  border-radius: 0.4rem;
  background: transparent;
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease-out),
    background-color 0.2s var(--ease-out);
}

.footer-popup__close:hover {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: var(--accent-soft);
}

.footer-popup__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 1.25rem 1.35rem 1.5rem;
  -webkit-overflow-scrolling: touch;
}

.legal-content__heading {
  margin: 1.75rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-content__heading:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 0.9rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.45rem;
  font-size: 0.9375rem;
  line-height: 1.65;
}

.legal-content__inline-link {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--accent-hover);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  cursor: pointer;
}

.legal-content__inline-link:hover {
  color: var(--text);
}

.legal-content__error {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
}

.legal-faq + .legal-faq {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.legal-faq__question {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-faq__answer {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
}

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

.page-loader-demo {
  position: fixed;
  left: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 75;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 50%;
  background: rgba(18, 24, 22, 0.92);
  color: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  opacity: 0.42;
  transition:
    opacity 0.2s var(--ease-out),
    transform 0.2s var(--ease-out),
    border-color 0.2s ease,
    background 0.2s ease;
}

.page-loader-demo:hover {
  opacity: 1;
  border-color: rgba(var(--accent-rgb), 0.45);
  background: rgba(24, 30, 27, 0.96);
  transform: scale(1.05);
}

.page-loader-demo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  opacity: 1;
}

.page-loader-demo__icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.fake-chat {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  font-family: var(--font-body);
}

.fake-chat__panel {
  width: min(22rem, calc(100vw - 2rem));
  max-height: min(26rem, 55vh);
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.35),
    0 18px 48px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transform-origin: bottom right;
  animation: fake-chat-in 0.28s var(--ease-out);
}

.fake-chat__panel[hidden] {
  display: none;
}

@keyframes fake-chat-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fake-chat__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-soft);
}

.fake-chat__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}

.fake-chat__status {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-subtle);
}

.fake-chat__close {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  margin: -0.25rem -0.35rem 0 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.fake-chat__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.fake-chat__messages {
  flex: 1;
  min-height: 8rem;
  max-height: 14rem;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.fake-chat__msg {
  max-width: 92%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  font-size: 0.875rem;
  line-height: 1.5;
}

.fake-chat__msg p {
  margin: 0;
}

.fake-chat__msg--bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.fake-chat__msg--user {
  align-self: flex-end;
  background: var(--accent-soft);
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  color: var(--text);
}

.fake-chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem 0.65rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

.fake-chat__input {
  flex: 1;
  min-width: 0;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-family: inherit;
  font-size: 0.875rem;
}

.fake-chat__input::placeholder {
  color: var(--text-subtle);
}

.fake-chat__input:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.45);
  box-shadow: 0 0 0 2px rgba(var(--accent-rgb), 0.12);
}

.fake-chat__send {
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-on);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.fake-chat__send:hover {
  background: var(--accent-hover);
}

.fake-chat__disclaimer {
  margin: 0;
  padding: 0 1rem 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.35;
  color: var(--text-subtle);
  background: var(--bg-soft);
}

.fake-chat__toggle {
  width: 3.25rem;
  height: 3.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-on);
  cursor: pointer;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transition: transform 0.2s var(--ease-out), background 0.2s ease,
    box-shadow 0.2s ease;
}

.fake-chat__toggle:hover {
  background: var(--accent-hover);
  transform: scale(1.04);
}

.fake-chat__toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.fake-chat__toggle-icon {
  width: 1.35rem;
  height: 1.35rem;
}

@media (prefers-reduced-motion: reduce) {
  .hero__hammer.is-striking .hero__hammer-tool,
  .hero__hammer.is-striking-back .hero__hammer-tool {
    animation: none;
  }

  .hero__media-img.hero__media-img--zooming {
    animation: none !important;
    transform: scale(1);
  }

  html {
    scroll-behavior: auto;
  }

  .btn--primary:hover {
    transform: none;
  }

  .fake-chat__panel {
    animation: none;
  }

  .fake-chat__toggle:hover {
    transform: none;
  }

  .page-loader-demo:hover {
    transform: none;
  }

  .page-loader {
    transition: opacity 0.2s ease, visibility 0.2s step-end;
  }

  .page-loader__floor,
  .page-loader__roof,
  .page-loader__crane,
  .page-loader__ground {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .page-loader__crane {
    transform: rotate(12deg) scaleY(1);
  }

  .page-loader__floor {
    transform: scaleY(1);
  }

  .page-loader__roof {
    transform: translateY(0);
  }

  .page-loader__ground {
    opacity: 0.55;
    transform: scaleX(1);
  }

  .page-loader__text {
    animation: none;
    opacity: 0.85;
  }
}
