/* =====================================================================
   Buddy's Home Painting — landing page styles
   Palette: deep navy authority + warm cream + brick-red accent
   Type:    Oswald (condensed headings) / Caveat (accent) / Work Sans (body)
   ===================================================================== */

:root {
  --navy:        #16263d;   /* main authority color            */
  --navy-deep:   #0f1c2e;   /* darker panels / footer          */
  --charcoal:    #222b36;
  --cream:       #f7f1e4;   /* warm background                 */
  --cream-soft:  #fbf7ee;
  --paper:       #fffdf8;   /* cards on cream                  */
  --accent:      #c8442f;   /* brick red CTA                   */
  --accent-dark: #a5331f;
  --accent-soft: #f3d9cf;
  --gold:        #e8b54b;   /* stars / small highlights        */
  --ink:         #20262e;   /* body text on light              */
  --ink-soft:    #586273;
  --line:        #e3dac6;   /* hairline on cream               */
  --line-dark:   rgba(255,255,255,.14);

  --radius:   14px;
  --radius-lg: 22px;
  --shadow:   0 18px 45px -22px rgba(15,28,46,.45);
  --shadow-sm:0 8px 24px -14px rgba(15,28,46,.4);
  --maxw: 1180px;

  --font-head: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "Work Sans", system-ui, sans-serif;
  --font-accent: "Caveat", cursive;
}

/* ---------- reset ---------- */
*, *::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(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  /* subtle paper grain */
  background-image:
    radial-gradient(rgba(22,38,61,.018) 1px, transparent 1px);
  background-size: 4px 4px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; font-family: var(--font-head); font-weight: 700; letter-spacing: .3px; }
p { margin: 0 0 1rem; }

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

/* =====================================================================
   Buttons
   ===================================================================== */
.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-head);
  font-weight: 600; letter-spacing: .6px; text-transform: uppercase;
  font-size: .9rem;
  padding: .85rem 1.5rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 10px 22px -10px rgba(200,68,47,.7); }
