:root {
  --ink: #0b0c0e;
  --ink-soft: #17191c;
  --paper: #f8f7f2;
  --surface: #eceae3;
  --white: #ffffff;
  --signal: #ffd51f;
  --signal-dark: #e5bc00;
  --line: #cfcdc4;
  --muted: #6f706f;
  --max-width: 1280px;
  --side: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5rem, 10vw, 9.5rem);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 999;
  padding: 0.7rem 1rem;
  background: var(--signal);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-180%);
  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;
}

.demo-bar {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.45rem var(--side);
  background: var(--signal);
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.demo-bar__separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 0 var(--side);
  background: rgba(11, 12, 14, 0.94);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  line-height: 1;
}

.brand__mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--signal);
}

.brand__mark svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: var(--ink);
}

.brand__name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.brand__name span {
  color: var(--signal);
}

.brand__service {
  padding-left: 0.55rem;
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 2.7vw, 2.8rem);
}

.main-nav a {
  position: relative;
  padding: 0.65rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.35rem;
  height: 2px;
  background: var(--signal);
  transition: right 220ms ease;
}

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

.main-nav a:hover::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 42px;
  padding: 0 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--ink);
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(255, 213, 31, 0.5);
  animation: status-pulse 2.5s ease-out infinite;
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100svh - 114px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4.5rem, 8vw, 8rem) var(--side) clamp(3rem, 5vw, 5rem);
}

.hero__content::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-grid;
  place-items: center;
  width: 2.1rem;
  height: 1.5rem;
  background: var(--signal);
  color: var(--ink);
  letter-spacing: 0;
}

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

.hero__eyebrow {
  color: rgba(255, 255, 255, 0.66);
  animation: hero-rise 700ms 100ms both;
}

