/* ==========================================================================
   L&T Services — Commercial Cleaning, Adelaide SA
   Shared stylesheet. Design system: Soft UI Evolution / navy + steel blue.
   Type: Lexend (headings) + Source Sans 3 (body).
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand */
  --navy-900: #0b1220;
  --navy-800: #0f172a;
  --navy-700: #1b2a44;
  --navy-600: #334155;
  --slate-500: #556478;
  --slate-400: #7a8798;

  --accent-700: #075985;
  --accent-600: #0369a1;
  --accent-500: #0284c7;
  --accent-400: #38bdf8;
  --accent-50: #eff8fd;

  --bg: #ffffff;
  --bg-alt: #f6f9fc;
  --bg-deep: var(--navy-800);
  --fg: #101828;
  --fg-muted: #4a5568;
  --border: #e3e9f0;
  --border-strong: #cbd6e2;

  --success: #067647;
  --warning: #b54708;
  --danger: #b42318;

  /* Spacing scale (density 4/10 — standard) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  /* Radii + elevation (soft UI: softer than flat, clearer than neumorphism) */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow-sm: 0 2px 6px -1px rgba(16, 24, 40, .08), 0 1px 2px rgba(16, 24, 40, .04);
  --shadow-md: 0 12px 24px -10px rgba(16, 24, 40, .14), 0 2px 6px -2px rgba(16, 24, 40, .06);
  --shadow-lg: 0 28px 50px -22px rgba(11, 18, 32, .3), 0 4px 12px -6px rgba(16, 24, 40, .08);

  --ring: 0 0 0 3px rgba(2, 132, 199, .35);

  /* Motion (standard tier: 200-300ms) */
  --dur-fast: 150ms;
  --dur: 220ms;
  --dur-slow: 320ms;
  --ease: cubic-bezier(.4, 0, .2, 1);

  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px; /* clears the sticky header on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Lexend', system-ui, sans-serif;
  color: var(--navy-800);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 var(--space-4);
  text-wrap: balance;
}

h1 { font-size: clamp(2.1rem, 1.35rem + 2.9vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.65rem, 1.2rem + 1.8vw, 2.5rem); font-weight: 650; }
h3 { font-size: clamp(1.2rem, 1.05rem + .6vw, 1.45rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 var(--space-4); text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-700); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-500); }

img, svg, video { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--space-4); padding-left: 1.25em; }
li { margin-bottom: var(--space-2); }
strong { font-weight: 700; color: var(--navy-800); }
hr { border: 0; border-top: 1px solid var(--border); margin: var(--space-7) 0; }

/* Accessibility: never remove focus, just make it good-looking */
:focus-visible {
  outline: 2px solid var(--accent-500);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 20px;
  border-radius: 0 0 var(--r-md) 0; font-weight: 600;
}
.skip-link:focus { left: 0; color: #fff; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* --- Layout --------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 760px; }

.section { padding-block: clamp(56px, 7vw, 96px); }
.section-tight { padding-block: clamp(40px, 5vw, 64px); }
.section-alt { background: var(--bg-alt); }
.section-deep { background: var(--navy-800); color: #dbe4f0; }
.section-deep h2, .section-deep h3, .section-deep h4 { color: #fff; }
.section-deep a { color: var(--accent-400); }

.section-head { max-width: 720px; margin-bottom: var(--space-7); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--fg-muted); font-size: 1.09rem; margin-bottom: 0; }
.section-deep .section-head p { color: #a9b8cc; }

.eyebrow {
  display: inline-block;
  font-family: 'Lexend', sans-serif;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-600);
  margin-bottom: var(--space-3);
}
.section-deep .eyebrow { color: var(--accent-400); }

.grid { display: grid; gap: var(--space-5); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); }

.lede { font-size: 1.15rem; color: var(--fg-muted); }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px;                 /* touch target ≥44px */
  padding: 13px 26px;
  font-family: 'Lexend', sans-serif;
  font-size: 1rem; font-weight: 600; line-height: 1.2;
  text-decoration: none; white-space: nowrap;
  border: 1.5px solid transparent; border-radius: var(--r-md);
  cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease),
              border-color var(--dur) var(--ease), transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--accent-600); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--accent-700); color: #fff; box-shadow: var(--shadow-md); }

