
:root {
  color-scheme: light;
  --navy: #063f5a;
  --navy-2: #082f49;
  --blue: #0b6fb6;
  --blue-2: #0ea5e9;
  --sky: #eaf7ff;
  --ice: #f5fbff;
  --yellow: #f5c51b;
  --text: #102333;
  --muted: #5d7182;
  --border: #d8e7f0;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(8, 47, 73, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: 2.45rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.2rem;
}

ul {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 10000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  left: 8px;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.section {
  padding: 86px 0;
}

.section-sm {
  padding: 52px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--blue);
  background: var(--sky);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading p {
  margin-top: 16px;
  font-size: 1.05rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.12);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 900;
  color: var(--white);
}

.brand img {
  width: 190px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.25));
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  color: var(--navy);
}

.site-header.scrolled .brand img,
.site-header.menu-open .brand img {
  filter: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-header.scrolled .nav-links,
.site-header.menu-open .nav-links {
  color: var(--text);
}

.nav-links a,
.nav-links button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 12px 13px;
  border-radius: 8px;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a.active {
  background: rgba(14, 165, 233, 0.13);
  color: var(--blue-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  color: var(--white);
  font-weight: 800;
  white-space: nowrap;
}

.site-header.scrolled .nav-phone,
.site-header.menu-open .nav-phone {
  color: var(--navy);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 260px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
  color: var(--text);
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 11px 12px;
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.site-header.scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  color: var(--navy);
  border-color: var(--border);
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 8px;
  border: 2px solid transparent;
  min-height: 46px;
  padding: 13px 20px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--blue);
}

.btn-outline {
  border-color: currentColor;
  color: var(--white);
}

.btn-outline.dark {
  color: var(--navy);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero.compact {
  min-height: 390px;
  padding-top: 78px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 63, 90, 0.88), rgba(6, 63, 90, 0.63) 48%, rgba(8, 47, 73, 0.45));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 136px 0 80px;
}

.hero.compact .hero-inner {
  padding: 54px 0 64px;
}

.hero h1,
.hero h2,
.hero p {
  color: var(--white);
}

.hero h1 {
  max-width: 820px;
  font-size: 3.65rem;
}

.hero.compact h1 {
  font-size: 3rem;
}

.hero p {
  max-width: 660px;
  margin-top: 22px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 52px;
}

.metric {
  border-left: 3px solid var(--yellow);
  padding-left: 16px;
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.86rem;
  font-weight: 750;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  font-size: 0.9rem;
}

.breadcrumb span {
  color: var(--white);
}

.info-strip {
  background: var(--blue);
  color: var(--white);
}

.info-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding-top: 13px;
  padding-bottom: 13px;
  font-weight: 750;
}

.info-strip a {
  color: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.two-col.reverse > :first-child {
  order: 2;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--sky);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  color: var(--text);
  font-weight: 730;
}

.check-list li::before {
  content: "";
  width: 21px;
  height: 21px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: inset 0 0 0 6px var(--sky);
}

.surface {
  background: var(--ice);
}

.blue-band {
  background: var(--blue);
  color: var(--white);
}

.blue-band h2,
.blue-band h3,
.blue-band p {
  color: var(--white);
}

.stats-grid,
.card-grid,
.service-grid,
.process-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: 2rem;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 0.85rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card,
.process-card,
.contact-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.07);
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-body,
.card,
.process-card,
.contact-card {
  padding: 26px;
}

.service-card p,
.card p,
.process-card p,
.contact-card p {
  margin-top: 12px;
  font-size: 0.96rem;
}

.service-card .text-link {
  margin-top: auto;
}

.card-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--sky);
  color: var(--blue);
  margin-bottom: 18px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 850;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--sky);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 250ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.area-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: stretch;
}

.area-map {
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.area-list button {
  padding: 11px 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font: inherit;
  font-weight: 780;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.area-list button:hover,
.area-list button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.map-caption {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  background: var(--white);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.07);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--yellow);
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-person {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.testimonial-person strong {
  display: block;
  color: var(--text);
}

.testimonial-person span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.92rem;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.7fr);
  gap: 32px;
  align-items: start;
}

.form-frame {
  overflow: hidden;
  min-height: 681px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-frame iframe {
  display: block;
  width: 100%;
  min-height: 681px;
  border: 0;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.contact-line .card-icon {
  margin: 0;
  width: 42px;
  height: 42px;
}

.contact-line strong {
  display: block;
  color: var(--text);
}

.contact-line span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(8, 47, 73, 0.07);
}

.faq-item + .faq-item {
  border-top: 1px solid var(--border);
}

.faq-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-button svg {
  transition: transform 160ms ease;
}

.faq-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.faq-panel {
  display: none;
  padding: 0 24px 22px;
}

.faq-panel.open {
  display: block;
}

.cta {
  text-align: center;
}

.cta h2 {
  max-width: 720px;
  margin: 0 auto;
}

.cta p {
  max-width: 620px;
  margin: 16px auto 0;
}

.cta .hero-actions {
  justify-content: center;
  margin-top: 28px;
}

.service-area-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--text);
  font-weight: 750;
  font-size: 0.9rem;
}

.site-footer {
  background: var(--navy-2);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
  gap: 34px;
  padding: 60px 0;
}

.site-footer h3,
.site-footer h4,
.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
}

.footer-brand p {
  margin-top: 18px;
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 11px;
  list-style: none;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 0.86rem;
}

.hours-list {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1020px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .site-header.menu-open .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 4px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    color: var(--text);
  }

  .site-header.menu-open .nav-links a,
  .site-header.menu-open .nav-links button {
    width: 100%;
    text-align: left;
  }

  .site-header.menu-open .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    margin: 2px 0 8px;
    min-width: 0;
  }

  .site-header.menu-open .dropdown:focus-within .dropdown-menu,
  .site-header.menu-open .dropdown:hover .dropdown-menu {
    display: block;
  }

  .two-col,
  .quote-grid,
  .area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .two-col.reverse > :first-child {
    order: 0;
  }

  .service-grid,
  .card-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .info-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .section {
    padding: 64px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 154px;
  }

  h1,
  .hero.compact h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.78rem;
  }

  .hero {
    min-height: 82svh;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero p {
    margin-top: 16px;
    font-size: 1rem;
  }

  .hero-inner {
    padding: 98px 0 44px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 24px;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
  }

  .metric {
    border-left: 0;
    border-top: 3px solid var(--yellow);
    padding-left: 0;
    padding-top: 8px;
    text-align: center;
  }

  .metric strong {
    font-size: 1.05rem;
  }

  .metric span {
    font-size: 0.72rem;
  }

  .hero-metrics,
  .stats-grid,
  .service-grid,
  .card-grid,
  .process-grid,
  .gallery-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .photo-frame img {
    min-height: 300px;
  }

  .form-frame,
  .form-frame iframe {
    min-height: 760px;
  }
}
