/* ==========================================================================
   MWS Care Services — site styles
   Shared by every page. Design tokens live in tokens.css; every value here
   resolves through a var(--mws-*) so the whole site restyles from that file.
   Typeface: Archivo (Google Fonts), weights 400/500/600/700/800.
   ========================================================================== */

/* --------------------------------------------------------------- 1. Base */
*,*::before,*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--mws-surface-000);
  color: var(--mws-ink-900);
  font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, svg, iframe { max-width: 100%; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }

a { color: var(--mws-primary-900); text-decoration: none; }
a:hover { color: var(--mws-primary-950); }

:focus-visible {
  outline: 3px solid var(--mws-secondary-500);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Display type. 800 is the brand weight — Archivo carries it well. */
.display {
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.06;
  text-wrap: pretty;
}
h1.display { font-size: clamp(2.25rem, 5.4vw, 4rem); }
h2.display { font-size: clamp(1.75rem, 3.4vw, 2.5rem); line-height: 1.12; letter-spacing: -.015em; }
h3.display { font-size: clamp(1.25rem, 2.2vw, 1.5rem);  line-height: 1.2;  letter-spacing: -.01em; }

/* Screen-reader-only */
.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Skip link — first focusable element on every page */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--mws-primary-900); color: #fff;
  padding: 12px 20px; font-weight: 600;
  border-radius: 0 0 var(--mws-radius-sm) 0;
}
.skip:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------ 2. Layout */
:root {
  --gutter: clamp(20px, 4vw, 60px);
  --section-y: clamp(48px, 6vw, 76px);
}

.wrap { max-width: 1200px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--tint   { background: var(--mws-surface-100); border-block: 1px solid var(--mws-line-200); }
.section--paper  { background: var(--mws-surface-050); }
.section--brand  { background: linear-gradient(100deg, #24262F 0%, #33364A 45%, #4A4E63 100%); color: #fff; }
.section--hairline-top { border-top: 1px solid var(--mws-line-200); }

.stack    { display: flex; flex-direction: column; }
/* A flex column stretches its children, so an <img> with width:auto resolves
   to the full column width and distorts. Images in a stack never stretch.  */
.stack > img, .row > img { align-self: flex-start; }
.logo-inline { height: 44px; width: auto; align-self: flex-start; }
.row      { display: flex; flex-wrap: wrap; align-items: center; }
.grid     { display: grid; }
.split    { display: grid; grid-template-columns: 7fr 5fr; gap: clamp(32px, 4vw, 48px); align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; }
.cols-2   { grid-template-columns: repeat(2, minmax(0,1fr)); }
.cols-3   { grid-template-columns: repeat(3, minmax(0,1fr)); }
.cols-4   { grid-template-columns: repeat(4, minmax(0,1fr)); }
.gap-sm   { gap: 12px; } .gap-md { gap: 20px; } .gap-lg { gap: 32px; }
.measure  { max-width: 34em; }
.measure-tight { max-width: 26em; }

/* ----------------------------------------------------------- 3. Eyebrows */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-size: .6875rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--mws-primary-700);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--mws-secondary-500); flex-shrink: 0;
}
.eyebrow--onbrand { color: #C6CAD9; }
.eyebrow--plain::before { display: none; }

.label {
  font-size: .6875rem; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--mws-ink-450);
}

