/* Focal Point Vitality — refreshed design system */
:root {
  --brand: #1d6fa5;
  --brand-dark: #14507a;
  --brand-darker: #0e3a59;
  --brand-light: #e8f3fa;
  --accent: #c8922e;          /* warm gold — vitality */
  --accent-dark: #a9781f;
  --ink: #1f2a33;
  --body: #44525c;
  --muted: #6b7884;
  --line: #e3e9ee;
  --bg: #ffffff;
  --bg-alt: #f5f8fb;
  --bg-deep: #0e3a59;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(16,40,60,.08), 0 1px 2px rgba(16,40,60,.06);
  --shadow: 0 10px 30px rgba(16,40,60,.10);
  --maxw: 1180px;
  --font-head: 'Raleway', system-ui, -apple-system, Segoe UI, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 2.2em; }
h3 { font-size: 1.3rem; margin-top: 1.6em; }
h4 { font-size: 1.1rem; margin-top: 1.4em; color: var(--brand-dark); }
p { margin: 0 0 1.1em; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.btn {
  display: inline-block; font-family: var(--font-head); font-weight: 700;
  background: var(--accent); color: #fff; padding: 14px 28px; border-radius: 999px;
  letter-spacing: .02em; transition: .2s; border: 0; cursor: pointer; font-size: 1rem;
}
.btn:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--brand-dark); }
.btn-brand { background: var(--brand); }
.btn-brand:hover { background: var(--brand-dark); }

/* ---------- Header ---------- */
.topbar { background: var(--brand-darker); color: #cfe2ef; font-size: .85rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 7px 22px; flex-wrap: wrap; }
.topbar a { color: #fff; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }

.site-header { position: sticky; top: 0; z-index: 50; background: #fff; box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 22px; }
.brand { flex: 0 0 auto; }
.brand img { height: 54px; width: auto; max-width: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; align-items: center; }
.nav > ul > li { position: relative; }
.nav > ul > li > a {
  display: block; padding: 12px 14px; font-family: var(--font-head); font-weight: 600;
  color: var(--ink); border-radius: 8px; font-size: .98rem;
}
.nav > ul > li > a:hover { background: var(--brand-light); text-decoration: none; color: var(--brand-dark); }
.nav .has-sub > a::after { content: "▾"; font-size: .7em; margin-left: 5px; color: var(--muted); }
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 250px; background: #fff;
  box-shadow: var(--shadow); border-radius: 12px; padding: 8px; list-style: none; margin: 6px 0 0;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .18s; max-height: 70vh; overflow: auto;
}
.nav li:hover > .submenu, .nav li:focus-within > .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu li a { display: block; padding: 9px 14px; color: var(--body); border-radius: 8px; font-size: .92rem; }
.submenu li a:hover { background: var(--bg-alt); color: var(--brand-dark); text-decoration: none; }
.nav .header-cta { margin-left: 8px; }
.menu-toggle { display: none; background: none; border: 0; font-size: 1.7rem; cursor: pointer; color: var(--ink); }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(135deg, var(--brand-dark), var(--brand-darker)); color: #fff; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px; background: radial-gradient(circle, rgba(200,146,46,.25), transparent 70%); }
.hero .container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; padding: 64px 22px; position: relative; z-index: 1; }
.hero.no-image .container { grid-template-columns: 1fr; max-width: 880px; text-align: center; }
.hero .eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--accent); font-weight: 700; }
.hero h1 { color: #fff; margin: 12px 0 18px; }
.hero p { color: #d8e6f0; font-size: 1.12rem; max-width: 56ch; }
.hero.no-image p { margin-left: auto; margin-right: auto; }
.hero-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero.no-image .hero-actions { justify-content: center; }
.hero-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; width: 100%; }

.breadcrumb { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .85rem; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 10px 22px; max-width: var(--maxw); margin: 0 auto; color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 8px; color: var(--line); }

/* ---------- Content ---------- */
.content { padding: 56px 0; }
.content .container { max-width: 820px; }
.content.has-aside .container { max-width: var(--maxw); display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.prose h2 { color: var(--brand-dark); }
.prose ul { padding-left: 1.2em; }
.prose li { margin: .4em 0; }
.prose figure { margin: 28px 0; }
.prose figure img { border-radius: var(--radius); box-shadow: var(--shadow-sm); width: 100%; }
.prose .inline-cta {
  background: var(--brand-light); border-left: 4px solid var(--brand); border-radius: 10px;
  padding: 22px 26px; margin: 32px 0;
}
.prose .inline-cta p { margin: 0 0 14px; font-weight: 600; color: var(--brand-darker); font-family: var(--font-head); }
.prose p a, .prose li a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose p a:hover, .prose li a:hover { color: var(--brand); }
.prose ul ul { margin: .3em 0 .3em; padding-left: 1.1em; list-style: circle; }
.prose ul ul li { margin: .25em 0; }

/* Related services */
.related { background: var(--bg-alt); border-top: 1px solid var(--line); padding: 48px 0; }
.related h2 { margin-top: 0; color: var(--brand-dark); }
.related-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.related-grid li a { display: block; background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; font-weight: 600; font-family: var(--font-head); color: var(--brand-dark); transition: .15s; }
.related-grid li a:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); text-decoration: none; }

