/* Chapmans Removals & Property Services — bespoke build by Bates & Co Web
   Brand: Chapmans navy + electric blue, taken from their own logo & flyer. */
:root {
  --navy: #0D2B4E;
  --navy-deep: #081D36;
  --blue: #1E88D2;
  --blue-bright: #4FB3F6;
  --paper: #F4F7FA;
  --ink: #16222E;
  --line: #DCE5EE;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
       color: var(--ink); background: var(--paper); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--blue); }

/* top strip */
.topbar { background: var(--navy-deep); color: #BFD9EF; font-size: 13.5px; text-align: center; padding: 8px 12px; }
.topbar b { color: #fff; }
.topbar a { color: var(--blue-bright); font-weight: 700; text-decoration: none; }

/* header */
header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; }
.hwrap { max-width: 1100px; margin: 0 auto; padding: 12px 20px; display: flex;
         align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { height: 42px; width: auto; }
.logo .lt { line-height: 1.05; }
.logo .lt b { display: block; font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: 1.5px; }
.logo .lt span { font-size: 10px; font-weight: 700; color: var(--blue); letter-spacing: 1.4px; text-transform: uppercase; }
nav { display: flex; gap: 2px; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 14.5px;
        padding: 8px 11px; border-radius: 8px; }
nav a:hover, nav a.on { background: #EAF3FB; color: var(--navy); }

/* buttons */
.btn { display: inline-block; padding: 14px 26px; border-radius: 10px; font-weight: 800;
       text-decoration: none; font-size: 16px; }
.btn.solid { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-bright) 100%); color: #fff;
             box-shadow: 0 6px 18px rgba(30, 136, 210, 0.35); }
.btn.solid:hover { filter: brightness(1.07); }
.btn.ghost { border: 2px solid rgba(255,255,255,0.85); color: #fff; }
.btn.navy { background: var(--navy); color: #fff; }

/* hero */
.hero { background: radial-gradient(1200px 600px at 85% -10%, #17549B 0%, var(--navy) 45%, var(--navy-deep) 100%);
        color: #fff; padding: 60px 20px 56px; position: relative; overflow: hidden; }
.hero::after { content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px;
               border: 3px solid rgba(79, 179, 246, 0.16); border-radius: 50%; }
.hero::before { content: ""; position: absolute; right: -90px; top: -90px; width: 460px; height: 460px;
                border: 3px solid rgba(79, 179, 246, 0.09); border-radius: 50%; }
.herowrap { max-width: 1100px; margin: 0 auto; display: grid; gap: 40px;
            grid-template-columns: 1.25fr 0.75fr; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-size: clamp(29px, 4.6vw, 50px); line-height: 1.08; font-weight: 900; letter-spacing: -0.5px; }
.hero h1 em { font-style: normal; color: var(--blue-bright); }
.hero p { font-size: clamp(15.5px, 2vw, 18.5px); max-width: 560px; margin: 18px 0 28px; color: #C9DDF0; }
.hero .btns { display: flex; gap: 14px; flex-wrap: wrap; }
.herochips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.chip { background: rgba(255,255,255,0.09); border: 1px solid rgba(255,255,255,0.18);
        border-radius: 50px; padding: 7px 15px; font-size: 13px; font-weight: 700; color: #DBEAF7; }
.chip::before { content: "\2713 "; color: var(--blue-bright); }
.heromark { display: flex; justify-content: center; }
.heromark svg { width: min(280px, 64vw); height: auto; filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35)); }
@media (max-width: 860px) {
  .herowrap { grid-template-columns: 1fr; gap: 24px; }
  .heromark { order: -1; }
  .heromark svg { width: 130px; }
}

/* stat band */
.stats { background: var(--blue); color: #fff; }
.statwrap { max-width: 1100px; margin: 0 auto; padding: 18px 20px; display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 14px; text-align: center; }
.stat b { display: block; font-size: 23px; font-weight: 900; }
.stat span { font-size: 12.5px; color: #DCEFFF; font-weight: 600; }

/* sections */
section { padding: 58px 20px; }
.wrap { max-width: 1100px; margin: 0 auto; }
.kicker { color: var(--blue); font-weight: 800; text-transform: uppercase; letter-spacing: 2.5px; font-size: 12.5px; }
h2 { font-size: clamp(24px, 3.4vw, 36px); color: var(--navy); margin: 8px 0 14px; font-weight: 900; }
.lead { max-width: 720px; color: #3D4C5C; }
.center { text-align: center; }
.center .lead { margin: 0 auto; }

/* cards */
.grid { display: grid; gap: 18px; margin-top: 32px; }
.g4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px;
        box-shadow: 0 2px 10px rgba(13, 43, 78, 0.04); }
.card h3 { color: var(--navy); margin-bottom: 8px; font-size: 18px; font-weight: 800; }
.card p { font-size: 14.5px; color: #3D4C5C; }
.card .price { color: var(--blue); font-weight: 900; font-size: 20px; margin-top: 10px; }
.card .from { font-size: 12.5px; color: #6b7683; font-weight: 600; }
.ticks { list-style: none; margin-top: 10px; }
.ticks li { padding: 6px 0 6px 30px; position: relative; font-size: 15px; }
.ticks li::before { content: "\2713"; position: absolute; left: 0; top: 6px; color: var(--blue); font-weight: 900; }

/* price table */
table.prices { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line);
               border-radius: 16px; overflow: hidden; margin-top: 26px; }
table.prices th { background: var(--navy); color: #fff; padding: 14px 12px; text-align: left; font-size: 15px; }
table.prices td { padding: 13px 12px; border-top: 1px solid #EAF0F6; font-size: 15px; }
table.prices tr td:first-child { font-weight: 700; color: var(--navy); }
.tablewrap { overflow-x: auto; }

/* before / after slider */
.ba { position: relative; max-width: 760px; margin: 34px auto 0; border-radius: 18px; overflow: hidden;
      border: 4px solid #fff; box-shadow: 0 16px 40px rgba(13,43,78,0.18); aspect-ratio: 4 / 3.3; background: #DCE5EE; }
.ba img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba .after { clip-path: inset(0 0 0 50%); }
.ba .handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 4px; background: #fff;
              box-shadow: 0 0 12px rgba(0,0,0,0.4); pointer-events: none; }
.ba .handle::after { content: "\2194"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
                     background: var(--blue); color: #fff; width: 44px; height: 44px; border-radius: 50%;
                     display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 900; }
.ba input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.bacap { text-align: center; font-size: 13.5px; color: #6b7683; margin-top: 12px; }

/* before/after pair cards */
.pair { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
        box-shadow: 0 2px 10px rgba(13,43,78,0.04); }
.pair .imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.pair .imgs > div { position: relative; aspect-ratio: 3 / 3.4; }
.pair img { width: 100%; height: 100%; object-fit: cover; }
.pair .lbl { position: absolute; bottom: 8px; left: 8px; font-size: 10.5px; font-weight: 800; letter-spacing: 1px;
             background: rgba(8,29,54,0.78); color: #fff; padding: 3px 9px; border-radius: 5px; }
.pair h3 { padding: 14px 18px 16px; color: var(--navy); font-size: 16px; font-weight: 800; }

/* reviews */
.review { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.stars { color: #F5A623; font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.review .who { margin-top: 12px; font-weight: 800; color: var(--navy); font-size: 14px; }
.sample { display: inline-block; background: var(--paper); border: 1px dashed #B9C7D6; color: #6b7683;
          font-size: 11px; font-weight: 800; letter-spacing: 1px; padding: 2px 8px; border-radius: 6px; margin-bottom: 8px; }
.fbband { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px 30px;
          display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
          margin-top: 30px; text-align: center; }
.fbband .pct { font-size: 46px; font-weight: 900; color: var(--blue); line-height: 1; }
.fbband .pct small { display: block; font-size: 12px; color: #6b7683; font-weight: 700; letter-spacing: 1px; }
.fbband .txt { font-size: 15.5px; color: #3D4C5C; max-width: 430px; text-align: left; }

/* cta band */
.cta { background: radial-gradient(900px 400px at 50% -40%, #17549B 0%, var(--navy) 60%, var(--navy-deep) 100%);
       color: #fff; text-align: center; }
.cta h2 { color: #fff; }
.cta p { color: #C9DDF0; max-width: 560px; margin: 0 auto 26px; }

/* contact */
.contactcard { text-align: center; }
.contactcard .big { font-size: 20px; font-weight: 900; color: var(--navy); margin-top: 6px; word-break: break-word; }
table.hours { width: 100%; border-collapse: collapse; margin-top: 8px; }
table.hours td { padding: 8px 4px; border-bottom: 1px solid #EAF0F6; font-size: 15px; }
table.hours td:last-child { text-align: right; font-weight: 700; }
.mapbox { background: #E6EDF4; border: 2px dashed #B9C7D6; border-radius: 16px; min-height: 200px;
          display: flex; align-items: center; justify-content: center; color: #6b7683;
          font-weight: 600; text-align: center; padding: 20px; margin-top: 26px; }

/* footer */
footer { background: var(--navy-deep); color: #9FB8D2; padding: 44px 20px 30px; }
footer .wrap { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
footer h4 { color: #fff; margin-bottom: 8px; }
footer a { color: #BFD9EF; }
.credit { text-align: center; margin-top: 30px; font-size: 13px; color: #6E89A6; }
.credit a { color: #fff; font-weight: 700; }
.demonote { text-align: center; font-size: 12px; color: #587290; margin-top: 8px; }

/* mobile call bar */
.callbar { display: none; }
@media (max-width: 700px) {
  .callbar { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; }
  .callbar a { flex: 1; text-align: center; padding: 15px 8px calc(15px + env(safe-area-inset-bottom));
               font-weight: 800; font-size: 15.5px; text-decoration: none; color: #fff; }
  .callbar a.c1 { background: var(--blue); }
  .callbar a.c2 { background: #1FA855; }
  body { padding-bottom: 64px; }
}
