/* ============================================================
   Ghan Concrete Construction & Junk Removal — Design System v2
   Grounded in the trade itself: poured concrete, formwork timber,
   rusted rebar and site steel. Motif: the control joint — the
   cut line tradesmen score into wet concrete to control cracking —
   used throughout as the structural divider and accent rule.
   Type: Big Shoulders Display (rolled steel, condensed, built for
   signage) / IBM Plex Sans (drafting-table clarity)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800;900&family=IBM+Plex+Sans:wght@400;500;600;700&display=swap');

:root {
  --charcoal-950: #16120D;
  --charcoal-850: #211A13;
  --charcoal-800: #2A2118;
  --charcoal-700: #38291B;
  --amber-500: #C97A2E;
  --amber-600: #A8631F;
  --amber-glow: #E29A4E;
  --stone-300: #CFC3AC;
  --stone-500: #98876C;
  --white: #FFFFFF;
  --paper: #EFE8D9;
  --paper-line: #DDD1B5;
  --body-grey: #B7A98A;
  --ink-text: #241D13;
  --slate-600: #5B4F39;

  --container: 1180px;
  --joint: 3px solid var(--amber-500);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { max-width: 100%; }
body {
  margin: 0;
  font-family: 'IBM Plex Sans', -apple-system, sans-serif;
  background: var(--charcoal-950);
  color: var(--body-grey);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: 'Big Shoulders Display', sans-serif;
  font-weight: 800;
  letter-spacing: .005em;
  line-height: 1.04;
  margin: 0 0 .45em;
  color: var(--white);
  overflow-wrap: break-word;
}
p { overflow-wrap: break-word; }

svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn svg { width: 16px; height: 16px; }

:focus-visible { outline: 2px solid var(--amber-500); outline-offset: 2px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 92px 0; }
@media (max-width: 780px) { section { padding: 56px 0; } }

.on-light { background: var(--paper); color: var(--slate-600); }
.on-light h1, .on-light h2, .on-light h3, .on-light h4 { color: var(--ink-text); }

/* ---------- Eyebrow — a marked chalk-tick, not a tracked-caps label ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Big Shoulders Display', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--amber-500); margin-bottom: 10px;
}
.eyebrow::before { content: ''; width: 8px; height: 8px; background: var(--amber-500); display: block; transform: rotate(45deg); flex-shrink: 0; }

.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.section-head p { font-size: 1.05rem; }
.on-light .section-head p { color: var(--slate-600); }
body .section-head p { color: var(--body-grey); }

/* ---------- Joint divider (the signature motif) ---------- */
.joint { border: none; border-top: var(--joint); margin: 0; }
.joint-y { border-top: 3px solid var(--amber-500); }

