/* ==========================================================================
   Déménagement Le Clan Panneton - styles.css
   Loaded non-blocking (preload+onload). Styles everything below the fold.
   Above-fold critical CSS is inlined in each page's <style> block.
   No @import · No framework · Target: Lighthouse ≥95 Performance
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (mirrors critical CSS vars - authoritative source)
   -------------------------------------------------------------------------- */

:root {
  /* Brand */
  --red:    #E3211A;
  --navy:   #16208C;
  --gold:   #D4A437;
  --white:  #ffffff;

  /* Surfaces */
  --ink:       #111827;   /* body text */
  --muted:     #4B5563;   /* secondary text */
  --bg-soft:   #F3F4F6;   /* light section bg */
  --navy-dark: #0d1660;

  /* Typography - LARGE for elderly readability */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-base: 1.20rem;           /* 19.2px min body */
  --fs-sm:   1.05rem;
  --fs-lg:   1.35rem;
  --fs-xl:   1.65rem;
  --fs-h1:   clamp(2.2rem, 6vw, 3.6rem);
  --fs-h2:   clamp(1.7rem, 4vw, 2.4rem);
  --fs-h3:   1.35rem;
  --lh:      1.65;

  /* Interaction */
  --tap:      56px;     /* minimum touch target height/width */
  --radius:   14px;
  --radius-sm: 8px;

  /* Layout */
  --maxw:       1160px;
  --gap:        1.5rem;
  --section-py: clamp(3rem, 8vw, 6rem);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(22,32,140,.10);
  --shadow:    0 6px 24px rgba(22,32,140,.15);
  --shadow-lg: 0 12px 40px rgba(22,32,140,.20);
}

/* --------------------------------------------------------------------------
   2. Reset & base (mirrors critical CSS - complete authoritative version)
   -------------------------------------------------------------------------- */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  color: var(--ink);
  line-height: var(--lh);
  background: var(--white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   3. Skip link
   -------------------------------------------------------------------------- */

.skip-link {
  position: absolute;
  top: -9999px;
  left: 1rem;
  padding: .75rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
  z-index: 9999;
  text-decoration: none;
  font-size: var(--fs-base);
}

.skip-link:focus {
  top: 0;
}

/* --------------------------------------------------------------------------
   4. Layout utilities
   -------------------------------------------------------------------------- */

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* --------------------------------------------------------------------------
   5. Typography scale
   -------------------------------------------------------------------------- */

h1 {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
}

p {
  max-width: 65ch;
}

a {
  color: var(--navy);
}

strong {
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   6. Site header (sticky, above-fold - mirrored for completeness)
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(22,32,140,.08);
  border-bottom: 3px solid var(--red);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: .75rem;
  min-height: 72px;
}

.site-header__logo img {
  height: 48px;
  width: auto;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-left: auto;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
}

.nav__link {
  display: flex;
  align-items: center;
  height: var(--tap);
  padding-inline: .9rem;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--radius-sm);
  transition: background .15s, color .15s;
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  background: var(--bg-soft);
  color: var(--red);
}

/* --------------------------------------------------------------------------
   8. Language toggle
   -------------------------------------------------------------------------- */

.lang-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: .95rem;
}

.lang-toggle__link {
  color: var(--navy);
  text-decoration: none;
  padding: .3rem .5rem;
  border-radius: 4px;
}

.lang-toggle__link--active {
  color: var(--red);
}

.lang-toggle__link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   9. Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: var(--tap);
  padding: .75rem 1.5rem;
  font-family: var(--font);
  font-size: var(--fs-base);
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
  transition: background .2s, color .2s, border-color .2s, transform .1s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(.97);
}

.btn--call {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn--call:hover {
  background: #c41a14;
  border-color: #c41a14;
}

.btn--quote {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--quote:hover {
  background: var(--navy-dark);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: rgba(255,255,255,.15);
}

/* --------------------------------------------------------------------------
   10. Call bar (mobile fixed bottom)
   -------------------------------------------------------------------------- */

.callbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
  background: var(--red);
  border-top: 3px solid #c41a14;
}

.callbar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: 100%;
  padding: 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: .01em;
}

/* --------------------------------------------------------------------------
   11. Hero (above-fold - mirrored for completeness)
   -------------------------------------------------------------------------- */

.hero {
  background:
    linear-gradient(rgba(13,22,96,.80) 0%, rgba(22,32,140,.70) 100%),
    url('/assets/img/montreal.jpg') center/cover no-repeat;
  color: var(--white);
  padding: clamp(4rem,10vw,8rem) 0 clamp(3rem,8vw,6rem);
  position: relative;
  overflow: hidden;
}

