:root {
  --bg: #f5fbff;
  --text: #122230;
  --muted: #375064;
  --brand: #0e4f73;
  --brand-strong: #0b3f5b;
  --accent: #5ed7d0;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 14px 36px rgba(12, 46, 67, 0.13);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  background: radial-gradient(100% 60% at 50% 0%, #d8f1ff 0%, var(--bg) 60%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: 6.25rem;
}

a {
  color: inherit;
}

.container {
  width: min(72rem, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(245, 251, 255, 0.9);
  border-bottom: 1px solid rgba(14, 79, 115, 0.1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.8rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.72rem;
  background: linear-gradient(145deg, var(--brand), #1b6c99);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-text {
  font-size: 0.88rem;
  font-weight: 800;
  max-width: 13rem;
  line-height: 1.2;
}

.main-nav {
  display: none;
  gap: 0.7rem;
}

.main-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-strong);
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 4.2rem 0 3rem;
}

.page-hero {
  padding: 3rem 0 2rem;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.6;
  z-index: -1;
}

.glow-1 {
  width: 18rem;
  height: 18rem;
  background: #8fe9e4;
  top: -7rem;
  right: -6rem;
}

.glow-2 {
  width: 14rem;
  height: 14rem;
  background: #99cfff;
  bottom: -4rem;
  left: -4rem;
}

.eyebrow {
  font: 700 0.78rem/1 "Sora", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--brand);
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2rem, 7.6vw, 3.75rem);
  max-width: 18ch;
}

.subhead {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 3.7vw, 1.2rem);
  max-width: 62ch;
}

.hero-actions,
.link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.call-btn,
.ghost-btn {
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 0.78rem 1.2rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.call-btn {
  color: var(--white);
  background: linear-gradient(130deg, #0f6a99, var(--brand));
  box-shadow: 0 8px 22px rgba(14, 79, 115, 0.3);
}

.ghost-btn {
  color: var(--brand-strong);
  border: 1px solid rgba(14, 79, 115, 0.25);
  background: rgba(255, 255, 255, 0.62);
}

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

.services,
.trust,
.content,
.gallery,
.faq {
  padding: 2.4rem 0;
}

h2 {
  font-size: clamp(1.45rem, 5vw, 2.25rem);
}

.service-grid,
.gallery-grid,
.faq-grid,
.location-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.card {
  background: var(--surface);
  border: 1px solid rgba(14, 79, 115, 0.11);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.35rem;
}

.card p,
.card li,
.lead {
  margin: 0;
  color: var(--muted);
}

.lead {
  margin-top: 0.9rem;
  max-width: 65ch;
}

.trust-panel {
  background: linear-gradient(150deg, #10374f, #184f70);
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.trust-panel h2 {
  max-width: 26ch;
}

.trust-panel ul {
  margin: 1rem 0 1.3rem;
  padding-left: 1rem;
}

.trust-panel li {
  margin: 0.35rem 0;
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 0.7rem;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--brand);
}

.site-footer {
  padding: 1.8rem 0 6rem;
}

.footer-wrap {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-wrap p {
  margin: 0.2rem 0;
}

.mobile-call {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 30;
  display: block;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  background: linear-gradient(130deg, #0b7db7, #0e4f73);
  font-weight: 800;
  border-radius: 999px;
  padding: 0.94rem 1rem;
  box-shadow: 0 16px 30px rgba(5, 43, 63, 0.36);
}

.desktop-call {
  display: none;
}

@media (min-width: 720px) {
  body {
    padding-bottom: 0;
  }

  .brand-text {
    max-width: none;
    font-size: 0.95rem;
  }

  .main-nav {
    display: inline-flex;
  }

  .desktop-call {
    display: inline-flex;
  }

  .mobile-call {
    display: none;
  }

  .service-grid,
  .gallery-grid,
  .faq-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-panel {
    padding: 2rem;
  }

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

@media (min-width: 1024px) {
  .hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
  }

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

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

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