:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5a6472;
  --line: #d9e1e8;
  --paper: #f7f8f5;
  --white: #ffffff;
  --navy: #102033;
  --teal: #0e756f;
  --red: #b23b32;
  --gold: #d7a84f;
  --green-soft: #e8f2ef;
  --blue-soft: #e9eff7;
  --shadow: 0 18px 45px rgba(16, 32, 51, 0.14);
  --strong-shadow: 0 28px 80px rgba(11, 20, 31, 0.28);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

body.is-locked > :not(.password-gate) {
  visibility: hidden;
}

.password-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow: auto;
  background:
    linear-gradient(90deg, rgba(12, 24, 38, 0.96), rgba(12, 24, 38, 0.78)),
    url("https://s3-media0.fl.yelpcdn.com/bphoto/rXHTC1JqMToihkt1rsJ1sA/l.jpg") center / cover;
  color: var(--white);
}

body:not(.is-locked) .password-gate {
  display: none;
}

.gate-card {
  width: min(980px, 100%);
  display: grid;
  gap: 22px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(16, 32, 51, 0.82);
  box-shadow: var(--strong-shadow);
  backdrop-filter: blur(18px);
}

.gate-card h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: 4.5rem;
}

.gate-note {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.gate-list {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.gate-list h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.gate-list ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.78);
}

.gate-form {
  display: grid;
  gap: 10px;
}

.gate-form label {
  color: var(--white);
}

.gate-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.gate-error {
  min-height: 22px;
  margin: 0;
  color: var(--gold);
  font-weight: 900;
}

.gate-signoff {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.top-alert {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 42px;
  padding: 8px clamp(18px, 4vw, 56px);
  background: var(--red);
  color: var(--white);
  font-size: 0.86rem;
}

.top-alert span {
  color: rgba(255, 255, 255, 0.74);
}

.top-alert a {
  font-weight: 900;
  text-decoration: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 185px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

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

.phone-link {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink) !important;
  background: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 430px);
  gap: clamp(24px, 4vw, 54px);
  align-items: end;
  overflow: hidden;
  background: var(--navy);
  padding-right: clamp(18px, 5vw, 70px);
  width: 100%;
  max-width: 100vw;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 24, 38, 0.95), rgba(12, 24, 38, 0.76) 42%, rgba(12, 24, 38, 0.48)),
    url("https://s3-media0.fl.yelpcdn.com/bphoto/rXHTC1JqMToihkt1rsJ1sA/l.jpg") center / cover;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 210px;
  background: linear-gradient(0deg, rgba(12, 24, 38, 0.92), rgba(12, 24, 38, 0));
}

.circuit-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
}

.circuit-lines span {
  position: absolute;
  right: -40px;
  width: min(42vw, 560px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 168, 79, 0.78), transparent);
  transform-origin: right center;
  animation: circuitPulse 5s ease-in-out infinite;
}

.circuit-lines span:nth-child(1) {
  top: 27%;
  transform: rotate(-18deg);
}

.circuit-lines span:nth-child(2) {
  top: 48%;
  transform: rotate(9deg);
  animation-delay: 0.9s;
}

.circuit-lines span:nth-child(3) {
  top: 70%;
  transform: rotate(-7deg);
  animation-delay: 1.8s;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(860px, calc(100% - 36px));
  padding: clamp(68px, 12vh, 128px) 0 clamp(44px, 9vh, 82px);
  margin-left: clamp(18px, 6vw, 78px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.proof-band .eyebrow,
.team-band .eyebrow {
  color: var(--gold);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 5.8rem;
  line-height: 0.95;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: 3.7rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.28rem;
}

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

.hero-quote-card {
  position: relative;
  z-index: 2;
  align-self: center;
  margin-top: 54px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--strong-shadow);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.panel-label {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-quote-card h2 {
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1.05;
}

.quote-choice-list {
  display: grid;
  gap: 10px;
}

.quote-choice-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.quote-choice-list a:hover {
  transform: translateX(-4px);
  border-color: rgba(215, 168, 79, 0.7);
  background: rgba(215, 168, 79, 0.14);
}

.quote-choice-list span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.76rem;
}

.response-meter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.response-meter span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4fd6ae;
  box-shadow: 0 0 0 8px rgba(79, 214, 174, 0.12);
  animation: livePulse 1.8s ease-in-out infinite;
}

.response-meter p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin: 42px 0 0;
}