.btn-dark { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.btn-dark:hover { background: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }

.btn-ghost { background: transparent; color: var(--navy-800); border-color: var(--border-strong); }
.btn-ghost:hover { background: var(--bg-alt); color: var(--navy-800); border-color: var(--navy-600); }

.btn-light { background: #fff; color: var(--navy-800); box-shadow: var(--shadow-sm); }
.btn-light:hover { background: var(--accent-50); color: var(--navy-800); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .1); color: #fff; border-color: #fff; }

.btn-lg { min-height: 56px; padding: 16px 32px; font-size: 1.06rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.btn-row.center { justify-content: center; }

/* --- Cards ---------------------------------------------------------------- */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--fg-muted); margin-bottom: 0; }

a.card, .card-link { text-decoration: none; color: inherit; display: block; }
a.card:hover, .card-hover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}
a.card:hover h3 { color: var(--accent-700); }

.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--accent-50);
  color: var(--accent-700);
  margin-bottom: var(--space-4);
}
.card-icon svg { width: 24px; height: 24px; }

.card-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--space-4);
  font-family: 'Lexend', sans-serif; font-size: .93rem; font-weight: 600;
  color: var(--accent-700);
}
.card-arrow svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
a.card:hover .card-arrow svg { transform: translateX(4px); }

/* --- Header / nav --------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-5);
  min-height: 72px;
}
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--navy-800); flex: none;
}
.brand-mark {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  background: var(--navy-800); color: #fff;
  border-radius: var(--r-md);
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: .95rem;
  letter-spacing: -.03em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.16rem; letter-spacing: -.02em; }
.brand-tag { font-size: .74rem; color: var(--slate-500); letter-spacing: .04em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: var(--space-1); }
.nav-links > a, .nav-dd > button {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 10px 13px;
  font-family: 'Lexend', sans-serif; font-size: .95rem; font-weight: 500;
  color: var(--navy-700); text-decoration: none; white-space: nowrap;
  background: none; border: 0; border-radius: var(--r-sm);
  cursor: pointer;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
/* The in-menu CTA is for the mobile drawer only — .nav-actions carries it on
   desktop. Without this you get two quote buttons side by side. */
.nav-links > .btn { display: none; }
.nav-links > a:hover, .nav-dd > button:hover { background: var(--bg-alt); color: var(--accent-700); }
.nav-links > a[aria-current="page"] { color: var(--accent-700); font-weight: 600; }

.nav-dd { position: relative; }
.nav-dd > button svg { width: 14px; height: 14px; transition: transform var(--dur) var(--ease); }
.nav-dd[data-open="true"] > button svg { transform: rotate(180deg); }

.nav-panel {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 288px; padding: var(--space-2);
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
}
.nav-dd[data-open="true"] .nav-panel { opacity: 1; visibility: visible; transform: translateY(0); }

/* Desktop reveal is pure CSS — hover for pointers, focus-within for keyboards.
   JS only tracks data-open for the mobile drawer, so the two never fight. */
