@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../assets/fonts/Inter-300.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../assets/fonts/Inter-400.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../assets/fonts/Inter-500.ttf") format("truetype");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../assets/fonts/Inter-600.ttf") format("truetype");
}

:root {
  color-scheme: dark;
  --bg: #09090b;
  --bg-soft: #101014;
  --panel: rgba(24, 24, 27, 0.7);
  --panel-strong: rgba(24, 24, 27, 0.92);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #a1a1aa;
  --text-strong: #f4f4f5;
  --muted: #71717a;
  --accent: #eab308;
  --accent-soft: rgba(234, 179, 8, 0.12);
  --accent-bright: #facc15;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius: 18px;
  --container: min(80rem, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    linear-gradient(180deg, #09090b 0%, #0a0a0d 45%, #09090b 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02), transparent 20%),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 88px
    );
  opacity: 0.28;
  mix-blend-mode: screen;
}

::selection {
  background: rgba(234, 179, 8, 0.22);
  color: #fff;
}

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

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

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

button {
  border: 0;
  background: none;
}

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.82);
  backdrop-filter: blur(14px);
}

.nav-bar {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.brand img {
  height: 2.55rem;
  width: auto;
  max-width: 9.5rem;
  object-fit: contain;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.94rem;
  font-weight: 500;
}

.site-nav.is-open .nav-links {
  position: absolute;
  inset: 100% 0 auto;
  display: grid;
  gap: 0;
  padding: 0.45rem 1rem 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.96);
  backdrop-filter: blur(14px);
}

.site-nav.is-open .nav-links a {
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-actions .btn {
  min-height: 2.55rem;
  padding: 0.78rem 0.95rem;
}

.nav-toggle {
  width: 2.55rem;
  height: 2.55rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  width: 1.05rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(0.29rem) rotate(45deg);
}

.site-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-0.29rem) rotate(-45deg);
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: #d4d4d8;
  font-size: 0.92rem;
}

.nav-phone__label {
  display: inline;
}

.icon {
  width: 1em;
  height: 1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--xs {
  width: 0.85rem;
  height: 0.85rem;
}

.icon--sm {
  width: 1rem;
  height: 1rem;
}

.icon--md {
  width: 1.75rem;
  height: 1.75rem;
}

.icon--lg {
  width: 1.5rem;
  height: 1.5rem;
}

.icon--xl {
  width: 2.5rem;
  height: 2.5rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 2.75rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
  isolation: isolate;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--light {
  background: #fff;
  color: #09090b;
}

.btn--light:hover {
  background: #e4e4e7;
  box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.55);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(234, 179, 8, 0.55);
}

.btn--submit {
  width: 100%;
  border-radius: 0.5rem;
  min-height: 3rem;
  margin-top: 0.5rem;
}

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 4rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo,
.hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__photo {
  object-fit: cover;
  filter: grayscale(100%);
}

.hero__photo--texture {
  opacity: 0.78;
}

.hero__overlay--gradient {
  background:
    linear-gradient(to top, #09090b 0%, rgba(9, 9, 11, 0.62) 44%, rgba(9, 9, 11, 0.08) 100%),
    linear-gradient(to right, #09090b 0%, rgba(9, 9, 11, 0.62) 50%, rgba(9, 9, 11, 0.14) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 5rem 4rem;
}

.hero-copy {
  max-width: 52rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
  padding: 0.05rem 0;
  border: 0;
  background: transparent;
  color: var(--accent-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge__pulse {
  position: relative;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.5);
  animation: pulse 2s infinite;
}

.hero h1 {
  margin: 0 0 1.25rem;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--accent-bright);
}

.hero p {
  max-width: 42rem;
  margin: 0 0 2rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #a1a1aa;
  font-weight: 300;
}

.hero-motto {
  max-width: 32rem;
  margin: -0.8rem 0 2rem;
  padding-left: 0.95rem;
  border-left: 2px solid rgba(234, 179, 8, 0.55);
  color: #f4f4f5;
  font-size: 0.88rem;
  font-style: italic;
  line-height: 1.5;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-band {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: rgba(9, 9, 11, 0.58);
}

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

.stat {
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat:nth-child(odd) {
  padding-right: 1rem;
}

.stat:nth-child(even) {
  padding-left: 1rem;
}

.stat strong {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat strong span {
  color: var(--accent);
  font-size: 1.15rem;
}

.stat__icon {
  width: 1rem;
  height: 1rem;
  align-self: center;
  color: var(--accent);
  stroke-width: 2.1;
}

.stat > span {
  display: block;
  margin-top: 0.4rem;
  color: #71717a;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding-block: 5.5rem;
}

.section#services {
  padding-top: 6rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 3rem;
}

.section-head h2,
.feature-copy h2,
.maintenance-banner h2,
.contact-copy h2 {
  margin: 0 0 1rem;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.section-head p,
.feature-copy p,
.maintenance-banner p,
.contact-copy > p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 300;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.section--service-photo {
  padding-block: 0;
  background: #09090b;
}

.service-photo {
  position: relative;
  margin: 0;
  min-height: 18rem;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to top, rgba(9, 9, 11, 0.45), transparent 52%),
    linear-gradient(to right, rgba(9, 9, 11, 0.55), transparent 45%);
}

.service-photo img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.equipment-grid {
  display: grid;
  gap: 1rem;
}

.equipment-card {
  padding: 1.4rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(24, 24, 27, 0.36);
}

.equipment-card h3 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.equipment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: #d4d4d8;
  font-size: 0.84rem;
  line-height: 1.45;
}

.equipment-list li {
  position: relative;
  padding-left: 0.95rem;
}

.equipment-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 999px;
  background: var(--accent);
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 1.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(24, 24, 27, 0.5);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  background: rgba(24, 24, 27, 0.84);
  border-color: rgba(255, 255, 255, 0.12);
}

.service-card__topline {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 260ms ease;
}

.service-card:hover .service-card__topline {
  transform: scaleX(1);
}

.service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #09090b;
  color: #d4d4d8;
}

.service-card h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 500;
}

.service-card p {
  margin: 0 0 1.25rem;
  color: #71717a;
  font-size: 0.93rem;
  line-height: 1.65;
  font-weight: 300;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
  color: #d4d4d8;
  font-size: 0.79rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.check-list .icon {
  color: var(--accent);
}

.section--split {
  border-top: 1px solid var(--line);
  background: #09090b;
}

.section--equipment {
  border-top: 1px solid var(--line);
  background: rgba(24, 24, 27, 0.1);
}

.split-grid,
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

.feature-media {
  position: relative;
  min-height: 32rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.82), transparent 58%);
}

