:root {
  --bg-top: #0d2238;
  --bg-mid: #071729;
  --bg-deep: #040b14;
  --ink: #162437;
  --ink-soft: #415974;
  --surface: rgba(239, 247, 255, 0.68);
  --surface-strong: rgba(249, 253, 255, 0.88);
  --surface-stroke: rgba(255, 255, 255, 0.44);
  --accent: #f27a36;
  --accent-strong: #c94f1e;
  --accent-soft: #91d7cd;
  --focus: #0c233a;
  --lane-pulse-a: rgba(145, 215, 205, 0.7);
  --lane-pulse-b: rgba(145, 215, 205, 0.16);
  --lane-track: rgba(11, 29, 47, 0.34);
  --lane-cta-speed: 0.9s;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow-sm: 0 10px 24px rgba(12, 26, 42, 0.16);
  --shadow-md: 0 18px 40px rgba(8, 20, 34, 0.2);
  --shadow-lg: 0 30px 70px rgba(6, 14, 24, 0.44);
  --container: min(1160px, 92vw);
  --header-container: min(1460px, 96vw);
  --font-body: "Sora", "Trebuchet MS", sans-serif;
  --font-head: "Sora", "Trebuchet MS", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 50;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(170, 197, 223, 0.48);
  background: rgba(8, 29, 49, 0.96);
  color: rgba(240, 248, 255, 0.98);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(4, 10, 18, 0.38);
}

.skip-link:focus-visible {
  top: 12px;
}

.skip-link:focus:not(:focus-visible) {
  top: -100%;
}

@keyframes lane-sweep {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  20% {
    opacity: 0.56;
  }

  100% {
    opacity: 0;
    transform: translateX(320%);
  }
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% -8%, rgba(84, 144, 188, 0.14) 0%, rgba(84, 144, 188, 0) 44%),
    radial-gradient(circle at 86% 10%, rgba(24, 78, 124, 0.13) 0%, rgba(24, 78, 124, 0) 48%),
    linear-gradient(180deg, var(--bg-top) 0%, #081a2d 38%, var(--bg-mid) 68%, var(--bg-deep) 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
  background:
    radial-gradient(rgba(216, 229, 244, 0.05) 0.7px, transparent 0.7px),
    radial-gradient(rgba(1, 5, 12, 0.28) 0.85px, transparent 0.85px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
  background-size: 3px 3px, 4px 4px, 100% 100%;
  background-position: 0 0, 1px 1px, 0 0;
  opacity: 0.4;
}

.ambient {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.28;
  pointer-events: none;
}

.ambient-one {
  top: -120px;
  right: -130px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(42, 105, 162, 0.34), rgba(42, 105, 162, 0));
}

.ambient-two {
  left: -140px;
  bottom: -170px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(19, 68, 112, 0.3), rgba(19, 68, 112, 0));
}

.glass {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f2a44;
  box-shadow: 0 4px 20px rgba(4, 10, 18, 0.4);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  margin: 0;
  padding-block: 8px;
  padding-inline: max(16px, calc((100vw - var(--header-container)) / 2 + 16px));
  border-radius: 0;
  border-bottom: none;
  background: linear-gradient(180deg, var(--bg-top) 0%, #0b2036 100%);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  isolation: isolate;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(155, 190, 224, 0),
    rgba(155, 190, 224, 0.9) 50%,
    rgba(155, 190, 224, 0)
  );
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  color: #e7f1fd;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.04;
}

.brand-name {
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-tagline {
  margin-top: 3px;
  color: rgba(178, 201, 224, 0.84);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  border: 0;
  background: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: rgba(232, 242, 252, 0.95);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

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

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 8px 11px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(224, 236, 248, 0.94);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  background: rgba(224, 236, 248, 0.14);
  color: #f4f9ff;
}

.btn {
  appearance: none;
  border: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease, color 0.24s ease;
}

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

.btn::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -42%;
  width: 36%;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0)
  );
}

.btn:hover::after,
.btn:focus-visible::after,
.btn.is-lane-active::after {
  animation: lane-sweep var(--lane-cta-speed) ease-out 1;
}

.btn-solid {
  color: #fff7f1;
  background: linear-gradient(140deg, var(--accent), var(--accent-strong));
  box-shadow: 0 12px 24px rgba(108, 42, 15, 0.34);
}