@media (hover: hover) and (min-width: 901px) {
  .nav-dd:hover .nav-panel,
  .nav-dd:focus-within .nav-panel { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-dd:hover > button svg,
  .nav-dd:focus-within > button svg { transform: rotate(180deg); }
}
.nav-panel a {
  display: block; padding: 10px 12px; border-radius: var(--r-sm);
  text-decoration: none; color: var(--navy-700);
  font-family: 'Lexend', sans-serif; font-size: .92rem; font-weight: 500;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.nav-panel a span { display: block; font-family: 'Source Sans 3', sans-serif; font-size: .82rem; font-weight: 400; color: var(--slate-500); margin-top: 1px; }
.nav-panel a:hover { background: var(--accent-50); color: var(--accent-700); }

.nav-actions { display: flex; align-items: center; gap: var(--space-3); flex: none; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .95rem;
  color: var(--navy-800); text-decoration: none;
}
.nav-phone:hover { color: var(--accent-700); }
.nav-phone svg { width: 17px; height: 17px; color: var(--accent-600); }

.burger {
  display: none;
  width: 46px; height: 46px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--border-strong); border-radius: var(--r-md);
  cursor: pointer; color: var(--navy-800);
}
.burger svg { width: 22px; height: 22px; }
.burger .icon-close { display: none; }
.site-header[data-menu="open"] .burger .icon-close { display: block; }
.site-header[data-menu="open"] .burger .icon-open { display: none; }

/* Announcement strip */
.topbar {
  background: var(--navy-800); color: #c7d4e5;
  font-size: .86rem; letter-spacing: .01em;
}
.topbar .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-2) var(--space-5); padding-block: 9px; text-align: center; }
.topbar strong { color: #fff; font-weight: 600; }
.topbar a { color: #fff; font-weight: 600; }
.topbar-item { display: inline-flex; align-items: center; gap: 6px; }
.topbar-item svg { width: 15px; height: 15px; color: var(--accent-400); flex: none; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 45%, #14273f 100%);
  color: #d9e3f0;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 55% at 82% 12%, rgba(2, 132, 199, .3), transparent 65%),
    radial-gradient(45% 45% at 8% 88%, rgba(56, 189, 248, .14), transparent 70%);
  pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero-inner {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  align-items: center;
  padding-block: clamp(56px, 7.5vw, 104px);
}
.hero-copy p.lede { color: #b4c4d8; font-size: 1.18rem; max-width: 56ch; }

.hero-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); margin-bottom: var(--space-5); }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-pill);
  font-size: .84rem; font-weight: 600; color: #dce7f5;
}
.badge svg { width: 15px; height: 15px; color: var(--accent-400); flex: none; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--space-5);
  margin-top: var(--space-7);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero-trust div { min-width: 108px; }
.hero-trust dt { font-family: 'Lexend', sans-serif; font-size: 1.7rem; font-weight: 700; color: #fff; line-height: 1.1; }
/* Text variant — for commitments rather than big numeric stats. */
.hero-trust.is-text div { min-width: 150px; flex: 1 1 150px; }
.hero-trust.is-text dt { font-size: 1.02rem; font-weight: 600; line-height: 1.3; }
.hero-trust dd { margin: 3px 0 0; font-size: .87rem; color: #9db0c8; }

/* --- Quote form card ------------------------------------------------------ */
.quote-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  color: var(--fg);
}
.quote-card h2 { font-size: 1.5rem; margin-bottom: var(--space-2); }
.quote-card > p { color: var(--fg-muted); font-size: .95rem; margin-bottom: var(--space-5); }

.form-grid { display: grid; gap: var(--space-4); }
.form-row { display: grid; gap: var(--space-4); grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'Lexend', sans-serif; font-size: .87rem; font-weight: 600; color: var(--navy-700);
}
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: inherit; font-size: 1rem; color: var(--fg);
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.field textarea { min-height: 104px; resize: vertical; line-height: 1.55; }
.field select { appearance: none; cursor: pointer; padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23556478'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5' stroke='%23556478' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 13px center; background-size: 19px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent-500); box-shadow: var(--ring);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field .hint { font-size: .82rem; color: var(--slate-500); }
.field .error { font-size: .82rem; color: var(--danger); font-weight: 600; display: none; }
.field[data-invalid="true"] input,
.field[data-invalid="true"] select,
.field[data-invalid="true"] textarea { border-color: var(--danger); }
.field[data-invalid="true"] .error { display: block; }

.form-note { font-size: .84rem; color: var(--slate-500); text-align: center; margin: 0; }
.form-status { display: none; padding: var(--space-4); border-radius: var(--r-md); font-size: .95rem; }
.form-status[data-state="ok"] { display: block; background: #ecfdf3; border: 1px solid #abefc6; color: var(--success); }
.form-status[data-state="err"] { display: block; background: #fef3f2; border: 1px solid #fecdca; color: var(--danger); }

/* --- Feature / trust rows ------------------------------------------------- */
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--space-3); }
.tick-list li { display: flex; gap: 11px; align-items: flex-start; margin: 0; }
.tick-list svg { width: 21px; height: 21px; flex: none; margin-top: 2px; color: var(--accent-600); }
.section-deep .tick-list svg { color: var(--accent-400); }

.split { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); align-items: center; }

