*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --amber: #F59E0B;
  --amber-d: #D97706;
  --amber-t: #B45309;
  --navy: #1E3A5F;
  --navy-d: #142848;
  --ink: #1C1C1E;
  --muted: #6b7280;
  --line: #eef0f3;
  --soft: #F5F7FA;
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; background: #FAFAF8; color: var(--ink); overflow-x: hidden; line-height: 1.5; }
a { color: inherit; }
img, svg { display: block; }
.wrap { max-width: 1152px; margin: 0 auto; padding: 0 20px; }
.h-font { font-family: 'Montserrat', sans-serif; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Montserrat', sans-serif; font-weight: 700; border-radius: 999px; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: background .2s, transform .2s, border-color .2s; font-size: 15px; padding: 14px 28px; }
.btn-amber { background: var(--amber); color: #fff; }
.btn-amber:hover { background: var(--amber-d); transform: scale(1.04); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-d); transform: scale(1.04); }
.pulse { animation: pulse-glow 2.2s ease-in-out infinite; }
@keyframes pulse-glow { 0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.7); } 50% { box-shadow: 0 0 0 14px rgba(245,158,11,0); } }

/* ── Nav ── */
#main-nav { position: sticky; top: 0; z-index: 50; background: var(--navy); transition: box-shadow .3s; }
#main-nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.nav-row { height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 18px; color: #fff; }
.logo-text span { color: var(--amber); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a:not(.btn) { color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500; text-decoration: none; transition: color .2s; }
.nav-links a:not(.btn):hover, .nav-links a.active { color: #fff; }
.nav-links .btn { padding: 10px 22px; font-size: 14px; }
.nav-mobile { display: none; align-items: center; gap: 12px; }
.nav-mobile .btn { padding: 8px 14px; font-size: 12px; }
.ham { display: flex; flex-direction: column; gap: 6px; padding: 4px; background: none; border: none; cursor: pointer; }
.ham span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .3s ease; }
.ham.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
#mobile-menu { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; background: var(--navy-d); }
#mobile-menu.open { max-height: 640px; opacity: 1; }
#mobile-menu .wrap { display: flex; flex-direction: column; padding-bottom: 16px; }
#mobile-menu a { color: rgba(255,255,255,.85); font-size: 15px; font-weight: 500; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.08); text-decoration: none; }
#mobile-menu a.sub { padding-left: 14px; font-size: 14px; color: rgba(255,255,255,.65); }
@media (max-width: 899px) { .nav-links { display: none; } .nav-mobile { display: flex; } }

/* Services dropdown */
.dd { position: relative; }
.dd > button { background: none; border: none; color: rgba(255,255,255,.8); font: 500 14px 'Inter', sans-serif; cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 8px 0; }
.dd > button:hover, .dd.active > button { color: #fff; }
.dd > button::after { content: ''; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .2s; }
.dd-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translate(-50%, 8px); background: #fff; border-radius: 14px; box-shadow: 0 20px 50px rgba(0,0,0,.2); padding: 8px; min-width: 250px; opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; }
.dd-menu::before { content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.dd:hover .dd-menu, .dd:focus-within .dd-menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dd-menu a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px; color: var(--navy) !important; font-size: 14px !important; font-weight: 600 !important; text-decoration: none; transition: background .15s; }
.dd-menu a:hover, .dd-menu a.current { background: rgba(245,158,11,.12); }

/* ── Hero ── */
.hero { position: relative; overflow: hidden; color: #fff; padding: 56px 0 72px;
  background:
    radial-gradient(circle at 85% 20%, rgba(245,158,11,.28), transparent 45%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0 2px, transparent 2px 64px),
    linear-gradient(135deg, var(--navy-d), var(--navy)); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 48px; align-items: center; }
@media (max-width: 899px) { .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; } }
.crumbs { font-size: 13px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.crumbs a { color: rgba(255,255,255,.75); text-decoration: none; }
.crumbs a:hover { color: var(--amber); }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.4); color: #FCD34D; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(32px, 5vw, 54px); line-height: 1.08; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--amber); }
.hero-sub { font-size: 17px; line-height: 1.7; color: rgba(255,255,255,.78); max-width: 560px; margin-bottom: 28px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 13px; color: rgba(255,255,255,.75); }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: '✓'; color: var(--amber); font-weight: 900; }
.hero-in { animation: hero-in .8s cubic-bezier(.22,1,.36,1) both; }
.hero-in.d2 { animation-delay: .15s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

.hero-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 24px; backdrop-filter: blur(6px); }
.hero-card svg.garage { width: 100%; height: auto; }
.facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 18px; }
.fact { background: rgba(255,255,255,.07); border-radius: 14px; padding: 12px 8px; text-align: center; }
.fact b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(14px, 3.6vw, 19px); color: var(--amber); white-space: nowrap; }
@media (max-width: 420px) { .hero-card { padding: 16px; } .facts { gap: 6px; } .fact { padding: 10px 4px; } }
.fact small { font-size: 11px; color: rgba(255,255,255,.65); line-height: 1.3; display: block; margin-top: 2px; }

