@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --bg: #f2efea;
  --surface: #ffffff;
  --text: #171515;
  --muted: #605a53;
  --line: #d8cec2;
  --brand: #2f4f63;
  --brand-dark: #1f3542;
  --brand-soft: #dce7ec;
  --accent: #9a6036;
  --accent-soft: #f2e2d3;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 16px 40px rgba(19, 24, 32, 0.08);
  --shadow-deep: 0 24px 54px rgba(19, 24, 32, 0.18);
  --wrap: min(1120px, calc(100% - 2.5rem));
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 7% 10%, #f7ede2 0, rgba(247, 237, 226, 0) 42%),
    radial-gradient(circle at 100% 18%, #e7eef5 0, rgba(231, 238, 245, 0) 34%),
    var(--bg);
  line-height: 1.55;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 10px;
  top: 0;
  transform: translateY(-135%);
  background: #111;
  color: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 8px;
  z-index: 1000;
}

.skip-link:focus {
  transform: translateY(10px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(229, 240, 250, 0.9) 0%, rgba(241, 246, 251, 0.9) 100%);
  border-bottom: 1px solid rgba(96, 90, 83, 0.16);
}

.header-row {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transform-origin: center;
}

.logo-splash-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1400;
}

.logo-image {
  width: clamp(170px, 24vw, 250px);
  height: auto;
  animation: logo-fly-in 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both,
    logo-pulse-settle 0.95s ease-in-out 1.55s 3;
}

@media (hover: hover) and (pointer: fine) {
  .logo-mark:hover,
  .logo-mark:focus-visible {
    animation: logo-link-hover-pulse 0.72s ease-in-out infinite;
  }

  .footer-brand-link:hover .footer-brand-logo,
  .footer-brand-link:focus-visible .footer-brand-logo {
    animation: logo-hover-pulse 0.72s ease-in-out infinite;
  }
}

