/* ==========================================================================
   London Theme — Style: FVM (Free Vending Machines)
   Ported 1:1 from the FVM design system.
   Loaded only when active_style === 'fvm' via london/style-fvm library.
   All rules are scoped to .london-style-fvm body class where they could
   conflict with London base styles; section/component classes use the
   fvm- prefix so there is no collision.
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS — override London's :root variables
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  /* Brand navy axis */
  --fvm-navy-900: #00072e;
  --fvm-navy-800: #000b45;
  --fvm-navy-700: #001060;
  --fvm-navy-600: #0a1f7a;
  --fvm-navy-500: #16308f;
  --fvm-navy-400: #34509f;
  --fvm-navy-300: #7d8fc4;
  --fvm-navy-200: #b9c4e0;
  --fvm-navy-100: #e3e8f4;
  --fvm-navy-50:  #f2f5fb;

  /* Royal blue — interaction */
  --fvm-blue-700: #1340b8;
  --fvm-blue-600: #1657d9;
  --fvm-blue-500: #2a6df0;
  --fvm-blue-400: #5a90f5;
  --fvm-blue-100: #dde9fd;
  --fvm-blue-50:  #eef4ff;

  /* Fresh green — "free / positive" */
  --fvm-green-700: #137a4f;
  --fvm-green-600: #1a9b64;
  --fvm-green-100: #d4f3e4;
  --fvm-green-50:  #eafaf2;

  /* Amber — highlights */
  --fvm-amber-600: #e09a05;
  --fvm-amber-500: #f6b412;
  --fvm-amber-400: #ffc94a;
  --fvm-amber-100: #fdeecb;

  /* Neutrals */
  --fvm-white:    #ffffff;
  --fvm-grey-50:  #f7f8fb;
  --fvm-grey-200: #e1e6ef;
  --fvm-grey-300: #cbd3e1;
  --fvm-grey-400: #9aa6bd;
  --fvm-grey-500: #6b7790;
  --fvm-grey-700: #333d54;

  /* Semantic */
  --fvm-text-body:    var(--fvm-grey-700);
  --fvm-text-muted:   var(--fvm-grey-500);
  --fvm-text-subtle:  var(--fvm-grey-400);
  --fvm-text-strong:  var(--fvm-navy-900);
  --fvm-border:       var(--fvm-grey-200);

  /* Typography */
  --fvm-font-display: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --fvm-font-sans:    'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --fvm-fw-semibold:  600;
  --fvm-fw-bold:      700;
  --fvm-fw-extrabold: 800;
  --fvm-fw-black:     900;

  /* Spacing */
  --fvm-space-1:  0.25rem;   /*  4 */
  --fvm-space-2:  0.5rem;    /*  8 */
  --fvm-space-3:  0.75rem;   /* 12 */
  --fvm-space-4:  1rem;      /* 16 */
  --fvm-space-5:  1.5rem;    /* 24 */
  --fvm-space-6:  2rem;      /* 32 */
  --fvm-space-8:  3rem;      /* 48 */
  --fvm-space-10: 5rem;      /* 80 */

  /* Radii */
  --fvm-radius-xs:   4px;
  --fvm-radius-sm:   8px;
  --fvm-radius-md:   12px;
  --fvm-radius-lg:   16px;
  --fvm-radius-xl:   24px;
  --fvm-radius-pill: 999px;

  /* Shadows — cool navy-tinted */
  --fvm-shadow-xs: 0 1px 2px rgba(0, 16, 96, 0.06);
  --fvm-shadow-sm: 0 2px 6px rgba(0, 16, 96, 0.08);
  --fvm-shadow-md: 0 8px 20px rgba(0, 16, 96, 0.10);
  --fvm-shadow-lg: 0 16px 40px rgba(0, 16, 96, 0.14);
  --fvm-shadow-xl: 0 28px 64px rgba(0, 16, 96, 0.18);
  --fvm-shadow-focus: 0 0 0 3px rgba(42, 109, 240, 0.35);

  /* Motion */
  --fvm-ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --fvm-dur-fast:  140ms;
  --fvm-dur-base:  220ms;
  --fvm-dur-slow:  400ms;
}

/* --------------------------------------------------------------------------
   BASE — scoped resets for FVM page
   -------------------------------------------------------------------------- */
.london-style-fvm {
  font-family: var(--fvm-font-sans);
  background: var(--fvm-white);
  color: var(--fvm-text-body);
}

.london-style-fvm *,
.london-style-fvm *::before,
.london-style-fvm *::after { box-sizing: border-box; }

