:root {
  --brand-primary: #0b1f5e;
  --brand-secondary: #1e56b3;
  --brand-accent: #d1112c;
  --text-light: #f7f9ff;
  --text-muted: #d5ddf7;
  --surface-dark: #071337;
  --surface-glass: rgba(7, 19, 55, 0.65);
  --ring: #4dd3ff;
}

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

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: #0d132b;
  background: #fff;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
  padding-inline: 4%;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding-inline: 1rem;
  }
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #111;
  padding: 0.6rem 0.9rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(7, 19, 55, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-light);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  color: var(--text-light);
  font-weight: 600;
  opacity: 0.94;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--brand-accent);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-weight: 700;
}

.nav-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta-icon svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* Mobile nav: Call Now CTA full width but not overly thick */
@media (max-width: 900px) {
  .nav-cta {
    padding: 0.7rem 1rem;
    min-height: 48px;
    justify-content: center;
    border-radius: 10px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background-color: #ffffff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(4, 11, 30, 0.84) 0%,
      rgba(6, 16, 43, 0.7) 38%,
      rgba(7, 19, 55, 0.58) 100%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(209, 17, 44, 0.22) 0%,
      rgba(209, 17, 44, 0) 45%
    );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--text-light);
  padding-top: 7.5rem;
  padding-bottom: 3.2rem;
}

.hero-kicker {
  display: inline-block;
  margin: 0 0 0.8rem;
  font-size: 0.87rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #9fc2ff;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.08;
  max-width: 15ch;
}

.hero-subheadline {
  margin-top: 1rem;
  margin-bottom: 1.6rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.55;
  max-width: 62ch;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.3rem;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.2px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border 0.2s ease;
}

.btn-primary {
  background: var(--brand-accent);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

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

.btn:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.section {
  padding: 3.2rem 0;
}

.section h2 {
  color: var(--brand-primary);
}

/* ----- Services Section ----- */
.services-section {
  padding: 5rem 0 4.5rem;
  background: #fafbfc;
  position: relative;
}

.services-container {
  max-width: 1100px;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-section .section-kicker {
  display: inline-block;
  margin: 0 0 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.services-section .section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--brand-primary);
}

.services-lead,
.services-header .section-lead {
  margin: 0 auto 1.25rem;
  max-width: 36ch;
  font-size: 1rem;
  line-height: 1.65;
  color: #5c6370;
  text-align: center;
  display: block;
}

.section-kicker {
  display: inline-block;
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-accent);
}

.section-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--brand-primary);
}

.section-lead {
  margin: 0 0 2.5rem;
  max-width: 42ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #4a5268;
}

.services-section .services-header .section-lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.services-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.services-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 94, 0.15);
  background: #fff;
  color: var(--brand-primary);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  align-self: center;
}

.services-arrow:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}

.services-arrow:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.services-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  min-height: 0;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(11, 31, 94, 0.06);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  border-color: rgba(11, 31, 94, 0.12);
  box-shadow: 0 8px 32px rgba(11, 31, 94, 0.08);
}

.service-card-inner {
  padding: 1.75rem 1.5rem;
  border-left: 3px solid var(--brand-primary);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color 0.2s ease;
}

.service-card:hover .service-card-inner {
  border-left-color: var(--brand-accent);
}

.service-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(11, 31, 94, 0.35);
  margin-bottom: 0.85rem;
}

.service-title {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-primary);
  line-height: 1.35;
}

.service-desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: #5c6370;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-accent);
  margin-top: auto;
  transition: gap 0.2s ease, color 0.2s ease;
}

.service-link:hover {
  color: var(--brand-primary);
  gap: 0.45rem;
}

.service-link:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
  border-radius: 4px;
}

.services-cta-wrap {
  text-align: center;
}

