/* ==========================================================================
   Jones Carpet Services – styles
   1. Tokens  2. Base  3. Buttons  4. Header  5. Hero  6. Sections
   7. Services  8. Before/After  9. Residential/Commercial  10. Why
   11. Enquiry  12. Footer  13. Mobile bar  14. Responsive
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --black: #0b0b0b;
  --ink: #161616;
  --grey-800: #2b2b2b;
  --grey-600: #55555a;
  --grey-500: #74747a;
  --grey-300: #cfcfd2;
  --grey-200: #e5e5e7;
  --grey-100: #f4f4f5;
  --white: #ffffff;

  --font-display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2rem);
  --radius: 6px;
  --header-h: 84px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* ---------- 2. Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 8px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; margin: 0; letter-spacing: 0.01em; }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); }
h3 { font-size: 1.5rem; font-weight: 600; line-height: 1.15; }
p { margin: 0; }
:focus-visible { outline: 3px solid var(--black); outline-offset: 3px; }
.section-dark :focus-visible, .hero :focus-visible, .site-footer :focus-visible, .rc-card-dark :focus-visible { outline-color: var(--white); }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -4rem; background: var(--black); color: var(--white); padding: .7rem 1rem; z-index: 200; border-radius: var(--radius); }
.skip-link:focus { top: 1rem; }

.ic { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.eyebrow { display: flex; align-items: center; gap: .65rem; font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-600); margin-bottom: 1rem; }
.diamond { width: .55rem; height: .55rem; background: currentColor; transform: rotate(45deg); flex: none; }

/* ---------- 3. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 48px; padding: .8rem 1.5rem;
  font: 600 .95rem/1 var(--font-body); letter-spacing: .01em; text-decoration: none;
  border: 2px solid transparent; border-radius: var(--radius); cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s, transform .2s;
}
.btn:active { transform: translateY(1px); }
.btn-solid { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-solid:hover { background: var(--grey-800); border-color: var(--grey-800); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-light { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-light:hover { background: var(--grey-200); border-color: var(--grey-200); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { min-height: 56px; padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- 4. Header ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); border-bottom: 1px solid var(--grey-200); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: var(--header-h); }
.brand { flex: none; display: block; }
.brand img { height: 64px; width: auto; }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; gap: .25rem; }
.main-nav ul a { display: block; padding: .6rem .9rem; font-size: .95rem; font-weight: 500; text-decoration: none; border-radius: var(--radius); color: var(--ink); position: relative; }
.main-nav ul a::after { content: ""; position: absolute; left: .9rem; right: .9rem; bottom: .3rem; height: 2px; background: var(--black); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.main-nav ul a:hover::after, .main-nav ul a.is-active::after { transform: scaleX(1); }
.nav-mobile-contact { display: none; }
.header-actions { display: flex; align-items: center; gap: 1rem; flex: none; }
.header-phone { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .95rem; text-decoration: none; white-space: nowrap; }
.header-phone:hover { text-decoration: underline; }
.menu-toggle { display: none; width: 48px; height: 48px; background: none; border: 2px solid var(--black); border-radius: var(--radius); cursor: pointer; padding: 0; position: relative; }
.menu-toggle span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--black); transition: transform .25s, opacity .2s, top .25s; }
.menu-toggle span:nth-child(1) { top: 14px; } .menu-toggle span:nth-child(2) { top: 21px; } .menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- 5. Hero ---------- */
.hero { background: var(--black); color: var(--white); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.hero .eyebrow { color: var(--grey-300); }
.hero h1 { font-size: clamp(2.9rem, 7vw, 5.4rem); text-transform: uppercase; letter-spacing: .015em; line-height: .98; }
.hero-lead { margin-top: 1.5rem; max-width: 34rem; font-size: clamp(1.02rem, 1.5vw, 1.15rem); color: var(--grey-300); }
.hero-buttons { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; margin-top: 2rem; font-size: .92rem; color: var(--grey-300); }
.hero-points li { display: flex; align-items: center; gap: .5rem; }
.hero-visual { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; align-items: start; }
.hero-photo { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(255,255,255,.15); aspect-ratio: 3 / 4; background: var(--grey-800); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo-b { margin-top: 3rem; }
.hero-photo figcaption { position: absolute; left: .6rem; bottom: .6rem; background: rgba(11,11,11,.82); color: var(--white); font-size: .72rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: .35rem .6rem; border-radius: 3px; }

/* ---------- 6. Sections ---------- */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-grey { background: var(--grey-100); }
.section-dark { background: var(--black); color: var(--white); }
.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 4vw, 3.5rem); }
.section-head p:not(.eyebrow) { margin-top: 1.1rem; font-size: 1.08rem; color: var(--grey-600); }
.section-head-light .eyebrow, .section-head-light p:not(.eyebrow) { color: var(--grey-300); }