/* ---------- Buttons — sharp, one corner cut like a trowel edge ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; font-weight: 700; font-size: .98rem;
  border: 2px solid transparent; border-radius: 8px; transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--amber-500); color: var(--charcoal-950); }
.btn-primary:hover { background: var(--amber-glow); }
.btn-outline { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-outline:hover { border-color: var(--amber-500); color: var(--amber-500); }
.btn-dark { background: var(--charcoal-950); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-800); }
.on-light .btn-outline { border-color: rgba(0,0,0,.25); color: var(--ink-text); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--charcoal-950); border-bottom: 1px solid rgba(255,255,255,.08); }
.header-row { display: flex; align-items: center; justify-content: space-between; height: 84px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 50px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-family: 'Big Shoulders Display', sans-serif; font-weight: 800; color: var(--white); font-size: 1.3rem; }
.brand-text span { font-size: .62rem; font-weight: 600; color: var(--amber-500); letter-spacing: .1em; margin-top: 3px; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: rgba(255,255,255,.78); font-size: .93rem; font-weight: 600; padding: 6px 0; border-bottom: 2px solid transparent; }
.main-nav a:hover, .main-nav a.active { color: var(--white); border-color: var(--amber-500); }
.header-actions { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header-phone { display: flex; flex-direction: column; text-align: right; color: var(--white); white-space: nowrap; flex-shrink: 0; }
.header-phone small { color: var(--stone-500); font-size: .68rem; white-space: nowrap; }
.header-phone strong { font-size: 1rem; white-space: nowrap; letter-spacing: .01em; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; position: relative; flex-shrink: 0; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ''; position: absolute; left: 50%; width: 22px; height: 2px; background: var(--white); transform: translateX(-50%); }
.nav-toggle::before { top: 16px; } .nav-toggle span { top: 21px; } .nav-toggle::after { top: 26px; }

@media (max-width: 940px) {
  .main-nav { position: fixed; z-index: 99; top: 84px; right: 0; bottom: 0; left: 0; background: var(--charcoal-950); flex-direction: column; padding: 24px; gap: 4px; transform: translateX(100%); transition: transform .25s ease; overflow-y: auto; }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { width: 100%; padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .header-phone small { display: none; }
}

.nav-cta { display: none; }
@media (max-width: 940px) {
  .nav-cta { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 560px) {
  .header-row { height: 72px; }
  .brand img { height: 40px; }
  .brand-text strong { font-size: 1.1rem; }
  .brand-text span { display: none; }
  .header-actions { gap: 10px; }
  .header-actions > a.btn-primary { display: none; }
  .header-phone { display: none; }
  .main-nav { top: 72px; }
}

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--charcoal-950); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; min-height: 600px; }
.hero-copy { padding: 70px 48px 70px 0; display: flex; flex-direction: column; justify-content: center; }
.hero-copy h1 { font-size: clamp(2.5rem, 4.8vw, 4.2rem); max-width: 13ch; }
.hero-copy h1 span { color: var(--amber-500); }
.hero-copy .lede { color: var(--body-grey); font-size: 1.1rem; max-width: 44ch; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 24px; }
.hero-badges .badge { display: flex; align-items: center; gap: 8px; color: var(--stone-300); font-size: .85rem; font-weight: 500; }
.hero-badges .badge svg { color: var(--amber-500); width: 17px; height: 17px; }

.hero-photo {
  position: relative;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(22,18,13,.92) 0%, rgba(22,18,13,.2) 40%, rgba(22,18,13,0) 62%); }
.hero-photo::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--amber-500); z-index: 2;
}

@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .hero-copy { padding: 50px 0 36px; }
  .hero-photo { clip-path: none; height: 300px; }
  .hero-photo::after { background: linear-gradient(180deg, rgba(22,18,13,.3) 0%, rgba(22,18,13,.9) 100%); }
  .hero-photo::before { display: none; }
}
@media (max-width: 480px) {
  .hero-copy { padding: 36px 0 28px; }
  .hero-photo { height: 220px; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 14px 22px; font-size: .93rem; }
  .cta-band .actions .btn { width: 100%; }
  section { padding: 44px 0; }
  .container { padding: 0 18px; }
  .quote-panel { padding: 24px 20px; }
  .split-media { height: 220px; }
  .page-hero { padding: 40px 0 34px; }
  .footer-grid { gap: 32px; }
}

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--charcoal-850); border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); padding: 24px 0; }
.trust-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--stone-300); font-size: .9rem; font-weight: 600; }
.trust-item svg { color: var(--amber-500); }

/* ---------- Trowel-cut photo frame (signature clip) ---------- */
.cut-photo { position: relative; clip-path: polygon(0 0, 100% 0, 100% 100%, 34px 100%, 0 calc(100% - 34px)); }
.cut-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Service tiles ---------- */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.08); }
.tile { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--charcoal-800); }
.tile img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: transform .4s ease, opacity .2s; }
.tile:hover img { transform: scale(1.06); opacity: .97; }
.tile::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,13,0) 28%, rgba(22,18,13,.95) 100%); }
.tile-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 20px; color: var(--white); z-index: 2; border-top: 2px solid var(--amber-500); }
.tile-label h3 { font-size: 1.25rem; margin-bottom: 4px; }
.tile-label span { font-size: .84rem; color: var(--stone-300); display: flex; align-items: center; gap: 6px; font-weight: 500; }
.tile-label span svg { width: 14px; height: 14px; color: var(--amber-500); }

@media (max-width: 860px) { .tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tile-grid { grid-template-columns: 1fr; } }

