/* ==========================================================================
   Mobile Tyre Fitting Epsom — Global Stylesheet
   1. Variables  2. Reset  3. Typography  4. Layout  5. Buttons  6. Header
   7. Navigation 8. Hero  9. Trust 10. Services 11. Content 12. Process
   13. Reviews 14. FAQ 15. Areas 16. Contact 17. Footer 18. Utilities
   19. Responsive 20. Accessibility
   ========================================================================== */

/* 1. VARIABLES ------------------------------------------------------------ */
:root {
  --primary: #C8102E;
  --primary-dark: #9F0C23;
  --primary-soft: #FDECEE;
  --white: #FFFFFF;
  --text: #111111;
  --muted: #555555;
  --surface: #F7F7F7;
  --border: #E5E5E5;
  --dark: #111111;
  --dark-soft: #1A1A1A;

  --container: 1200px;
  --font: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 10px;
  --radius-sm: 8px;
  --radius-lg: 14px;
  --shadow: 0 6px 20px rgba(17, 17, 17, 0.08);
  --shadow-lift: 0 10px 28px rgba(17, 17, 17, 0.10);

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* 2. RESET ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--primary); color: var(--white); }

/* 3. TYPOGRAPHY ----------------------------------------------------------- */
h1, h2, h3, h4 { margin: 0 0 0.5em; color: var(--text); font-weight: 800; line-height: 1.1; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.25rem, 5.2vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.875rem, 3.6vw, 3rem); line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); font-weight: 750; }
p { margin: 0 0 1rem; max-width: 68ch; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); line-height: 1.6; }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--white); opacity: 0.85; }

/* 4. LAYOUT --------------------------------------------------------------- */
.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: 96px 0; }
.section--md { padding: 72px 0; }
.section--sm { padding: 52px 0; }
.section--surface { background: var(--surface); }
.section--dark { background: var(--dark); color: var(--white); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--red { background: var(--primary); color: var(--white); }
.section--red h1, .section--red h2, .section--red h3 { color: var(--white); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--wide-left { grid-template-columns: 1.35fr 1fr; }
.split--wide-right { grid-template-columns: 1fr 1.35fr; }
.section-head { max-width: 62ch; margin-bottom: 48px; }
.section-head--center { margin-inline: auto; text-align: center; }

.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.media--tall img { aspect-ratio: 3 / 4; }

/* 5. BUTTONS -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 15px 26px; border-radius: var(--radius); font-weight: 800; font-size: 1rem;
  border: 2px solid transparent; text-decoration: none; transition: background 0.18s var(--ease), transform 0.18s var(--ease), border-color 0.18s var(--ease); white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--white); }
.btn-on-red { background: var(--white); color: var(--primary); }
.btn-on-red:hover { background: var(--surface); color: var(--primary-dark); }
.btn-ghost-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost-white:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 17px 32px; font-size: 1.06rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 14px; }

.svg-ico { width: 1.1em; height: 1.1em; flex: none; }

/* 6. HEADER --------------------------------------------------------------- */
.utility-bar { background: var(--dark); color: rgba(255,255,255,0.82); font-size: 0.85rem; }
.utility-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.utility-bar__meta { display: flex; align-items: center; gap: 20px; }
.utility-bar__item { display: inline-flex; align-items: center; gap: 7px; }
.utility-bar__item svg { width: 15px; height: 15px; color: var(--primary); }
.utility-bar a { color: var(--white); font-weight: 700; }
.utility-bar a:hover { color: var(--white); text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 60; background: var(--white); border-bottom: 1px solid var(--border); }
.site-header .container { display: flex; align-items: center; gap: 24px; min-height: 74px; }
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand img { height: 46px; width: auto; display: block; }

/* 7. NAVIGATION ----------------------------------------------------------- */
.primary-nav { margin-left: auto; }
.primary-nav > ul { display: flex; align-items: center; gap: 4px; }
.primary-nav a, .nav-dd__toggle {
  display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; border-radius: 8px;
  color: var(--text); font-weight: 700; font-size: 0.98rem; background: none; border: 0;
}
.primary-nav a:hover, .nav-dd__toggle:hover { background: var(--surface); text-decoration: none; color: var(--primary); }
.primary-nav a[aria-current="page"] { color: var(--primary); }
.nav-dd { position: relative; }
.nav-dd__toggle svg { width: 14px; height: 14px; transition: transform 0.2s var(--ease); }
.nav-dd[data-open="true"] .nav-dd__toggle svg { transform: rotate(180deg); }
.nav-dd__panel {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 250px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lift);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: 0.18s var(--ease); z-index: 70;
}
.nav-dd[data-open="true"] .nav-dd__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd__panel a { display: block; padding: 9px 12px; border-radius: 7px; font-weight: 600; }
.header-cta { margin-left: 8px; }

.nav-toggle { display: none; }
.header-actions-mobile { display: none; }

/* 8. HERO ----------------------------------------------------------------- */
.hero { background: var(--white); overflow: hidden; }
.hero .container { padding-top: 76px; padding-bottom: 76px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero__copy p { font-size: 1.18rem; color: var(--muted); max-width: 52ch; margin-bottom: 28px; }
.hero__media { position: relative; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; box-shadow: var(--shadow-lift); }
.hero__badge {
  position: absolute; left: -14px; bottom: 26px; background: var(--dark); color: var(--white);
  padding: 14px 18px; border-radius: var(--radius); box-shadow: var(--shadow-lift); font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; gap: 10px; max-width: 78%;
}
.hero__badge svg { width: 26px; height: 26px; color: var(--primary); flex: none; }
.hero--dark { background: var(--dark); color: var(--white); }
.hero--dark h1, .hero--dark h2, .hero--dark h3 { color: var(--white); }
.hero--dark .hero__copy p { color: rgba(255,255,255,0.8); }

/* 9. TRUST STRIP ---------------------------------------------------------- */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--white); }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { display: flex; align-items: center; gap: 13px; padding: 26px 22px; }
.trust-item + .trust-item { border-left: 1px solid var(--border); }
.trust-item svg { width: 30px; height: 30px; color: var(--primary); flex: none; }
.trust-item strong { display: block; font-size: 1rem; font-weight: 800; }
.trust-item span { color: var(--muted); font-size: 0.9rem; }
/* compact inline facts (service pages) */
.facts { display: flex; flex-wrap: wrap; gap: 10px 28px; padding: 20px 0; }
.facts li { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 0.96rem; }
.facts svg { width: 20px; height: 20px; color: var(--primary); flex: none; }