.london-style-fvm img { display: block; max-width: 100%; }
.london-style-fvm a { color: var(--fvm-blue-600); text-decoration: none; }
.london-style-fvm a:hover { text-decoration: underline; }
.london-style-fvm ul { list-style: none; margin: 0; padding: 0; }
.london-style-fvm h1,
.london-style-fvm h2,
.london-style-fvm h3,
.london-style-fvm h4 { margin: 0; }
.london-style-fvm p { margin: 0; }
.london-style-fvm button:not(.fvm-btn) { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* Utilities */
.fvm-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.fvm-eyebrow {
  display: inline-block;
  font-family: var(--fvm-font-sans);
  font-size: 0.875rem;
  font-weight: var(--fvm-fw-bold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fvm-blue-600);
  margin-bottom: var(--fvm-space-3);
}

.fvm-eyebrow--amber { color: var(--fvm-amber-400); }

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.fvm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--fvm-space-2);
  padding: 0 var(--fvm-space-5);
  height: 44px;
  font-family: var(--fvm-font-sans);
  font-size: 1rem;
  font-weight: var(--fvm-fw-bold);
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--fvm-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--fvm-dur-fast) var(--fvm-ease-out),
    color var(--fvm-dur-fast) var(--fvm-ease-out),
    border-color var(--fvm-dur-fast) var(--fvm-ease-out),
    box-shadow var(--fvm-dur-fast) var(--fvm-ease-out),
    transform var(--fvm-dur-fast) var(--fvm-ease-out);
}

.fvm-btn:active { transform: scale(0.97); }

.fvm-btn:focus-visible {
  outline: none;
  box-shadow: var(--fvm-shadow-focus);
}

.fvm-btn--primary {
  background: var(--fvm-navy-700);
  color: #fff;
  border-color: var(--fvm-navy-700);
}
.fvm-btn--primary:hover {
  background: var(--fvm-navy-800);
  border-color: var(--fvm-navy-800);
  color: #fff;
  text-decoration: none;
}

.fvm-btn--outline {
  background: transparent;
  color: var(--fvm-navy-700);
  border-color: var(--fvm-navy-700);
}
.fvm-btn--outline:hover {
  background: var(--fvm-navy-50);
  color: var(--fvm-navy-700);
  text-decoration: none;
}

.fvm-btn--on-dark {
  background: #fff;
  color: var(--fvm-navy-700);
  border-color: #fff;
}
.fvm-btn--on-dark:hover {
  background: var(--fvm-navy-100);
  border-color: var(--fvm-navy-100);
  color: var(--fvm-navy-700);
  text-decoration: none;
}

.fvm-btn--lg {
  height: 52px;
  padding: 0 var(--fvm-space-6);
  font-size: 1.125rem;
  border-radius: var(--fvm-radius-lg);
}

.fvm-btn--full { width: 100%; }

/* --------------------------------------------------------------------------
   BADGES
   -------------------------------------------------------------------------- */
.fvm-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--fvm-space-1);
  padding: 6px 14px;
  border-radius: var(--fvm-radius-pill);
  font-size: 0.875rem;
  font-weight: var(--fvm-fw-bold);
  line-height: 1;
}

.fvm-badge--free {
  background: var(--fvm-green-100);
  color: var(--fvm-green-700);
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.fvm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--fvm-white);
  border-bottom: 1px solid var(--fvm-border);
  transition:
    background var(--fvm-dur-base) var(--fvm-ease-out),
    box-shadow var(--fvm-dur-base) var(--fvm-ease-out);
}

.fvm-header--scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  box-shadow: var(--fvm-shadow-sm);
}

.fvm-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: var(--fvm-space-5);
}

.fvm-header__logo img { height: 68px; width: auto; }

/* Inline-SVG icons inject into [data-icon] spans; keep them centred in buttons/links. */
.london-style-fvm [data-icon] { display: inline-flex; align-items: center; }
.london-style-fvm [data-icon] svg { display: block; }

.fvm-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Drupal primary_menu block inside FVM header */
.fvm-header__nav .menu { display: flex; gap: 28px; align-items: center; }
.fvm-header__nav .menu li { list-style: none; }
.fvm-header__nav .menu a,
.fvm-header__nav > a {
  font-size: 15px;
  font-weight: var(--fvm-fw-semibold);
  color: var(--fvm-text-body);
  text-decoration: none;
  transition: color var(--fvm-dur-fast);
}
.fvm-header__nav .menu a:hover,
.fvm-header__nav .menu a.is-active { color: var(--fvm-navy-700); text-decoration: none; }