.feature-media__overlay {
  position: absolute;
  inset: auto 1rem 1rem;
  z-index: 1;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(10px);
}

.feature-callout {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.feature-callout h4,
.reason h4 {
  margin: 0 0 0.25rem;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 500;
}

.feature-callout p,
.reason p {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.78rem;
  line-height: 1.6;
  font-weight: 300;
}

.feature-copy {
  display: grid;
  align-content: center;
}

.reason-list {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.75rem;
}

.reason {
  display: flex;
  gap: 0.9rem;
}

.reason__dot {
  width: 0.375rem;
  height: 0.375rem;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: #3f3f46;
  flex: none;
}

.reason__dot--accent {
  background: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(234, 179, 8, 0.12);
}

.section--maintenance {
  border-top: 1px solid var(--line);
  background: rgba(24, 24, 27, 0.16);
}

.maintenance-banner {
  max-width: 62rem;
  margin-inline: auto;
  text-align: center;
}

.maintenance-banner__icon {
  margin-bottom: 1.1rem;
  color: #71717a;
}

.maintenance-banner .btn {
  margin-top: 0.25rem;
}

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

.contact-list {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.service-map {
  margin-top: 2rem;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), transparent 42%),
    #101014;
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 2rem 2rem;
  opacity: 0.5;
}

.california-map {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: 18rem;
  padding: 1rem;
}

.map-state {
  fill: rgba(255, 255, 255, 0.08);
  stroke: rgba(255, 255, 255, 0.56);
  stroke-width: 2;
  stroke-linejoin: round;
}

.map-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.map-pin circle {
  fill: var(--accent);
  stroke: rgba(9, 9, 11, 0.92);
  stroke-width: 2;
  filter: drop-shadow(0 0 0.45rem rgba(250, 204, 21, 0.55));
}

.map-pin text {
  fill: #f4f4f5;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.map-card__legend {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0 1rem 1rem;
}

.map-card__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #d4d4d8;
  font-size: 0.72rem;
}

.map-card__legend span::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: var(--accent);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item__icon {
  width: 3rem;
  height: 3rem;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #18181b;
  border: 1px solid var(--line);
  color: #fff;
}