/* 10. SERVICES ------------------------------------------------------------ */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-grid--3 { grid-template-columns: repeat(3, 1fr); }
.service-card {
  display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: border-color 0.2s var(--ease), transform 0.2s var(--ease); color: var(--text);
}
.service-card:hover { text-decoration: none; border-color: var(--primary); transform: translateY(-3px); }
.service-card__img { aspect-ratio: 3 / 2; overflow: hidden; background: var(--surface); }
.service-card__img img { width: 100%; height: 100%; object-fit: cover; }
.service-card__body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { font-size: 1.18rem; margin-bottom: 6px; }
.service-card p { color: var(--muted); font-size: 0.94rem; margin: 0 0 14px; }
.service-card__link { margin-top: auto; color: var(--primary); font-weight: 800; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 6px; }
.service-card__link svg { width: 15px; height: 15px; transition: transform 0.2s var(--ease); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* directory grouping */
.svc-group + .svc-group { margin-top: 56px; }
.svc-group__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--border); }
.svc-group__head h2 { margin: 0; font-size: clamp(1.4rem, 2.2vw, 1.9rem); }

/* 11. CONTENT SECTIONS ---------------------------------------------------- */
.prose h2 { margin-top: 0; }
.prose h3 { margin-top: 1.6em; }
.prose ul.check { margin: 1.1rem 0; }
ul.check li { position: relative; padding-left: 32px; margin-bottom: 12px; color: var(--text); }
ul.check li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--primary-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8102E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.decision { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 8px 0; }
.decision__card { border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; background: var(--white); }
.decision__card h3 { font-size: 1.15rem; display: flex; align-items: center; gap: 9px; }
.decision__card h3 svg { width: 22px; height: 22px; color: var(--primary); }
.decision__card--soft { background: var(--primary-soft); border-color: transparent; }

/* 12. PROCESS ------------------------------------------------------------- */
.process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.process--4 { grid-template-columns: repeat(4, 1fr); }
.process-step__num { font-size: 3.4rem; font-weight: 800; line-height: 1; color: var(--primary); letter-spacing: -0.03em; }
.process-step h3 { font-size: 1.2rem; margin: 12px 0 6px; }
.process-step p { color: var(--muted); font-size: 0.97rem; margin: 0; }
.section--dark .process-step p { color: rgba(255,255,255,0.75); }
.section--red .process-step__num { color: var(--white); }
.section--red .process-step p { color: rgba(255,255,255,0.9); }

