/* ─────────────────────────────────────────────
   Harbor Grove — shared landing page styles
   Used by dedicated service/city pages.
   Homepage (index.html) keeps its own inline styles.
   ───────────────────────────────────────────── */

:root {
  --navy:      #0D2B4E;
  --navy-deep: #071a30;
  --blue:      #1565C0;
  --sky:       #42A5F5;
  --gold:      #F9A825;
  --gold2:     #e6941a;
  --white:     #FFFFFF;
  --light:     #EFF6FF;
  --bg:        #F7FAFF;
  --text:      #1A1A2E;
  --muted:     #5A6A7A;
  --border:    #E2E8F0;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 4px 24px rgba(13,43,78,.09);
  --shadow-md: 0 8px 32px rgba(13,43,78,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; padding: 13px 26px; border-radius: var(--radius-sm);
  cursor: pointer; border: none; transition: transform .15s, box-shadow .15s, background .15s;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); box-shadow: 0 4px 20px rgba(249,168,37,.4); }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,168,37,.5); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-lg { font-size: 16px; padding: 16px 32px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--navy); font-size: 17px; }
.nav-brand img { height: 38px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-weight: 800; color: var(--navy); font-size: 15px; display: flex; align-items: center; gap: 6px; }
.nav-phone svg { width: 16px; height: 16px; fill: var(--gold); }
.nav-back { font-size: 14px; font-weight: 600; color: var(--muted); }
.nav-back:hover { color: var(--navy); }
@media (max-width: 640px) { .nav-phone span, .nav-back { display: none; } }

/* ── Hero ── */
.lp-hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, #163d6e 100%);
  color: #fff; position: relative; overflow: hidden;
}
.lp-hero::after {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(249,168,37,.16), transparent 65%);
}
.lp-hero-inner { position: relative; z-index: 1; padding: 64px 0 72px; max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); display: inline-block; }
.lp-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 5vw, 50px); font-weight: 800; line-height: 1.12; letter-spacing: -.5px;
}
.lp-hero h1 em { color: var(--gold); font-style: normal; }
.lp-hero-sub { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.8); margin-top: 20px; line-height: 1.7; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.lp-hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.lp-hero-trust div { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.85); }
.lp-hero-trust svg { width: 18px; height: 18px; fill: var(--gold); flex-shrink: 0; }

/* ── Sections ── */
.section { padding: 72px 0; }
.section-alt { background: #fff; }
.h-section {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(26px, 3.4vw, 38px); font-weight: 800; color: var(--navy); line-height: 1.2; letter-spacing: -.4px;
}
.lead { font-size: 18px; color: var(--muted); line-height: 1.75; margin-top: 16px; }
.prose p { font-size: 16px; color: var(--muted); line-height: 1.85; margin-top: 16px; }
.prose strong { color: var(--navy); }

/* ── Feature list ── */
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--light); display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.feature-title { font-weight: 700; color: var(--navy); font-size: 16px; }
.feature-desc { font-size: 14px; color: var(--muted); line-height: 1.65; margin-top: 3px; }

/* ── Two column ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } }

/* ── Chips / area list ── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip {
  background: var(--light); color: var(--navy); font-size: 14px; font-weight: 600;
  padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border);
}

/* ── FAQ ── */
.faq { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-q { font-weight: 700; color: var(--navy); font-size: 17px; margin-bottom: 8px; }
.faq-a { font-size: 15px; color: var(--muted); line-height: 1.75; }

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #163d6e 100%);
  color: #fff; text-align: center; padding: 64px 24px;
}
.cta-band h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(24px,3vw,34px); font-weight: 800; }
.cta-band p { color: rgba(255,255,255,.75); font-size: 17px; margin-top: 14px; }
.cta-band .lp-hero-actions { justify-content: center; }

/* ── Footer ── */
.lp-footer { background: var(--navy-deep); color: rgba(255,255,255,.6); padding: 48px 0 32px; font-size: 14px; }
.lp-footer a { color: rgba(255,255,255,.6); }
.lp-footer a:hover { color: #fff; }
.lp-footer-grid { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
.lp-footer h4 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.lp-footer-links { display: flex; flex-direction: column; gap: 8px; }
.lp-footer-bottom { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 12px; color: rgba(255,255,255,.4); }

/* ── Sticky mobile call bar ── */
.mobile-call { display: none; }
@media (max-width: 640px) {
  .mobile-call {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
    background: var(--gold); color: var(--navy); font-weight: 800; font-size: 16px;
    align-items: center; justify-content: center; gap: 8px; padding: 15px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.15);
  }
  body { padding-bottom: 64px; }
}