.services-cta-wrap .btn {
  min-height: 50px;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .services-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 2.5rem 0 2.5rem;
  }

  .services-header {
    margin-bottom: 1.5rem;
  }

  .services-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .services-lead,
  .services-header .section-lead {
    margin-bottom: 0;
    font-size: 0.95rem;
  }

  .services-slider {
    margin-bottom: 1.75rem;
    gap: 0.5rem;
    align-items: center;
  }

  .services-arrow {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
  }

  .services-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    min-height: 280px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .services-track::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 100%;
  }

  .service-card-inner {
    padding: 1.35rem 1.25rem;
  }

  .service-title {
    font-size: 1.05rem;
  }

  .service-desc {
    font-size: 0.875rem;
  }

  .services-cta-wrap .btn {
    width: 100%;
    min-height: 52px;
  }
}

/* ----- Works Section ----- */
.works-section {
  padding: 4.5rem 0 4rem;
  background: #fff;
  position: relative;
}

.works-section .section-kicker {
  color: var(--brand-accent);
}

.works-section .section-lead {
  margin-bottom: 2.25rem;
}

.works-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: stretch;
  gap: 0.75rem;
  margin-bottom: 2.25rem;
}

.works-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 94, 0.2);
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: center;
}

.works-arrow:hover {
  background: var(--brand-accent);
  transform: scale(1.05);
}

.works-arrow:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.works-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.work-card {
  border-radius: 16px;
  overflow: hidden;
  background: #eef1f8;
  border: 1px solid rgba(11, 31, 94, 0.08);
  box-shadow: 0 4px 24px rgba(11, 31, 94, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(11, 31, 94, 0.12);
}

.work-image-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #dde1ec 0%, #e8ebf4 100%);
  overflow: hidden;
}

.work-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-image-wrap img:not([src]),
.work-image-wrap img[src=""] {
  opacity: 0;
}

.work-caption {
  padding: 1.25rem 1.25rem 1.5rem;
}

.work-title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.3;
}

.work-desc {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5a6178;
}

.work-tag {
  margin: 0;
  font-size: 0.8rem;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.works-cta-wrap {
  text-align: center;
}

.works-cta-wrap .btn {
  min-height: 52px;
  padding: 0.9rem 1.75rem;
}

@media (max-width: 900px) {
  .works-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .works-section {
    padding: 2.5rem 0 2.5rem;
  }

  .works-section .section-title {
    font-size: 1.6rem;
  }

  .works-section .section-lead {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }

  .works-slider {
    margin-bottom: 1.75rem;
    gap: 0.5rem;
    align-items: center;
  }

  .works-arrow {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
  }

  .works-track {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    min-height: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .works-track::-webkit-scrollbar {
    display: none;
  }

  .work-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 100%;
  }

  .work-caption {
    padding: 1.15rem 1.25rem 1.35rem;
  }

  .work-title {
    font-size: 1.05rem;
  }

  .work-desc {
    font-size: 0.875rem;
  }

  .works-cta-wrap .btn {
    width: 100%;
    min-height: 52px;
  }
}

/* ----- Before & After Section ----- */
.before-after-section {
  padding: 4.5rem 0 4rem;
  background: #fafbfc;
  position: relative;
}

.before-after-section .section-kicker {
  color: var(--brand-accent);
}

.before-after-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 40ch;
}

.before-after-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
}

.ba-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 94, 0.15);
  background: #fff;
  color: var(--brand-primary);
  font-size: 1.35rem;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.ba-arrow:hover {
  background: var(--brand-primary);
  color: #fff;
}

.ba-arrow:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.before-after-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ba-pair {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(11, 31, 94, 0.08);
  box-shadow: 0 4px 20px rgba(11, 31, 94, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  height: 360px;
  flex-shrink: 0;
}

.ba-pair-single .ba-images {
  grid-template-columns: 1fr;
}

.ba-image-wrap {
  position: relative;
  height: 360px;
  background: #e8ebf4;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-pair-single .ba-image-wrap.ba-image-full {
  grid-column: 1;
  width: 100%;
}

.ba-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ba-caption {
  padding: 1.1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(11, 31, 94, 0.06);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ba-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.3;
}

.ba-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5a6178;
}