/* ---------- 7. Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.service-card { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s, transform .2s; }
.service-card:hover, .service-card:focus-within { border-color: var(--black); box-shadow: var(--shadow); transform: translateY(-3px); }
.service-link { position: relative; display: block; height: 100%; padding: 1.5rem 3.25rem 1.5rem 1.5rem; text-decoration: none; color: inherit; border-radius: var(--radius); }
.service-link:focus-visible { outline-offset: -3px; }
.service-icon { width: 1.9rem; height: 1.9rem; fill: none; stroke: var(--black); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: .85rem; }
.service-card h3 { margin-bottom: .55rem; font-size: 1.4rem; }
.service-card p { color: var(--grey-600); font-size: .95rem; }
.service-arrow { position: absolute; top: 1.5rem; right: 1.25rem; width: 1.25rem; height: 1.25rem; color: var(--grey-500); transition: transform .2s, color .2s; }
.service-card:hover .service-arrow, .service-card:focus-within .service-arrow { transform: translateX(4px); color: var(--black); }
.service-card-other { background: var(--grey-100); border-style: dashed; border-color: var(--grey-300); }

/* ---------- 8. Before / After ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.ba-item { margin: 0; }
.ba { position: relative; aspect-ratio: 3 / 4; overflow: hidden; border-radius: var(--radius); background: var(--grey-800); touch-action: pan-y; user-select: none; -webkit-user-select: none; cursor: ew-resize; --pos: 50%; }
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.ba-after { z-index: 1; clip-path: inset(0 calc(100% - var(--pos)) 0 0); } /* after image sits on top and is revealed left-to-right */
.ba-tag { position: absolute; z-index: 2; top: .8rem; padding: .4rem .7rem; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; border-radius: 3px; pointer-events: none; }
.ba-tag-after { left: .8rem; background: var(--white); color: var(--black); }
.ba-tag-before { right: .8rem; background: var(--black); color: var(--white); }
.ba::after { content: ""; z-index: 2; position: absolute; top: 0; bottom: 0; left: var(--pos); width: 2px; margin-left: -1px; background: var(--white); box-shadow: 0 0 0 1px rgba(0,0,0,.25); pointer-events: none; }
.ba-handle { position: absolute; z-index: 3; top: 50%; left: var(--pos); width: 52px; height: 52px; margin: -26px 0 0 -26px; padding: 0; display: grid; place-items: center; background: var(--white); color: var(--black); border: 2px solid var(--black); border-radius: 50%; cursor: ew-resize; box-shadow: 0 4px 14px rgba(0,0,0,.35); touch-action: pan-y; }
.ba-handle .ic { width: 1.5rem; height: 1.5rem; }
.ba-handle:focus-visible { outline: 3px solid var(--white); outline-offset: 2px; box-shadow: 0 0 0 5px var(--black); }
.ba-item figcaption { display: flex; flex-direction: column; margin-top: .9rem; }
.ba-item figcaption strong { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: .01em; }
.ba-item figcaption span { color: var(--grey-300); font-size: .9rem; }
.ba-cta { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.25rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.18); }
.ba-cta p { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; }

/* ---------- 9. Residential / Commercial ---------- */
.rc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.rc-card { padding: clamp(1.75rem, 4vw, 3rem); border: 2px solid var(--black); border-radius: var(--radius); display: flex; flex-direction: column; align-items: flex-start; }
.rc-card-dark { background: var(--black); color: var(--white); }
.rc-icon { width: 3rem; height: 3rem; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1.25rem; }
.rc-card h3 { font-size: 2.2rem; margin-bottom: .75rem; }
.rc-card p { flex: 1; margin-bottom: 1.75rem; color: var(--grey-600); max-width: 30rem; }
.rc-card-dark p { color: var(--grey-300); }