.fvm-header__actions {
  display: flex;
  align-items: center;
  gap: var(--fvm-space-3);
  flex-shrink: 0;
}

.fvm-header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: var(--fvm-fw-bold);
  letter-spacing: 0.01em;
  color: var(--fvm-navy-700);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--fvm-radius-md);
  background: var(--fvm-navy-50);
  transition: background var(--fvm-dur-fast), color var(--fvm-dur-fast);
}
.fvm-header__phone:hover { background: var(--fvm-navy-100); color: var(--fvm-blue-600); text-decoration: none; }

/* Mobile toggle */
.fvm-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--fvm-space-2);
  border-radius: var(--fvm-radius-sm);
  background: transparent;
  border: none;
  cursor: pointer;
}
.fvm-header__toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--fvm-navy-700);
  border-radius: 2px;
  transition: transform var(--fvm-dur-base), opacity var(--fvm-dur-base);
}

@media (max-width: 900px) {
  .fvm-header__toggle { display: flex; }
  .fvm-header__nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--fvm-white);
    border-top: 1px solid var(--fvm-border);
    padding: var(--fvm-space-4) var(--fvm-space-5);
    box-shadow: var(--fvm-shadow-lg);
    z-index: 49;
    flex-direction: column;
    align-items: flex-start;
  }
  .fvm-header__nav.is-open { display: flex; }
  .fvm-header__nav .menu { flex-direction: column; align-items: flex-start; gap: var(--fvm-space-3); }
}

@media (max-width: 600px) {
  .fvm-header__phone span { display: none; }
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.fvm-hero { background: var(--fvm-white); overflow: hidden; }

.fvm-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 24px 64px;
}

.fvm-hero__badge { margin-bottom: 32px; }

.fvm-hero__heading {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--fvm-navy-700);
  margin: 0 0 40px;
}

.fvm-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fvm-text-body);
  max-width: 520px;
  margin: 0 0 30px;
  font-weight: 500;
}

.fvm-hero__sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fvm-text-muted);
  max-width: 520px;
  margin: 0 0 44px;
}

.fvm-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.fvm-hero__trust {
  display: flex;
  gap: 26px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.fvm-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: var(--fvm-fw-bold);
  color: var(--fvm-navy-700);
  font-size: 14.5px;
}

.fvm-hero__media { position: relative; }

.fvm-hero__image-frame {
  border-radius: var(--fvm-radius-xl);
  overflow: hidden;
  box-shadow: var(--fvm-shadow-xl);
}

.fvm-hero__image-frame img { width: 100%; display: block; }

.fvm-hero__stat {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--fvm-white);
  border-radius: var(--fvm-radius-lg);
  box-shadow: var(--fvm-shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.fvm-hero__stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--fvm-radius-md);
  background: var(--fvm-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fvm-hero__stat-value {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  font-size: 26px;
  color: var(--fvm-navy-700);
  line-height: 1;
}

.fvm-hero__stat-label {
  font-size: 13px;
  color: var(--fvm-text-muted);
  font-weight: var(--fvm-fw-semibold);
}

/* Trust strip */
.fvm-trust-strip {
  border-top: 1px solid var(--fvm-border);
  background: var(--fvm-grey-50);
}

.fvm-trust-strip__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 20px 24px;
}

.fvm-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--fvm-fw-semibold);
  color: var(--fvm-text-body);
  font-size: 15px;
}

@media (max-width: 900px) {
  .fvm-hero__inner { grid-template-columns: 1fr; padding-top: 48px; gap: 40px; }
  .fvm-hero__media { padding-bottom: 30px; }
  .fvm-hero__stat { bottom: 8px; left: 8px; }
  .fvm-trust-strip__inner { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .fvm-hero__actions { flex-direction: column; }
  .fvm-hero__actions .fvm-btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------------------
   SERVICES
   -------------------------------------------------------------------------- */
.fvm-services { background: var(--fvm-white); padding: 88px 0; }

.fvm-services__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 48px;
}

.fvm-services__heading {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.1;
  color: var(--fvm-navy-700);
  margin: var(--fvm-space-3) 0 var(--fvm-space-4);
}

.fvm-services__sub { font-size: 15px; color: var(--fvm-text-muted); line-height: 1.5; }

.fvm-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fvm-solution-card {
  background: var(--fvm-white);
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform var(--fvm-dur-base) var(--fvm-ease-out), box-shadow var(--fvm-dur-base) var(--fvm-ease-out);
}

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

.fvm-solution-card__image { height: 168px; overflow: hidden; }
.fvm-solution-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--fvm-dur-slow) var(--fvm-ease-out);
}
.fvm-solution-card:hover .fvm-solution-card__image img { transform: scale(1.04); }