.hero h1 {
  max-width: 8ch;
  margin: clamp(1.3rem, 3vw, 2.4rem) 0 1.5rem;
  font-size: clamp(3.6rem, 7.3vw, 7.2rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.87;
  animation: hero-rise 800ms 180ms both;
}

.hero h1 em,
.area h2 em,
.contact h2 em {
  color: var(--signal);
  font-style: normal;
}

.hero__lead {
  max-width: 38rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  line-height: 1.6;
  animation: hero-rise 800ms 260ms both;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin-top: 2.25rem;
  animation: hero-rise 800ms 340ms both;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 0.9rem 1.35rem;
  border: 0;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

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

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

.button--signal {
  background: var(--signal);
  color: var(--ink);
}

.button--signal:hover {
  background: var(--white);
}

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

.button--dark:hover {
  background: var(--white);
  color: var(--ink);
}

.button--wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

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

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(3.3rem, 6vw, 6.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  animation: hero-rise 800ms 420ms both;
}

.hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.hero__meta strong {
  font-size: 0.83rem;
  letter-spacing: -0.01em;
}

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

.hero__visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #b7b4ae;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 12, 14, 0.1), transparent 28%),
    linear-gradient(0deg, rgba(11, 12, 14, 0.35), transparent 32%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  animation: hero-image 1.2s 100ms both;
}

.image-label {
  position: absolute;
  right: 1.3rem;
  bottom: 1.25rem;
  z-index: 3;
  padding: 0.45rem 0.6rem;
  background: rgba(11, 12, 14, 0.84);
  color: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-label--light {
  right: auto;
  left: 1.25rem;
}

.hero__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 4;
  width: 100px;
  height: 100px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem;
  background: var(--signal);
  color: var(--ink);
  transform: rotate(-2deg);
  animation: badge-drop 800ms 650ms both;
}

.hero__badge > span {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.hero__badge small {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.54rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.circuit-line {
  position: absolute;
  z-index: 3;
  background: var(--signal);
  transform-origin: left center;
}

.circuit-line::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signal);
  transform: translateY(-50%);
}

.circuit-line--one {
  top: 18%;
  left: 0;
  width: 24%;
  height: 2px;
  animation: line-grow 1s 900ms both;
}

.circuit-line--two {
  right: 0;
  bottom: 24%;
  width: 18%;
  height: 2px;
  animation: line-grow 1s 1.05s both;
}

.service-ticker {
  overflow: hidden;
  background: var(--signal);
  color: var(--ink);
}

.service-ticker__track {
  min-width: max-content;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2.4vw, 2.5rem);
  padding: 0.85rem var(--side);
}

.service-ticker span {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-ticker i {
  width: 6px;
  height: 6px;
  background: var(--ink);
  transform: rotate(45deg);
}

.section {
  padding: var(--section-space) var(--side);
}

.services,
.faq {
  max-width: calc(var(--max-width) + 2 * var(--side));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 1.55fr) minmax(220px, 0.7fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(3.2rem, 6vw, 5.5rem);
}

.section-heading h2,
.approach h2,
.area h2,
.faq h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.3vw, 5.6rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 2.7vw, 2.5rem);
  background: transparent;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(10, 11, 13, 0.1);
  transform: translateY(-5px);
}

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-card__number {
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card svg {
  width: 2.6rem;
  height: 2.6rem;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
  transition: stroke 180ms ease, transform 220ms ease;
}

.service-card:hover svg {
  stroke: var(--signal-dark);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: auto 0 0.7rem;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.service-card p {
  min-height: 4.8rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card a span {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.service-card a:hover span {
  transform: translate(3px, -3px);
}

.emergency {
  position: relative;
  overflow: hidden;
  min-height: 570px;
  display: grid;
  place-items: center;
  padding: clamp(5rem, 9vw, 8rem) var(--side);
  background: var(--signal);
  color: var(--ink);
}

.emergency__stripe {
  position: absolute;
  inset: 0 auto 0 0;
  width: clamp(16px, 2vw, 28px);
  background: repeating-linear-gradient(-45deg, var(--ink) 0 14px, var(--signal) 14px 28px);
}

.emergency__content {
  position: relative;
  z-index: 2;
  width: min(100%, 950px);
  text-align: center;
}

.emergency__label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(11, 12, 14, 0.35);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-icon {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(11, 12, 14, 0.4);
  animation: dark-pulse 2.3s ease-out infinite;
}

.emergency h2 {
  margin: 0;
  font-size: clamp(3rem, 6.7vw, 6.7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.emergency p {
  max-width: 660px;
  margin: 1.7rem auto 2rem;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.emergency__code {
  position: absolute;
  right: -2vw;
  bottom: -13vw;
  color: rgba(11, 12, 14, 0.07);
  font-size: clamp(18rem, 36vw, 38rem);
  font-weight: 900;
  line-height: 1;
  transform: rotate(8deg);
}

.approach {
  max-width: calc(var(--max-width) + 2 * var(--side));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: clamp(3rem, 7vw, 7rem);
}

.approach__image {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #d0cec7;
}

.approach__image::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 22%;
  height: 14px;
  background: var(--signal);
}

.approach__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 47% center;
  transition: transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.approach__image:hover img {
  transform: scale(1.025);
}

.approach__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}

.approach h2 {
  margin-top: 1.5rem;
}

.approach__intro {
  max-width: 590px;
  margin: 1.6rem 0 2.5rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.process-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  padding-top: 0.2rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.process-list h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.area {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding-left: max(var(--side), calc((100vw - var(--max-width)) / 2));
  padding-right: max(var(--side), calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--white);
}

.area h2 {
  margin-top: 1.6rem;
}

.area__intro p {
  max-width: 440px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.area__map {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #121417;
}

.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image: linear-gradient(rgba(255, 255, 255, 0.26) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 48px 48px;
  transform: perspective(500px) rotateX(50deg) scale(1.5);
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(255, 213, 31, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring--one {
  width: 210px;
  height: 210px;
}

.map-ring--two {
  width: 390px;
  height: 390px;
  opacity: 0.5;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--signal);
  transform: translate(-50%, -50%) rotate(45deg);
  box-shadow: 0 0 0 12px rgba(255, 213, 31, 0.1), 0 0 50px rgba(255, 213, 31, 0.25);
}

.map-pin span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
}

.area__map strong,
.map-place {
  position: absolute;
  z-index: 2;
  padding: 0.35rem 0.55rem;
  background: rgba(11, 12, 14, 0.8);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.area__map strong {
  left: calc(50% + 34px);
  top: calc(50% + 12px);
  color: var(--signal);
}

.map-place--one { right: 13%; top: 19%; }
.map-place--two { left: 12%; top: 27%; }
.map-place--three { left: 16%; bottom: 17%; }
.map-place--four { right: 14%; bottom: 18%; }

.faq {
  display: grid;
  grid-template-columns: minmax(250px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.faq h2 {
  margin-top: 1.6rem;
}

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

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

.accordion summary {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary span {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 400;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.accordion details[open] summary span {
  background: var(--signal);
  color: var(--ink);
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  margin: -0.3rem 3.5rem 1.5rem 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  padding: var(--section-space) max(var(--side), calc((100vw - var(--max-width)) / 2));
  background: var(--ink-soft);
  color: var(--white);
}

.contact__copy > p {
  max-width: 520px;
  margin: 1.6rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
}

.contact h2 {
  margin-top: 1.6rem;
}

.contact-details {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details > div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details dt {
  color: rgba(255, 255, 255, 0.48);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 0;
  font-weight: 700;
}

.contact__copy .demo-notice {
  margin-top: 1.25rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.74rem;
}

.quote-form {
  align-self: start;
  padding: clamp(1.6rem, 3.4vw, 3rem);
  background: var(--paper);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.quote-form label {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid #aaa99f;
  border-radius: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  transition: border-color 180ms ease;
}

.quote-form textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--signal);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: #8a8982;
}

.form-note,
.form-status {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: center;
}

.form-status {
  min-height: 1.3rem;
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  min-height: 150px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.5rem var(--side);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  text-align: right;
}

.brand--footer {
  color: var(--white);
}

.mobile-cta {
  display: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

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

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-image {
  from { opacity: 0; transform: scale(1.035); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes badge-drop {
  from { opacity: 0; transform: translateY(-18px) rotate(-2deg); }
  to { opacity: 1; transform: translateY(0) rotate(-2deg); }
}

@keyframes line-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 213, 31, 0.48); }
  70%, 100% { box-shadow: 0 0 0 8px rgba(255, 213, 31, 0); }
}

@keyframes dark-pulse {
  0% { box-shadow: 0 0 0 0 rgba(11, 12, 14, 0.38); }
  70%, 100% { box-shadow: 0 0 0 9px rgba(11, 12, 14, 0); }
}

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

  .main-nav {
    gap: 1.1rem;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero {
    grid-template-columns: 1fr 0.92fr;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hero__meta div {
    display: grid;
    grid-template-columns: 8rem 1fr;
  }

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

  .section-heading > p {
    grid-column: 2;
  }

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

  .contact {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 3.5rem;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 5rem;
  }

  body {
    padding-bottom: 74px;
  }

  .demo-bar {
    font-size: 0.61rem;
  }

  .site-header {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    display: grid;
    align-content: center;
    gap: 7px;
    padding: 0 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .main-nav {
    position: fixed;
    inset: 102px 0 auto;
    height: calc(100svh - 102px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 2rem var(--side);
    background: var(--ink);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 260ms ease, visibility 260ms;
  }

  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .main-nav a {
    width: 100%;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1rem;
  }

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

  .hero__content {
    padding-top: 4.5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 16vw, 5.7rem);
  }

  .hero__meta {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3.8rem;
  }

  .hero__meta div {
    display: flex;
  }

  .hero__visual {
    min-height: 520px;
  }

  .section-heading,
  .approach,
  .area,
  .faq,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    grid-column: auto;
  }

  .approach__image {
    min-height: 580px;
  }

  .area__map {
    min-height: 430px;
  }

  .contact {
    gap: 3rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.2rem;
  }

  .site-footer p:last-child {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 60;
    inset: auto 0 0;
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem var(--side);
    background: var(--signal);
    color: var(--ink);
    border-top: 2px solid var(--ink);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-cta span:first-child {
    display: flex;
    flex-direction: column;
  }

  .mobile-cta small {
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.07em;
  }

  .mobile-cta > span:last-child {
    font-size: 1.35rem;
  }
}

@media (max-width: 560px) {
  .demo-bar {
    align-items: flex-start;
    gap: 0.45rem;
  }

  .demo-bar__separator {
    flex: 0 0 auto;
    margin-top: 0.26rem;
  }

  .brand__service {
    display: none;
  }

  .main-nav {
    inset: 102px 0 auto;
  }

  .hero__content {
    padding-top: 3.6rem;
    padding-bottom: 3.5rem;
  }

  .hero__eyebrow {
    align-items: flex-start;
  }

  .hero h1 {
    margin-top: 1.5rem;
    font-size: clamp(3.25rem, 17vw, 4.8rem);
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3rem;
  }

  .hero__meta div {
    display: grid;
    grid-template-columns: 8rem 1fr;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .hero__visual {
    min-height: 420px;
  }

  .hero__visual img {
    object-position: 66% center;
  }

  .hero__badge {
    top: 1rem;
    left: 1rem;
    width: 88px;
    height: 88px;
  }

  .service-ticker__track {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .section-heading h2,
  .approach h2,
  .area h2,
  .faq h2,
  .contact h2 {
    font-size: clamp(2.7rem, 14vw, 4rem);
  }

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

  .service-card {
    min-height: 315px;
  }

  .emergency {
    min-height: 600px;
    padding-left: calc(var(--side) + 12px);
  }

  .emergency h2 {
    font-size: clamp(2.7rem, 13.5vw, 4.2rem);
  }

  .approach__image {
    min-height: 430px;
  }

  .approach__image img {
    object-position: 50% center;
  }

  .map-ring--two {
    width: 315px;
    height: 315px;
  }

  .area__map {
    min-height: 390px;
  }

  .map-place--one { right: 4%; top: 18%; }
  .map-place--two { left: 4%; top: 25%; }
  .map-place--three { left: 5%; bottom: 16%; }
  .map-place--four { right: 5%; bottom: 17%; }

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

  .quote-form {
    margin-inline: calc(var(--side) * -0.2);
  }
}

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

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