.btn--accent:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--light { background: var(--cream); color: var(--navy); }
.btn--light:hover { background: #fff; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; border-radius: 12px; }
.btn--block { width: 100%; }

/* =====================================================================
   Shared section bits
   ===================================================================== */
.section { padding: 86px 0; }
.section--alt { background: var(--cream-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); text-transform: uppercase; }
.section-title--light { color: #fff; }
.section-lede { color: var(--ink-soft); font-size: 1.1rem; margin-top: .9rem; }

.eyebrow {
  font-family: var(--font-accent);
  font-size: 1.5rem; line-height: 1;
  color: var(--accent);
  margin: 0 0 .35rem;
  font-weight: 700;
}
.eyebrow--light { color: var(--gold); }

.chip {
  display: inline-block;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px;
  font-size: .7rem; font-weight: 600;
  background: var(--accent-soft); color: var(--accent-dark);
  padding: .3rem .65rem; border-radius: 50px; margin-bottom: .6rem;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .5px;
  font-size: .85rem; font-weight: 600; color: var(--accent);
}
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.stars { color: var(--gold); letter-spacing: 2px; font-size: 1rem; }
.stars--lg { font-size: 1.6rem; }

/* =====================================================================
   Image placeholders (swap for real <img> or set background-image)
   ===================================================================== */
.img-ph {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(22,38,61,.05) 0 12px, rgba(22,38,61,.09) 12px 24px),
    var(--navy);
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
  overflow: hidden;
}
.img-ph--tall { min-height: 100%; }
.img-ph__tag {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px;
  font-size: .78rem; font-weight: 600;
  color: #fff; background: rgba(15,28,46,.78);
  padding: .5rem .9rem; border-radius: 8px;
  border: 1px dashed rgba(255,255,255,.45);
  text-align: center;
}

/* =====================================================================
   1. Announcement bar
   ===================================================================== */
.announce {
  display: flex; align-items: center; justify-content: center; gap: .6rem; flex-wrap: wrap;
  background: var(--accent); color: #fff;
  font-size: .92rem; text-align: center;
  padding: .55rem 16px;
}
.announce:hover { background: var(--accent-dark); }
.announce__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.announce__phone { font-family: var(--font-head); font-weight: 600; letter-spacing: .5px; }
.announce__phone::before { content: "·"; margin-right: .6rem; opacity: .6; }

/* =====================================================================
   2. Header / nav
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream-soft);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px -18px rgba(15,28,46,.6);
}
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }

.brand { display: flex; align-items: center; gap: .65rem; flex: 1 1 0; }
.brand__badge {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--navy); color: var(--cream);
  border: 2px solid var(--gold);
}
.brand__text { display: flex; flex-direction: column; line-height: .95; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.brand__sub  { font-family: var(--font-accent); font-size: 1.05rem; color: var(--accent); }

.nav { display: flex; gap: 1.5rem; justify-content: center; }
.nav a {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .6px;
  font-size: .9rem; font-weight: 500; color: var(--navy);
  padding: .3rem 0; position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--accent); transition: width .18s ease;
}
.nav a:hover::after { width: 100%; }

.site-header__actions { display: flex; align-items: center; justify-content: flex-end; gap: .9rem; flex: 1 1 0; }
.header-phone {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .5px;
  color: var(--navy); font-size: .95rem;
}
.header-phone:hover { color: var(--accent); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* =====================================================================
   3. Hero
   ===================================================================== */
.hero { position: relative; color: #fff; isolation: isolate; }
.hero__media {
  position: absolute; inset: 0; z-index: -2;
  min-height: 100%;
  background-size: cover; background-position: center;
}
.hero__media .img-ph__tag { position: absolute; top: 18px; left: 18px; }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(115deg, rgba(15,28,46,.94) 0%, rgba(15,28,46,.78) 48%, rgba(15,28,46,.5) 100%);
}
.hero__inner { padding: 96px 22px 150px; max-width: 760px; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  text-transform: uppercase; line-height: .98;
  margin: .4rem 0 1.1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}
.hero__sub { font-size: 1.2rem; color: #e9e3d6; max-width: 600px; margin-bottom: 1.8rem; }
.hero__sub strong { color: #fff; }
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =====================================================================
   4. Trust strip (overlaps hero)
   ===================================================================== */
.trust { margin-top: -78px; position: relative; z-index: 10; }
.trust__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; padding: 1.5rem;
}
.trust__item { display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .95rem; color: var(--navy); }
.trust__item + .trust__item { border-left: 1px solid var(--line); padding-left: 1rem; }
.trust__icon { width: 30px; height: 30px; flex: none; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.trust__item--rating { flex-direction: column; align-items: flex-start; gap: .15rem; }
.trust__item--rating span { font-weight: 500; font-size: .85rem; color: var(--ink-soft); }
.trust__item--rating strong { color: var(--navy); }

/* =====================================================================
   5. Services
   ===================================================================== */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem; margin-bottom: 1.6rem; }
.feature-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-card__media { height: 240px; }
.feature-card__media .img-ph__tag { position: relative; }
.feature-card__body { padding: 1.6rem 1.7rem 1.8rem; }
.feature-card__body h3 { font-size: 1.8rem; color: var(--navy); text-transform: uppercase; margin-bottom: .5rem; }
.feature-card__body p { color: var(--ink-soft); }

.service-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.service-mini {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.3rem 1.1rem;
  display: flex; flex-direction: column; gap: .7rem;
  border-bottom: 3px solid var(--accent);
}
.service-mini__icon { width: 34px; height: 34px; fill: none; stroke: var(--navy); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-mini h4 { font-size: 1.15rem; color: var(--navy); text-transform: uppercase; letter-spacing: .3px; }
.service-mini p { color: var(--ink-soft); font-size: .92rem; margin: 0; }

/* =====================================================================
   6. Local expert (navy panel)
   ===================================================================== */
.local { background: var(--navy); color: #fff; }
.local__inner { display: grid; grid-template-columns: 1fr 1.1fr; }
.local__media { min-height: 460px; }
.local__text { padding: 80px 56px; }
.local__text p { color: #d6dae3; }
.local__points { list-style: none; padding: 0; margin: 1.4rem 0 2rem; display: grid; gap: .65rem; }
.local__points li { position: relative; padding-left: 2rem; color: #e9ecf2; }
.local__points li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #fff; font-size: .8rem;
  display: grid; place-items: center; font-weight: 700;
}

/* =====================================================================
   7 & 8. Split sections
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--radius-lg); overflow: hidden;
  min-height: 460px; box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: flex;
}
/* The image fills the media box. .split uses align-items:center, so the
   media item isn't stretched to the row height the way .local__media is —
   flex here gives the inner .img-ph a real height to paint into. */
.split__media > .img-ph { flex: 1; }
.split__text .section-title { text-align: left; }

.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; margin: 1.8rem 0 2rem; }
.proof__icon { width: 32px; height: 32px; fill: none; stroke: var(--accent); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .5rem; }
.proof h4 { font-size: 1.15rem; color: var(--navy); text-transform: uppercase; margin-bottom: .25rem; }
.proof p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

.check-list { list-style: none; padding: 0; margin: 1.8rem 0 2rem; display: grid; gap: 1rem; }
.check-list li { display: flex; gap: .9rem; align-items: flex-start; }
.check-list li svg {
  flex: none; width: 26px; height: 26px; padding: 4px;
  background: var(--accent); border-radius: 7px;
  fill: none; stroke: #fff; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.check-list li span { color: var(--ink-soft); }
.check-list li strong { color: var(--navy); }

/* =====================================================================
   9. Process (navy sign)
   ===================================================================== */
.process { padding: 86px 0; background: var(--cream-soft); border-top: 1px solid var(--line); }
.process__sign {
  background: var(--navy);
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.05), transparent 40%);
  color: #fff; border-radius: 26px;
  padding: 64px 48px 48px;
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
  position: relative;
}
.process__head { text-align: center; margin-bottom: 44px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step { text-align: center; position: relative; padding: 0 .5rem; }
.step__num {
  display: grid; place-items: center;
  width: 64px; height: 64px; margin: 0 auto 1.1rem;
  border-radius: 50%; background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 1.9rem; font-weight: 700;
  border: 3px solid rgba(255,255,255,.25);
}
.step h3 { font-size: 1.35rem; text-transform: uppercase; margin-bottom: .4rem; }
.step p { color: #cfd5df; font-size: .96rem; margin: 0; }
.process__strip {
  margin: 44px -48px 0;
  background: var(--accent); color: #fff;
  text-align: center; padding: .9rem 1rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px; font-size: 1.05rem;
}
.process__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

/* =====================================================================
   10. Mid CTA band
   ===================================================================== */
.cta-band {
  background: var(--navy-deep);
  background-image: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff; padding: 64px 0;
}
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__inner p { color: #cfd5df; margin: .6rem 0 0; max-width: 480px; }
.cta-band__inner .section-title { text-align: left; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* =====================================================================
   11. Testimonials
   ===================================================================== */
.reviews-scroll {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr);
  gap: 1.4rem; overflow-x: auto; padding-bottom: 1rem; scroll-snap-type: x mandatory;
}
.review-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm); scroll-snap-align: start;
  display: flex; flex-direction: column; gap: .8rem;
}
.review-card p { color: var(--ink); font-size: 1.02rem; margin: 0; flex: 1; }
.review-card .hl { color: var(--accent); font-weight: 600; }
.review-card footer { display: flex; flex-direction: column; border-top: 1px solid var(--line); padding-top: .8rem; }
.review-card footer strong { color: var(--navy); font-family: var(--font-head); letter-spacing: .3px; }
.review-card footer span { color: var(--ink-soft); font-size: .85rem; }

.reviews-summary {
  margin-top: 2.5rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
}
.reviews-summary p { font-size: 1.15rem; color: var(--navy); max-width: 560px; }
.reviews-summary .btn { margin-top: .6rem; }

/* =====================================================================
   12. FAQ
   ===================================================================== */
.faq { background: var(--navy); color: #fff; padding: 86px 0; }
.faq__inner { max-width: 860px; }
.accordion { display: grid; gap: .8rem; }
.acc {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line-dark);
  border-radius: 12px; overflow: hidden;
}
.acc summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-head); font-size: 1.15rem; letter-spacing: .3px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc__plus { position: relative; width: 18px; height: 18px; flex: none; }
.acc__plus::before, .acc__plus::after {
  content: ""; position: absolute; background: var(--gold); border-radius: 2px;
  transition: transform .2s ease;
}
.acc__plus::before { top: 8px; left: 0; width: 18px; height: 3px; }
.acc__plus::after  { left: 8px; top: 0; width: 3px; height: 18px; }
.acc[open] .acc__plus::after { transform: rotate(90deg); opacity: 0; }
.acc__body { padding: 0 1.4rem 1.25rem; }
.acc__body p { color: #cfd5df; margin: 0; }

.faq__cta { text-align: center; margin-top: 2.5rem; }
.faq__cta p { color: #cfd5df; margin-bottom: 1rem; }

/* =====================================================================
   13. Service areas
   ===================================================================== */
.areas { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; max-width: 900px; margin: 0 auto; }
.area-badge {
  background: var(--paper); border: 1.5px solid var(--line);
  border-radius: 50px; padding: .65rem 1.3rem;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .6px;
  font-size: .92rem; color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: .15s ease;
}
.area-badge:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.areas__note { text-align: center; margin-top: 2.5rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.areas__note p { font-size: 1.1rem; margin: 0; }

/* =====================================================================
   Quote / contact
   ===================================================================== */
.quote { background: var(--navy); color: #fff; padding: 86px 0; }
.quote__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.quote__text p { color: #d6dae3; }
.quote__phone {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: 1.8rem; font-weight: 600; letter-spacing: .5px;
  color: #fff; margin: .5rem 0 1.5rem;
}
.quote__phone:hover { color: var(--gold); }
.quote__phone svg { stroke: var(--gold); }
.quote__trust { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; }
.quote__trust li { position: relative; padding-left: 1.4rem; color: #e9ecf2; font-size: .95rem; }
.quote__trust li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.quote-form {
  background: var(--paper); color: var(--ink);
  border-radius: var(--radius-lg); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field label { font-family: var(--font-head); font-size: .8rem; text-transform: uppercase; letter-spacing: .8px; color: var(--navy); margin-bottom: .35rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem;
  padding: .8rem .9rem; border: 1.5px solid var(--line); border-radius: 9px;
  background: var(--cream-soft); color: var(--ink); resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(200,68,47,.14);
}
.quote-form .btn { margin-top: .4rem; }
.quote-form__fine { font-size: .82rem; color: var(--ink-soft); text-align: center; margin: .9rem 0 0; }

/* TCPA / texting consent */
.consent {
  display: flex; align-items: flex-start; gap: .5rem;
  margin: .15rem 0 .9rem;
}
.consent__box {
  flex: 0 0 auto; width: .95rem; height: .95rem; margin-top: .1rem;
  accent-color: var(--accent); cursor: pointer;
}
.consent__label {
  font-size: .68rem; line-height: 1.4; color: var(--ink-soft); cursor: pointer;
}
.consent__label a { color: var(--accent); text-decoration: underline; }

/* =====================================================================
   14. Footer
   ===================================================================== */
.footer { background: var(--navy-deep); color: #c4cbd6; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
  gap: 2.5rem; padding: 64px 22px 48px;
}
.brand--footer .brand__name { color: #fff; }
.footer__blurb { margin: 1rem 0; font-size: .95rem; max-width: 280px; }
.footer__badge {
  display: inline-block; font-family: var(--font-head); text-transform: uppercase; letter-spacing: 1px;
  font-size: .75rem; color: var(--gold); border: 1px solid var(--line-dark);
  padding: .35rem .8rem; border-radius: 6px;
}
.footer__col h4 { font-size: 1rem; color: #fff; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 1rem; }
.footer__col a { display: block; padding: .3rem 0; font-size: .95rem; color: #c4cbd6; }
.footer__col a:hover { color: var(--gold); }
.footer__contact { display: flex; align-items: center; gap: .5rem; }
.footer__social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer__social a {
  width: 38px; height: 38px; display: grid; place-items: center; padding: 0;
  border: 1px solid var(--line-dark); border-radius: 9px; color: #c4cbd6;
}
.footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer__bar { border-top: 1px solid var(--line-dark); }
.footer__bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 22px; flex-wrap: wrap; }
.footer__bar p { margin: 0; font-size: .85rem; }
.footer__bar-cta { font-family: var(--font-head); text-transform: uppercase; letter-spacing: .6px; font-size: .85rem; color: var(--gold); }

/* =====================================================================
   Sticky mobile bar
   ===================================================================== */
.mobile-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: none; gap: .6rem; padding: .6rem;
  background: var(--navy); border-top: 2px solid var(--gold);
}
.mobile-bar .btn { flex: 1; }
.mobile-bar__call { flex: 0 0 32% !important; }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1024px) {
  .trust__card { grid-template-columns: repeat(2, 1fr); }
  .trust__item + .trust__item { border-left: 0; padding-left: 0; }
  .service-row { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; gap: 0;
    background: var(--cream-soft); border-bottom: 1px solid var(--line);
    padding: .5rem 22px 1.2rem;
    transform: translateY(-130%); transition: transform .25s ease;
    box-shadow: var(--shadow); max-height: calc(100vh - 72px); overflow:auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav a::after { display: none; }
  .hamburger { display: flex; }
  .header-phone { display: none; }
  .site-header__actions { margin-left: auto; }

  .feature-grid { grid-template-columns: 1fr; }
  .local__inner, .split, .split--reverse, .quote__inner, .cta-band__inner { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .local__media, .split__media { min-height: 280px; }
  .local__text { padding: 48px 24px; }
  .steps { grid-template-columns: 1fr; gap: 1.4rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .cta-band__inner .section-title, .split__text .section-title { text-align: left; }

  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .trust__card { grid-template-columns: 1fr; gap: .7rem; }
  .service-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .announce { font-size: .82rem; }
  .announce__phone { width: 100%; }
  .announce__phone::before { display: none; }
  .process__sign { padding: 44px 22px 32px; }
  .process__strip { margin: 36px -22px 0; }
  .field-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