.lead  { font-size: clamp(1rem, 1.6vw, 1.0625rem); line-height: 1.6; color: var(--mws-ink-500); }
.lead--onbrand { color: #DDE0EC; }
.body-sm { font-size: .90625rem; line-height: 1.6; color: var(--mws-ink-500); }
.meta  { font-size: .8125rem; line-height: 1.5; color: var(--mws-ink-450); }

/* ------------------------------------------------------------ 4. Buttons
   48px minimum height everywhere — never below the 44px touch floor.     */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 26px;
  border: 1px solid transparent; border-radius: var(--mws-radius-sm);
  font: inherit; font-size: .9375rem; font-weight: 600; line-height: 1;
  cursor: pointer; text-align: center; white-space: nowrap;
  transition: background 160ms var(--mws-ease), color 160ms var(--mws-ease),
              border-color 160ms var(--mws-ease);
}
.btn--primary   { background: var(--mws-primary-900); color: #fff; }
.btn--primary:hover { background: var(--mws-primary-950); color: #fff; }

.btn--accent    { background: var(--mws-secondary-500); color: var(--mws-primary-900); }
/* Hover darkens the fill but keeps indigo text above 4.5:1 — #2F85CC would
   drop it to 3.9:1, so the hover goes lighter, not darker.               */
.btn--accent:hover { background: var(--mws-secondary-400); color: var(--mws-primary-950); }

.btn--outline   { background: transparent; color: var(--mws-ink-900); border-color: var(--mws-line-300); }
.btn--outline:hover { border-color: var(--mws-primary-900); color: var(--mws-primary-900); }

.btn--onbrand   { background: #fff; color: #24262F; }
.btn--onbrand:hover { background: #E8EAF0; color: #24262F; }

.btn--ghost-onbrand { background: transparent; color: #fff; border-color: #7B7F93; }
.btn--ghost-onbrand:hover { background: rgba(255,255,255,.1); color: #fff; }

.btn--sm   { min-height: 42px; padding: 0 18px; font-size: .875rem; }
.btn--full { width: 100%; }

.link-arrow { font-weight: 600; font-size: .9375rem; }
.link-arrow::after { content: ' →'; }

/* ------------------------------------------------------------- 5. Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: var(--mws-surface-000);
  border-bottom: 1px solid var(--mws-line-200);
}
.header__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 14px 24px; padding-block: 12px; position: relative;
}
/* 115px on desktop, scaled down below 860px so the sticky header doesn't eat
   a phone screen. */
.logo { flex-shrink: 0; }
.logo img { display: block; height: 115px; width: auto; flex-shrink: 0; }
@media (max-width: 860px) { .logo img { height: clamp(64px, 12vw, 96px); } }

.nav { display: flex; flex-wrap: wrap; align-items: center; gap: 14px clamp(16px, 2vw, 28px); }
.nav__link { font-size: .9375rem; font-weight: 500; color: var(--mws-ink-500); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--mws-primary-900); }
.nav__link[aria-current="page"] { font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 14px; }
/* Phone is a filled secondary-blue pill; login is the one red button on the site. */
.nav__tel {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 20px; border-radius: var(--mws-radius-sm);
  background: var(--mws-secondary-500); color: var(--mws-primary-900);
  font-size: .875rem; font-weight: 600; line-height: 1; white-space: nowrap;
}
.nav__tel:hover { background: var(--mws-secondary-600); color: var(--mws-primary-900); }
.nav__login {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 20px; border-radius: var(--mws-radius-sm);
  background: #C8102E; color: #fff;
  font-size: .875rem; font-weight: 600; line-height: 1; white-space: nowrap;
}
.nav__login:hover { background: #A80D26; color: #fff; }
.nav__login { gap: 8px; }

.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: none; color: var(--mws-ink-900);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-sm);
  cursor: pointer;
}

/* --------------------------------------------------------------- 6. Hero */
.hero {
  background: linear-gradient(100deg, #24262F 0%, #33364A 45%, #4A4E63 100%);
  color: #fff; position: relative; isolation: isolate;
  padding-block: clamp(64px, 9vw, 110px) clamp(72px, 8vw, 96px);
}
/* A diagonal dark gradient over the hero, heaviest at the left so the headline
   keeps its contrast. When real photography of drivers and vans exists, set it
   as background-image on .hero. */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(100deg, rgba(26,27,35,.55) 0%, rgba(36,38,47,.3) 45%, rgba(36,38,47,0) 80%);
}
.hero h1 { color: #fff; max-width: 19em; }
.hero__cta { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 40px; margin-top: 30px; padding-bottom: 40px; }
.hero__cta .btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* Track-a-delivery panel — a floating white card, not part of the dark hero */
.track {
  margin-top: 0; padding: 22px clamp(20px, 3vw, 28px);
  background: #fff;
  border: 0;
  border-radius: var(--mws-radius-lg);
  box-shadow: 0 12px 32px rgba(10,9,40,.28);
  max-width: 34rem;
  display: flex; flex-wrap: wrap; align-items: flex-end; gap: 16px 22px;
}
.track .label { color: var(--mws-ink-500); margin-bottom: 8px; display: block; }
.track__row { display: flex; flex: 1 1 260px; min-width: 200px; gap: 10px; margin-top: 0; }
.track input {
  flex: 1 1 14rem; min-height: 44px; padding: 0 14px;
  font: inherit; font-size: .9375rem; color: var(--mws-ink-900);
  background: #fff; border: 1px solid var(--mws-line-300);
  border-radius: var(--mws-radius-sm);
}
.track input::placeholder { color: var(--mws-ink-450); }
.track .btn--accent { height: 44px; min-height: 44px; }

/* ------------------------------------------------------ 7. Cards & panels */
.card {
  background: var(--mws-surface-000);
  border: 1px solid var(--mws-line-200);
  border-radius: var(--mws-radius-lg);
  padding: clamp(22px, 2.4vw, 30px);
  display: flex; flex-direction: column; gap: 12px;
}
.card--flush { padding: 0; overflow: hidden; }
.card--raised { box-shadow: var(--mws-shadow-card); }
.card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 20px;
  background: var(--mws-surface-100);
  border-bottom: 1px solid var(--mws-line-100);
}
.card__body { padding: 22px 20px; display: flex; flex-direction: column; gap: 18px; }

.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: var(--mws-radius-pill);
  background: var(--mws-primary-100);
  font-size: .6875rem; font-weight: 600; color: var(--mws-secondary-700);
  white-space: nowrap;
}
.chip::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--mws-secondary-600);
}

/* Custody ledger — a full-width strip of columns, one per handover */
.custody {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-lg);
  overflow: hidden; background: #fff; box-shadow: var(--mws-shadow-card);
}
.custody__step {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 26px; border-right: 1px solid var(--mws-line-100);
}
.custody__step:nth-child(3n) { border-right: 0; }
.custody__step:nth-child(-n+3) { border-bottom: 1px solid var(--mws-line-100); }
.custody__step:last-child { background: var(--mws-surface-100); }
.custody__step .label { display: inline-flex; align-items: center; gap: 8px; }
.custody__step .label::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--mws-secondary-500); flex-shrink: 0;
}
.custody__when {
  font-size: 1.875rem; font-weight: 800; letter-spacing: -.02em;
  line-height: 1; color: var(--mws-primary-900);
}
.custody__what { font-size: .84375rem; line-height: 1.5; color: var(--mws-ink-500); }
.custody__head {
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 12px; padding: 20px 0 18px;
}