/* ---------- Feature cards — sharp corners, thin amber top border ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.08); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: rgba(255,255,255,.08); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } .grid-2 { grid-template-columns: 1fr; } }
@media (max-width: 620px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.feature { padding: 32px 28px; background: var(--charcoal-850); }
.feature .icon-badge { width: 46px; height: 46px; background: var(--charcoal-950); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature .icon-badge svg { width: 22px; height: 22px; color: var(--amber-500); }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--body-grey); font-size: .93rem; margin: 0; }
.on-light .feature { background: var(--white); border: 1px solid var(--paper-line); }
.on-light .feature p { color: var(--slate-600); }
.on-light .grid-3, .on-light .grid-4 { background: var(--paper-line); }
a.feature:hover { background: var(--charcoal-800); }
.on-light a.feature:hover { background: var(--paper); }

/* ---------- Split content ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { height: 440px; }
.checklist { margin: 22px 0 26px; }
.checklist li { display: flex; gap: 12px; padding: 9px 0; font-size: .97rem; }
.checklist li svg { width: 19px; height: 19px; color: var(--amber-500); flex-shrink: 0; margin-top: 2px; }
.on-light .checklist li { color: var(--slate-600); }

@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; gap: 30px; }
  .split.reverse .split-media { order: 0; }
  .split-media { height: 300px; }
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--amber-500); color: var(--charcoal-950); padding: 60px 0; text-align: center; }
.cta-band h2 { color: var(--charcoal-950); font-size: clamp(1.7rem, 3vw, 2.3rem); }
.cta-band p { color: rgba(22,18,13,.75); max-width: 52ch; margin: 0 auto 26px; font-weight: 500; }
.cta-band .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--charcoal-950); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--charcoal-800); }
.cta-band .btn-outline { border-color: rgba(22,18,13,.4); color: var(--charcoal-950); }
.cta-band .btn-outline:hover { border-color: var(--charcoal-950); background: rgba(22,18,13,.08); }

/* ---------- Process steps ---------- */
.process-row { display: flex; justify-content: space-between; position: relative; gap: 10px; }
.process-row::before { content: ''; position: absolute; top: 27px; left: 4%; right: 4%; height: 2px; background: rgba(255,255,255,.15); }
.on-light .process-row::before { background: var(--paper-line); }
.process-step { flex: 1; text-align: center; position: relative; z-index: 1; }
.process-num { width: 56px; height: 56px; background: var(--charcoal-950); border: 2px solid var(--amber-500); color: var(--amber-500); font-family: 'Big Shoulders Display'; font-weight: 800; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.process-step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.process-step p { font-size: .84rem; color: var(--body-grey); }
.on-light .process-step p { color: var(--slate-600); }

@media (max-width: 760px) {
  .process-row { flex-direction: column; gap: 26px; }
  .process-row::before { display: none; }
}

/* ---------- Quote form ---------- */
.quote-panel { background: var(--charcoal-850); border: 1px solid rgba(255,255,255,.1); border-top: 3px solid var(--amber-500); padding: 34px; }
.quote-panel h3 { font-size: 1.4rem; margin-bottom: 4px; }
.quote-panel .sub { color: var(--body-grey); font-size: .92rem; margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.single { grid-template-columns: 1fr; }
.field label { display: block; font-size: .78rem; font-weight: 700; color: var(--stone-300); margin-bottom: 7px; letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1.5px solid rgba(255,255,255,.14); background: var(--charcoal-950); color: var(--white);
}
.field input::placeholder, .field textarea::placeholder { color: var(--stone-500); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--amber-500); outline: none; }
.field textarea { resize: vertical; min-height: 90px; }

.service-picker { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.service-picker label { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 14px 6px; border: 1.5px solid rgba(255,255,255,.14); font-size: .74rem; font-weight: 600; text-align: center; color: var(--stone-300); cursor: pointer; transition: all .15s; }
.service-picker input { position: absolute; opacity: 0; pointer-events: none; }
.service-picker svg { width: 22px; height: 22px; }
.service-picker label.picked { border-color: var(--amber-500); background: rgba(201,122,46,.14); color: var(--white); }
.service-picker label.picked svg { color: var(--amber-500); }

@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .service-picker { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.gallery-item:hover img { transform: scale(1.07); }
@media (max-width: 780px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .gallery-grid { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Page hero ---------- */
.page-hero { background: var(--charcoal-950); position: relative; padding: 60px 0 56px; overflow: hidden; }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(22,18,13,.97) 0%, rgba(22,18,13,.78) 100%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); max-width: 18ch; }
.page-hero p { color: var(--body-grey); max-width: 56ch; font-size: 1.05rem; }
.breadcrumb { display: flex; gap: 8px; color: var(--stone-500); font-size: .84rem; margin-bottom: 18px; font-weight: 500; }
.breadcrumb a:hover { color: var(--amber-500); }

/* ---------- Spec list ---------- */
.spec-list { columns: 2; column-gap: 40px; }
.spec-list li { display: flex; gap: 10px; padding: 11px 0; break-inside: avoid; font-size: .95rem; border-bottom: 1px dashed rgba(255,255,255,.12); }
.spec-list li svg { width: 18px; height: 18px; color: var(--amber-500); flex-shrink: 0; margin-top: 2px; }
.on-light .spec-list li { border-color: var(--paper-line); color: var(--slate-600); }
@media (max-width: 700px) { .spec-list { columns: 1; } }

/* ---------- Testimonial / trust card ---------- */
.trust-card { background: var(--charcoal-850); border: 1px solid rgba(255,255,255,.1); padding: 30px; height: 100%; }
.trust-card .stars { color: var(--amber-500); letter-spacing: 2px; margin-bottom: 14px; display: block; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid rgba(255,255,255,.1); }
.on-light .faq-item { border-color: var(--paper-line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: none; border: 0; padding: 22px 0; text-align: left; font-family: 'Big Shoulders Display', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--white); letter-spacing: 0; }
.on-light .faq-q { color: var(--ink-text); }
.faq-q .plus { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--amber-500); }
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .faq-q .plus::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding-bottom: 22px; max-width: 68ch; color: var(--body-grey); }
.on-light .faq-a p { color: var(--slate-600); }
.faq-item.open .faq-a { max-height: 300px; }

/* ---------- Service area band ---------- */
.area-list { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.area-chip { padding: 9px 18px; border: 1px solid rgba(255,255,255,.22); font-size: .86rem; color: var(--stone-300); font-weight: 500; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal-950); color: var(--stone-500); padding: 64px 0 26px; border-top: 3px solid var(--amber-500); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 60px; margin-bottom: 16px; }
.footer-brand p { font-size: .9rem; max-width: 32ch; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--amber-500); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: 'Big Shoulders Display'; font-weight: 700; font-size: 1.05rem; color: var(--white); letter-spacing: .01em; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; font-size: .9rem; display: flex; align-items: flex-start; gap: 9px; }
.footer-col li svg { width: 15px; height: 15px; margin-top: 3px; color: var(--amber-500); }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: .82rem; flex-wrap: wrap; gap: 10px; }

