/* Humber Restoration - fast, conversion-focused, no framework.
   Palette: deep navy trust + urgent amber CTA. */
:root{
  --navy:#0c2740;
  --navy-2:#11385c;
  --amber:#ff7a00;
  --amber-dark:#e56a00;
  --ink:#1a2330;
  --muted:#5a6b7b;
  --line:#e2e8ee;
  --bg:#f6f8fa;
  --white:#fff;
  --radius:12px;
  --shadow:0 10px 30px rgba(12,39,64,.12);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--ink);background:var(--white);line-height:1.6;-webkit-font-smoothing:antialiased;
}
.container{width:min(1140px,92%);margin-inline:auto}
h1,h2,h3,h4{line-height:1.2;color:var(--navy);margin:0 0 .5em}
h1{font-size:clamp(2rem,5vw,3.1rem);letter-spacing:-.02em}
h2{font-size:clamp(1.5rem,3.4vw,2.1rem)}
p{margin:0 0 1rem}
a{color:var(--amber-dark);text-decoration:none}
img{max-width:100%}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.4rem;
  font-weight:700;padding:.8rem 1.4rem;border-radius:var(--radius);
  border:2px solid transparent;cursor:pointer;transition:transform .08s ease,background .15s ease;
  text-align:center;
}
.btn:active{transform:translateY(1px)}
.btn-lg{padding:1rem 1.7rem;font-size:1.05rem}
.btn-block{width:100%}
.btn-primary{background:var(--amber);color:#fff}
.btn-primary:hover{background:var(--amber-dark)}
.btn-call{background:var(--amber);color:#fff;flex-direction:column;line-height:1.15;gap:0}
.btn-call:hover{background:var(--amber-dark)}
.btn-call .call-label{font-size:.7rem;text-transform:uppercase;letter-spacing:.05em;opacity:.95;font-weight:600}
.btn-call .call-number{font-size:1.05rem}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.btn-ghost:hover{background:rgba(255,255,255,.12)}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:var(--navy);box-shadow:0 2px 12px rgba(0,0,0,.18)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:.6rem 0}
.brand{font-weight:800;font-size:1.4rem;color:#fff;letter-spacing:-.01em}
.brand span{color:var(--amber)}
.header-call{padding:.5rem 1rem}

/* Hero */
.hero{background:linear-gradient(160deg,var(--navy),var(--navy-2));color:#fff;padding:3rem 0 3.5rem}
.hero-grid{display:grid;grid-template-columns:1.2fr .9fr;gap:2.5rem;align-items:start}
.hero h1{color:#fff}
.eyebrow{text-transform:uppercase;letter-spacing:.08em;font-size:.8rem;font-weight:700;color:var(--amber);margin-bottom:.6rem}
.lead{font-size:1.15rem;color:#d7e2ec;max-width:42ch}
.hero-cta{display:flex;flex-wrap:wrap;gap:.8rem;margin:1.4rem 0 1.2rem}
.hero-trust{list-style:none;display:flex;flex-wrap:wrap;gap:1.2rem;padding:0;margin:0;font-weight:600;font-size:.95rem;color:#cfe}
.hero-trust li{position:relative;padding-left:1.4rem}
.hero-trust li::before{content:"";position:absolute;left:0;top:.55em;width:.7rem;height:.7rem;background:var(--amber);border-radius:50%}

/* Quote card */
.quote-card{background:#fff;color:var(--ink);border-radius:16px;padding:1.5rem;box-shadow:var(--shadow)}
.quote-card h2{font-size:1.35rem;margin-bottom:.25rem}
.quote-sub{color:var(--muted);font-size:.95rem;margin-bottom:1rem}
.quote-card label{display:block;font-weight:600;font-size:.9rem;margin-bottom:.8rem;color:var(--navy)}
.quote-card input,.quote-card select{
  width:100%;margin-top:.3rem;padding:.7rem .8rem;border:1px solid var(--line);
  border-radius:10px;font:inherit;background:#fbfdff;
}
.quote-card input:focus,.quote-card select:focus{outline:2px solid var(--amber);border-color:var(--amber)}
.form-note{text-align:center;font-size:.9rem;color:var(--muted);margin:.8rem 0 0}
.hp{position:absolute;left:-9999px}

/* Trust strip */
.strip{background:var(--bg);border-bottom:1px solid var(--line)}
.strip-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1rem;padding:1.4rem 0;text-align:center}
.strip-grid strong{display:block;color:var(--amber-dark);font-size:1.4rem}
.strip-grid span{color:var(--muted);font-size:.9rem}

/* Sections */
section{padding:3.2rem 0}
.section-sub{color:var(--muted);max-width:55ch;margin-top:-.3rem;margin-bottom:1.8rem}

/* Service cards */
.card-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.4rem;transition:box-shadow .15s ease,transform .15s ease}
.card:hover{box-shadow:var(--shadow);transform:translateY(-2px)}
.card h3{font-size:1.15rem;margin-bottom:.4rem}
.card p{color:var(--muted);margin:0;font-size:.97rem}

/* Steps */
.steps{background:var(--navy);color:#fff}
.steps h2{color:#fff}
.step-list{counter-reset:step;list-style:none;padding:0;margin:0 0 1.6rem;display:grid;gap:1rem;max-width:70ch}
.step-list li{position:relative;padding-left:3rem;color:#d7e2ec}
.step-list li strong{color:#fff}
.step-list li::before{
  counter-increment:step;content:counter(step);position:absolute;left:0;top:0;
  width:2rem;height:2rem;background:var(--amber);color:#fff;border-radius:50%;
  display:grid;place-items:center;font-weight:800;
}

/* Coverage */
.area-list{list-style:none;padding:0;margin:0;display:flex;flex-wrap:wrap;gap:.6rem}
.area-list li{background:var(--bg);border:1px solid var(--line);border-radius:999px;padding:.45rem 1rem;font-weight:600;font-size:.92rem;color:var(--navy)}

/* Final CTA */
.final-cta{background:linear-gradient(160deg,var(--amber),var(--amber-dark));color:#fff}
.final-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;flex-wrap:wrap}
.final-cta h2{color:#fff;margin-bottom:.2rem}
.final-cta p{margin:0;color:#fff;opacity:.95}
.final-cta .btn-primary{background:#fff;color:var(--amber-dark)}

/* Footer */
.site-footer{background:#08203a;color:#b9c8d6;padding:2.6rem 0 1.2rem;font-size:.95rem}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:1.5rem}
.site-footer h4{color:#fff;font-size:1rem;margin-bottom:.4rem}
.site-footer a{color:#fff}
.brand-footer{font-size:1.2rem;font-weight:800;color:#fff;display:block;margin-bottom:.4rem}
.footer-base{border-top:1px solid rgba(255,255,255,.12);margin-top:1.6rem;padding-top:1rem;font-size:.85rem;opacity:.8}

/* Mobile call bar */
.mobile-callbar{display:none;position:fixed;left:0;right:0;bottom:0;z-index:60;
  background:var(--amber);color:#fff;text-align:center;font-weight:800;padding:.95rem;box-shadow:0 -4px 16px rgba(0,0,0,.2)}

/* Responsive */
@media (max-width:860px){
  .hero-grid{grid-template-columns:1fr}
  .card-grid{grid-template-columns:1fr 1fr}
  .strip-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:560px){
  .header-call{padding:.45rem .8rem}
  .card-grid{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .final-inner{flex-direction:column;align-items:flex-start}
  body{padding-bottom:3.6rem}
  .mobile-callbar{display:block}
}

/* Sub-page hero, prose and related */
.hero-inner{padding:2.4rem 0 2.2rem}
.hero-inner .lead{max-width:62ch}
.prose{max-width:72ch}
.prose h2{margin-top:1.9rem}
.prose h2:first-child{margin-top:0}
.ticklist{list-style:none;padding:0;margin:0 0 1rem;display:grid;gap:.6rem}
.ticklist li{position:relative;padding-left:1.8rem;color:var(--ink)}
.ticklist li::before{content:"\2713";position:absolute;left:0;top:0;color:var(--amber-dark);font-weight:800}
.related{background:var(--bg);border-top:1px solid var(--line)}
a.card{color:inherit;text-decoration:none;display:block}
a.card h3{color:var(--navy)}

/* Thank-you page */
.centered{min-height:60vh;display:grid;place-items:center;text-align:center}
.centered .container{max-width:48ch}

/* Homepage steps link to the guide */
.steps-link{margin-top:1.1rem}
.steps-link a{color:#fff;text-decoration:underline;font-weight:600}

/* Guide page numbered checklist (on light background) */
.guide-steps{counter-reset:gstep;list-style:none;padding:0;margin:0 0 1.4rem;display:grid;gap:.9rem;max-width:70ch}
.guide-steps li{position:relative;padding-left:3rem;color:var(--ink)}
.guide-steps li strong{color:var(--navy)}
.guide-steps li::before{counter-increment:gstep;content:counter(gstep);position:absolute;left:0;top:-2px;width:2rem;height:2rem;background:var(--amber);color:#fff;border-radius:50%;display:grid;place-items:center;font-weight:800}


/* Cookie consent banner */
.cookie-banner{position:fixed;left:0;right:0;bottom:0;z-index:80;background:#08203a;color:#dbe6f0;
  padding:1rem 1.1rem;box-shadow:0 -6px 24px rgba(0,0,0,.28);font-size:.92rem;line-height:1.5}
.cookie-inner{max-width:1080px;margin:0 auto;display:flex;gap:1rem 1.4rem;align-items:center;flex-wrap:wrap;justify-content:space-between}
.cookie-text{flex:1 1 420px;margin:0}
.cookie-text a{color:#fff;text-decoration:underline}
.cookie-actions{display:flex;gap:.6rem;flex-wrap:wrap}
.cookie-actions .btn{padding:.6rem 1.2rem;font-size:.9rem;cursor:pointer;border:0;border-radius:8px;font-weight:700}
.btn-cookie-accept{background:var(--amber);color:#fff}
.btn-cookie-reject{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.45)}
.footer-legal a{text-decoration:underline}
@media (max-width:560px){
  .cookie-inner{flex-direction:column;align-items:stretch}
  .cookie-actions .btn{flex:1}
  .cookie-banner{bottom:3.4rem}
}


/* FAQ, assurance + area links (added 2026-06-24) */
.faq{background:#fff}
.faq h2,.promise h2{margin-bottom:1.2rem}
.faq-list{max-width:80ch;display:grid;gap:.7rem}
.faq-item{border:1px solid var(--line);border-radius:var(--radius);padding:0 1rem;background:var(--bg)}
.faq-item summary{cursor:pointer;font-weight:700;color:var(--navy);padding:.9rem 0;list-style:none}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{content:"+";float:right;color:var(--amber);font-weight:800;margin-left:1rem}
.faq-item[open] summary::after{content:"\2212"}
.faq-item p{margin:0 0 .9rem;color:var(--ink)}
.promise{background:var(--bg);border-top:1px solid var(--line)}
.promise-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.promise-card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:1.4rem}
.promise-card h3{color:var(--navy);font-size:1.12rem;margin:0 0 .4rem}
.promise-card p{color:var(--muted);margin:0;font-size:.97rem}
.area-list a{color:inherit;text-decoration:none;display:block}
.area-list li:hover{border-color:var(--amber)}
@media (max-width:860px){.promise-grid{grid-template-columns:1fr}}


/* Chat widget (interim phone-free capture) */
.chat-launcher{position:fixed;right:18px;bottom:18px;z-index:70;background:var(--amber);color:#fff;border:0;border-radius:999px;padding:.9rem 1.3rem;font-weight:800;font-size:.95rem;cursor:pointer;box-shadow:0 8px 24px rgba(0,0,0,.25)}
.chat-panel{position:fixed;right:18px;bottom:18px;z-index:95;width:340px;max-width:calc(100vw - 24px);height:470px;max-height:calc(100vh - 36px);background:#fff;border-radius:14px;box-shadow:0 16px 48px rgba(0,0,0,.3);display:flex;flex-direction:column;overflow:hidden}
.chat-head{background:var(--navy);color:#fff;padding:.85rem 1rem;font-weight:800;display:flex;justify-content:space-between;align-items:center}
.chat-x{background:transparent;border:0;color:#fff;font-size:1.5rem;line-height:1;cursor:pointer;padding:0 .2rem}
.chat-body{flex:1;overflow-y:auto;padding:1rem;display:flex;flex-direction:column;gap:.55rem;background:var(--bg)}
.chat-msg{max-width:85%;padding:.6rem .8rem;border-radius:12px;font-size:.95rem;line-height:1.4}
.chat-msg.bot{background:#fff;border:1px solid var(--line);align-self:flex-start;color:var(--ink)}
.chat-msg.user{background:var(--amber);color:#fff;align-self:flex-end}
.chat-opts{display:flex;flex-wrap:wrap;gap:.4rem;align-self:flex-start}
.chat-opt{background:#fff;border:1px solid var(--amber);color:var(--amber-dark);border-radius:999px;padding:.45rem .8rem;font-size:.88rem;font-weight:700;cursor:pointer}
.chat-opt:hover{background:var(--amber);color:#fff}
.chat-input{display:flex;gap:.4rem;align-self:stretch}
.chat-input input{flex:1;min-width:0;padding:.6rem .7rem;border:1px solid var(--line);border-radius:8px;font:inherit}
.chat-input button{background:var(--navy);color:#fff;border:0;border-radius:8px;padding:.6rem 1rem;font-weight:700;cursor:pointer}
.mobile-callbar{width:100%;border:0;font:inherit;cursor:pointer}
@media(max-width:560px){.chat-launcher{display:none}.chat-panel{right:0;bottom:0;width:100vw;max-width:100vw;height:82vh;border-radius:14px 14px 0 0}}