/* ---------- 10. Why choose us ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2rem; }
.why-grid li { padding-top: 1.5rem; border-top: 2px solid var(--black); }
.why-icon { width: 2rem; height: 2rem; fill: none; stroke: var(--black); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.why-grid h3 { margin-bottom: .55rem; }
.why-grid p { color: var(--grey-600); font-size: .96rem; }

/* ---------- 11. Enquiry ---------- */
.section-enquiry { background: var(--black); color: var(--white); }
.enquiry-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.section-enquiry .eyebrow { color: var(--grey-300); }
.enquiry-lead { margin-top: 1.1rem; font-size: 1.08rem; color: var(--grey-300); max-width: 28rem; }
.contact-list { margin-top: 2rem; display: grid; gap: 1.25rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ic { width: 1.5rem; height: 1.5rem; margin-top: .25rem; }
.contact-list div { display: flex; flex-direction: column; }
.contact-label { font-size: .75rem; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-500); }
.contact-list a { font-size: 1.2rem; font-weight: 600; text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 4px; }
.contact-list span:not(.contact-label) { font-size: 1.2rem; font-weight: 600; }
.call-btn { margin-top: 2rem; }

.enquiry-card { background: var(--white); color: var(--ink); padding: clamp(1.5rem, 4vw, 2.5rem); border-radius: var(--radius); }
.field { margin-bottom: 1.15rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field label { display: block; margin-bottom: .4rem; font-size: .88rem; font-weight: 600; }
.req { color: var(--black); }
.optional { font-weight: 400; color: var(--grey-500); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: .8rem .9rem; font: inherit; font-size: 1rem; /* 16px+ prevents iOS zoom */
  color: var(--ink); background: var(--white); border: 1.5px solid var(--grey-300); border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s; appearance: none; -webkit-appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' fill='none' stroke='%230b0b0b' stroke-width='2'%3E%3Cpath d='M1 1l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .95rem center; padding-right: 2.5rem; }
.field textarea { resize: vertical; min-height: 130px; line-height: 1.5; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--grey-500); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--black); box-shadow: 0 0 0 3px rgba(11,11,11,.15); }
.field.has-error input, .field.has-error select { border-color: #b3261e; }
.field-msg { display: block; margin-top: .35rem; font-size: .82rem; color: #b3261e; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-note { margin-top: .9rem; font-size: .82rem; color: var(--grey-500); text-align: center; }
.form-error { margin-bottom: 1rem; padding: .8rem 1rem; background: #fdecea; color: #7a1b15; border-radius: var(--radius); font-size: .92rem; }
.btn[disabled] { opacity: .65; cursor: progress; }
.form-success { text-align: center; padding: 2rem 0; }
.success-icon { width: 4rem; height: 4rem; padding: 1rem; margin: 0 auto 1.25rem; fill: none; stroke: var(--white); background: var(--black); border-radius: 50%; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.form-success h3 { font-size: 2rem; margin-bottom: .75rem; }
.form-success p { color: var(--grey-600); max-width: 26rem; margin-inline: auto; }
.form-success a { font-weight: 600; }
[hidden] { display: none !important; }

/* ---------- 12. Footer ---------- */
.site-footer { background: var(--ink); color: var(--grey-300); padding-top: clamp(3rem, 6vw, 4.5rem); border-top: 1px solid var(--grey-800); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand img { width: 220px; height: auto; margin-bottom: 1.25rem; }
.footer-brand p { max-width: 20rem; font-size: .93rem; }
.footer-contact { margin-top: 1.25rem; display: grid; gap: .5rem; }
.footer-contact a { display: inline-flex; align-items: center; gap: .6rem; color: var(--white); font-weight: 500; text-decoration: none; overflow-wrap: anywhere; }
.footer-contact a:hover, .footer-col a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-col h2 { font-size: 1.3rem; font-weight: 600; color: var(--white); margin-bottom: 1rem; letter-spacing: .04em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: .55rem; }
.footer-col a { text-decoration: none; font-size: .93rem; }
.footer-cta p { font-size: .93rem; margin-bottom: 1.1rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; padding-block: 1.5rem; border-top: 1px solid var(--grey-800); font-size: .85rem; color: var(--grey-500); }

.footer-credit { display: flex; align-items: center; justify-content: center; gap: .6rem; padding-block: 1rem 1.5rem; border-top: 1px solid var(--grey-800); font-size: .8rem; color: var(--grey-500); }
.footer-credit img { width: 110px; height: auto; opacity: .85; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review-card { display: flex; flex-direction: column; margin: 0; padding: 1.75rem; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--radius); }
.stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--black); }
.stars svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }
.review-card blockquote { margin: 0; flex: 1; font-size: 1.02rem; color: var(--ink); }
.review-card blockquote p { margin: 0; }
.review-card figcaption { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--grey-200); display: flex; flex-direction: column; font-size: .88rem; color: var(--grey-600); }
.review-card figcaption strong { color: var(--ink); font-size: .98rem; }
.review-note { margin-top: 1.5rem; font-size: .88rem; color: var(--grey-600); }

/* FAQ */
.faq-wrap { max-width: 860px; }
.faq-item { border-top: 1px solid var(--grey-300); }
.faq-item:last-child { border-bottom: 1px solid var(--grey-300); }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 0; font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; cursor: pointer; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--font-body); font-size: 1.6rem; font-weight: 400; line-height: 1; flex: none; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 2.5rem 1.4rem 0; color: var(--grey-600); }
.form-consent { margin-top: .9rem; font-size: .82rem; color: var(--grey-600); text-align: center; }
.form-consent a, .footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* Legal / privacy page */
.legal-header { background: var(--white); border-bottom: 1px solid var(--grey-200); }
.legal { max-width: 780px; padding-block: clamp(3rem, 6vw, 5rem); }
.legal h1 { font-size: clamp(2.6rem, 6vw, 4rem); margin-bottom: .5rem; }
.legal h2 { font-size: 1.9rem; margin: 2.5rem 0 .75rem; }
.legal p, .legal li { color: var(--grey-600); margin-bottom: .8rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; }
.legal a { text-decoration: underline; text-underline-offset: 3px; color: var(--ink); }
.legal .updated { color: var(--grey-500); font-size: .9rem; }