/* Blog index */
.post-grid { list-style: none; padding: 0; margin: 24px 0 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.post-card h3 { margin: 0 0 10px; font-size: 1.12rem; line-height: 1.3; }
.post-card h3 a { color: var(--brand-dark); }
.post-card p { color: var(--body); font-size: .95rem; margin: 0 0 14px; }
.post-card .post-more { font-weight: 600; color: var(--brand); font-size: .92rem; }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 10px; margin: 10px 0; padding: 4px 18px; background: #fff; }
.faq summary { font-family: var(--font-head); font-weight: 600; color: var(--ink); cursor: pointer; padding: 12px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--brand); font-size: 1.4em; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details[open] { box-shadow: var(--shadow-sm); }

/* aside */
.aside-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 90px; }
.aside-card h3 { margin-top: 0; }
.aside-card .btn { width: 100%; text-align: center; margin-top: 8px; }
.aside-card ul { list-style: none; padding: 0; margin: 0; }
.aside-card ul li a { display: block; padding: 8px 0; border-bottom: 1px solid var(--line); color: var(--body); font-size: .95rem; }

/* CTA band */
.cta-band { background: var(--bg-deep); color: #fff; text-align: center; padding: 56px 22px; }
.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band p { color: #cfe0ec; max-width: 60ch; margin: 0 auto 24px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--brand-darker); color: #b9cddc; font-size: .92rem; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding: 56px 22px 30px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 16px; }
.site-footer a { color: #d6e4ef; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin: 8px 0; }
.site-footer .brandmark { height: 60px; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); text-align: center; padding: 18px; font-size: .82rem; color: #8fa9bd; }
.footer-contact p { margin: 4px 0; }

/* ---------- Home page sections ---------- */
.section-head { max-width: 62ch; margin: 0 0 36px; }
.section-head .eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--accent); font-weight: 700; }
.section-head h2 { margin: 8px 0 0; color: var(--brand-dark); }
.section-head .lead { margin: 16px 0 0; color: var(--body); font-size: 1.08rem; }

.home-services { padding: 64px 0; }
.svc-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; transition: .15s; }
.svc-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.svc-card h3 { margin: 0 0 10px; font-size: 1.18rem; }
.svc-card h3 a { color: var(--brand-dark); }
.svc-card p { color: var(--body); font-size: .96rem; margin: 0 0 14px; }
.svc-card .svc-more { font-weight: 600; color: var(--brand); font-size: .92rem; font-family: var(--font-head); }