.stat-band { display: grid; gap: var(--space-5); grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); }
.stat { text-align: center; }
.stat dt { font-family: 'Lexend', sans-serif; font-size: clamp(2rem, 1.4rem + 2vw, 2.8rem); font-weight: 700; color: var(--navy-800); line-height: 1.05; }
.stat dd { margin: var(--space-2) 0 0; color: var(--fg-muted); font-size: .95rem; }
.section-deep .stat dt { color: #fff; }
.section-deep .stat dd { color: #a9b8cc; }

/* Numbered process steps */
.steps { counter-reset: step; display: grid; gap: var(--space-5); }
.step { position: relative; padding-left: 62px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: var(--accent-600); color: #fff;
  border-radius: var(--r-md);
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.05rem;
}
.step h3 { margin-bottom: var(--space-2); }
.step p { color: var(--fg-muted); margin-bottom: 0; }
.section-deep .step p { color: #a9b8cc; }
.section-deep .step::before { background: var(--accent-500); }

/* Testimonials */
.quote-block {
  background: #fff; border: 1px solid var(--border); border-left: 3px solid var(--accent-600);
  border-radius: var(--r-lg); padding: var(--space-6); box-shadow: var(--shadow-xs);
}
.quote-block blockquote { margin: 0 0 var(--space-4); font-size: 1.05rem; color: var(--fg); }
.quote-block blockquote::before { content: "\201C"; }
.quote-block blockquote::after { content: "\201D"; }
.quote-attrib { display: flex; align-items: center; gap: 12px; }
.quote-avatar {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center;
  font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .9rem;
}
.quote-attrib cite { font-style: normal; font-family: 'Lexend', sans-serif; font-weight: 600; font-size: .93rem; color: var(--navy-800); display: block; }
.quote-attrib span { font-size: .85rem; color: var(--slate-500); }

/* Logo / accreditation strip */
.cred-strip { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--space-4) var(--space-6); }
.cred {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  font-family: 'Lexend', sans-serif; font-size: .89rem; font-weight: 600; color: var(--navy-700);
  box-shadow: var(--shadow-xs);
}
.cred svg { width: 19px; height: 19px; color: var(--accent-600); flex: none; }

/* Pill list (suburbs, sectors) */
.pill-list { display: flex; flex-wrap: wrap; gap: var(--space-2); list-style: none; padding: 0; margin: 0; }
.pill-list li { margin: 0; }
.pill-list a, .pill-list span {
  display: inline-block; padding: 8px 15px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-pill);
  font-size: .9rem; color: var(--navy-700); text-decoration: none;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.pill-list a:hover { border-color: var(--accent-500); background: var(--accent-50); color: var(--accent-700); }

/* FAQ */
.faq { display: grid; gap: var(--space-3); }
.faq details {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq details[open] { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-family: 'Lexend', sans-serif; font-size: 1.03rem; font-weight: 600; color: var(--navy-800);
  cursor: pointer; list-style: none;
  transition: background var(--dur-fast) var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-alt); }
.faq summary::after {
  content: ""; flex: none; width: 12px; height: 12px;
  border-right: 2px solid var(--accent-600); border-bottom: 2px solid var(--accent-600);
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform var(--dur) var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq .faq-body { padding: 0 var(--space-6) var(--space-5); color: var(--fg-muted); }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* Breadcrumbs */
.crumbs { font-size: .87rem; color: var(--slate-500); padding-block: var(--space-4); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 0; }
.crumbs li { margin: 0; display: flex; align-items: center; gap: 7px; }
.crumbs li + li::before { content: "/"; color: var(--border-strong); }
.crumbs a { color: var(--slate-500); text-decoration: none; }
.crumbs a:hover { color: var(--accent-700); text-decoration: underline; }
.crumbs [aria-current="page"] { color: var(--navy-700); font-weight: 600; }

/* Final CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy-800), #17304f);
  color: #d9e3f0;
  border-radius: var(--r-xl);
  padding: clamp(32px, 5vw, 60px);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #adbdd2; max-width: 62ch; margin-inline: auto; }

/* --- Footer --------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #9db0c8; font-size: .94rem; padding-block: var(--space-8) var(--space-5); }
.footer-grid { display: grid; gap: var(--space-6); grid-template-columns: minmax(0, 1.4fr) repeat(auto-fit, minmax(150px, 1fr)); margin-bottom: var(--space-7); }
.site-footer h4 { color: #fff; font-size: .84rem; letter-spacing: .09em; text-transform: uppercase; margin-bottom: var(--space-4); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: #9db0c8; text-decoration: none; transition: color var(--dur-fast) var(--ease); }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .brand { color: #fff; margin-bottom: var(--space-4); }
.site-footer .brand-mark { background: #fff; color: var(--navy-800); }
.site-footer .brand-tag { color: var(--slate-400); }
.footer-about p { max-width: 42ch; margin-bottom: var(--space-4); }
.footer-contact { display: grid; gap: 9px; }
.footer-contact a { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; }
.footer-contact svg { width: 17px; height: 17px; color: var(--accent-400); flex: none; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: var(--space-3) var(--space-5);
  align-items: center; justify-content: space-between;
  padding-top: var(--space-5); border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .86rem; color: var(--slate-400);
}
.footer-bottom p { margin: 0; }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* Sticky mobile call bar */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  gap: var(--space-2); padding: 10px var(--space-4) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px -12px rgba(16, 24, 40, .3);
}
.callbar .btn { flex: 1; min-height: 50px; padding-inline: 14px; font-size: .96rem; }

/* --- Scroll reveal (progressive enhancement) ------------------------------ */
.reveal { opacity: 0; transform: translateY(18px); }
.js .reveal { transition: opacity 450ms var(--ease), transform 450ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* --- Responsive ----------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy { max-width: 640px; }
}

@media (max-width: 900px) {
  .burger { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--space-3) var(--gutter) var(--space-5);
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .site-header[data-menu="open"] .nav-links { display: flex; }
  .nav { position: relative; }
  .nav-links > a, .nav-dd > button {
    width: 100%; justify-content: space-between;
    padding: 14px 4px; font-size: 1.02rem;
    border-bottom: 1px solid var(--bg-alt); border-radius: 0;
  }
  .nav-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; border-radius: 0;
    padding: 0 0 var(--space-3) var(--space-4);
    display: none; min-width: 0;
  }
  .nav-dd[data-open="true"] .nav-panel { display: block; }
  .nav-panel a span { display: none; }
  .nav-actions .nav-phone { display: none; }
  .nav-actions .btn { display: none; }
  .nav-links .btn { display: flex; width: 100%; margin-top: var(--space-4); }
}

@media (max-width: 720px) {
  body { font-size: 16.5px; padding-bottom: 76px; } /* room for the call bar */
  .callbar { display: flex; }
  /* Three stacked strap lines push the hero off screen. The phone is already
     in the call bar, and the service area is repeated in the hero copy. */
  .topbar .topbar-item:first-child,
  .topbar .topbar-item:last-child { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding-block: clamp(44px, 9vw, 64px); }
  .card { padding: var(--space-5); }
  .faq summary { padding: var(--space-4) var(--space-5); font-size: .98rem; }
  .faq .faq-body { padding: 0 var(--space-5) var(--space-4); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
  .hero-trust { gap: var(--space-4); }
  .hero-trust div { min-width: 90px; }
}

@media (max-width: 420px) {
  .brand-tag { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Motion + print preferences ------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-header, .callbar, .cta-band, .site-footer, .topbar { display: none !important; }
  body { font-size: 12pt; color: #000; padding-bottom: 0; }
  a { text-decoration: underline; }
}