/* Suppliers + licensing strip, sits inside footer above footer-bottom */
.footer-suppliers { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-suppliers-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; }
.footer-suppliers-label { font-size: .78rem; font-weight: 600; color: var(--stone-500); }
.footer-suppliers-links a { font-size: .85rem; font-weight: 600; color: var(--stone-300); border-bottom: 1px solid transparent; }
.footer-suppliers-links a:hover { color: var(--amber-500); border-color: var(--amber-500); }
.footer-suppliers-sep { color: rgba(255,255,255,.2); }

@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-suppliers { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile call bar ---------- */
.mobile-call-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--amber-500); padding: 14px 20px; text-align: center; font-weight: 700; color: var(--charcoal-950); }
@media (max-width: 780px) { .mobile-call-bar { display: block; padding-bottom: calc(14px + env(safe-area-inset-bottom)); } body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); } }

/* ---------- Small-phone header fixes ---------- */
@media (max-width: 480px) {
  .header-row { gap: 10px; }
  .brand-text strong { font-size: 1.05rem; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Budget dropdown: inherits the quote form's existing colour palette. */
#qf-budget{display:block;width:100%;min-height:52px;font:inherit;font-size:16px;padding:14px 16px;background:#15120d;color:#cec3ad;border:2px solid #ffffff26;border-radius:0;color-scheme:dark;box-sizing:border-box;cursor:pointer}#qf-budget:focus-visible{outline:2px solid #ce802e;outline-offset:3px}#qf-budget:disabled{opacity:.65;cursor:default}#budget-help{display:block;margin-top:10px;line-height:1.5;color:#b4a587;font-size:.85rem}.budget-row .field{min-width:0}