.eyebrow {
  display: block;
  margin-bottom: 0.25rem;
  color: #71717a;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item a,
.contact-item p {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.35;
  font-weight: 500;
}

.contact-item p {
  color: #d4d4d8;
  font-size: 0.95rem;
  font-weight: 300;
}

.contact-form {
  padding: 1.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(24, 24, 27, 0.32);
}

.form {
  display: grid;
  gap: 1rem;
}

.form-note {
  margin: 0;
  color: #a1a1aa;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 300;
}

.form-note span,
.form abbr {
  color: var(--accent);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.form label {
  display: grid;
  gap: 0.55rem;
}

.form label > span {
  color: #a1a1aa;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
}

.form abbr {
  text-decoration: none;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.78rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background: #09090b;
  color: #fff;
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.form input::placeholder,
.form textarea::placeholder {
  color: #52525b;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(234, 179, 8, 0.45);
  box-shadow: 0 0 0 1px rgba(234, 179, 8, 0.45);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  padding-right: 2.6rem;
}

.select-wrap__icon {
  position: absolute;
  top: 50%;
  right: 0.9rem;
  transform: translateY(-50%);
  color: #71717a;
  pointer-events: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.2rem;
  color: #a1a1aa;
  font-size: 0.88rem;
  font-weight: 300;
  user-select: none;
}

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

.checkbox__box {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #09090b;
  color: #09090b;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.checkbox__icon {
  opacity: 0;
  transition: opacity 160ms ease;
}

.checkbox input:checked + .checkbox__box {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox input:checked + .checkbox__box .checkbox__icon {
  opacity: 1;
}

.btn--submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
}

.form-status.is-success {
  color: #d8f5a2;
}

.form-status.is-error {
  color: #fca5a5;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 0;
  background: #09090b;
}

.footer-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.brand--footer img {
  opacity: 0.55;
}

.site-footer p {
  margin: 0;
  color: #52525b;
  font-size: 0.74rem;
  font-weight: 300;
}

.reveal {
  opacity: 0;
  transition:
    opacity 650ms ease,
    transform 650ms ease;
  will-change: opacity, transform;
}

.reveal--left {
  transform: translateX(-28px);
}

.reveal--right {
  transform: translateX(28px);
}

.reveal--up {
  transform: translateY(18px);
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0.5);
  }
  70% {
    box-shadow: 0 0 0 0.85rem rgba(250, 204, 21, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(250, 204, 21, 0);
  }
}

@media (max-width: 28rem) {
  .nav-bar {
    gap: 0.45rem;
  }

  .brand img {
    max-width: 7.65rem;
  }

  .nav-actions {
    gap: 0.4rem;
  }

  .nav-actions .btn {
    padding-inline: 0.78rem;
    font-size: 0.82rem;
  }

  .nav-actions .btn .icon {
    display: none;
  }

  .california-map {
    height: 14rem;
    min-height: 0;
    padding: 0.35rem;
  }

  .map-pin circle {
    transform: scale(0.82);
    transform-origin: center;
  }

  .map-pin text {
    font-size: 0.52rem;
  }

  .map-card__legend {
    gap: 0.35rem;
    padding: 0 0.75rem 0.75rem;
  }

  .map-card__legend span {
    font-size: 0.66rem;
  }
}

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

  .badge__pulse {
    animation: none;
  }

  .reveal,
  .btn,
  .service-card,
  .service-card__topline {
    transition: none;
  }
}

@media (min-width: 48rem) {
  :root {
    --container: min(80rem, calc(100vw - 3rem));
  }

  .nav-bar {
    gap: 1rem;
  }

  .brand img {
    height: 3rem;
    max-width: none;
  }

  .nav-links {
    display: flex;
    position: static;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-nav.is-open .nav-links {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .site-nav.is-open .nav-links a {
    padding: 0;
    border-top: 0;
  }

  .nav-toggle {
    display: none;
  }

  .nav-actions {
    gap: 0.75rem;
  }

  .nav-actions .btn {
    min-height: 2.75rem;
    padding: 0.8rem 1.35rem;
  }

  .nav-phone {
    display: inline-flex;
    width: 2.5rem;
    height: 2.5rem;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #f4f4f5;
  }

  .nav-phone__label {
    display: none;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  .hero p {
    font-size: 1.2rem;
  }

  .hero-actions {
    flex-direction: row;
  }

  .service-photo {
    min-height: 24rem;
  }

  .service-photo img {
    min-height: 24rem;
  }

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

  .stat {
    border-top: 0;
    padding: 1.5rem 1.75rem;
  }

  .stat + .stat {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }

  .section-head h2,
  .feature-copy h2,
  .maintenance-banner h2,
  .contact-copy h2 {
    font-size: 2.75rem;
  }

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

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

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

  .footer-row {
    text-align: center;
  }
}

@media (min-width: 64rem) {
  .nav-phone {
    width: auto;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    gap: 0.5rem;
    color: #d4d4d8;
  }

  .nav-phone__label {
    display: inline;
  }

  .hero h1 {
    font-size: 5.75rem;
  }

  .hero__content {
    padding-block: 6.25rem 5rem;
  }

  .split-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
    align-items: center;
  }

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

  .contact-form {
    padding: 2rem;
  }
}