.fvm-solution-card__body { padding: 16px 20px 20px; }

.fvm-solution-card__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-extrabold);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--fvm-navy-700);
  margin-bottom: var(--fvm-space-2);
  line-height: 1.2;
}

.fvm-solution-card__blurb { font-size: 14.5px; color: var(--fvm-text-muted); line-height: 1.5; }

@media (max-width: 900px) { .fvm-services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .fvm-services__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   WHY US (navy section)
   -------------------------------------------------------------------------- */
.fvm-why-us { background: var(--fvm-navy-700); padding: 88px 0; color: #fff; }

.fvm-why-us__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.fvm-why-us__heading {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.02;
  color: #fff;
  margin: var(--fvm-space-3) 0 18px;
}

.fvm-why-us__body { font-size: 17px; line-height: 1.65; color: var(--fvm-navy-200); margin: 0 0 18px; }

.fvm-why-us__image { border-radius: var(--fvm-radius-lg); overflow: hidden; box-shadow: var(--fvm-shadow-lg); }
.fvm-why-us__image img { width: 100%; display: block; }

.fvm-why-us__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  row-gap: 34px;
}

.fvm-feature-item { display: flex; flex-direction: column; gap: var(--fvm-space-4); }

.fvm-feature-item__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--fvm-radius-md);
  background: rgba(255, 255, 255, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fvm-feature-item__title { font-size: 18px; font-weight: var(--fvm-fw-extrabold); color: #fff; line-height: 1.2; }
.fvm-feature-item__body { font-size: 14.5px; line-height: 1.7; color: var(--fvm-navy-200); }

@media (max-width: 900px) { .fvm-why-us__inner { grid-template-columns: 1fr; } }
@media (max-width: 580px) { .fvm-why-us__features { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   COVERAGE
   -------------------------------------------------------------------------- */
.fvm-coverage { background: var(--fvm-grey-50); padding: 88px 0; }

.fvm-coverage__header { text-align: center; max-width: 640px; margin: 0 auto 44px; }

.fvm-coverage__heading {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.02;
  color: var(--fvm-navy-700);
  margin: var(--fvm-space-3) 0 var(--fvm-space-4);
}

.fvm-coverage__sub { font-size: 17px; color: var(--fvm-text-muted); }

.fvm-coverage__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fvm-coverage-card {
  background: #fff;
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-lg);
  padding: var(--fvm-space-5) var(--fvm-space-5) var(--fvm-space-6);
  transition: transform var(--fvm-dur-base) var(--fvm-ease-out), box-shadow var(--fvm-dur-base) var(--fvm-ease-out);
}
.fvm-coverage-card:hover { transform: translateY(-3px); box-shadow: var(--fvm-shadow-md); }

.fvm-coverage-card__name {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-extrabold);
  font-size: 21px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--fvm-navy-700);
  margin: var(--fvm-space-4) 0 var(--fvm-space-2);
}

.fvm-coverage-card__towns { font-size: 14.5px; font-weight: var(--fvm-fw-semibold); color: var(--fvm-text-muted); line-height: 1.7; }

@media (max-width: 900px) { .fvm-coverage__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .fvm-coverage__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.fvm-faq { background: #fff; padding: 88px 0; }

.fvm-faq__wrap { max-width: 820px; margin: 0 auto; padding: 0 24px; }

.fvm-faq__header { text-align: center; margin-bottom: 40px; }

.fvm-faq__heading {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1.02;
  color: var(--fvm-navy-700);
  margin: var(--fvm-space-3) 0 0;
}

.fvm-faq__list { display: flex; flex-direction: column; gap: 12px; }

.fvm-faq__item {
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-md);
  overflow: hidden;
  background: #fff;
  transition: background var(--fvm-dur-fast);
}
.fvm-faq__item.is-open { background: var(--fvm-navy-50); }

.fvm-faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--fvm-font-sans);
  font-size: 17px;
  font-weight: var(--fvm-fw-bold);
  color: var(--fvm-navy-700);
}

.fvm-faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fvm-blue-600);
  transition: transform var(--fvm-dur-base) var(--fvm-ease-out);
}
.fvm-faq__item.is-open .fvm-faq__icon { transform: rotate(45deg); }

