:root {
  --navy: #0F3F6F;
  --navy-deep: #0a2d51;
  --blue: #02A4D1;
  --green: #70B38C;
  --gradient: linear-gradient(90deg, var(--blue), var(--green));
  --text: #F4F8FB;
  --text-muted: #C3D2E0;
  --radius: 16px;
  --max-width: 1120px;
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 10px;
}

h1, h2, h3 {
  font-weight: 500;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 6vw, 3.4rem); line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: 1.2rem; font-weight: 600; }

p { color: var(--text-muted); }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient);
  color: #05243f;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(2, 164, 209, 0.35);
}

.btn-large { padding: 16px 38px; font-size: 1.05rem; }
.btn-small { padding: 10px 22px; font-size: 0.9rem; }

.text-link {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 63, 111, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-badge {
  height: 42px;
  width: 42px;
  border-radius: 50%;
}

.logo-text {
  color: var(--text);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 420px) {
  .logo-text { display: none; }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-link {
  color: var(--text);
  display: inline-flex;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 70px;
  text-align: center;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.hero-bg-wordmark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3.5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 0.95;
  color: rgba(255, 255, 255, 0.05);
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-content { position: relative; z-index: 1; }

.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.hero-rating {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.stars { color: var(--green); letter-spacing: 2px; }
.stars.small { font-size: 0.85rem; }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--navy-deep); }

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 48px; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-photo img {
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.35);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
}

.about-copy h2 { margin-bottom: 20px; }
.about-copy p { margin-bottom: 16px; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--green);
  margin-top: 18px;
  margin-bottom: 0;
}

.center-cta { text-align: center; margin-top: 48px; }

/* Reviews */
.google-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 14px 24px;
  max-width: fit-content;
  margin: 0 auto 40px;
}

.google-rating { font-weight: 600; }
.google-count { color: var(--text-muted); font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0;
}

.review-card p {
  color: var(--text);
  margin: 14px 0 18px;
}

.review-card cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.location-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 32px;
}

.location-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 6px 0;
}

.location-row p { margin: 0; }
.location-row h3 { margin-bottom: 6px; }

.location-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-card hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 10px 0;
}

.phone-link { color: var(--text); text-decoration: none; }
.phone-link:hover { text-decoration: underline; }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

/* CTA */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--navy-deep) 0%, #0b3a5c 100%);
}

.cta-section p {
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0;
  text-align: center;
}

.footer-logo {
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
}

.footer-phone a { color: var(--text-muted); text-decoration: none; }
.footer-meta, .footer-copy { color: rgba(196, 210, 224, 0.6); font-size: 0.85rem; margin: 6px 0; }

/* Tablet / Desktop */
@media (min-width: 720px) {
  .about-grid {
    grid-template-columns: 380px 1fr;
  }

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

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .location-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .location-map { min-height: 100%; }
  .location-map iframe { min-height: 100%; }
}