.hero-ticker {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 24, 38, 0.72);
  color: rgba(255, 255, 255, 0.76);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerMove 22s linear infinite;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.hero-stats dt {
  font-size: 2.25rem;
  font-weight: 900;
}

.hero-stats dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  min-height: 78px;
  display: grid;
  place-items: center;
  padding: 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section,
.quote-section,
.team-band,
.showcase-section {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 940px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 690px;
  color: var(--muted);
}

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

.section-heading.light p {
  color: rgba(255, 255, 255, 0.75);
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(16, 32, 51, 0.06);
  transform: translateY(0);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(178, 59, 50, 0.34);
  box-shadow: var(--shadow);
}

.service-card.featured {
  background: var(--navy);
  color: var(--white);
}

.service-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.featured .service-image {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.service-body {
  min-height: 270px;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.service-kicker {
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.featured .service-kicker {
  color: var(--gold);
}

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

.featured p,
.featured li {
  color: rgba(255, 255, 255, 0.74);
}

.service-card ul {
  padding-left: 18px;
  margin-bottom: 26px;
}

.service-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.featured a {
  color: var(--gold);
}

.proof-band {
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 70px);
  background: var(--navy);
}

.proof-scoreboard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0 0 18px;
}

.proof-scoreboard div {
  min-height: 104px;
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.proof-scoreboard strong,
.proof-scoreboard span {
  display: block;
}

.proof-scoreboard strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
}

.proof-scoreboard span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.review-card {
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.rating {
  color: var(--gold);
  font-weight: 900;
}

blockquote {
  margin: 0 0 22px;
  font-size: 1.55rem;
  line-height: 1.22;
}

cite {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
}

.project-gallery {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
}

figure img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 240ms ease;
}

figure:hover img {
  transform: scale(1.04);
}

figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
  background: var(--green-soft);
}

.split p {
  color: var(--muted);
  max-width: 610px;
}

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

.area-list a {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(16, 32, 51, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-decoration: none;
}

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

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process li {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

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

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

.team-band {
  display: grid;
  grid-template-columns: minmax(330px, 0.5fr) minmax(560px, 1.5fr);
  grid-template-rows: auto 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  color: var(--white);
  background: linear-gradient(135deg, #111c2a, #17202a 52%, #243244);
}

.team-copy {
  grid-column: 1;
  grid-row: 1;
}

.team-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.76);
}

.family-trio-photo {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  min-height: 620px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--strong-shadow);
}

.family-trio-photo figure {
  position: relative;
  border-radius: 0;
  background: var(--ink);
}

.family-trio-photo figure + figure {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.family-trio-photo img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.04) contrast(1.02);
}

.family-trio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 18, 28, 0.88), rgba(10, 18, 28, 0.02) 58%);
  pointer-events: none;
}

.family-trio-caption {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.family-trio-caption span,
.family-trio-caption strong {
  display: block;
}

.family-trio-caption span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.family-trio-caption strong {
  max-width: 360px;
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1.05;
}

.family-trio-photo figcaption {
  position: absolute;
  z-index: 1;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 32, 51, 0.56);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.team-panel {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.team-panel dl {
  display: grid;
  gap: 12px;
  margin-bottom: 0;
}

.team-panel div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.team-panel dt {
  color: rgba(255, 255, 255, 0.62);
}

.team-panel dd {
  margin: 0;
  font-weight: 900;
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  background: #f4f1e8;
}

.showcase-copy p {
  max-width: 650px;
  color: var(--muted);
}

.ops-board {
  padding: 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--strong-shadow);
}

.ops-header,
.ops-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}

.ops-header {
  padding: 10px 12px 16px;
  color: rgba(255, 255, 255, 0.72);
}

.ops-header strong {
  color: var(--gold);
}

.ops-row {
  min-height: 92px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-row + .ops-row {
  margin-top: 10px;
}

.ops-row.priority {
  background: rgba(178, 59, 50, 0.28);
  border-color: rgba(215, 168, 79, 0.3);
}

.ops-row p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.ops-row em {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-weight: 900;
}

.status-dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 8px rgba(178, 59, 50, 0.16);
}

.status-dot.teal {
  background: var(--teal);
  box-shadow: 0 0 0 8px rgba(14, 117, 111, 0.16);
}

.status-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(215, 168, 79, 0.16);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.12fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background: var(--blue-soft);
}

.quote-copy {
  position: sticky;
  top: 104px;
}

