/* Bolt Handyman — brand stylesheet
   Blue #0068C0 · Yellow #FFD100 · Ink #101418
   Montserrat 800 (headings) · Barlow (body) */

:root {
  --blue: #0068C0;
  --blue-dark: #004E92;
  --blue-pale: #E3F1FF;
  --yellow: #FFD100;
  --ink: #101418;
  --body: #3C434E;
  --grey: #5A6270;
  --grey-light: #9AA1AC;
  --line: #DDE1E6;
  --field: #C6CCD4;
  --panel: #F5F7F9;
  --head: Montserrat, system-ui, sans-serif;
  --text: Barlow, system-ui, sans-serif;
  --pad: clamp(20px, 5vw, 48px);
}

*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; background: #fff; color: var(--body); font-family: var(--text); font-size: 16px; line-height: 1.5; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
input, select, textarea, button { font: inherit; }
::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.num { font-variant-numeric: tabular-nums; }
.wrap { max-width: 1180px; margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(48px, 6vw, 84px); padding-bottom: clamp(48px, 6vw, 84px); }
.section--tight { padding-bottom: 0; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: -0.02em; margin: 0; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: #fff; border-bottom: 1px solid var(--line); }
.header__inner { min-height: 80px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px clamp(16px, 3vw, 40px); }
.brand img { height: 44px; width: auto; }
.nav { display: flex; flex-wrap: wrap; gap: clamp(14px, 2.4vw, 30px); margin-left: auto; }
.nav a { padding: 4px 0; font-size: 14px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); border-bottom: 3px solid transparent; }
.nav a:hover { color: var(--blue); }
.nav a[aria-current='page'] { color: var(--ink); border-bottom-color: var(--yellow); }
.callbtn { display: flex; align-items: center; gap: 10px; height: 50px; padding: 0 22px; background: var(--blue); color: #fff; font-family: var(--head); font-weight: 800; font-size: 17px; white-space: nowrap; }
.callbtn:hover { background: var(--blue-dark); color: #fff; }

/* blocks */
.hero { background: var(--blue); color: #fff; }
.hero__inner { padding-top: clamp(44px, 6vw, 76px); padding-bottom: clamp(48px, 6vw, 80px); display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: center; }
.banner { background: var(--blue); color: #fff; padding: clamp(40px, 5vw, 68px) 0; }
.dark { background: var(--ink); color: #fff; }
.grey { background: var(--panel); border-top: 1px solid var(--line); }
.yellow { background: var(--yellow); color: var(--ink); }
.yellow__inner { padding: clamp(36px, 4.5vw, 60px) var(--pad); display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: space-between; }
.flag { width: 120px; height: 8px; background: var(--yellow); margin-bottom: 26px; }
h1 { font-size: clamp(38px, 6.2vw, 68px); line-height: 0.94; letter-spacing: -0.03em; text-wrap: balance; }
.banner h1 { font-size: clamp(36px, 5.6vw, 62px); line-height: 0.96; }
h2 { font-size: clamp(30px, 3.8vw, 46px); line-height: 1; color: var(--ink); text-wrap: balance; }
.on-blue, .yellow h2, .dark h2 { color: inherit; }
.lede { margin: 22px 0 0; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5; color: var(--blue-pale); max-width: 34em; text-wrap: pretty; }
.lede--grey { color: #98A1AE; }
.lede--small { font-size: 15px; margin-top: 14px; }
.body { margin: 20px 0 0; font-size: 17px; line-height: 1.55; max-width: 32em; text-wrap: pretty; }
.kicker { font-size: 14px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); }
.kicker--yellow { color: var(--yellow); }
.rule { display: flex; margin: 16px 0 clamp(28px, 4vw, 44px); }
.rule span:first-child { width: 100px; height: 4px; background: var(--yellow); }
.rule span:last-child { flex: 1; height: 4px; background: var(--line); }
.rule--dark span:last-child { background: #2A3038; }

/* buttons */
.btn { display: inline-flex; align-items: center; gap: 12px; height: 64px; padding: 0 28px; font-family: var(--head); font-weight: 800; font-size: clamp(19px, 2vw, 23px); white-space: nowrap; border: none; cursor: pointer; }
.btn--yellow { background: var(--yellow); color: var(--ink); }
.btn--yellow:hover { background: #fff; color: var(--ink); }
.btn--dark { background: var(--ink); color: #fff; height: 66px; padding: 0 30px; font-size: clamp(20px, 2.2vw, 26px); }
.btn--dark:hover { background: var(--blue); color: #fff; }
.btn--outline { background: none; border: 2px solid rgba(255,255,255,0.45); color: #fff; font-size: 16px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0 26px; }
.btn--outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; height: 54px; padding: 0 24px; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; }
.btn--blue:hover { background: var(--blue-dark); color: #fff; }
.btn--full { width: 100%; justify-content: center; height: 60px; font-size: 17px; margin-top: 4px; }
.btn--ghost { background: none; border: 2px solid var(--line); color: var(--grey); height: 46px; padding: 0 20px; font-size: 14px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btnrow { display: flex; flex-wrap: wrap; gap: 14px; margin-top: clamp(26px, 3.4vw, 38px); }
.morelink { font-family: var(--head); font-weight: 800; font-size: 19px; letter-spacing: 0.08em; text-transform: uppercase; }
.section__more { margin-top: clamp(28px, 4vw, 44px); border-top: 1px solid var(--line); padding-top: 26px; }
.bigphone { display: inline-flex; align-items: center; gap: 11px; margin-top: 26px; font-family: var(--head); font-weight: 800; font-size: clamp(24px, 2.8vw, 32px); }

/* facts strip */
.facts { background: var(--ink); color: #fff; }
.facts__inner { padding-top: clamp(20px, 2.6vw, 28px); padding-bottom: clamp(20px, 2.6vw, 28px); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px clamp(24px, 4vw, 48px); }
.facts__big { display: block; font-family: var(--head); font-weight: 800; font-size: 20px; }
.facts__sub { display: block; margin-top: 5px; font-size: 14px; letter-spacing: 0.06em; color: var(--grey-light); }

/* home cards + steps */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: clamp(24px, 3vw, 36px); }
.card { border-top: 3px solid var(--ink); padding-top: 22px; }
.card h3 { font-size: 19px; line-height: 1.15; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 12px; }
.card p { margin: 0; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.steps h3 { font-size: 23px; line-height: 1.1; margin: 14px 0; }
.steps p { margin: 0; color: #98A1AE; text-wrap: pretty; }
.step__n { font-family: var(--head); font-weight: 800; font-size: 52px; line-height: 1; color: transparent; -webkit-text-stroke: 2px var(--yellow); }

/* services */
.svc { border-top: 3px solid var(--ink); padding: 26px 0 clamp(28px, 3.6vw, 44px); display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px clamp(28px, 4vw, 56px); align-items: start; }
.svc--accent { border-top-color: var(--blue); padding-bottom: 0; }
.svc__n { display: block; font-family: var(--head); font-weight: 800; font-size: 34px; line-height: 1; color: var(--yellow); }
.svc__head h3 { margin: 14px 0; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
.svc__title-accent { color: var(--blue); }
.svc__head p { margin: 0; font-size: 17px; line-height: 1.55; max-width: 32em; text-wrap: pretty; }
.svc__items { grid-column: span 2; min-width: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 clamp(24px, 3vw, 44px); }
.svc__item { padding: 13px 0; border-bottom: 1px solid var(--line); }
.svc__item-name { font-family: var(--head); font-weight: 700; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.svc__item-detail { margin-top: 4px; font-size: 15px; line-height: 1.45; color: var(--grey); }
.notonlist { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: baseline; }
.notonlist span:first-child { font-family: var(--head); font-weight: 800; font-size: 19px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); }
.notonlist span:last-child { font-size: 17px; color: var(--grey); }

/* careers */
.role { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px clamp(28px, 4vw, 56px); padding: clamp(24px, 3vw, 34px) 0; border-bottom: 1px solid var(--line); align-items: start; }
.role h3 { font-size: 24px; line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); margin-bottom: 12px; }
.role__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.role__body { grid-column: span 2; min-width: 0; }
.role__body p { margin: 0 0 16px; font-size: 17px; line-height: 1.55; text-wrap: pretty; }
.tag { font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey); border: 1px solid var(--line); padding: 5px 12px; }
.tag--blue { color: var(--blue); border-color: var(--blue); }
.bullets { list-style: none; margin: 0; padding: 0; }
.bullets li { position: relative; padding-left: 19px; margin-bottom: 9px; font-size: 16px; line-height: 1.35; }
.bullets li::before { content: ''; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); }
.cols3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: clamp(28px, 4vw, 56px); }
.col { border-top: 3px solid var(--ink); padding-top: 22px; }
.col--blue { border-top-color: var(--blue); }
.col h3 { font-size: 19px; letter-spacing: 0.02em; color: var(--ink); margin-bottom: 16px; }
.col p { margin: 0 0 20px; }

/* about */
.prose2 { columns: 2 320px; column-gap: clamp(28px, 4vw, 56px); font-size: 17px; line-height: 1.6; text-wrap: pretty; }
.prose2 p { margin: 0 0 18px; }
.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(32px, 5vw, 64px); align-items: start; }
.split--center { align-items: center; }
.towns { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.towns span { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; border: 1px solid rgba(255,255,255,0.45); padding: 6px 13px; }
.hourslist { display: flex; flex-direction: column; }
.hourrow { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.22); font-size: 17px; color: #fff; }
.hourrow span:last-child { color: var(--blue-pale); }

/* photos — replace each .photo with your own <img> */
.photo { display: flex; align-items: center; justify-content: center; text-align: center; padding: 16px; background: var(--panel); border: 1px dashed var(--field); color: var(--grey); font-size: 14px; }
.dark .photo, .hero__photo--dark .photo { background: #1A2028; border-color: #39414C; color: var(--grey-light); }
.hero__photo .photo { border: 6px solid #fff; }
.hero__photo--dark .photo { border: 6px solid #2A3038; }
.photogrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.photogrid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.photogrid figure { margin: 0; }
.photogrid figcaption { margin-top: 10px; font-family: var(--head); font-weight: 800; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }

/* form */
.formcard { background: var(--panel); border: 1px solid var(--line); padding: clamp(24px, 3vw, 36px); }
.formcard form { display: flex; flex-direction: column; gap: 18px; }
.grid2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey); }
.field input, .field select, .field textarea { padding: 0 14px; height: 50px; border: 1px solid var(--field); background: #fff; color: var(--ink); font-size: 16px; border-radius: 0; }
.field textarea { height: auto; padding: 12px 14px; line-height: 1.5; resize: vertical; font-family: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,104,192,0.14); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { height: 42px; padding: 0 15px; border: 1px solid var(--field); background: #fff; color: var(--body); font-size: 15px; cursor: pointer; white-space: nowrap; }
.chip:hover { border-color: var(--blue); }
.chip[aria-pressed='true'] { background: var(--blue); border-color: var(--blue); color: #fff; font-weight: 600; }
.fineprint { margin: 0; font-size: 14px; color: var(--grey); }
.formcard__sent { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: clamp(12px, 2vw, 28px) 0; }
.formcard__sent h3 { font-size: 26px; color: var(--ink); }
.formcard__sent p { margin: 0; }
.tick { width: 56px; height: 56px; background: var(--blue); display: flex; align-items: center; justify-content: center; }

/* footer */
.footer { background: var(--ink); color: var(--grey-light); }
.footer__inner { padding-top: clamp(36px, 4.5vw, 56px); padding-bottom: clamp(36px, 4.5vw, 56px); display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px clamp(24px, 4vw, 56px); }
.footer__logo { height: 46px; width: auto; margin-bottom: 18px; }
.footer p { margin: 0; font-size: 15px; line-height: 1.6; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; color: #fff; margin-bottom: 10px; }
.footer a { display: block; margin-bottom: 5px; color: var(--grey-light); font-size: 15px; }
.footer a:hover { color: var(--yellow); }
.footer .strong { color: #fff; }
.footer__bar { border-top: 1px solid #2A3038; }
.footer__barinner { padding-top: 20px; padding-bottom: 20px; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-size: 14px; }

@media print { .site-header, .nav, .btnrow, .formcard { break-inside: avoid; } }

/* ── site additions (gallery, reviews, admin) ─────────────────────────── */

/* live gallery */
.livegrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.livegrid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.livegrid .photo { aspect-ratio: 4/3; }

/* reviews */
.rating-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 18px; margin-top: 22px; }
.rating-line .rating-num { font-family: var(--head); font-weight: 800; font-size: 44px; color: var(--yellow); }
.rating-line .rating-sub { font-size: 15px; color: var(--blue-pale); }
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 17px; }
.reviewgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(20px, 3vw, 32px); }
.reviewcard { border-top: 3px solid var(--blue); background: var(--panel); padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.reviewcard p { margin: 0; font-size: 16px; line-height: 1.55; color: var(--body); text-wrap: pretty; flex: 1; }
.reviewcard .who { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.reviewcard .who b { font-family: var(--head); font-weight: 800; font-size: 15px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.reviewcard .who span { font-size: 13px; color: var(--grey); white-space: nowrap; }
.review-note { margin-top: 26px; font-size: 14px; color: var(--grey); }

/* admin */
.admincard { background: var(--panel); border: 1px solid var(--line); padding: clamp(24px, 3vw, 36px); max-width: 460px; }
.admincard form { display: flex; flex-direction: column; gap: 18px; }
.formerror { margin: 0; font-size: 14px; font-weight: 600; color: #B3261E; }
.adminbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; margin-bottom: 26px; }
.adminbar .whoami { font-size: 14px; color: var(--grey); }
.dropzone { border: 2px dashed var(--field); background: var(--panel); padding: 34px 20px; text-align: center; color: var(--grey); cursor: pointer; }
.dropzone.dragover { border-color: var(--blue); background: var(--blue-pale); color: var(--blue-dark); }
.dropzone strong { font-family: var(--head); font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }
.admingrid { margin-top: 22px; display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.admintile { position: relative; cursor: grab; }
.admintile img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.admintile.dragging { opacity: 0.4; }
.admintile.drop-target { outline: 3px solid var(--yellow); }
.admintile__remove { position: absolute; top: 6px; right: 6px; width: 30px; height: 30px; border: none; background: var(--ink); color: #fff; font-size: 18px; line-height: 1; cursor: pointer; }
.admintile__remove:hover { background: #B3261E; }
.admintile__handle { position: absolute; left: 6px; bottom: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(16,20,24,0.75); color: #fff; padding: 3px 8px; }
.leadrow { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 6px 28px; }
.leadrow .lead-name { font-family: var(--head); font-weight: 800; font-size: 16px; color: var(--ink); }
.leadrow .lead-meta { font-size: 14px; color: var(--grey); }
.leadrow .lead-notes { grid-column: 1 / -1; font-size: 15px; color: var(--body); }
.hint { font-size: 14px; color: var(--grey); }
[hidden] { display: none !important; }