.home-steps { padding: 64px 0; background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.step-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; counter-reset: step; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 999px; background: var(--brand-light); color: var(--brand-dark); font-family: var(--font-head); font-weight: 800; margin-bottom: 14px; }
.step-card h3 { margin: 0 0 8px; color: var(--brand-dark); font-size: 1.12rem; }
.step-card p { color: var(--body); font-size: .96rem; margin: 0; }

.home-why { padding: 64px 0; }
.why-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }
.why-grid li { padding: 22px; border-left: 3px solid var(--accent); background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0; }
.why-grid h3 { margin: 0 0 8px; color: var(--brand-dark); font-size: 1.05rem; }
.why-grid p { margin: 0; color: var(--body); font-size: .94rem; }

.home-popular { padding: 0 0 64px; }
.home-popular h2 { color: var(--brand-dark); }
.chip-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.chip-row a { display: inline-block; padding: 10px 18px; border-radius: 999px; background: var(--brand-light); color: var(--brand-dark); font-weight: 600; font-family: var(--font-head); font-size: .94rem; transition: .15s; }
.chip-row a:hover { background: var(--brand); color: #fff; text-decoration: none; }

.home-blog { padding: 64px 0; background: var(--bg-alt); border-top: 1px solid var(--line); }
.home-blog .blog-all { margin: 28px 0 0; }
/* outline button on light home sections (default variant is white-on-dark) */
.home-blog .btn-outline, .home-location .btn-outline { border-color: var(--brand); color: var(--brand-dark); }
.home-blog .btn-outline:hover, .home-location .btn-outline:hover { background: var(--brand); color: #fff; }

.home-location { padding: 64px 0; }
.home-location .eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; color: var(--accent); font-weight: 700; }
.loc-info h2 { margin: 8px 0 16px; color: var(--brand-dark); }
.loc-addr { font-size: 1.05rem; color: var(--ink); }
.loc-hours { color: var(--muted); }

/* ---------- Lead forms ---------- */
.contact-form-wrap { margin-top: 32px; }
.lead-form { display: flex; flex-direction: column; gap: 16px; max-width: 620px; }
.lead-form .lf-field { display: flex; flex-direction: column; gap: 6px; font-family: var(--font-head);
  font-weight: 600; font-size: .9rem; color: var(--brand-dark); }
.lead-form input, .lead-form textarea, .lead-form select {
  font: inherit; font-weight: 400; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 100%;
  transition: border-color .15s, box-shadow .15s; }
.lead-form select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%2314507a' stroke-width='1.6'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px; padding-right: 38px; }
.lead-form input:focus, .lead-form textarea:focus, .lead-form select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-light); }
.lead-form textarea { resize: vertical; min-height: 96px; }
.lead-form .lf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form button[type="submit"] { align-self: flex-start; cursor: pointer; border: 0; }
.lead-form button[disabled] { opacity: .65; cursor: default; }
.lf-status { margin: 4px 0 0; font-size: .92rem; font-weight: 600; }
.lf-status.lf-ok { color: #1c7a4f; }
.lf-status.lf-err { color: #c0392b; }

/* ---------- Footer newsletter ---------- */
.footer-newsletter h4 { margin: 0 0 6px; color: #fff; }
.footer-newsletter p { margin: 0 0 12px; color: #cfe2ef; font-size: .92rem; }
.footer-newsletter .newsletter-form { gap: 10px; max-width: none; }
.footer-newsletter .nl-row { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; min-width: 0; border-radius: 999px; padding: 11px 16px; border: 1px solid transparent; }
.footer-newsletter .btn { padding: 11px 20px; }
.footer-newsletter .lf-status.lf-ok { color: #9be7c2; }
.footer-newsletter .lf-status.lf-err { color: #ffb3a8; }

/* ---------- Lead popup ---------- */
.lead-popup { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 20px; background: rgba(14,40,60,.55); opacity: 0; transition: opacity .3s; }
.lead-popup.show { opacity: 1; }
.lead-popup-card { position: relative; background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  max-width: 460px; width: 100%; padding: 34px 30px; transform: translateY(14px) scale(.98); transition: transform .3s; }
.lead-popup.show .lead-popup-card { transform: none; }
.lead-popup-card .eyebrow { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .16em;
  font-size: .75rem; color: var(--accent); font-weight: 700; }
.lead-popup-card h3 { margin: 6px 0 8px; color: var(--brand-dark); }
.lead-popup-card p { margin: 0 0 18px; color: var(--muted); font-size: .95rem; }
.lead-popup-card .lead-form { gap: 12px; }
.lead-popup-card button[type="submit"] { align-self: stretch; text-align: center; }
.lead-popup-close { position: absolute; top: 12px; right: 14px; background: none; border: 0; cursor: pointer;
  font-size: 1.7rem; line-height: 1; color: var(--muted); }
.lead-popup-close:hover { color: var(--brand-dark); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; gap: 28px; padding: 48px 22px; }
  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16/10; max-height: 360px; }
  .content { padding: 44px 0; }
  .content.has-aside .container { grid-template-columns: 1fr; }
  .aside-card { position: static; }
  .cta-band { padding: 44px 22px; }
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 28px; padding: 44px 22px 24px; }
}
@media (max-width: 820px) {
  .menu-toggle { display: block; z-index: 60; }
  body.nav-open { overflow: hidden; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(14,40,60,.45); opacity: 0; visibility: hidden; transition: .25s; z-index: 55; }
  body.nav-open .nav-backdrop { opacity: 1; visibility: visible; }
  .nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 360px); background: #fff; flex-direction: column;
    padding: 80px 18px 24px; transform: translateX(100%); transition: .25s; box-shadow: var(--shadow); overflow-y: auto;
    overscroll-behavior: contain; -webkit-overflow-scrolling: touch; align-items: stretch; z-index: 58; }
  .nav.open { transform: translateX(0); }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav > ul > li > a { padding: 14px 10px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; max-height: none;
    padding: 0 0 8px 12px; margin: 0; display: none; }
  .nav li.open > .submenu { display: block; }
  .nav .has-sub > a::after { float: right; }
  .header-cta { margin: 12px 0 0; }
  .header-cta .btn { display: block; text-align: center; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  /* compact topbar: drop the long address, keep tap-to-call */
  .topbar { font-size: .82rem; }
  .topbar .container { justify-content: center; gap: 14px; padding: 8px 16px; }
  .topbar > .container > span:first-child { display: none; }
  .topbar .tb-right { gap: 14px; }
  .site-header .container { padding: 10px 16px; }
  .brand img { height: 46px; }
  .hero .container { padding: 32px 18px; }
  .hero p { font-size: 1.02rem; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { flex: 1 1 100%; text-align: center; }
  .hero-media img { aspect-ratio: 16/11; max-height: 280px; }
  .breadcrumb ol { padding: 9px 16px; }
  .content { padding: 32px 0; }
  .container { padding: 0 16px; }
  h2 { margin-top: 1.6em; }
  h3 { margin-top: 1.3em; }
  .prose figure { margin: 22px -16px; }
  .prose figure img { border-radius: 0; }
  .prose .inline-cta { margin: 26px 0; padding: 18px 20px; }
  .cta-band { padding: 40px 18px; }
  .faq summary { font-size: .98rem; }
  .home-services, .home-steps, .home-why, .home-blog, .home-location { padding: 40px 0; }
  .home-popular { padding: 0 0 40px; }
  .section-head { margin-bottom: 26px; }
  .lead-form .lf-grid { grid-template-columns: 1fr; }
  .lead-popup-card { padding: 28px 22px; }
}
@media (max-width: 480px) {
  .site-footer .container { grid-template-columns: 1fr; }
  .footer-contact { text-align: center; }
  .footer-contact .brandmark { margin-left: auto; margin-right: auto; }
}
