
:root {
  --primary: #2E6F95;
  --secondary: #4FA3B8;
  --accent: #F4B183;
  --bg: #F7FBFC;
  --text: #1E2A32;
  --muted: #DCE8EE;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Work Sans', sans-serif;
  color: var(--text);
  line-height: 1.6;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; color: #163448; }
h1 { font-size: clamp(2rem, 4vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.65rem); }
a { text-decoration: none; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(247,251,252,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--muted);
}
.nav-link { color: #27485f; transition: color .2s ease; }
.nav-link:hover { color: var(--primary); }
.phone-chip {
  background: #eaf4f7;
  border: 1px solid #cfe1ea;
  color: #1f4f69;
  padding: .5rem .8rem;
  border-radius: .7rem;
}
.menu-btn {
  font-size: 1.5rem; border: 1px solid var(--muted);
  width: 2.6rem; height: 2.6rem; border-radius: .6rem;
  background: white;
}
.mobile-menu {
  display: none;
  padding: .75rem 1rem 1rem;
  border-top: 1px solid var(--muted);
  background: #fff;
}
.mobile-menu.open { display: grid; gap: .65rem; }
.mobile-menu a { color: #21475e; font-weight: 500; }
.mobile-menu .mobile-book { color: #133247; }

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #eca16e);
  color: #213246;
  font-weight: 700;
  padding: .78rem 1.12rem;
  border-radius: .8rem;
  border: 1px solid rgba(0,0,0,.05);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(244,177,131,.38); }

.btn-secondary {
  background: #fff;
  color: #1f526d;
  border: 1px solid #cfe1ea;
  font-weight: 600;
  padding: .78rem 1.12rem;
  border-radius: .8rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.btn-secondary:hover { background: #eff7fb; }
.btn-ghost {
  border: 1px solid #c8dae3;
  color: #33566c;
  border-radius: .8rem;
  padding: .78rem 1.12rem;
}

.hero-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(79,163,184,.20), transparent 42%),
    radial-gradient(circle at 80% 12%, rgba(244,177,131,.20), transparent 35%),
    linear-gradient(180deg, #f9fdff 0%, #f2f9fc 100%);
}
.hero-title { max-width: 16ch; }
.hero-sub { margin-top: 1rem; max-width: 55ch; color: #36566a; }
.hero-image {
  border-radius: 1.2rem;
  border: 1px solid #d6e5ec;
  box-shadow: 0 24px 50px rgba(39,88,114,.18);
}

.section-head h2 { margin-top: .2rem; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .73rem;
  font-weight: 700;
  color: #4e8098;
}

.service-card {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 1rem;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
  display: block;
}
.service-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.service-card h3 { padding: .95rem 1rem 0; }
.service-card p { padding: .35rem 1rem 1rem; color: #436075; font-size: .96rem; }
.service-card:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(48,90,116,.15); }

.trust-list {
  margin: 0; padding-left: 1.2rem;
  color: #34566b;
  display: grid; gap: .5rem;
}
.text-link { color: var(--primary); font-weight: 600; }

.quote-band {
  background: linear-gradient(180deg, #e8f4f8 0%, #f7fbfc 100%);
  border-top: 1px solid #d5e7ef;
  border-bottom: 1px solid #d5e7ef;
}
.review-card {
  background: white;
  border: 1px solid #d6e6ee;
  border-radius: 1rem;
  padding: 1.25rem;
  color: #314e61;
}
.contact-panel {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 1rem;
  padding: 1.3rem;
}

.insurance-wrap {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 1rem;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 1rem;
  align-items: center;
}
.insurance-wrap img { max-height: 45px; width: auto; margin: 0 auto; object-fit: contain; }

.page-hero p { margin-top: .8rem; color: #3f6074; max-width: 62ch; }
.soft-card {
  background: #fff;
  border: 1px solid var(--muted);
  border-radius: 1rem;
  padding: 1.1rem;
}
.gallery-img {
  width: 100%;
  border-radius: .9rem;
  border: 1px solid var(--muted);
  box-shadow: 0 10px 22px rgba(54,95,120,.14);
}

.footer-title { font-size: 1.05rem; margin-bottom: .5rem; }
.footer-link { color: #2c5a73; }
.footer-link:hover { color: #1e455c; }

.mobile-call {
  position: fixed;
  bottom: .75rem;
  left: .75rem;
  right: .75rem;
  z-index: 45;
  text-align: center;
  padding: .85rem 1rem;
  border-radius: .9rem;
  background: #1f607f;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(24,74,99,.3);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .48s ease, transform .48s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (min-width: 768px) {
  .mobile-call { display: none; }
}
@media (max-width: 767px) {
  .service-card img { height: 165px; }
  .insurance-wrap { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