@keyframes logo-fly-in {
  0% {
    opacity: 0;
    transform: translateY(-28px) scale(0.9) rotate(-2deg);
    filter: blur(1px);
  }

  70% {
    opacity: 1;
    transform: translateY(4px) scale(1.02) rotate(0deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes logo-pulse-settle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  50% {
    transform: translateY(0) scale(1.035);
    filter: blur(0);
  }
}

@keyframes logo-link-hover-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@keyframes logo-hover-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-image {
    animation: none;
  }
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--brand), var(--brand-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.logo-copy {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.4rem;
  line-height: 1;
}

.logo-copy small {
  font-family: "Source Sans 3", sans-serif;
  display: block;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 0.62rem;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-nav a {
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  color: #313844;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #ffffff;
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(47, 115, 208, 0.22);
}

.btn,
button.btn {
  border: 0;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  cursor: pointer;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  isolation: isolate;
}

.btn-call::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  border: 1px solid rgba(116, 162, 207, 0.52);
  opacity: 0;
  pointer-events: none;
  animation: call-ring 2.2s ease-out infinite;
}

@keyframes call-ring {
  0% {
    opacity: 0.62;
    transform: scale(1);
  }

  70% {
    opacity: 0;
    transform: scale(1.16);
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

.phone-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.phone-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(13, 71, 161, 0.26);
  background: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-outline:hover {
  box-shadow: inset 0 0 0 1px var(--brand);
  background: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  width: 18px;
  height: 2px;
  background: #1f2937;
  border-radius: 99px;
  transition: transform 0.24s ease, opacity 0.24s ease;
  content: "";
  display: block;
}

.menu-bars {
  position: relative;
}

.menu-bars::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-bars::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.site-header.nav-open .menu-bars {
  transform: rotate(45deg);
}

.site-header.nav-open .menu-bars::before {
  transform: translateY(6px) rotate(90deg);
}

.site-header.nav-open .menu-bars::after {
  opacity: 0;
}

.hero {
  padding: 5.25rem 0 4rem;
  position: relative;
  overflow: clip;
}

.hero::after {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  right: -440px;
  top: -360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 115, 208, 0.2) 0, rgba(47, 115, 208, 0.02) 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
}

.hero-home .hero-grid {
  grid-template-columns: 0.88fr 1.32fr;
  align-items: stretch;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.77rem;
  color: var(--accent);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
  font-family: "Fraunces", "Bebas Neue", sans-serif;
  letter-spacing: 0.01em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.15rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

h3 {
  font-size: 1.6rem;
}

.hero p {
  color: #353d49;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 57ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  border: 1px solid rgba(19, 24, 32, 0.07);
}

.hero-home {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
  padding: clamp(1.2rem, 2vw, 2rem) clamp(1rem, 5vw, 4.5rem) 2.6rem;
}

.hero-home::after {
  display: none;
}

.hero-home > .carousel-hero-content {
  position: static;
  transform: none;
  z-index: 1;
  max-width: min(560px, 100%);
  color: var(--text);
  margin-left: 100px;
}

.hero-home > .carousel-hero-content .kicker {
  color: var(--accent);
  opacity: 0;
  transform: translateY(10px);
  animation: hero-copy-enter 0.66s ease-out 0.16s forwards, hero-kicker-glint 0.9s ease-out 0.52s 1;
}

.hero-home > .carousel-hero-content h1 {
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
  line-height: 0.98;
  text-shadow: none;
  color: #1f1a16;
  opacity: 0;
  transform: translateY(14px);
  animation: hero-copy-enter 0.72s ease-out 0.28s forwards;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-home > .carousel-hero-content h1 {
    background-image: linear-gradient(106deg, #131313 0%, #131313 42%, #f2f7fc 50%, #131313 58%, #131313 100%);
    background-size: 230% 100%;
    background-position: 130% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation-name: hero-copy-enter, hero-title-shimmer;
    animation-duration: 0.72s, 1.55s;
    animation-timing-function: ease-out, cubic-bezier(0.2, 0.7, 0.25, 1);
    animation-delay: 0.28s, 0.34s;
    animation-iteration-count: 1, 1;
    animation-fill-mode: forwards, none;
  }
}

.hero-home > .carousel-hero-content p {
  max-width: 57ch;
  color: #353d49;
  text-shadow: none;
  opacity: 0;
  transform: translateY(16px);
  animation: hero-copy-enter 0.72s ease-out 0.42s forwards;
}

.hero-home > .carousel-hero-content .hero-actions {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-copy-enter 0.72s ease-out 0.56s forwards;
}

@keyframes hero-title-shimmer {
  0% {
    background-position: 130% 50%;
  }

  100% {
    background-position: -40% 50%;
  }
}

@keyframes hero-copy-enter {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-kicker-glint {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(144, 179, 213, 0);
  }

  48% {
    text-shadow: 0 0 14px rgba(144, 179, 213, 0.45);
  }
}

.hero-home > .carousel-hero-content .btn-outline {
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.hero-home > .carousel-hero-content .btn-outline:hover {
  box-shadow: inset 0 0 0 1px var(--brand);
  background: #fff;
}

.hero-home .hero-carousel {
  min-height: clamp(420px, 62vh, 760px);
}

.hero-home .carousel-track {
  aspect-ratio: 1.04;
}

@media (min-width: 961px) {
  .hero-about .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
    gap: 1.6rem;
  }

  .hero-about .hero-panel {
    min-height: clamp(520px, 64vh, 680px);
  }

  .hero-about .hero-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
}

.hero-home .carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(104deg, rgba(5, 10, 16, 0.12) 0%, rgba(5, 10, 16, 0.07) 35%, rgba(5, 10, 16, 0.02) 68%, rgba(5, 10, 16, 0) 100%);
}

.hero-home .carousel-slide img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: calc(100% - clamp(2rem, 5vw, 4rem));
  max-height: calc(100% - clamp(2rem, 5vw, 4rem));
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%);
  filter: brightness(1.12) contrast(1.08) saturate(1.06);
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 1.2;
  background: #e6edf2;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-overlay {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  z-index: 5;
}

.hero-carousel .hero-badge {
  position: static;
  bottom: auto;
  left: auto;
}

.carousel-count {
  background: rgba(19, 24, 32, 0.74);
  color: #fff;
  border-radius: 999px;
  font-size: 0.82rem;
  padding: 0.45rem 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(26, 37, 46, 0.72);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 6;
  transition: background 0.25s ease, transform 0.25s ease;
}

.carousel-control:hover {
  background: rgba(47, 79, 99, 0.94);
  transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
  left: 0.9rem;
}

.carousel-next {
  right: 0.9rem;
}

.carousel-dots {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 3.9rem;
  z-index: 6;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot:hover,
.carousel-dot.is-active {
  transform: scale(1.12);
  background: #ffffff;
}

.hero-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(23, 21, 21, 0.72);
  color: #fff;
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.45rem 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

section {
  padding: 3.6rem 0;
}

.surface {
  background: var(--surface);
  border: 1px solid rgba(95, 103, 115, 0.15);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.stats-row {
  margin-top: -2.25rem;
}

.stats-grid {
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  border-radius: var(--radius-sm);
  padding: 0.9rem;
  background: #fff;
  border: 1px solid rgba(95, 103, 115, 0.16);
}

.stat-value {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.7rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-head p {
  margin: 0;
  max-width: 55ch;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards .photo-block {
  align-self: start;
}

.card {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid rgba(95, 103, 115, 0.17);
  background: linear-gradient(180deg, #ffffff 0%, #f8f5f1 100%);
  box-shadow: 0 10px 22px rgba(24, 18, 14, 0.06);
}

.card p {
  margin-top: 0.55rem;
  margin-bottom: 0;
  color: #4b5461;
}

.icon-pill {
  width: fit-content;
  min-width: 40px;
  height: 34px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.76rem;
  text-transform: uppercase;
  margin-bottom: 0.55rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
}

.split .photo-block {
  align-self: start;
}

.photo-block {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(95, 103, 115, 0.18);
  background: #fff;
}

.photo-block img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.photo-block.show-more-bottom img {
  object-position: center 76%;
}

.photo-block.focus-car4-bottom img {
  object-position: center 82%;
}

.photo-block.focus-car4-bottom .cap {
  padding: 0.5rem 0.78rem;
  font-size: 0.86rem;
}

.photo-block .cap {
  padding: 0.6rem 0.85rem;
  color: #404957;
  font-size: 0.9rem;
  line-height: 1.32;
}

.process {
  counter-reset: step;
}

.process li {
  list-style: none;
  margin-bottom: 1rem;
  padding: 1rem 1rem 1rem 3rem;
  background: #fff;
  border: 1px solid rgba(95, 103, 115, 0.15);
  border-radius: 12px;
  position: relative;
}

.process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.process p {
  margin: 0.45rem 0 0;
  color: #4d5662;
}

.testimonials {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote {
  padding: 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(95, 103, 115, 0.18);
  background: linear-gradient(165deg, #ffffff, #fbfbfb);
}

.quote p {
  margin: 0;
}

.quote .who {
  margin-top: 0.8rem;
  color: #2f3743;
  font-weight: 700;
}

.review-stars {
  margin-top: 0.65rem;
  color: #f6c445;
  letter-spacing: 0.08em;
  font-size: 1rem;
  line-height: 1;
}

.review-stars span {
  display: inline-block;
}

.quote .meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.cta-band {
  background: linear-gradient(128deg, #111721, #1e293b 58%, #0d47a1 120%);
  color: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.cta-band p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.service-area-card {
  padding: 1.25rem;
}

.service-area-list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
}

.service-area-list li {
  list-style: none;
  padding: 0;
  color: #344157;
  font-weight: 600;
}

.service-area-list li::after {
  content: "\2022";
  margin-left: 0.55rem;
  color: #98a7bc;
}

.service-area-list li:last-child::after {
  content: "";
  margin-left: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-card {
  padding: 1.15rem;
}

label {
  display: block;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd4de;
  border-radius: 10px;
  padding: 0.7rem 0.78rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(13, 71, 161, 0.28);
  border-color: #9bb8e6;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr 1fr;
}

.form-grid .full {
  grid-column: 1 / -1;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.hours {
  margin: 0;
  padding: 0;
}

.hours li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(95, 103, 115, 0.15);
}

.hours li:last-child {
  border-bottom: none;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.badge-row span {
  display: inline-flex;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #4d443b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.services-cards .card {
  border-color: rgba(154, 96, 54, 0.24);
  border-left: 4px solid rgba(154, 96, 54, 0.62);
}

.services-cards .card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.42rem;
}

.home-core-cards .card {
  border-color: rgba(154, 96, 54, 0.24);
  border-left: 4px solid rgba(154, 96, 54, 0.62);
}

.home-core-cards .card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.42rem;
}

.service-eyebrow {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.card-meta {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5e5248;
  font-weight: 700;
}

.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 1px solid rgba(95, 103, 115, 0.2);
  border-radius: 12px;
}

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  margin-top: 1rem;
  border-top: 1px solid rgba(95, 103, 115, 0.2);
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(235, 243, 251, 0.82) 0%, rgba(227, 237, 247, 0.92) 100%);
}

.site-credit-wrap {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(95, 103, 115, 0.18);
}

.site-credit {
  margin: 0;
  font-size: 0.82rem;
  color: #5b6677;
  text-align: center;
  letter-spacing: 0.02em;
}

.site-credit a {
  color: inherit;
  text-decoration: none;
}

.site-credit a:hover {
  color: #244c7f;
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1rem;
}

.footer-grid h4 {
  margin: 0 0 0.55rem;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.25rem;
}

.footer-brand-logo {
  width: min(270px, 100%);
  height: auto;
  margin-bottom: 0.65rem;
}

.footer-brand-link {
  display: inline-block;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
}

.footer-grid li {
  list-style: none;
  margin-bottom: 0.35rem;
  color: #4a5360;
}

.footer-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.footer-social-row {
  margin-top: 0.55rem;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(95, 103, 115, 0.26);
  background: rgba(255, 255, 255, 0.82);
  color: #1f3245;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(24, 44, 66, 0.16);
  border-color: rgba(24, 57, 98, 0.44);
}

.social-link.facebook:hover {
  color: #1a5fce;
}

.social-link.instagram:hover {
  color: #cc2e74;
}

.footer-contact-item .contact-icon {
  width: 16px;
  height: 16px;
  display: inline-block;
  color: #1f4f9e;
  flex-shrink: 0;
}

.footer-contact-item .contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.muted {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(47, 115, 208, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand-dark);
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(17, 23, 33, 0.16);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease, background 0.24s ease;
  z-index: 120;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.scroll-top:hover {
  background: #ffffff;
}

@media (max-width: 960px) {
  .header-row {
    position: relative;
    justify-content: center;
  }

  .logo-mark {
    position: absolute;
    left: 50vw;
    transform: translateX(-50%);
    z-index: 2;
  }

  .nav-wrap {
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .site-nav {
    position: absolute;
    left: 0.4rem;
    right: auto;
    width: min(300px, calc(100vw - 1.2rem));
    top: calc(100% + 1px);
    background: rgba(244, 246, 248, 0.98);
    border-bottom: 1px solid rgba(95, 103, 115, 0.2);
    border-right: 1px solid rgba(95, 103, 115, 0.2);
    border-radius: 0 0 12px 12px;
    display: grid;
    padding: 0.75rem 1.2rem 1rem;
    transform-origin: top;
    transform: scaleY(0.92);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .site-nav a {
    border-radius: 10px;
  }

  .site-header.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: scaleY(1);
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-wrap .btn:not(.btn-call) {
    display: none;
  }

  .nav-wrap .btn-call {
    padding: 0.6rem;
    min-width: 42px;
    justify-content: center;
    z-index: 2;
  }

  .nav-wrap .btn-call .call-label {
    display: none;
  }

  .hero-home,
  .hero-grid,
  .split,
  .grid-2,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 1.2rem;
  }

  .hero-home {
    gap: 1.2rem;
    padding: 1rem 1rem 2.2rem;
  }

  .cards,
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home .hero-carousel {
    min-height: auto;
  }

  .hero-home .carousel-track {
    aspect-ratio: 1.14;
  }

  .hero-home > .carousel-hero-content {
    max-width: min(660px, 85vw);
    margin-left: 0;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
}

@media (max-width: 640px) {
  .header-row {
    min-height: 82px;
  }

  .container {
    width: min(1120px, calc(100% - 1.35rem));
  }

  section {
    padding: 3rem 0;
  }

  .cards,
  .testimonials,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-area-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.2rem;
  }

  .hero-home {
    padding-top: 0.75rem;
  }

  .hero-panel img,
  .photo-block img {
    aspect-ratio: 1.3;
    object-fit: cover;
  }

  .hero-home .carousel-track {
    min-height: clamp(420px, 62vh, 560px);
  }

  .hero-home > .carousel-hero-content {
    max-width: 100%;
    margin-left: 0;
  }

  .hero-home > .carousel-hero-content h1 {
    font-size: clamp(2.05rem, 8.6vw, 3rem);
  }

  .hero-home > .carousel-hero-content p {
    max-width: 100%;
    margin-bottom: 1rem;
    font-size: 0.98rem;
  }

  .hero-home .carousel-overlay {
    left: 1rem;
    right: 1rem;
    bottom: 3.4rem;
  }

  .hero-home .carousel-dots {
    left: 1rem;
    right: 1rem;
    bottom: 0.9rem;
    justify-content: center;
  }

  .logo-image {
    width: min(58vw, 220px);
  }

  .scroll-top {
    right: 0.75rem;
    bottom: 0.75rem;
    width: 40px;
    height: 40px;
  }

  .carousel-dots {
    bottom: 3.6rem;
    gap: 0.32rem;
  }

  .carousel-dot {
    width: 9px;
    height: 9px;
  }

  .carousel-overlay {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .carousel-count {
    font-size: 0.72rem;
    padding: 0.38rem 0.66rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-call::after {
    animation: none;
  }

  .hero-home > .carousel-hero-content .kicker,
  .hero-home > .carousel-hero-content h1,
  .hero-home > .carousel-hero-content p,
  .hero-home > .carousel-hero-content .hero-actions {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-home > .carousel-hero-content h1 {
    background-image: none;
    color: #1f1a16;
  }

  .carousel-slide {
    transition: none;
  }

  .carousel-control,
  .carousel-dot {
    transition: none;
  }
}