/* garage illustration animation */
.door { animation: door-cycle 7s cubic-bezier(.65,0,.35,1) infinite; }
@keyframes door-cycle { 0%, 12% { transform: translateY(0); } 42%, 62% { transform: translateY(-80px); } 92%, 100% { transform: translateY(0); } }
.sun-rays { transform-origin: 262px 52px; animation: spin 18s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.glow { animation: glow 7s ease-in-out infinite; }
@keyframes glow { 0%, 12%, 92%, 100% { opacity: .15; } 42%, 62% { opacity: .9; } }
@media (prefers-reduced-motion: reduce) { .door, .sun-rays, .glow, .pulse, .hero-in { animation: none !important; } }

/* ── Sections ── */
.sec { padding: 88px 0; }
.sec.soft { background: var(--soft); }
.sec.white { background: #fff; }
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.label { color: var(--amber); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.sec-head h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px, 4vw, 42px); color: var(--navy); line-height: 1.15; margin-top: 8px; }
.sec-head p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-top: 16px; }
.divider { width: 64px; height: 4px; background: var(--amber); border-radius: 2px; margin: 16px auto 0; }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(28px) scale(.97); transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s; }
.stagger.visible > * { opacity: 1; transform: none; }

/* Signs grid */
.signs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.sign { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 26px 22px; }
.sign:hover { box-shadow: 0 16px 44px rgba(0,0,0,.08); border-color: rgba(245,158,11,.45); }
.sign-ico { width: 52px; height: 52px; border-radius: 14px; background: rgba(245,158,11,.12); display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; transition: transform .3s; }
.sign:hover .sign-ico { transform: rotate(-8deg) scale(1.08); }
.sign h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.sign p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* Included */
.inc-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 48px; align-items: start; }
@media (max-width: 899px) { .inc-grid { grid-template-columns: minmax(0,1fr); gap: 32px; } }
.inc-grid h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px, 3.6vw, 38px); color: var(--navy); line-height: 1.15; margin: 8px 0 14px; }
.inc-grid > div > p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 24px; }
.checks { list-style: none; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #374151; line-height: 1.55; }
.checks svg { flex-shrink: 0; width: 24px; height: 24px; margin-top: 1px; }
.checks svg circle { fill: rgba(245,158,11,.14); }
.checks svg path { stroke: var(--amber-d); stroke-width: 2.6; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 20; stroke-dashoffset: 20; transition: stroke-dashoffset .5s ease; }
.checks.visible svg path { stroke-dashoffset: 0; }
.checks.visible li:nth-child(n) svg path { transition-delay: calc(var(--i, 0) * 90ms + 200ms); }

.callout { border-radius: 22px; padding: 30px; }
.callout.navy { background: var(--navy); color: rgba(255,255,255,.85); }
.callout.warn { background: #FFF7ED; border: 1px solid #FED7AA; color: #7C2D12; }
.callout h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 20px; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.callout.navy h3 { color: #fff; }
.callout p { font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }
.callout ol, .callout ul { padding-left: 20px; font-size: 14.5px; line-height: 1.7; margin-bottom: 12px; }
.callout li { margin-bottom: 6px; }
.callout .btn { margin-top: 8px; }
.callout-ico { font-size: 26px; display: inline-block; animation: wiggle 2.8s ease-in-out infinite; }
@keyframes wiggle { 0%, 80%, 100% { transform: rotate(0); } 85% { transform: rotate(-12deg); } 90% { transform: rotate(10deg); } 95% { transform: rotate(-6deg); } }

/* Process */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; position: relative; }
@media (max-width: 767px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 30px 24px; text-align: center; position: relative; }
.step-n { width: 52px; height: 52px; margin: 0 auto 16px; border-radius: 50%; background: var(--amber); color: #fff; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 22px rgba(245,158,11,.4); }
.step h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.steps-line { position: absolute; top: 56px; left: 16%; right: 16%; height: 3px; background: linear-gradient(90deg, var(--amber), var(--amber-d)); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform 1.1s cubic-bezier(.22,1,.36,1) .3s; z-index: 0; }
.steps.visible .steps-line { transform: scaleX(1); }
.steps .step { z-index: 1; }
@media (max-width: 767px) { .steps-line { display: none; } }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; transition: box-shadow .3s, border-color .3s; }
.faq-item:hover { box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.faq-item[open] { border-color: rgba(245,158,11,.5); box-shadow: 0 8px 28px rgba(0,0,0,.06); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: rgba(245,158,11,.12); color: var(--amber-t); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: transform .3s, background .3s, color .3s; }
.faq-item[open] summary::after { transform: rotate(45deg); background: var(--amber); color: #fff; }
.faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 14.5px; line-height: 1.75; animation: faq-open .35s ease; }
@keyframes faq-open { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* City chips */
.city-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 900px; margin: 0 auto; }
.city-chips span { font-size: 14px; color: #374151; background: var(--soft); border: 1px solid #e5e9ef; padding: 8px 14px; border-radius: 999px; }
.city-chips span:hover { background: rgba(245,158,11,.12); border-color: rgba(245,158,11,.5); color: var(--amber-t); }
.areas-more { text-align: center; color: var(--muted); font-size: 14px; margin-top: 28px; }
.areas-more a { color: var(--amber-t); font-weight: 700; text-decoration: none; }
.areas-more a:hover { text-decoration: underline; }

/* Estimate */
.est { background: linear-gradient(135deg, var(--navy-d), var(--navy)); color: #fff; }
.est-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 56px; align-items: center; }
@media (max-width: 899px) { .est-grid { grid-template-columns: minmax(0,1fr); gap: 36px; } }
.est h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px, 4vw, 44px); line-height: 1.12; margin: 8px 0 16px; }
.est-copy p { color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
.est-list { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
.est-list li { display: flex; gap: 10px; align-items: center; font-size: 15px; color: rgba(255,255,255,.88); }
.est-list li::before { content: '✓'; width: 22px; height: 22px; border-radius: 50%; background: rgba(245,158,11,.2); color: var(--amber); font-weight: 900; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.est-call small { display: block; color: rgba(255,255,255,.5); font-size: 12px; margin-top: 10px; }
.form-card { background: #fff; color: var(--ink); border-radius: 24px; padding: 32px; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
@media (max-width: 480px) { .form-card { padding: 24px 18px; } }
.form-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 20px; color: var(--navy); margin-bottom: 20px; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
#lead-form { display: flex; flex-direction: column; gap: 16px; }
.form-label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.form-label i { color: #9ca3af; font-style: normal; font-weight: 400; text-transform: none; }
.form-label b { color: #f87171; }
.form-input { width: 100%; font: 14px 'Inter', sans-serif; background: #fff; border: 1.5px solid #e5e7eb; border-radius: 12px; padding: 13px 15px; transition: border-color .2s, box-shadow .2s; outline: none; color: var(--ink); }
.form-input:hover { border-color: #d1d5db; }
.form-input:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,158,11,.15); }
.form-input.error { border-color: #f87171; background: #fff5f5; }
.form-err { font-size: 12px; color: #ef4444; margin-top: 4px; display: none; }
.form-err.show { display: block; }
#submit-btn { width: 100%; background: var(--amber); color: #fff; font: 700 15px 'Montserrat', sans-serif; padding: 16px; border-radius: 14px; border: none; cursor: pointer; transition: background .2s, transform .2s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; }
#submit-btn:hover:not(:disabled) { background: var(--amber-d); transform: scale(1.02); }
#submit-btn:disabled { background: #fcd34d; cursor: not-allowed; }
.fine { color: #9ca3af; font-size: 12px; text-align: center; }
.spinner { width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: inline-block; }
.state { text-align: center; padding: 28px 0; }
.state h3 { margin-bottom: 10px; }
.state p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.link-btn { margin-top: 18px; color: var(--amber-d); font-size: 13px; background: none; border: none; cursor: pointer; text-decoration: underline; }
.check-circle { width: 64px; height: 64px; background: rgba(245,158,11,.1); border: 2px solid var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.check-path { stroke-dasharray: 100; stroke-dashoffset: 100; animation: draw .6s ease .2s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* Other services */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.svc { display: block; text-decoration: none; background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--amber); border-radius: 18px; padding: 24px 22px; transition: transform .3s, box-shadow .3s; }
.svc:hover { transform: translateY(-6px) !important; box-shadow: 0 18px 48px rgba(0,0,0,.1); }
.svc-ico { font-size: 28px; margin-bottom: 12px; }
.svc h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: var(--navy); margin-bottom: 6px; }
.svc p { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin-bottom: 12px; }
.svc span { color: var(--amber-t); font-size: 13px; font-weight: 700; }
.svc:hover span { text-decoration: underline; }

/* Legal pages */
.legal-hero { padding: 48px 0 44px; }
.legal-hero .hero-sub { margin-bottom: 0; }
.legal { max-width: 760px; color: #374151; font-size: 15.5px; line-height: 1.75; }
.legal h2 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 21px; color: var(--navy); margin: 36px 0 10px; }
.legal p { margin-bottom: 14px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--amber-t); font-weight: 600; }
.fine a { color: var(--amber-t); }

/* Footer */
footer { background: var(--navy-d); color: #fff; }
.cta-band { background: var(--amber); padding: 26px 16px; text-align: center; }
.cta-band p { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.cta-band a { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--amber-t); font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 22px; padding: 10px 28px; border-radius: 999px; text-decoration: none; transition: background .2s; }
.cta-band a:hover { background: #fffbeb; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; padding: 56px 20px; }
.foot-grid p { color: rgba(255,255,255,.5); font-size: 13px; line-height: 1.7; margin-top: 14px; }
.foot-grid h4 { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.foot-grid a { display: block; color: rgba(255,255,255,.62); font-size: 13px; margin-bottom: 10px; text-decoration: none; transition: color .2s; }
.foot-grid a:hover { color: var(--amber); }
.foot-hours { color: rgba(255,255,255,.5); font-size: 12px; }
.foot-hours b { display: block; color: rgba(255,255,255,.75); margin-bottom: 2px; }
.copy { border-top: 1px solid rgba(255,255,255,.08); padding: 20px; text-align: center; color: rgba(255,255,255,.3); font-size: 12px; }

#float-call { display: none; }
@media (max-width: 767px) {
  #float-call { display: flex; position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 60; white-space: nowrap; box-shadow: 0 8px 32px rgba(0,0,0,.3); padding: 14px 24px; font-size: 14px; }
  footer { padding-bottom: 84px; }
  .foot-grid a { padding: 9px 0; margin-bottom: 0; }
}


/* ── Logo in the nav bar ─────────────────── */
.logo img { width: 42px; height: 42px; display: block; flex-shrink: 0; }
@media (max-width: 767px) {
  /* Logo + wordmark must share the bar with the Call button and the hamburger. */
  .logo img { width: 34px; height: 34px; }
  .logo { gap: 7px; }
  .logo-text { font-size: 14px; line-height: 1.15; }
  .nav-row { gap: 8px; }
}