/* Numbered steps — one bordered grid, hairline dividers, no gaps */
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: var(--mws-line-200);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-lg);
  overflow: hidden;
}
.steps > li {
  background: #fff; padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
}
.step__num {
  font-size: 1.375rem; font-weight: 800; letter-spacing: -.02em;
  color: var(--mws-secondary-500); line-height: 1;
}

/* Feature ledger (MWS Connect) — label left, detail right, alternating rows */
.features {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1px; background: var(--mws-line-200);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-lg);
  overflow: hidden;
}
.features > li {
  background: #fff; padding: 20px 24px;
  display: flex; flex-wrap: wrap; align-items: baseline;
  justify-content: space-between; gap: 8px 16px;
}
.features > li:nth-child(odd) { background: var(--mws-surface-100); }
.features strong { font-size: .90625rem; font-weight: 600; color: var(--mws-ink-900); white-space: nowrap; }
.features span { font-size: .8125rem; color: var(--mws-ink-500); text-align: right; }

/* ------------------------------------------------------------- 8. Stats */
/* Same strip treatment as the custody ledger: one bordered card, per-cell rules. */
.stats {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-lg);
  overflow: hidden; background: #fff; box-shadow: var(--mws-shadow-card);
}
.stat {
  display: flex; flex-direction: column; gap: 8px;
  padding: 24px 26px; border-right: 1px solid var(--mws-line-100);
}
.stat:last-child { border-right: 0; background: var(--mws-surface-100); }
.stat__fig { font-size: 1.875rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; color: var(--mws-primary-900); }
.stat__label { font-size: .84375rem; line-height: 1.5; color: var(--mws-ink-500); }

/* ------------------------------------------------------------- 9. Video */
.facade {
  position: relative; display: block; width: 100%; aspect-ratio: 16/9;
  padding: 0; border: 0; border-radius: var(--mws-radius-lg);
  overflow: hidden; cursor: pointer; background: var(--mws-ink-900);
}
.facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.facade__play {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  display: flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; border-radius: 50%; background: #fff;
  box-shadow: var(--mws-shadow-play);
  transition: transform 160ms var(--mws-ease);
}
.facade:hover .facade__play { transform: scale(1.06); }
.facade__time {
  position: absolute; right: 14px; bottom: 12px; padding: 3px 8px;
  background: rgba(20,21,46,.85); color: #fff;
  font-size: .75rem; font-weight: 600; border-radius: var(--mws-radius-sm);
}
.facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.credit {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px 18px; background: var(--mws-surface-000);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-md);
  font-size: .8125rem; line-height: 1.5; color: var(--mws-ink-700);
}
.credit svg { flex-shrink: 0; margin-top: 1px; }

/* -------------------------------------------------------- 10. Placeholder
   Used where real material is still outstanding — testimonials, photography.
   Deliberately obvious: an unfinished section should look unfinished.    */