.hero::before { display: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.hero__logo {
  margin-inline: auto;
  margin-bottom: 2rem;
  max-width: 360px;
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.hero__sub {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  opacity: .92;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* --------------------------------------------------------------------------
   12. Section primitives
   -------------------------------------------------------------------------- */

.section {
  padding: var(--section-py) 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background: var(--bg-soft);
}

.section--light {
  background: var(--white);
}

.section--navy {
  background: var(--navy);
  color: var(--white);
}

.section--navy h1,
.section--navy h2,
.section--navy h3,
.section--navy p {
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.section__title {
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.2;
}

.section__sub {
  color: var(--muted);
  font-size: var(--fs-lg);
  margin-top: .75rem;
}

.section--navy .section__sub {
  color: rgba(255,255,255,.82);
}

/* --------------------------------------------------------------------------
   13. Card grid
   -------------------------------------------------------------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}

.card-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card__icon {
  width: 56px;
  height: 56px;
  background: rgba(227,33,26,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.card__title {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--navy);
}

.card__body {
  color: var(--muted);
  font-size: var(--fs-base);
  flex: 1;
}

/* Cards inside navy section */
.section--navy .card {
  background: rgba(255,255,255,.07);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
}

.section--navy .card__title {
  color: var(--white);
}

.section--navy .card__body {
  color: rgba(255,255,255,.82);
}

.section--navy .card__icon {
  background: rgba(255,255,255,.12);
  color: var(--white);
}

/* --------------------------------------------------------------------------
   14. Badge
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .3rem .75rem;
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 700;
}

.badge--gold {
  background: rgba(212,164,55,.15);
  color: #8a6200;
}

/* --------------------------------------------------------------------------
   15. Trust strip
   -------------------------------------------------------------------------- */

.trust-strip {
  background: var(--navy);
  color: var(--white);
  padding: 1.5rem 0;
  border-top: 4px solid var(--red);
}

.trust-strip__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 6vw, 5rem);
  flex-wrap: wrap;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-align: left;
}

.trust-item__icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.trust-item__value {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.trust-item__label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.8);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   16. Testimonials / Reviews
   -------------------------------------------------------------------------- */

.testimonials {
  /* Semantic section class for JS targeting - uses .section.section--white styling */
}

/* --------------------------------------------------------------------------
   Reviews slider carousel
   -------------------------------------------------------------------------- */
.reviews-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.reviews-slider__track {
  display: flex;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.reviews-slider__track .quote-card {
  flex: 0 0 100%;
  min-width: 0;
  border-radius: 0;
}

.reviews-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.reviews-slider__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-height: unset;
  border: 2px solid var(--navy);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  transition: background .15s, color .15s;
  padding: 0;
}

.reviews-slider__btn:hover {
  background: var(--navy);
  color: var(--white);
}

.reviews-slider__dots {
  display: flex;
  gap: .5rem;
}

.reviews-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(22,32,140,.2);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}

.reviews-slider__dot--active {
  background: var(--red);
  transform: scale(1.3);
}

.quote-card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  position: relative;
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: .75rem;
  color: var(--gold);
}

.stars svg,
.stars__icon {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.quote-card__text {
  font-size: var(--fs-lg);
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.quote-card__text::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--gold);
  line-height: 0;
  vertical-align: -.5em;
  margin-right: .15em;
}

.quote-card__author {
  font-weight: 700;
  color: var(--navy);
}

.google-badge {
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--gold);
  width: fit-content;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow .2s, border-color .2s;
}

.google-badge:hover {
  box-shadow: var(--shadow);
  border-color: #c49030;
}

.google-badge__stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.google-badge__label {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--ink);
}

.google-badge__link {
  font-size: var(--fs-sm);
  color: var(--navy);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   17. Area cards
   -------------------------------------------------------------------------- */

.areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}

.area-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}

.area-card__photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.area-card__city,
.area-card__address,
.area-card__phone,
.area-card dl {
  padding-inline: 1.5rem;
}

.area-card__city { padding-top: 1.25rem; }
.area-card dl    { padding-bottom: 1.25rem; }

.area-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.area-card__city {
  font-size: var(--fs-xl);
  font-weight: 900;
  color: var(--navy);
  margin-bottom: .5rem;
}

.area-card__address address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.6;
}

.area-card__phone a {
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.area-card__phone a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   18. Contact form
   -------------------------------------------------------------------------- */

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 600px;
}

.form-group,
.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.field__label {
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--ink);
}

.field__input {
  border: 2px solid #D1D5DB;
  border-radius: var(--radius-sm);
  padding: .8rem 1rem;
  font-family: var(--font);
  font-size: var(--fs-base);
  min-height: var(--tap);
  width: 100%;
  transition: border-color .2s;
  background: var(--white);
  color: var(--ink);
}

.field__input:focus {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-color: var(--navy);
}

.field__input.is-invalid {
  border-color: var(--red);
}

.field__error {
  font-size: var(--fs-sm);
  color: var(--red);
  min-height: 1.2em;
  display: block;
}

textarea.field__input {
  min-height: 120px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  /* inherits .btn and .btn--quote */
}

.form-status {
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}

.form-status--success {
  background: #F0FDF4;
  color: #166534;
  border: 1px solid #BBF7D0;
  display: block;
}