.btn-solid:hover {
  box-shadow: 0 14px 30px rgba(108, 42, 15, 0.42);
}

.btn-ghost {
  color: rgba(239, 246, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(11, 23, 37, 0.38);
}

.btn-ghost:hover {
  background: rgba(11, 23, 37, 0.5);
}

main {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: clamp(64px, 7.2vw, 90px) 0;
}

.hero {
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  padding: 0;
}

.hero-media {
  position: relative;
  min-height: clamp(560px, 68vw, 700px);
  border-radius: 0;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-block: clamp(20px, 3vw, 34px);
  padding-inline: max(18px, calc((100vw - var(--container)) / 2 + 18px));
  background: #0b1f33;
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-image:
    linear-gradient(180deg, rgba(8, 16, 26, 0.07), rgba(8, 16, 26, 0.07)),
    url("assets/main-hero-1600.jpg?v=20260221b");
  background-image:
    linear-gradient(180deg, rgba(8, 16, 26, 0.07), rgba(8, 16, 26, 0.07)),
    -webkit-image-set(
      url("assets/main-hero-1600.avif?v=20260221b") 1x,
      url("assets/main-hero-1600.webp?v=20260221b") 1x,
      url("assets/main-hero-1600.jpg?v=20260221b") 1x,
      url("assets/main-hero-2400.avif?v=20260221b") 2x,
      url("assets/main-hero-2400.webp?v=20260221b") 2x,
      url("assets/main-hero-1920.jpg?v=20260221b") 2x
    );
  background-image:
    linear-gradient(180deg, rgba(8, 16, 26, 0.07), rgba(8, 16, 26, 0.07)),
    image-set(
      url("assets/main-hero-1600.avif?v=20260221b") type("image/avif") 1x,
      url("assets/main-hero-1600.webp?v=20260221b") type("image/webp") 1x,
      url("assets/main-hero-1600.jpg?v=20260221b") type("image/jpeg") 1x,
      url("assets/main-hero-2400.avif?v=20260221b") type("image/avif") 2x,
      url("assets/main-hero-2400.webp?v=20260221b") type("image/webp") 2x,
      url("assets/main-hero-1920.jpg?v=20260221b") type("image/jpeg") 2x
    );
  background-size: cover;
  background-position: 24% 45%;
  transform: scaleX(-1);
  transform-origin: center;
  filter: saturate(1.04) contrast(1.02) brightness(0.99);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 18, 31, 0.04) 0%, rgba(7, 18, 31, 0.1) 38%, rgba(7, 18, 31, 0.46) 100%);
}

.hero-content {
  position: relative;
  z-index: 4;
  width: min(640px, 100%);
  display: grid;
  gap: 12px;
}