.placeholder {
  border: 1px dashed var(--mws-line-300); border-radius: var(--mws-radius-lg);
  background: var(--mws-surface-050);
  padding: clamp(24px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 10px;
}
.placeholder__tag {
  font-size: .6875rem; font-weight: 700; letter-spacing: .10em;
  text-transform: uppercase; color: var(--mws-error);
}

/* ------------------------------------------------------------ 11. Footer */
.footer {
  background: var(--mws-surface-050);
  border-top: 1px solid var(--mws-line-200);
  padding-block: clamp(40px, 5vw, 56px) 28px;
}
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: clamp(28px, 3vw, 40px); }
.footer h2 { font-size: .6875rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase; color: var(--mws-ink-450); margin-bottom: 14px; }
.footer li + li { margin-top: 10px; }
.footer a, .footer li { font-size: .875rem; color: var(--mws-ink-500); }
.footer a:hover { color: var(--mws-primary-900); }
.footer__bar {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  margin-top: clamp(32px, 4vw, 44px); padding-top: 22px;
  border-top: 1px solid var(--mws-line-200);
  font-size: .8125rem; color: var(--mws-ink-450);
}
.social { display: flex; flex-wrap: wrap; gap: 12px; }
.social a {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center; color: var(--mws-ink-500);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-sm);
}
.social a:hover { border-color: var(--mws-primary-900); color: var(--mws-primary-900); }