/* 13. REVIEWS ------------------------------------------------------------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; }
.section--surface .review-card { background: var(--white); }
.review-card__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review-card__stars svg { width: 18px; height: 18px; color: var(--primary); }
.review-card p { font-size: 1rem; color: var(--text); margin-bottom: 16px; }
.review-card__by { font-weight: 800; font-size: 0.92rem; }
.review-card__by span { color: var(--muted); font-weight: 600; }

/* 14. FAQ ----------------------------------------------------------------- */
.faq { max-width: 820px; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; padding: 22px 40px 22px 0; position: relative;
  font-size: 1.1rem; font-weight: 750; color: var(--text); line-height: 1.4;
}
.faq__q::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 22px; height: 22px; margin-top: -11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8102E' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 0.2s var(--ease);
}
.faq__item[data-open="true"] .faq__q::after { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.28s var(--ease); }
.faq__a-inner { padding: 0 0 22px; color: var(--muted); }
.faq__a-inner p { margin: 0; }

/* 15. AREAS --------------------------------------------------------------- */
.area-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.area-link {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 15px 18px;
  border: 1px solid var(--border); border-radius: var(--radius); font-weight: 750; color: var(--text); background: var(--white);
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.area-link:hover { text-decoration: none; border-color: var(--primary); background: var(--primary-soft); }
.area-link svg { width: 16px; height: 16px; color: var(--primary); }
.area-link[data-plain] { cursor: default; }
.area-link[data-plain]:hover { border-color: var(--border); background: var(--white); }

/* 16. CONTACT / FORMS ----------------------------------------------------- */
.lead-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.section--dark .lead-form, .hero .lead-form { box-shadow: var(--shadow-lift); }
.lead-form h3 { font-size: 1.35rem; margin-bottom: 6px; }
.lead-form .form-intro { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 1rem; color: var(--text); background: var(--white);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form button[type="submit"] { width: 100%; margin-top: 4px; }
.form-consent { font-size: 0.82rem; color: var(--muted); margin-top: 12px; display: flex; gap: 8px; align-items: flex-start; }
.form-success, .form-error { display: none; margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.95rem; }
.form-success.visible { display: block; background: #E9F7EF; color: #14663f; }
.form-error.visible { display: block; background: var(--primary-soft); color: var(--primary-dark); }

.contact-methods { display: grid; gap: 14px; }
.contact-method { display: flex; gap: 14px; align-items: flex-start; padding: 18px; border: 1px solid var(--border); border-radius: var(--radius); }
.contact-method svg { width: 24px; height: 24px; color: var(--primary); flex: none; margin-top: 2px; }
.contact-method > div { display: flex; flex-direction: column; gap: 2px; }
.contact-method strong { font-size: 1.02rem; }
.contact-method a { font-weight: 800; width: fit-content; }
.contact-method span { color: var(--muted); font-size: 0.92rem; }

/* 17. FOOTER -------------------------------------------------------------- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.72); padding: 64px 0 28px; }
.site-footer h4 { color: var(--white); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer a { color: rgba(255,255,255,0.72); font-weight: 600; }
.site-footer a:hover { color: var(--white); }
.site-footer li { margin-bottom: 9px; }
.footer-brand img { height: 52px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; }
.footer-call { color: var(--white); font-weight: 800; font-size: 1.25rem; }
.footer-call:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 44px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; }
.footer-bottom a { text-decoration: underline; }

/* breadcrumbs */
.crumbs { font-size: 0.86rem; color: var(--muted); padding: 16px 0 0; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; }
.crumbs a { color: var(--muted); font-weight: 600; }
.crumbs a:hover { color: var(--primary); }
.crumbs li[aria-current] { color: var(--text); font-weight: 700; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--border); }

/* 18. UTILITIES ----------------------------------------------------------- */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--primary); color: #fff; padding: 10px 16px; z-index: 200; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.stack > * + * { margin-top: 1rem; }

/* mobile sticky CTA */
.mobile-cta { display: none; }

/* 19. RESPONSIVE ---------------------------------------------------------- */
@media (max-width: 1023px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero__grid { gap: 40px; }
}
@media (max-width: 900px) {
  .primary-nav, .utility-bar__meta .u-hide-sm { display: none; }
  .header-cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center; margin-left: auto;
    width: 46px; height: 46px; border: 1px solid var(--border); border-radius: 9px; background: var(--white);
  }
  .nav-toggle svg { width: 24px; height: 24px; color: var(--text); }
  .header-actions-mobile { display: inline-flex; gap: 10px; align-items: center; margin-left: auto; }
  .header-actions-mobile + .nav-toggle { margin-left: 0; }
  .header-actions-mobile .btn { padding: 11px 16px; }

  /* mobile panel */
  .primary-nav.is-open {
    display: block; position: fixed; inset: 0 0 0 auto; width: min(88%, 360px); background: var(--white);
    z-index: 120; padding: 22px; overflow-y: auto; box-shadow: -12px 0 40px rgba(0,0,0,0.18);
  }
  .primary-nav.is-open > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .primary-nav.is-open a, .primary-nav.is-open .nav-dd__toggle { padding: 13px 12px; font-size: 1.05rem; width: 100%; justify-content: space-between; }
  .primary-nav.is-open .nav-dd__panel {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0;
    border-left: 2px solid var(--primary-soft); border-radius: 0; margin: 2px 0 6px 12px; padding: 0 0 0 8px; max-height: 0; overflow: hidden;
  }
  .primary-nav.is-open .nav-dd[data-open="true"] .nav-dd__panel { max-height: 640px; }
  .primary-nav.is-open .header-cta { display: inline-flex; margin: 14px 0 0; width: 100%; }
  .nav-scrim { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 120; }
  .nav-scrim.is-open { display: block; }
  body.nav-open .site-header { z-index: 130; }

  .split, .hero__grid { grid-template-columns: 1fr; }
  .hero__grid { gap: 32px; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 10; }
  .split--wide-left, .split--wide-right { grid-template-columns: 1fr; }
  .trust-strip__grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-top: 1px solid var(--border); }
  .trust-item:nth-child(3) { border-left: 0; }
  .process, .process--4 { grid-template-columns: 1fr 1fr; gap: 28px; }
  .reviews { grid-template-columns: 1fr; }
  .decision { grid-template-columns: 1fr; }

  /* mobile sticky CTA bar */
  .mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 90; background: var(--white); border-top: 1px solid var(--border); padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px rgba(0,0,0,0.08);
  }
  .mobile-cta .btn { padding: 13px 10px; font-size: 0.98rem; }
  body { padding-bottom: 74px; }
    .brand img { height: 38px; }
  .site-header .container { gap: 12px; }
}
@media (max-width: 400px) {
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .section--md { padding: 52px 0; }
  .section--sm { padding: 40px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .process, .process--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .hero .container { padding-top: 44px; padding-bottom: 44px; }
  .utility-bar__meta { gap: 12px; }
}

/* 20. ACCESSIBILITY / MOTION --------------------------------------------- */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }
.js .reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   AREAS WE COVER — premium dark showcase (homepage)
   ============================================================ */
