/* =============================================================
   LogiBuilt • Website Mockup • styles.css
   Brand: Navy #173B56, Montserrat (heads), Poppins (body)
   ============================================================= */

:root {
  --navy:         #173B56;
  --navy-deep:    #0F2940;
  --navy-soft:    #2B567A;
  --ink:          #111418;
  --ink-muted:    #5C6670;
  --rule:         #E6E4DE;
  --cream:        #F7F6F3;
  --sand:         #C9B89B;
  --sand-soft:    #E9DEC9;
  --white:        #FFFFFF;
  --shadow-sm:    0 1px 2px rgba(15,41,64,0.05), 0 2px 6px rgba(15,41,64,0.06);
  --shadow-md:    0 10px 24px rgba(15,41,64,0.10), 0 2px 4px rgba(15,41,64,0.04);
  --shadow-lg:    0 24px 48px rgba(15,41,64,0.18);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --container:    1200px;
  --container-wide: 1360px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings use Montserrat */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .display {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 800;
}
.display {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
h1, .h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
h2, .h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }
h3, .h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); font-weight: 700; }
h4, .h4 { font-size: 1.125rem; font-weight: 700; }

p { margin: 0 0 1rem; color: var(--ink); }
.lead { font-size: 1.125rem; line-height: 1.65; color: var(--ink-muted); }
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--sand);
  display: inline-block;
  margin-bottom: 1rem;
}
.eyebrow.navy { color: var(--navy-soft); }

a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }

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

/* Layout primitives */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: var(--navy); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p, .section-dark .lead { color: rgba(247,246,243,.85); }
.section-cream { background: var(--cream); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); color: var(--white); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-arrow::after {
  content: "→"; font-weight: 700; margin-left: 2px;
  transition: transform .2s ease;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.3) blur(10px);
  -webkit-backdrop-filter: saturate(1.3) blur(10px);
  border-bottom: 1px solid rgba(23,59,86,.08);
}
.nav-inner {
  max-width: var(--container-wide); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  padding: 8px 0;
  position: relative;
}
.nav-links a:hover { text-decoration: none; color: var(--navy-soft); }
.nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content:""; position: absolute; left:0; right:0; bottom:-2px;
  height: 2px; background: var(--sand);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600; color: var(--navy); font-size: .95rem;
}
.nav-mobile-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 680px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,41,64,.55) 0%, rgba(15,41,64,.75) 100%);
  z-index: -1;
}
.hero-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 140px 24px 120px;
  position: relative;
}
.hero h1 {
  color: var(--white);
  max-width: 900px;
  margin-bottom: 24px;
}
.hero .lead {
  color: rgba(255,255,255,.92);
  max-width: 620px;
  font-size: 1.2rem;
  margin-bottom: 40px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Sub-hero on service pages */
.page-hero {
  position: relative;
  min-height: 420px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  display: flex; align-items: flex-end;
}
.page-hero .hero-img { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero::before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(15,41,64,.35) 0%, rgba(15,41,64,.85) 100%);
  z-index: -1;
}
.page-hero-inner {
  max-width: var(--container-wide); margin: 0 auto; width: 100%;
  padding: 80px 24px 60px;
}
.page-hero h1 { color: var(--white); max-width: 800px; }
.page-hero .lead { color: rgba(255,255,255,.9); max-width: 640px; }

/* =============================================================
   TRUST STRIP
   ============================================================= */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.trust-strip-inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 24px;
  display: flex; flex-wrap: wrap; gap: 18px 36px; justify-content: center;
  align-items: center;
  text-align: center;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  white-space: nowrap;
}
.trust-dot { color: var(--sand); font-size: 1.3rem; line-height: 0; }
@media (max-width: 900px) {
  .trust-item { font-size: .85rem; white-space: normal; }
  .trust-strip-inner { gap: 14px 24px; }
}

/* =============================================================
   SERVICE CARDS
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}
.service-card-img {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  position: relative;
}
.service-card-body { padding: 24px 22px 28px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--ink-muted); margin-bottom: 16px; font-size: .95rem; }
.service-card .card-link {
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .9rem;
  letter-spacing: .03em;
}
.service-card .card-link::after { content: " →"; transition: transform .2s ease; display: inline-block; }
.service-card:hover .card-link::after { transform: translateX(4px); }

/* =============================================================
   PILLARS (Why Us)
   ============================================================= */