.fvm-faq__answer { display: none; padding: 0 22px 22px; font-size: 15.5px; line-height: 1.65; color: var(--fvm-text-body); }
.fvm-faq__item.is-open .fvm-faq__answer { display: block; }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.fvm-cta { background: var(--fvm-navy-900); padding: 80px 0; }

.fvm-cta__inner { text-align: center; max-width: 760px; margin: 0 auto; padding: 0 24px; }

.fvm-cta__heading {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.2;
  color: #fff;
  margin: 0 0 30px;
}

.fvm-cta__body { font-size: 18px; line-height: 1.7; color: var(--fvm-navy-200); margin: 0 0 48px; }

.fvm-cta__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; align-items: center; }

.fvm-cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: var(--fvm-fw-bold);
  font-size: 17px;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: var(--fvm-radius-md);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: border-color var(--fvm-dur-fast), color var(--fvm-dur-fast);
}
.fvm-cta__phone:hover { color: var(--fvm-amber-400); border-color: var(--fvm-amber-400); text-decoration: none; }

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.fvm-footer {
  background: var(--fvm-navy-900);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 0 36px;
}

.fvm-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
}

.fvm-footer__brand { max-width: 320px; }
.fvm-footer__logo { height: 56px; margin-bottom: 16px; }
.fvm-footer__desc { font-size: 14px; line-height: 1.5; color: var(--fvm-navy-300); }

.fvm-footer__links { display: flex; gap: 56px; flex-wrap: wrap; }

.fvm-footer__col-title {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: var(--fvm-fw-bold);
  margin: 0 0 20px;
  font-family: var(--fvm-font-sans);
}

.fvm-footer__col a,
.fvm-footer__col span {
  display: block;
  color: var(--fvm-navy-300);
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 9px;
  transition: color var(--fvm-dur-fast);
}
.fvm-footer__col a:hover { color: #fff; text-decoration: none; }

.fvm-footer__bottom {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--fvm-navy-400);
  font-size: 13px;
}

@media (max-width: 700px) {
  .fvm-footer__inner { flex-direction: column; }
  .fvm-footer__links { gap: 32px; }
}

/* --------------------------------------------------------------------------
   ENQUIRY MODAL
   -------------------------------------------------------------------------- */
.fvm-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 7, 46, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 20px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--fvm-dur-base) var(--fvm-ease-out), visibility var(--fvm-dur-base);
}

.fvm-modal-overlay.is-open { opacity: 1; visibility: visible; }

.fvm-modal {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: var(--fvm-radius-xl);
  box-shadow: var(--fvm-shadow-xl);
  overflow: hidden;
  font-family: var(--fvm-font-sans);
  transform: translateY(16px);
  transition: transform var(--fvm-dur-base) var(--fvm-ease-out);
}
.fvm-modal-overlay.is-open .fvm-modal { transform: translateY(0); }

.fvm-modal__header { background: var(--fvm-navy-700); padding: 26px 30px; position: relative; }

.fvm-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: background var(--fvm-dur-fast);
}
.fvm-modal__close:hover { background: rgba(255, 255, 255, 0.22); }

.fvm-modal__eyebrow {
  font-size: 13px;
  font-weight: var(--fvm-fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fvm-amber-400);
  margin-bottom: 8px;
}

.fvm-modal__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1;
  color: #fff;
  margin: 0;
}

.fvm-modal__body { padding: 26px 30px 30px; }
.fvm-modal__body.is-hidden { display: none; }

.fvm-modal__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.fvm-field { display: flex; flex-direction: column; gap: var(--fvm-space-1); }
.fvm-label { font-size: 0.875rem; font-weight: var(--fvm-fw-semibold); color: var(--fvm-text-strong); }
.fvm-field__helper { font-size: 0.75rem; color: var(--fvm-text-muted); }

.fvm-input,
.fvm-select {
  width: 100%;
  height: 44px;
  padding: 0 var(--fvm-space-4);
  font-family: var(--fvm-font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--fvm-text-body);
  background: #fff;
  border: 1px solid var(--fvm-grey-300);
  border-radius: var(--fvm-radius-md);
  transition: border-color var(--fvm-dur-fast), box-shadow var(--fvm-dur-fast);
  appearance: none;
}
.fvm-input::placeholder { color: var(--fvm-text-subtle); }
.fvm-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7790' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}
.fvm-input:focus,
.fvm-select:focus { outline: none; border-color: var(--fvm-blue-500); box-shadow: var(--fvm-shadow-focus); }