.area-showcase { position: relative; overflow: hidden; background: var(--dark); color: var(--white); padding: 84px 0; }
.area-showcase::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px; }
.area-showcase::after { content: ""; position: absolute; top: 42%; left: 12%; width: 520px; height: 520px; transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(200,16,46,0.14) 0%, transparent 65%); pointer-events: none; }
.area-showcase .container { position: relative; z-index: 1; }
.eyebrow--on-dark { color: var(--primary); }
.area-showcase__h { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin: 10px 0 10px; }
.area-showcase__h em { font-style: normal; color: var(--primary); }
.area-showcase__sub { color: rgba(255,255,255,0.6); max-width: 560px; margin: 0; }
.area-showcase__grid { display: grid; grid-template-columns: 0.62fr 1fr; gap: 56px; align-items: center; margin-top: 46px; }

.cov-wrap { position: relative; display: flex; justify-content: center; }
.cov-map { width: 100%; max-width: 340px; filter: drop-shadow(0 10px 30px rgba(0,0,0,0.35)); }
.cov-badge { position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%); display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary); color: #fff; font-weight: 800; font-size: 0.82rem; padding: 9px 20px; border-radius: 50px; white-space: nowrap;
  box-shadow: 0 6px 20px rgba(200,16,46,0.4); }