.pillar-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
@media (max-width: 900px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar { }
.pillar-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--sand-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--navy);
}
.pillar h3 { margin-bottom: 8px; font-size: 1.15rem; }
.pillar p { color: var(--ink-muted); font-size: .95rem; line-height: 1.6; }

/* =============================================================
   GALLERY
   ============================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 800px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  background-size: cover; background-position: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease;
}
.gallery-item.tall { aspect-ratio: 3 / 4; }
.gallery-item:hover { transform: scale(1.01); box-shadow: var(--shadow-md); }
.gallery-item-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(15,41,64,.82);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px; border-radius: 4px;
}

/* =============================================================
   PROCESS
   ============================================================= */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  counter-reset: step;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  counter-increment: step;
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 10px;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.process-step p { color: var(--ink-muted); font-size: .92rem; margin: 0; }

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  padding: 32px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
}
.review-stars { color: #E4A93C; letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 12px; }
.review blockquote {
  margin: 0 0 18px;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink);
}
.review-cite {
  display: flex; flex-direction: column; gap: 2px;
}
.review-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: .95rem;
}
.review-meta { color: var(--ink-muted); font-size: .82rem; }

/* =============================================================
   SPLIT (image + text)
   ============================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split-image {
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.split-image.tall { aspect-ratio: 3 / 4; }

/* =============================================================
   INCLUDED LIST
   ============================================================= */
.included-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 28px;
}
@media (max-width: 600px) { .included-list { grid-template-columns: 1fr; } }
.included-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-size: .98rem;
}
.included-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--sand);
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--rule);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  padding: 6px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--sand); font-size: 1.5rem; font-weight: 700;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-muted); margin: 12px 0 0; line-height: 1.65; }

/* =============================================================
   CTA BAND
   ============================================================= */
.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content:""; position: absolute; right: -120px; top: -120px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,184,155,.15) 0%, transparent 70%);
}
.cta-band-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 48px;
  align-items: center;
  position: relative;
}
@media (max-width: 800px) { .cta-band-inner { grid-template-columns: 1fr; } }
.cta-band h2 { color: var(--white); margin: 0 0 10px; }
.cta-band p { color: rgba(247,246,243,.9); margin: 0; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: flex-end; }
@media (max-width: 800px) { .cta-band-actions { justify-content: flex-start; } }

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.75);
  padding: 64px 0 32px;
}
.footer a { color: rgba(255,255,255,.85); }
.footer a:hover { color: var(--white); }
.footer-inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
@media (max-width: 820px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-logo img { height: 44px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: .95rem; }
.footer-bottom {
  max-width: var(--container-wide); margin: 40px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
@media (max-width: 620px) {
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Utility */
.text-center { text-align: center; }
.max-w-prose { max-width: 65ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-6 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.pt-0 { padding-top: 0; }
.section-title-wrap { max-width: 720px; margin-bottom: 56px; }
.section-title-wrap.text-center { margin-left: auto; margin-right: auto; }

/* =============================================================
   CONTACT / FORMS
   ============================================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; gap: 40px; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 520px) { .form-card { padding: 28px 22px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  letter-spacing: .04em;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(23,59,86,.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-hint { display: block; font-size: .82rem; color: var(--ink-muted); margin-top: 6px; }
.form-actions { margin-top: 8px; }

/* Contact side card */
.contact-side { display: flex; flex-direction: column; gap: 28px; }
.contact-block {
  padding: 24px;
  background: var(--cream);
  border-radius: var(--radius-md);
  border: 1px solid var(--rule);
}
.contact-block h3 {
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 0 0 10px;
}
.contact-block p, .contact-block a { margin: 0 0 4px; color: var(--ink); font-size: 1rem; }
.contact-block a { color: var(--navy); font-weight: 600; }
.contact-block .big {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.01em;
}

/* =============================================================
   PROSE (long-form legal / about copy)
   ============================================================= */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { margin-top: 2.2em; font-size: 1.5rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.6em; font-size: 1.15rem; }
.prose p { color: var(--ink); font-size: 1.02rem; line-height: 1.75; margin: 0 0 1.1em; }
.prose ul { padding-left: 22px; margin: 0 0 1.1em; }
.prose ul li { margin-bottom: .5em; line-height: 1.65; }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.prose .meta {
  font-size: .88rem;
  color: var(--ink-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
}

/* =============================================================
   FAQ GROUPS (for standalone FAQ page)
   ============================================================= */
.faq-group { margin-bottom: 56px; }
.faq-group:last-child { margin-bottom: 0; }
.faq-group-title {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy-soft);
  margin: 0 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sand);
  display: inline-block;
}

/* =============================================================
   VALUES / PRINCIPLES (About page)
   ============================================================= */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--sand);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.value-card p { color: var(--ink-muted); margin: 0; font-size: .97rem; line-height: 1.65; }

/* =============================================================
   HERO — split layout with inline lead form
   ============================================================= */
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy .hero-ctas { align-items: center; gap: 20px; }
.hero-phone-link {
  color: rgba(255, 255, 255, .92);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 2px;
}
.hero-phone-link:hover { color: var(--sand); border-bottom-color: var(--sand); }

.hero-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 28px 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .25);
  max-width: 460px;
  justify-self: end;
  width: 100%;
}
.hero-form-head { text-align: left; margin-bottom: 18px; }
.hero-form-head h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.hero-form-head p {
  color: var(--ink-muted);
  margin: 0;
  font-size: .95rem;
}
.hero-form-body { display: flex; flex-direction: column; gap: 10px; }
.hero-form input,
.hero-form select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.hero-form input:focus,
.hero-form select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(23, 59, 86, .15);
}
.hero-form select { appearance: none; -webkit-appearance: none; background-image:
  url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23173B56' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  padding-right: 38px;
}
.hero-form-submit {
  width: 100%;
  justify-content: center;
  padding: 14px 22px;
  font-size: 1rem;
  margin-top: 4px;
}
.hero-form-note {
  font-size: .82rem;
  color: var(--ink-muted);
  text-align: center;
  margin: 8px 0 0;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-form { justify-self: stretch; max-width: none; }
}