@media (max-width: 768px) {
  .before-after-section {
    padding: 2.5rem 0 2.5rem;
  }

  .before-after-section .section-title {
    font-size: 1.6rem;
  }

  .before-after-lead {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .before-after-slider {
    grid-template-columns: auto 1fr auto;
    gap: 0.5rem;
    align-items: center;
  }

  .ba-arrow {
    display: inline-flex;
    min-width: 48px;
    min-height: 48px;
    flex-shrink: 0;
  }

  .before-after-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .before-after-track::-webkit-scrollbar {
    display: none;
  }

  .ba-pair {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    min-width: 100%;
    min-height: 380px;
  }

  .ba-images {
    grid-template-columns: 1fr 1fr;
    height: 240px;
  }

  .ba-image-wrap {
    height: 240px;
  }

  .ba-pair-single .ba-images {
    grid-template-columns: 1fr;
  }

  .ba-caption {
    padding: 1rem 1.15rem 1.2rem;
  }

  .ba-title {
    font-size: 1rem;
  }

  .ba-desc {
    font-size: 0.85rem;
  }
}

/* ----- Contact CTA Section ----- */
.contact-cta-section {
  padding: 3.5rem 0;
  background: var(--brand-primary);
  color: var(--text-light);
}

.contact-cta-container {
  text-align: center;
  max-width: 720px;
}

.contact-cta-heading {
  margin: 0 0 0.6rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.contact-cta-text {
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  border: none;
  min-height: 48px;
}

.contact-btn:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

.contact-btn:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 2px;
}

.contact-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-btn-icon svg {
  width: 22px;
  height: 22px;
}

.contact-btn-call {
  background: var(--brand-secondary);
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 0.6rem 1rem;
}

.contact-btn-call .contact-btn-label {
  font-size: 0.9rem;
  opacity: 0.95;
}

.contact-btn-call .contact-btn-value {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.contact-btn-directions {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.contact-cta-address {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ----- Footer ----- */
.site-footer {
  background: #050c24;
  color: var(--text-light);
  padding-top: 2.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo-text {
  display: block;
}

.footer-tagline {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

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

.footer-phone {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-phone a {
  color: #fff;
}

.footer-address {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
}

.footer-bottom {
  padding: 1rem 0;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
  .contact-cta-section {
    padding: 2.5rem 0;
  }

  .contact-cta-heading {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }

  .contact-cta-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .contact-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .contact-btn {
    justify-content: center;
    min-height: 52px;
    padding: 1rem 1.25rem;
  }

  .contact-btn-call {
    justify-content: center;
    flex-wrap: wrap;
  }

  .contact-cta-address {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .site-footer {
    padding-top: 2rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.75rem;
    padding-bottom: 1.5rem;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-tagline {
    font-size: 0.875rem;
  }

  .footer-heading {
    margin-bottom: 0.65rem;
  }

  .footer-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    min-height: 44px;
  }

  .footer-links li {
    margin-bottom: 0;
  }

  .footer-bottom {
    padding: 1rem 0;
  }

  .footer-copy {
    font-size: 0.75rem;
    padding-inline: 0.5rem;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--surface-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 0;
  }

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

  .site-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.75rem 0;
    min-height: 48px;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  .nav-wrap {
    min-height: 64px;
  }

  .brand {
    font-size: 0.9rem;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .site-nav {
    top: 64px;
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 6rem;
    padding-bottom: 2rem;
  }

  .hero-kicker {
    font-size: 0.8rem;
  }

  h1 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.15;
    max-width: none;
  }

  .hero-subheadline {
    font-size: 1rem;
    margin-bottom: 1.35rem;
    max-width: none;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .btn {
    width: 100%;
    min-height: 52px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