.cov-badge svg { width: 15px; height: 15px; }
.cov-pulse { transform-origin: 180px 180px; animation: covPulse 2.4s ease-out infinite; }
@keyframes covPulse { 0% { transform: scale(1); opacity: 0.7; } 100% { transform: scale(2.6); opacity: 0; } }

.chip-group { margin-bottom: 24px; }
.chip-group__label { display: flex; align-items: center; gap: 10px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 13px; }
.chip-group__label::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200,16,46,0.3), transparent); }
.chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.area-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 18px; border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50px; font-size: 0.86rem; font-weight: 600; color: rgba(255,255,255,0.78); background: rgba(255,255,255,0.03);
  text-decoration: none; transition: color .2s, border-color .2s, background .2s, transform .2s; }
.area-chip svg { color: var(--primary); flex: none; }
.area-chip:hover { color: #fff; border-color: var(--primary); background: rgba(200,16,46,0.14); transform: translateY(-2px); text-decoration: none; }

.area-stats { display: flex; gap: 34px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.08); }
.area-stat__num { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.area-stat__label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 500; margin-top: 4px; }

.area-showcase__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.area-showcase__note { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

@media (max-width: 900px) {
  .area-showcase__grid { grid-template-columns: 1fr; gap: 40px; }
  .cov-wrap { max-width: 260px; margin: 0 auto; order: 2; }
}
@media (max-width: 640px) {
  .area-showcase { padding: 60px 0; }
  .cov-wrap { display: none; }
  .area-stats { gap: 24px; }
}
@media (prefers-reduced-motion: reduce) { .cov-pulse { animation: none; } }

/* ============================================================
   GALLERY — editorial bento (proof of work)
   ============================================================ */
.gallery-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 12px; margin-top: 8px; }
.g-item { position: relative; overflow: hidden; border-radius: 10px; background: var(--surface); margin: 0; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.g-item:hover img { transform: scale(1.05); }
.g-feature { grid-column: span 2; grid-row: span 2; }
.g-wide { grid-column: span 2; }
.g-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 16px 12px; color: #fff; font-size: 0.86rem; font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent); }
.g-item::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04); border-radius: 10px; pointer-events: none; }

@media (max-width: 900px) {
  .gallery-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .g-feature { grid-column: span 2; grid-row: span 2; }
  .g-wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .gallery-bento { grid-auto-rows: 150px; gap: 9px; }
  .g-feature { grid-row: span 2; }
}

/* ============================================================
   HERO conversion form + trust points
   ============================================================ */
.hero__points { list-style: none; margin: 18px 0 22px; padding: 0; display: grid; gap: 8px; }
.hero__points li { display: flex; align-items: center; gap: 9px; font-weight: 600; color: var(--text); font-size: 0.98rem; }
.hero__points svg { color: var(--primary); flex: none; width: 18px; height: 18px; }

.hero-quote { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 18px; box-shadow: 0 12px 34px rgba(17,17,17,0.08); max-width: 460px; }
.hero-quote__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.hero-quote__head strong { font-size: 1.05rem; font-weight: 800; }
.hero-quote__head a { font-size: 0.86rem; font-weight: 700; color: var(--primary); }
.hero-quote__row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.hero-quote .field { margin: 0; }
.hero-quote input, .hero-quote select { width: 100%; padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px; font: inherit; font-size: 0.95rem; background: var(--white); color: var(--text); }
.hero-quote input:focus, .hero-quote select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.hero-quote .field-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.hero-quote button[type="submit"] { width: 100%; margin-top: 2px; }
.hero-quote__consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 11px; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }
.hero-quote__consent input { width: auto; margin-top: 2px; }
.hero-quote .form-success, .hero-quote .form-error { display: none; margin-top: 12px; padding: 11px 13px; border-radius: 8px; font-size: 0.9rem; }
.hero-quote[data-status="success"] .form-success { display: block; background: #E9F7EE; color: #1B7A3D; }
.hero-quote[data-status="error"] .form-error { display: block; background: var(--primary-soft); color: var(--primary-dark); }
.hero--split .hero__media { align-self: stretch; }
.hero--split .hero__media img { height: 100%; object-fit: cover; }

@media (max-width: 1023px) {
  .hero-quote { max-width: none; }
}
@media (max-width: 480px) {
  .hero-quote__row { grid-template-columns: 1fr; }
}