.form-status--error {
  background: #FEF2F2;
  color: #991B1B;
  border: 1px solid #FECACA;
  display: block;
}

.form-honeypot {
  display: none !important;
}

/* --------------------------------------------------------------------------
   19. Page banner (inner pages: services, about, contact)
   -------------------------------------------------------------------------- */

.page-banner {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}

.page-banner__title {
  font-size: var(--fs-h1);
  font-weight: 900;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.page-banner__sub {
  font-size: var(--fs-lg);
  color: rgba(255,255,255,.85);
}

/* --------------------------------------------------------------------------
   20. CTA banner (navy section, centered)
   -------------------------------------------------------------------------- */

.section--navy .cta-inner {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

.section--navy .cta-inner p {
  color: rgba(255,255,255,.85);
  max-width: 65ch;
  margin-inline: auto;
  margin-bottom: 2rem;
}

.section--navy .hero__actions {
  justify-content: center;
}

/* --------------------------------------------------------------------------
   21. Contact page layout
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.hours-table {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .35rem 1rem;
}

.hours-table dt {
  font-weight: 600;
}

.hours-table dd {
  margin: 0;
  color: var(--muted);
}

/* --------------------------------------------------------------------------
   22. About page
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-story p {
  margin-bottom: 1rem;
}

/* --------------------------------------------------------------------------
   23. Footer
   -------------------------------------------------------------------------- */

.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.85);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.footer__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer__logo img {
  height: 40px;
  width: auto;
  opacity: .9;
}

.footer__locations {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__location strong {
  color: var(--white);
  display: block;
  margin-bottom: .25rem;
}

.footer__location address {
  font-style: normal;
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer__location a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.footer__location a:hover {
  text-decoration: underline;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer__nav a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: var(--fs-sm);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__legal {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.5rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.55);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--gold);
}

/* --------------------------------------------------------------------------
   24. Responsive breakpoints
   -------------------------------------------------------------------------- */

/* ── Footer social links ───────────────────────────────────────────────── */

.footer__social {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  padding-block: 1.25rem;
  margin-bottom: .5rem;
}

.footer__social a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: .35rem .7rem;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 20px;
  transition: background .15s, color .15s, border-color .15s;
}

.footer__social a:hover {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.40);
}

.footer__social a[href*="spotify"],
.footer__social a[href*="podcast"] {
  color: var(--gold);
  border-color: var(--gold);
}

.footer__social a[href*="spotify"]:hover,
.footer__social a[href*="podcast"]:hover {
  background: rgba(212,164,55,.15);
}

/* ≤ 1024px - header: tighten actions to prevent stacking */
@media (max-width: 1024px) {
  .site-header__inner {
    gap: .5rem;
  }

  .btn--call {
    font-size: 1rem;
    padding: .65rem 1rem;
  }
}

/* ≤ 768px - footer, contact-grid, about-grid collapse to 1 col */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: .75rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* ≤ 767px - callbar + mobile nav (mirrors critical CSS) */
@media (max-width: 767px) {
  .callbar {
    display: block;
  }

  .site-header__inner {
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .nav__list {
    gap: 0;
  }

  .btn--call {
    display: none;
  }

  body {
    padding-bottom: 72px;
  }
}

/* ≤ 600px - hero logo smaller, trust-strip wraps to 2 cols */
@media (max-width: 600px) {
  .trust-strip__inner {
    gap: 1.5rem 2rem;
    justify-content: flex-start;
  }

  .trust-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 140px;
  }
}

/* ≤ 480px - trust-strip 1 col, card grid 1 col */
@media (max-width: 480px) {
  .site-header__logo img {
    height: 40px;
  }

  .hero__logo {
    max-width: 260px;
  }

  .trust-item {
    flex: 1 1 100%;
  }

  .trust-strip__inner {
    justify-content: flex-start;
  }

  .card-grid,
  .card-grid--2col {
    grid-template-columns: 1fr;
  }

  .areas {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   FAQ accordion (details/summary - works without JS)
   -------------------------------------------------------------------------- */
.faq__list {
  list-style: none;
  max-width: 820px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid rgba(22,32,140,.12);
}

.faq__item:first-child {
  border-top: 1px solid rgba(22,32,140,.12);
}

.faq__item details {
  padding: .25rem 0;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 1rem 1.25rem 1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--red);
  flex-shrink: 0;
  line-height: 1;
}

.faq__item details[open] summary::after {
  content: '−';
}

.faq__item summary:hover {
  color: var(--red);
}

.faq__answer {
  padding: .25rem 0 1.25rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   25. Accessibility
   -------------------------------------------------------------------------- */

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

  html {
    scroll-behavior: auto;
  }
}

.site-header__logo:focus-visible,
.nav__link:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   26. Print styles
   -------------------------------------------------------------------------- */

@media print {
  .callbar,
  .site-header__actions .btn--call,
  .nav {
    display: none;
  }
}