/* ---------- 13. Mobile action bar ---------- */
.mobile-bar { display: none; }

/* ---------- 14. Responsive ---------- */
@media (max-width: 1100px) {
  .header-phone span { display: none; }
  .header-phone { width: 48px; height: 48px; justify-content: center; border: 2px solid var(--black); border-radius: var(--radius); }
  .header-phone .ic { width: 1.3rem; height: 1.3rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --header-h: 72px; }
  body { padding-bottom: 68px; }
  .brand img { height: 54px; }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .header-actions { margin-left: auto; }

  .main-nav { position: fixed; inset: var(--header-h) 0 0 0; margin: 0; background: var(--white); padding: 1.25rem var(--gutter) 2rem; overflow-y: auto; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s, visibility .2s; }
  .main-nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .main-nav ul { flex-direction: column; gap: 0; }
  .main-nav ul a { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; padding: 1rem 0; border-bottom: 1px solid var(--grey-200); border-radius: 0; }
  .main-nav ul a::after { display: none; }
  .nav-mobile-contact { display: grid; gap: .75rem; margin-top: 1.75rem; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 30rem; }
  .hero-photo-b { margin-top: 1.5rem; }

  .ba-grid { grid-template-columns: 1fr; max-width: 30rem; margin-inline: auto; gap: 2.25rem; }
  .rc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .review-grid { grid-template-columns: 1fr; max-width: 34rem; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .mobile-bar { display: grid; grid-template-columns: 1fr 1fr; position: fixed; z-index: 90; left: 0; right: 0; bottom: 0; background: var(--white); border-top: 1px solid var(--grey-300); padding: .6rem var(--gutter) calc(.6rem + env(safe-area-inset-bottom)); gap: .6rem; box-shadow: 0 -6px 20px rgba(0,0,0,.08); }
  .mobile-bar a { display: flex; align-items: center; justify-content: center; gap: .5rem; min-height: 48px; border-radius: var(--radius); font-weight: 600; text-decoration: none; border: 2px solid var(--black); }
  .mobile-call { background: var(--white); color: var(--black); }
  .mobile-quote { background: var(--black); color: var(--white); }
}

@media (max-width: 640px) {
  .service-grid, .why-grid, .field-row { grid-template-columns: 1fr; }
  .field-row { gap: 0; }
  .hero-buttons .btn { width: 100%; }
  .ba-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
  .hero-visual { gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