.quote-copy p {
  color: var(--muted);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 30px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 12px;
  background: #fbfcfd;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(14, 117, 111, 0.12);
  outline: none;
}

textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 900;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 70px);
  background: var(--ink);
  color: var(--white);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(14px);
}

.reveal-group.is-visible > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-group.is-visible > *:nth-child(2) {
  transition-delay: 70ms;
}

.reveal-group.is-visible > *:nth-child(3) {
  transition-delay: 140ms;
}

.reveal-group.is-visible > *:nth-child(4) {
  transition-delay: 210ms;
}

.reveal-group.is-visible > *:nth-child(5) {
  transition-delay: 280ms;
}

.reveal-group.is-visible > *:nth-child(6) {
  transition-delay: 350ms;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-32%);
  }
}

@keyframes livePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.25);
  }
}

@keyframes circuitPulse {
  0%,
  100% {
    opacity: 0.18;
  }
  50% {
    opacity: 0.78;
  }
}

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

  h2 {
    font-size: 3rem;
  }

  .service-grid,
  .proof-layout,
  .split,
  .process,
  .team-band,
  .quote-section,
  .showcase-section,
  .hero {
    grid-template-columns: 1fr;
  }

  .team-band {
    grid-template-rows: auto;
  }

  .hero {
    padding-right: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-quote-card {
    width: min(620px, calc(100% - 36px));
    min-width: 0;
    margin: 0 auto 82px;
  }

  .project-gallery {
    grid-template-columns: 1fr 1fr;
  }

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

  .family-trio-photo {
    grid-column: 1;
    grid-row: auto;
    min-height: 420px;
  }

  .family-trio-photo img {
    min-height: 420px;
  }

  .team-panel {
    grid-row: auto;
    align-self: start;
  }

  .quote-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .password-gate {
    padding: 14px;
  }

  .gate-card h1 {
    font-size: 2.35rem;
  }

  .gate-note {
    font-size: 1rem;
  }

  .gate-input-row {
    grid-template-columns: 1fr;
  }

  .top-alert {
    display: none;
  }

  .top-alert span {
    display: none;
  }

  .top-alert strong,
  .top-alert a {
    display: none;
  }

  .top-alert + .site-header {
    border-top: 3px solid var(--red);
  }

  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    inset: 68px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .phone-link {
    border-radius: var(--radius);
  }

  .hero {
    min-height: calc(100vh - 68px);
    align-items: stretch;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(12, 24, 38, 0.72), rgba(12, 24, 38, 0.96)),
      url("https://s3-media0.fl.yelpcdn.com/bphoto/rXHTC1JqMToihkt1rsJ1sA/l.jpg") center / cover;
  }

  .hero-content {
    width: min(calc(100vw - 32px), 360px);
    max-width: calc(100vw - 32px);
    min-width: 0;
    margin: 0 0 0 16px;
    padding-top: 44px;
    padding-bottom: 28px;
    overflow: hidden;
  }

  h1 {
    font-size: 2.14rem;
    line-height: 1.02;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-copy,
  blockquote {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-stats dt {
    font-size: 1.9rem;
  }

  .hero-stats,
  .trust-strip,
  .project-gallery,
  .area-list,
  .quote-form,
  .proof-scoreboard,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .family-trio-photo {
    grid-column: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 280px;
  }

  .family-trio-photo img {
    min-height: 280px;
  }

  .family-trio-caption {
    display: block;
  }

  .family-trio-caption strong {
    margin-top: 6px;
    font-size: 1.2rem;
  }

  .family-trio-photo figcaption {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
    font-size: 0.72rem;
  }

  .service-image {
    height: 165px;
  }

  .service-body {
    min-height: 0;
  }


  .hero-quote-card {
    margin-bottom: 74px;
  }

  .hero-ticker {
    display: none;
  }

  .trust-strip span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-actions,
  .area-actions,
  .site-footer {
    flex-direction: column;
  }

  .button,
  .footer-links,
  .footer-links a {
    width: 100%;
  }

  figure img {
    height: 245px;
  }
}

@media (max-width: 420px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .service-card,
  .review-card,
  .process li,
  .team-panel,
  .quote-form,
  .hero-quote-card,
  .ops-board {
    padding: 18px;
  }

  .ops-row {
    grid-template-columns: auto 1fr;
  }

  .ops-row em {
    grid-column: 2;
  }
}

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