.hero-kicker {
  margin: 0;
  font-family: var(--font-body);
  color: rgba(224, 238, 252, 0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 8ch;
  font-family: var(--font-body);
  color: rgba(246, 251, 255, 0.98);
  font-size: clamp(2.4rem, 8vw, 5.2rem);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 12px 28px rgba(5, 12, 20, 0.5);
}

.hero-copy {
  max-width: 560px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(155deg, rgba(14, 29, 46, 0.58), rgba(14, 29, 46, 0.34));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lead {
  margin: 0;
  max-width: 60ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-copy .lead {
  max-width: none;
  color: rgba(234, 242, 251, 0.95);
  font-size: 0.98rem;
  line-height: 1.56;
}

.hero-address {
  margin: 7px 0 0;
  color: rgba(198, 217, 239, 0.82);
  font-size: 0.77rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

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

.hero-ghost {
  border-color: rgba(255, 255, 255, 0.34);
}

.lane-strip {
  position: relative;
  overflow: hidden;
  z-index: 5;
  width: min(980px, calc(100% - 24px));
  margin: -10px auto 26px;
  padding: 11px 14px 12px;
  border-radius: 14px;
  border: 1px solid rgba(152, 181, 210, 0.22);
  background: linear-gradient(180deg, rgba(16, 41, 67, 0.74), rgba(11, 30, 50, 0.7));
  box-shadow: 0 12px 26px rgba(4, 11, 19, 0.28);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 10px;
}

.lane-strip::before {
  display: none;
}

.lane-label {
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(177, 202, 227, 0.22);
  background: rgba(200, 219, 238, 0.08);
  color: rgba(204, 222, 240, 0.96);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.lane-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}

.lane-tags span {
  border-radius: 999px;
  padding: 6px 10px;
  border: 1px solid rgba(177, 202, 227, 0.24);
  background: rgba(200, 219, 238, 0.06);
  color: rgba(223, 236, 250, 0.98);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.05;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.lane-flag {
  display: inline-block;
  width: 18px;
  height: auto;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
  object-fit: cover;
  flex-shrink: 0;
}

.eyebrow {
  margin: 0;
  color: rgba(145, 190, 230, 0.88);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.glass .eyebrow {
  color: rgba(145, 190, 230, 0.88);
}

.section-head {
  max-width: 760px;
}

.section-head h2 {
  margin: 14px 0 0;
  font-size: clamp(1.48rem, 3.1vw, 2.3rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: rgba(224, 238, 252, 0.95);
}

.card-grid {
  margin-top: 30px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f2a44;
  display: flex;
  flex-direction: column;
}

.service-media {
  position: relative;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(7, 17, 29, 0.12) 0%,
      rgba(7, 17, 29, 0.26) 58%,
      rgba(7, 17, 29, 0.52) 100%
    );
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform 0.36s ease;
}

.service-content {
  padding: 20px 24px 24px;
}

.service-card::before,
.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 118px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(242, 122, 54, 0));
}

.service-card,
.about-card,
.review-spotlight {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.about-card:hover,
.review-spotlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(242, 122, 54, 0.12);
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: #e8f1fc;
}

.service-card p {
  margin: 0;
  color: rgba(180, 200, 222, 0.82);
  font-size: 0.95rem;
  line-height: 1.66;
}

.about-stats {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-item {
  padding: 20px 16px;
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: #e8f1fc;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(160, 185, 210, 0.7);
}

.about-body {
  margin-top: 22px;
}

.about-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f2a44;
}

.about-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #e8f1fc;
}

.about-card p {
  margin: 0;
  color: rgba(180, 200, 222, 0.82);
  line-height: 1.72;
}

.about-card p + p {
  margin-top: 12px;
}

.google-reviews {
  margin-top: 28px;
  padding: clamp(20px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0f2a44;
  box-shadow: 0 4px 20px rgba(4, 10, 18, 0.4);
}

.google-reviews-summary {
  margin-bottom: 20px;
}

.review-stars {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.stars-base,
.stars-fill {
  display: block;
  white-space: nowrap;
}

.stars-base {
  color: rgba(255, 255, 255, 0.15);
}

.stars-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--rating-percent, 90%);
  overflow: hidden;
  color: #f2b740;
  text-shadow: 0 1px 0 rgba(121, 74, 9, 0.22);
}

.review-score {
  margin: 12px 0 0;
  color: #e8f1fc;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  line-height: 1.2;
}

.review-score span {
  font-size: 0.96rem;
  font-weight: 600;
  color: rgba(160, 185, 210, 0.7);
}

.review-note {
  margin: 12px 0 0;
  color: rgba(180, 200, 222, 0.75);
  font-size: 0.95rem;
}

.review-freshness {
  margin: 8px 0 0;
  color: rgba(160, 185, 210, 0.7);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.review-privacy {
  margin: 8px 0 0;
  color: rgba(140, 168, 198, 0.6);
  font-size: 0.81rem;
  line-height: 1.5;
}

.reviews-feed {
  display: grid;
  gap: 14px;
}

.review-spotlight {
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 22, 38, 0.6);
}

.review-spotlight h3 {
  margin: 0;
  color: #e8f1fc;
  font-size: 1.03rem;
}

.mini-stars {
  margin: 8px 0 0;
  color: #f2b740;
  font-size: 0.92rem;
  letter-spacing: 0.07em;
}

.review-date {
  margin: 8px 0 0;
  color: rgba(160, 185, 210, 0.7);
  font-size: 0.8rem;
  font-weight: 600;
}

.review-text {
  margin: 12px 0 0;
  color: rgba(180, 200, 222, 0.82);
  font-size: 0.9rem;
  line-height: 1.66;
  min-height: calc(1em * 1.66 * 5);
  max-height: calc(1em * 1.66 * 5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
}

.review-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review-control {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #e8f1fc;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.review-control:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.review-index {
  margin: 0;
  min-width: 64px;
  text-align: center;
  color: rgba(160, 185, 210, 0.7);
  font-size: 0.84rem;
  font-weight: 600;
}

.reviews-cta {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.reviews-cta .btn {
  min-width: 260px;
}

.contact-outro {
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-top: 14px;
}

.outro-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 6.2vw, 68px) 20px clamp(58px, 7.5vw, 82px);
  background: transparent;
}

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

.outro-inner {
  position: relative;
  z-index: 1;
  width: min(860px, 92vw);
  margin: 0 auto;
  text-align: center;
}

.outro-eyebrow {
  margin: 0;
  color: rgba(103, 207, 240, 0.92);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.outro-title {
  margin: 14px 0 0;
  color: #e8f3ff;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  line-height: 1.04;
}

.outro-sub {
  margin: 14px auto 0;
  max-width: 58ch;
  color: rgba(218, 232, 246, 0.86);
  font-size: 1rem;
  line-height: 1.62;
}

.outro-phone {
  margin: 24px 0 0;
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.outro-phone a {
  color: #ffbe99;
  text-decoration: none;
}

.outro-phone a:hover {
  color: #ffd7bf;
}

.outro-btn {
  margin-top: 18px;
  min-width: 136px;
}

.outro-divider {
  position: relative;
  width: min(760px, 86vw);
  height: 1px;
  margin: 34px auto 24px;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    rgba(136, 170, 203, 0),
    rgba(136, 170, 203, 0.6) 50%,
    rgba(136, 170, 203, 0)
  );
}

.outro-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(246, 198, 95, 0),
    rgba(246, 198, 95, 0.32) 50%,
    rgba(246, 198, 95, 0)
  );
}


.outro-company {
  margin: 0;
  color: #e7f1fc;
  font-size: 1.04rem;
  font-weight: 700;
}

.outro-address {
  margin: 8px 0 0;
  color: rgba(210, 226, 243, 0.84);
  font-size: 0.95rem;
}

.site-footer {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  border-top: 1px solid rgba(170, 197, 223, 0.24);
  background:
    radial-gradient(120% 120% at 50% 0%, rgba(46, 111, 170, 0.24), rgba(46, 111, 170, 0) 56%),
    linear-gradient(180deg, #08213b 0%, #06192f 58%, #051427 100%);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(155, 190, 224, 0),
    rgba(155, 190, 224, 0.66) 50%,
    rgba(155, 190, 224, 0)
  );
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 22px 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px 20px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(170, 197, 223, 0.18);
  background: rgba(7, 24, 42, 0.44);
  text-decoration: none;
}

.footer-logo {
  width: clamp(50px, 8vw, 56px);
  height: clamp(50px, 8vw, 56px);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-brand-name {
  color: #e7f1fd;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
}

.footer-brand-tagline {
  margin-top: 2px;
  color: rgba(178, 201, 225, 0.76);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-copy {
  margin: 0;
  color: rgba(207, 224, 243, 0.84);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-credit {
  margin: 1px 0 0;
  font-size: 0.67rem;
  color: rgba(158, 181, 205, 0.52);
  letter-spacing: 0.02em;
}

.footer-credit a {
  color: rgba(178, 202, 229, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover {
  color: rgba(215, 233, 251, 0.92);
}

h1,
h2,
h3,
.btn,
.brand-name,
.brand-tagline,
.site-nav a,
.eyebrow,
.hero-kicker,
.lane-label,
.outro-eyebrow,
.outro-title,
.outro-phone,
.outro-company,
.footer-brand-name,
.footer-brand-tagline {
  font-family: var(--font-head);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.btn:focus-visible,
.site-nav a:focus-visible,
.outro-phone a:focus-visible {
  box-shadow: 0 0 0 2px rgba(246, 252, 255, 0.88), 0 0 0 5px rgba(8, 27, 45, 0.8);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

.no-js .nav-toggle {
  display: none;
}

@media (max-width: 1080px) {
  .hero-media {
    min-height: 620px;
  }

  .hero-media::after {
    background-position: 28% 46%;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 0;
    padding: 10px 12px;
    border-radius: 0;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: flex;
    order: 2;
  }

  .brand {
    order: 1;
  }

  .site-nav {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 10px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(175, 200, 224, 0.28);
    background: rgba(10, 29, 49, 0.74);
    color: rgba(225, 237, 249, 0.95);
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 0;
  }

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

  .service-media {
    aspect-ratio: 16 / 8;
  }

  .service-content {
    padding: 18px 20px 22px;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .hero-media {
    min-height: 500px;
    border-radius: 0;
    padding: 16px 14px 14px;
  }

  .hero-media::after {
    background-position: 36% 40%;
  }

  .hero-content {
    gap: 10px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: clamp(2.2rem, 8.8vw, 4rem);
  }

  .hero-copy {
    max-width: none;
    padding: 14px 14px 13px;
  }

  .hero-copy .lead {
    font-size: 0.9rem;
    line-height: 1.44;
  }

  .hero-address {
    font-size: 0.73rem;
  }

  .hero-actions {
    margin-top: 12px;
    gap: 10px;
  }

  .lane-strip {
    width: min(940px, calc(100% - 16px));
    margin: -8px auto 20px;
    padding: 10px 10px 11px;
    gap: 7px 8px;
  }

  .lane-tags {
    justify-content: center;
    gap: 5px;
  }

  .outro-title {
    font-size: clamp(1.95rem, 7vw, 3.1rem);
  }

  .outro-phone {
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 14px;
  }

  .no-js .site-nav {
    display: flex;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 9px 10px;
  }

  .brand-name {
    font-size: 0.86rem;
    letter-spacing: 0.04em;
  }

  .brand-tagline {
    display: none;
  }

  .hero-media {
    min-height: 468px;
    border-radius: 0;
    padding: 14px 12px 12px;
  }

  .hero-media::after {
    background-position: 44% 36%;
  }

  .hero-kicker {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .service-media {
    aspect-ratio: 16 / 9;
  }

  .service-content {
    padding: 16px 16px 18px;
  }

  .hero h1 {
    max-width: 8.6ch;
    font-size: clamp(2.1rem, 11.8vw, 3.1rem);
    line-height: 0.92;
  }

  .hero-copy {
    padding: 12px;
    border-radius: 14px;
  }

  .hero-copy .lead {
    font-size: 0.86rem;
    line-height: 1.38;
  }

  .hero-address {
    font-size: 0.71rem;
    line-height: 1.38;
  }

  .hero-actions {
    width: 100%;
    margin-top: 10px;
    gap: 9px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 11px 12px;
    font-size: 0.78rem;
  }

  .lane-strip {
    width: min(100%, calc(100% - 12px));
    margin: -6px auto 18px;
    padding: 9px 8px 10px;
    border-radius: 12px;
    gap: 6px;
  }

  .lane-label {
    width: auto;
    text-align: center;
    font-size: 0.82rem;
    padding: 5px 10px;
  }

  .lane-tags {
    justify-content: center;
    gap: 5px;
  }

  .lane-tags span {
    padding: 5px 8px;
    font-size: 0.84rem;
  }

  .lane-flag {
    width: 15px;
  }

  .about-stats {
    gap: 8px;
  }

  .stat-item {
    padding: 16px 10px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .btn::after {
    width: 46%;
  }

  .google-reviews {
    padding: 18px;
  }

  .review-score {
    font-size: 1.42rem;
  }

  .review-controls {
    flex-wrap: wrap;
  }

  .reviews-cta .btn {
    min-width: 100%;
  }

  .outro-panel {
    padding: 42px 14px 50px;
  }

  .outro-sub {
    font-size: 0.93rem;
  }

  .outro-phone {
    font-size: clamp(1.62rem, 10vw, 2.6rem);
  }

  .outro-divider {
    margin: 28px auto 22px;
  }

  .footer-brand-name {
    font-size: 0.78rem;
  }

  .footer-brand-tagline {
    font-size: 0.62rem;
  }

  .footer-copy {
    font-size: 0.74rem;
    line-height: 1.5;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-media::after,
  .lane-strip::before,
  .service-card::before,
  .about-card::before,
  .outro-divider::after,
  .btn::after {
    animation: none !important;
  }
}