/* --------------------------------------------------------- 12. Responsive */
@media (max-width: 1024px) {
  .split, .split--even { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .steps, .custody { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .custody__step { border-right: 1px solid var(--mws-line-100); border-bottom: 1px solid var(--mws-line-100); }
  .custody__step:nth-child(3n) { border-right: 1px solid var(--mws-line-100); }
  .custody__step:nth-child(2n) { border-right: 0; }
  .custody__step:nth-last-child(-n+2) { border-bottom: 0; }
  .stats  {
    grid-template-columns: repeat(2, minmax(0,1fr));
    border: 0; border-radius: 0; box-shadow: none; background: none; gap: 16px;
  }
  .stat {
    border-right: 0; border: 1px solid var(--mws-line-200);
    border-radius: var(--mws-radius-lg); background: #fff;
    box-shadow: var(--mws-shadow-card);
  }
  .stat:last-child { background: #fff; border-right: 1px solid var(--mws-line-200); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  /* Text before media when a two-column split stacks */
  .split > .split__media { order: 2; }
}

@media (max-width: 860px) {
  .nav {
    display: none;
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 6px var(--gutter) 20px;
    background: var(--mws-surface-000);
    border-bottom: 1px solid var(--mws-line-200);
    box-shadow: 0 14px 24px rgba(20,21,46,.08);
  }
  .nav[data-open="true"] { display: flex; }
  .nav[data-open="true"] .nav__link {
    padding-block: 14px; font-size: 1rem;
    border-bottom: 1px solid var(--mws-line-100);
  }
  .nav[data-open="true"] .nav__actions {
    flex-direction: column; align-items: stretch; gap: 12px; margin-top: 16px;
  }
  .nav[data-open="true"] .btn { width: 100%; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .cols-3, .cols-4, .cols-2 { grid-template-columns: 1fr; }
  .steps, .custody { grid-template-columns: 1fr; }
  .custody__step { border-right: 0; border-bottom: 1px solid var(--mws-line-100); }
  .custody__step:last-child { border-bottom: 0; }
  .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta .btn, .section .btn { width: 100%; }
}

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

@media print {
  .header, .nav-toggle, .facade, .hero::before { display: none !important; }
  body { background: #fff; }
}

/* ========================================================== 13. Forms
   Extends the design system, which had no form controls specified.
   Error red #B4232B is the one colour outside the brand ramps — a red that
   reads as "wrong" is worth more here than a fourth shade of indigo.      */
.field { display: flex; flex-direction: column; gap: 6px; }
.field > label { font-size: .8125rem; font-weight: 600; color: var(--mws-ink-900); }
.field > label .opt { font-weight: 400; color: var(--mws-ink-450); }
.field .help { font-size: .8125rem; color: var(--mws-ink-450); }

.input, .select, .textarea {
  min-height: 48px; padding: 0 14px;
  font: inherit; font-size: .9375rem; color: var(--mws-ink-900);
  background: var(--mws-surface-000);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-sm);
  width: 100%;
  transition: border-color 160ms var(--mws-ease);
}
.textarea { padding: 12px 14px; min-height: auto; line-height: 1.55; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--mws-ink-450); }
.input:hover, .select:hover, .textarea:hover { border-color: var(--mws-line-300); }
.input:focus, .select:focus, .textarea:focus { border-color: var(--mws-primary-900); }
.input[aria-invalid="true"], .select[aria-invalid="true"], .textarea[aria-invalid="true"] {
  border-color: var(--mws-error);
}
.field .error { font-size: .8125rem; color: var(--mws-error); font-weight: 500; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.form-grid .span-2 { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* Intent cards — a choice, not a radio button */
.intent { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (max-width: 760px) { .intent { grid-template-columns: 1fr; } }
.intent label {
  display: flex; flex-direction: column; gap: 4px; cursor: pointer;
  min-height: 44px; padding: 16px;
  background: var(--mws-surface-000);
  border: 1px solid var(--mws-line-200); border-radius: var(--mws-radius-md);
  transition: border-color 160ms var(--mws-ease), background 160ms var(--mws-ease);
}
.intent input { position: absolute; opacity: 0; pointer-events: none; }
.intent label:hover { border-color: var(--mws-line-300); }
.intent input:checked + label,
.intent label:has(input:checked) {
  border-color: var(--mws-primary-900); background: var(--mws-primary-100);
}
.intent label:has(input:focus-visible) { outline: 3px solid var(--mws-secondary-500); outline-offset: 2px; }
.intent strong { font-size: .9375rem; }
.intent span { font-size: .8125rem; color: var(--mws-ink-450); line-height: 1.45; }

/* Consent — unticked by default, never required. CASL. */
.consent { display: flex; gap: 12px; align-items: flex-start; }
.consent input { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; }
.consent label { font-size: .875rem; line-height: 1.5; color: var(--mws-ink-500); }

/* Off-screen, not display:none — some bots skip fields they can tell are hidden. */
.honeypot { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.form-note { font-size: .8125rem; line-height: 1.5; color: var(--mws-ink-450); }
.form-status {
  padding: 14px 18px; border-radius: var(--mws-radius-md);
  font-size: .9375rem; line-height: 1.5;
}
.form-status--error { background: #FDF2F2; border: 1px solid var(--mws-error); color: #8A1A21; }
.form-status--ok    { background: var(--mws-primary-100); border: 1px solid var(--mws-secondary-600); color: var(--mws-primary-950); }
.form-status--note  { background: var(--mws-surface-100); border: 1px solid var(--mws-line-200); color: var(--mws-ink-500); }

/* Sticky booking panel on the contact page */
@media (min-width: 1025px) { .sticky-panel { position: sticky; top: 120px; } }

/* ------------------------------------------------ WhatsApp quote widget */
.wa-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; box-shadow: 0 6px 20px rgba(20,21,46,.28);
  transition: background 160ms var(--mws-ease);
}
.wa-fab:hover { background: #1EBE5A; }
.wa-fab svg { display: block; }
@media print { .wa-fab { display: none; } }

/* ------------------------------------------------ Cookie consent banner */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 16px 28px;
  padding: 18px 22px;
  background: #fff;
  border-top: 1px solid var(--mws-line-300);
  box-shadow: 0 -8px 28px rgba(20, 21, 46, .12);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner__text {
  flex: 1 1 22rem; min-width: 0; max-width: 58rem;
  margin: 0; font-size: .875rem; line-height: 1.55;
  color: var(--mws-ink-900); text-wrap: pretty;
}
.cookie-banner__text a { color: var(--mws-secondary-700); }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 12px; flex: 0 0 auto; }
.cookie-btn {
  min-height: 48px; min-width: 7.5rem;
  padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: .9375rem; font-weight: 600;
  border-radius: var(--mws-radius-sm); border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms var(--mws-ease), border-color 160ms var(--mws-ease), color 160ms var(--mws-ease);
}
.cookie-btn--accept { background: var(--mws-primary-900); color: #fff; }
.cookie-btn--accept:hover { background: var(--mws-primary-950); }
.cookie-btn--decline {
  background: #fff; color: var(--mws-ink-900); border-color: var(--mws-line-300);
}
.cookie-btn--decline:hover { border-color: var(--mws-primary-900); color: var(--mws-primary-900); }

.cookie-settings-link {
  padding: 0; background: none; border: 0; cursor: pointer;
  font: inherit; color: inherit; text-align: left;
}
.cookie-settings-link:hover { color: var(--mws-primary-950); text-decoration: underline; }

/* Lift the WhatsApp button above and clear of the banner while it is open */
body.cookie-open .wa-fab { z-index: 80; bottom: 118px; }

@media (max-width: 720px) {
  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1 1 auto; }
  body.cookie-open .wa-fab { bottom: 184px; }
}
@media print { .cookie-banner { display: none; } }