.fvm-modal__solutions-label { font-size: 14px; font-weight: var(--fvm-fw-bold); color: var(--fvm-text-strong); margin-bottom: 12px; }
.fvm-modal__checkboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }

.fvm-checkbox { display: flex; align-items: center; gap: var(--fvm-space-2); cursor: pointer; user-select: none; }

.fvm-checkbox input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--fvm-grey-300);
  border-radius: var(--fvm-radius-xs);
  background: #fff;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--fvm-dur-fast), border-color var(--fvm-dur-fast);
  position: relative;
}
.fvm-checkbox input[type="checkbox"]:checked {
  background: var(--fvm-navy-700);
  border-color: var(--fvm-navy-700);
}
.fvm-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fvm-checkbox input[type="checkbox"]:focus-visible { outline: none; box-shadow: var(--fvm-shadow-focus); }
.fvm-checkbox__label { font-size: 0.875rem; color: var(--fvm-text-body); line-height: 1.2; }

.fvm-modal__reassurance { text-align: center; font-size: 13px; color: var(--fvm-text-subtle); margin: 14px 0 0; }

.fvm-modal__success { padding: 40px 30px; text-align: center; display: none; }
.fvm-modal__success.is-active { display: block; }

.fvm-modal__success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--fvm-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.fvm-modal__success-msg {
  font-size: 17px;
  color: var(--fvm-text-body);
  line-height: 1.5;
  margin: 0 0 24px;
  max-width: 380px;
  margin-inline: auto;
}

@media (max-width: 580px) {
  .fvm-modal-overlay { padding: 24px 12px; }
  .fvm-modal__grid { grid-template-columns: 1fr; }
  .fvm-modal__checkboxes { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   DRUPAL OVERRIDES — suppress London block wrappers in FVM template
   -------------------------------------------------------------------------- */
.london-style-fvm .london-block { all: unset; display: contents; }
.london-style-fvm .skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--fvm-navy-700);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--fvm-radius-md);
  font-weight: var(--fvm-fw-bold);
  text-decoration: none;
  transition: top var(--fvm-dur-fast);
}
.london-style-fvm .skip-link:focus { top: 16px; }
body.fvm-modal-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Anchors styled as buttons
   `.london-style-fvm a` (0,1,1) outranks the `.fvm-btn--*` modifiers (0,1,0),
   so a <a class="fvm-btn"> would take the blue link colour. Restore each
   modifier's own colour at matching specificity.
   -------------------------------------------------------------------------- */
.london-style-fvm a.fvm-btn--primary,
.london-style-fvm a.fvm-btn--primary:hover { color: #fff; }

.london-style-fvm a.fvm-btn--on-dark,
.london-style-fvm a.fvm-btn--on-dark:hover { color: var(--fvm-navy-700); }

.london-style-fvm a.fvm-btn--outline,
.london-style-fvm a.fvm-btn--outline:hover { color: var(--fvm-navy-700); }

/* --------------------------------------------------------------------------
   VERTICAL RHYTHM
   The scoped reset near the top of this file (`.london-style-fvm p`, `… h1`–`h4`,
   `… ul` — specificity 0,1,1) outranks the bare `.fvm-hero__*` / `.fvm-why-us__*` /
   `.fvm-cta__*` block rules (0,1,0), so the `margin` declarations in those blocks
   never took effect and the copy sat flush against the buttons and images.
   Restate the spacing here at matching specificity.
   -------------------------------------------------------------------------- */

/* Hero — badge → heading → lead → (sub) → buttons → trust list. */
.london-style-fvm .fvm-hero__heading { margin-bottom: 28px; }
.london-style-fvm .fvm-hero__lead    { margin-bottom: 0; }
.london-style-fvm .fvm-hero__sub     { margin-top: 20px; margin-bottom: 0; }
.london-style-fvm .fvm-hero__actions { margin-top: 40px; }
.london-style-fvm .fvm-hero__trust   { margin-top: 44px; }

/* Why us — the image needs clear air under the body copy. */
.london-style-fvm .fvm-why-us__heading { margin-top: var(--fvm-space-3); margin-bottom: 18px; }
.london-style-fvm .fvm-why-us__body    { margin-bottom: 0; }
.london-style-fvm .fvm-why-us__image   { margin-top: 40px; }

/* Closing CTA band. */
.london-style-fvm .fvm-cta__heading { margin-bottom: 24px; }
.london-style-fvm .fvm-cta__body    { margin-bottom: 0; }
.london-style-fvm .fvm-cta__actions { margin-top: 40px; }