/* Trust strip star rating */
.trust-stars {
  color: #E4A93C;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-right: 6px;
  vertical-align: middle;
}

/* =============================================================
   MOBILE STICKY TAP-TO-CALL
   Floating phone CTA visible only on small screens.
   ============================================================= */
.mobile-call-cta {
  display: none;
}
@media (max-width: 768px) {
  .mobile-call-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px 20px;
    background: var(--navy);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .02em;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .28);
    z-index: 1000;
    border: 2px solid var(--sand);
  }
  .mobile-call-cta:active { transform: translateY(1px); }
  /* Extra bottom padding on body so footer isn't covered */
  body { padding-bottom: 80px; }
}

/* Reviews CTA */
.reviews-cta { margin-top: 40px; }

/* =============================================================
   SERVICE-PAGE QUOTE STRIP (above-the-fold lead capture)
   ============================================================= */
.quote-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 56px 0;
}
.quote-strip-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 56px;
  align-items: center;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}
.quote-strip-copy h2 {
  margin-top: 10px;
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.quote-strip-copy .lead { margin-bottom: 16px; }
.quote-strip-copy .hero-phone-link {
  color: var(--navy);
  border-bottom-color: rgba(23, 59, 86, .35);
}
.quote-strip-copy .hero-phone-link:hover {
  color: var(--navy-deep);
  border-bottom-color: var(--navy-deep);
}
@media (max-width: 900px) {
  .quote-strip-grid { grid-template-columns: 1fr; gap: 32px; }
  .quote-strip .hero-form { justify-self: stretch; max-width: none; }
}

/* =============================================================
   PROOF STRIP (trust signals bar)
   ============================================================= */
.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 28px 0;
}
.proof-strip-inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  letter-spacing: .01em;
}
.proof-item .proof-icon {
  font-size: 1.25rem;
  color: #E4A93C;
  line-height: 1;
}
.proof-item strong {
  color: var(--navy);
  font-weight: 700;
}
.proof-item span {
  color: var(--ink-muted);
  font-weight: 500;
  font-size: .82rem;
  display: block;
}
@media (max-width: 900px) {
  .proof-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 520px) {
  .proof-strip-inner { grid-template-columns: 1fr; gap: 14px; }
}

/* =============================================================
   FEATURED REVIEW (single big pulled-out quote)
   ============================================================= */
.featured-review-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.featured-review-wrap .review-stars {
  color: #E4A93C;
  letter-spacing: 3px;
  font-size: 1.25rem;
  margin-bottom: 18px;
}
.featured-review-wrap blockquote {
  margin: 0 0 22px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.featured-review-wrap .review-cite {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

/* =============================================================
   SERVICE AREA (pill list of cities)
   ============================================================= */
.service-area-wrap {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.service-area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
  list-style: none;
  padding: 0;
}
.service-area-list li {
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
}
