/* ==========================================================================
   London Theme — Style: FVM — INNER PAGES
   Services · About · Blog · Contact
   Loaded with the fvm style library; all rules scoped under .london-style-fvm.
   Reuses tokens, buttons, eyebrow, inputs and footer from fvm.css.
   ========================================================================== */

/* --------------------------------------------------------------------------
   PAGE HEAD (navy banner, shared across inner pages)
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-pagehead {
  background: var(--fvm-navy-700);
  position: relative;
  overflow: hidden;
}
.london-style-fvm .fvm-pagehead__logo-deco {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.18;
}
.london-style-fvm .fvm-pagehead__logo-deco img {
  display: block;
  width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
}
/* Tagline for home page pagehead */
.london-style-fvm .fvm-pagehead__tagline {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
}
.london-style-fvm .fvm-pagehead__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 68px;
}
.london-style-fvm .fvm-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: var(--fvm-fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fvm-navy-300);
  margin-bottom: 18px;
}
.london-style-fvm .fvm-crumbs a { color: var(--fvm-navy-300); text-decoration: none; transition: color var(--fvm-dur-fast); }
.london-style-fvm .fvm-crumbs a:hover { color: #fff; text-decoration: none; }
.london-style-fvm .fvm-crumbs__sep { color: var(--fvm-amber-400); }
.london-style-fvm .fvm-crumbs__current { color: var(--fvm-amber-400); }

.london-style-fvm .fvm-pagehead__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0;
}
.london-style-fvm .fvm-pagehead__sub {
  margin-top: 16px;
  max-width: 560px;
  color: var(--fvm-navy-200);
  font-size: 17px;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   GENERIC SECTION UTILITIES
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-section { padding: 88px 0; }
.london-style-fvm .fvm-section--tight { padding: 64px 0; }
.london-style-fvm .fvm-section--grey { background: var(--fvm-grey-50); }
.london-style-fvm .fvm-section--navy { background: var(--fvm-navy-700); color: #fff; }

.london-style-fvm .fvm-section__head { max-width: 640px; margin-bottom: 48px; }
.london-style-fvm .fvm-section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.london-style-fvm .fvm-section__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(32px, 3.8vw, 50px);
  line-height: 1.02;
  color: var(--fvm-navy-700);
  margin: var(--fvm-space-3) 0 0;
}
.london-style-fvm .fvm-section--navy .fvm-section__title { color: #fff; }
.london-style-fvm .fvm-section__intro {
  margin-top: 14px;
  color: var(--fvm-text-muted);
  font-size: 16.5px;
  line-height: 1.6;
}
.london-style-fvm .fvm-section--navy .fvm-section__intro { color: var(--fvm-navy-200); }
.london-style-fvm .fvm-section__head--center .fvm-section__intro { max-width: 600px; margin-left: auto; margin-right: auto; }

.london-style-fvm .fvm-inner-messages { padding-top: 24px; }

/* --------------------------------------------------------------------------
   ICON CARD GRID (services / values)
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.london-style-fvm .fvm-card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.london-style-fvm .fvm-icard {
  background: #fff;
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-lg);
  padding: 32px 28px;
  transition: transform var(--fvm-dur-base) var(--fvm-ease-out), box-shadow var(--fvm-dur-base) var(--fvm-ease-out);
}
.london-style-fvm .fvm-icard:hover { transform: translateY(-3px); box-shadow: var(--fvm-shadow-md); }
.london-style-fvm .fvm-icard__icon {
  width: 54px;
  height: 54px;
  border-radius: var(--fvm-radius-md);
  background: var(--fvm-navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.london-style-fvm .fvm-icard__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-extrabold);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-size: 22px;
  line-height: 1.15;
  color: var(--fvm-navy-700);
  margin-bottom: var(--fvm-space-2);
}
.london-style-fvm .fvm-icard__body { font-size: 14.5px; color: var(--fvm-text-muted); line-height: 1.6; }

/* --------------------------------------------------------------------------
   STEPS
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.london-style-fvm .fvm-step__num {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  font-size: 54px;
  line-height: 1;
  color: var(--fvm-navy-100);
}
.london-style-fvm .fvm-section--navy .fvm-step__num { color: rgba(255, 255, 255, .18); }
.london-style-fvm .fvm-step__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-extrabold);
  text-transform: uppercase;
  font-size: 19px;
  color: var(--fvm-navy-700);
  margin: 12px 0 0;
}
.london-style-fvm .fvm-section--navy .fvm-step__title { color: #fff; }
.london-style-fvm .fvm-step__body { margin-top: 8px; color: var(--fvm-text-muted); font-size: 14.5px; line-height: 1.65; }
.london-style-fvm .fvm-section--navy .fvm-step__body { color: var(--fvm-navy-200); }

/* --------------------------------------------------------------------------
   ALTERNATING MEDIA ROWS
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-rows { display: flex; flex-direction: column; gap: 56px; }
.london-style-fvm .fvm-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.london-style-fvm .fvm-row--reverse .fvm-row__media { order: 2; }
.london-style-fvm .fvm-row__media {
  border-radius: var(--fvm-radius-xl);
  overflow: hidden;
  box-shadow: var(--fvm-shadow-lg);
  aspect-ratio: 4 / 3;
}
.london-style-fvm .fvm-row__media img { width: 100%; height: 100%; object-fit: cover; }
.london-style-fvm .fvm-row__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  color: var(--fvm-navy-700);
  margin: var(--fvm-space-3) 0 0;
}
.london-style-fvm .fvm-row__body { margin-top: 14px; color: var(--fvm-text-muted); font-size: 16px; line-height: 1.7; }
.london-style-fvm .fvm-ticks { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.london-style-fvm .fvm-tick { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--fvm-text-body); font-weight: var(--fvm-fw-semibold); }
.london-style-fvm .fvm-tick__mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fvm-green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   ABOUT — STORY SPLIT + STATS + MISSION
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.london-style-fvm .fvm-story__media {
  position: relative;
  border-radius: var(--fvm-radius-xl);
  overflow: hidden;
  box-shadow: var(--fvm-shadow-xl);
  aspect-ratio: 4 / 3;
}
.london-style-fvm .fvm-story__media img { width: 100%; height: 100%; object-fit: cover; }
.london-style-fvm .fvm-story__badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: var(--fvm-radius-lg);
  box-shadow: var(--fvm-shadow-lg);
  padding: 14px 18px;
}
.london-style-fvm .fvm-story__badge b {
  display: block;
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  font-size: 26px;
  color: var(--fvm-navy-700);
  line-height: 1;
}
.london-style-fvm .fvm-story__badge span { font-size: 12.5px; color: var(--fvm-text-muted); font-weight: var(--fvm-fw-semibold); }
.london-style-fvm .fvm-story__body p { color: var(--fvm-text-body); font-size: 16px; line-height: 1.75; margin-top: 16px; }

/* Stats */
.london-style-fvm .fvm-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.london-style-fvm .fvm-stat__val {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1;
  color: #fff;
}
.london-style-fvm .fvm-stat__val em { font-style: normal; color: var(--fvm-amber-400); }
.london-style-fvm .fvm-stat__label {
  margin-top: 6px;
  font-size: 14px;
  font-weight: var(--fvm-fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--fvm-navy-200);
}

/* --------------------------------------------------------------------------
   TEAM
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.london-style-fvm .fvm-team-card { text-align: center; }
.london-style-fvm .fvm-team-card__photo {
  border-radius: var(--fvm-radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: var(--fvm-shadow-sm);
}
.london-style-fvm .fvm-team-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.london-style-fvm .fvm-team-card__name {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-extrabold);
  text-transform: uppercase;
  font-size: 18px;
  color: var(--fvm-navy-700);
  margin-top: 14px;
}
.london-style-fvm .fvm-team-card__role { color: var(--fvm-blue-600); font-size: 14px; font-weight: var(--fvm-fw-bold); margin-top: 2px; }

/* --------------------------------------------------------------------------
   BLOG
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-blog-featured {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--fvm-shadow-md);
  margin-bottom: 48px;
}
.london-style-fvm .fvm-blog-featured__media { min-height: 320px; overflow: hidden; }
.london-style-fvm .fvm-blog-featured__media img { width: 100%; height: 100%; object-fit: cover; }
.london-style-fvm .fvm-blog-featured__body { padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.london-style-fvm .fvm-blog-featured__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.04;
  color: var(--fvm-navy-700);
  margin: 14px 0 0;
}
.london-style-fvm .fvm-blog-featured__excerpt { margin-top: 12px; color: var(--fvm-text-muted); font-size: 16px; line-height: 1.65; }

.london-style-fvm .fvm-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.london-style-fvm .fvm-post-card {
  background: #fff;
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--fvm-dur-base) var(--fvm-ease-out), box-shadow var(--fvm-dur-base) var(--fvm-ease-out);
}
.london-style-fvm .fvm-post-card:hover { transform: translateY(-3px); box-shadow: var(--fvm-shadow-md); }
.london-style-fvm .fvm-post-card__media { aspect-ratio: 16 / 10; overflow: hidden; }
.london-style-fvm .fvm-post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--fvm-dur-slow) var(--fvm-ease-out); }
.london-style-fvm .fvm-post-card:hover .fvm-post-card__media img { transform: scale(1.04); }
.london-style-fvm .fvm-post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.london-style-fvm .fvm-post-card__title {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-extrabold);
  text-transform: uppercase;
  font-size: 20px;
  line-height: 1.15;
  color: var(--fvm-navy-700);
  margin: 10px 0 0;
}
.london-style-fvm .fvm-post-card__title a { color: inherit; text-decoration: none; }
.london-style-fvm .fvm-post-card__excerpt { margin-top: 10px; color: var(--fvm-text-muted); font-size: 14.5px; line-height: 1.6; flex: 1; }

.london-style-fvm .fvm-chip {
  display: inline-flex;
  align-self: flex-start;
  background: var(--fvm-blue-50);
  color: var(--fvm-blue-600);
  font-size: 11.5px;
  font-weight: var(--fvm-fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--fvm-radius-pill);
}
.london-style-fvm .fvm-post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--fvm-border);
  font-size: 13px;
  font-weight: var(--fvm-fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fvm-text-subtle);
}

.london-style-fvm .fvm-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.london-style-fvm .fvm-pagination a,
.london-style-fvm .fvm-pagination span {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--fvm-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fvm-fw-bold);
  font-size: 15px;
  border: 1px solid var(--fvm-grey-300);
  background: #fff;
  color: var(--fvm-text-body);
  text-decoration: none;
  transition: background var(--fvm-dur-fast), color var(--fvm-dur-fast), border-color var(--fvm-dur-fast);
}
.london-style-fvm .fvm-pagination a:hover { border-color: var(--fvm-navy-700); color: var(--fvm-navy-700); text-decoration: none; }
.london-style-fvm .fvm-pagination .is-current { background: var(--fvm-navy-700); border-color: var(--fvm-navy-700); color: #fff; }

/* --------------------------------------------------------------------------
   CONTACT
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 44px;
  align-items: start;
}
.london-style-fvm .fvm-contact-form {
  background: #fff;
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-xl);
  padding: 36px;
  box-shadow: var(--fvm-shadow-md);
}
.london-style-fvm .fvm-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.london-style-fvm .fvm-field--full { grid-column: 1 / -1; }

/* Textarea matches .fvm-input look (defined in fvm.css) */
.london-style-fvm .fvm-textarea {
  width: 100%;
  min-height: 130px;
  padding: 12px 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);
  resize: vertical;
  transition: border-color var(--fvm-dur-fast), box-shadow var(--fvm-dur-fast);
}
.london-style-fvm .fvm-textarea::placeholder { color: var(--fvm-text-subtle); }
.london-style-fvm .fvm-textarea:focus { outline: none; border-color: var(--fvm-blue-500); box-shadow: var(--fvm-shadow-focus); }
.london-style-fvm .fvm-form-note { margin-top: 16px; font-size: 13px; color: var(--fvm-text-subtle); }

.london-style-fvm .fvm-info-stack { display: flex; flex-direction: column; gap: 14px; }
.london-style-fvm .fvm-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--fvm-grey-50);
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-lg);
  padding: 22px;
}
.london-style-fvm .fvm-info-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--fvm-radius-md);
  background: var(--fvm-navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.london-style-fvm .fvm-info-card__label { font-size: 12.5px; font-weight: var(--fvm-fw-bold); text-transform: uppercase; letter-spacing: 0.05em; color: var(--fvm-text-subtle); }
.london-style-fvm .fvm-info-card__value { font-size: 16px; font-weight: var(--fvm-fw-bold); color: var(--fvm-navy-700); margin-top: 4px; word-break: break-word; }
.london-style-fvm a.fvm-info-card__value:hover { color: var(--fvm-blue-600); text-decoration: none; }

.london-style-fvm .fvm-map {
  border-radius: var(--fvm-radius-xl);
  overflow: hidden;
  border: 1px solid var(--fvm-border);
  background: repeating-linear-gradient(45deg, #eef1f6 0 12px, #e6ebf3 12px 24px);
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.london-style-fvm .fvm-map__pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--fvm-navy-700);
  font-weight: var(--fvm-fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.london-style-fvm .fvm-map__pin-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--fvm-navy-700);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--fvm-shadow-md);
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  .london-style-fvm .fvm-card-grid,
  .london-style-fvm .fvm-card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .london-style-fvm .fvm-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .london-style-fvm .fvm-team { grid-template-columns: repeat(2, 1fr); }
  .london-style-fvm .fvm-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .london-style-fvm .fvm-stats { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .london-style-fvm .fvm-story,
  .london-style-fvm .fvm-row,
  .london-style-fvm .fvm-row--reverse,
  .london-style-fvm .fvm-blog-featured,
  .london-style-fvm .fvm-contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .london-style-fvm .fvm-row--reverse .fvm-row__media { order: 0; }
  .london-style-fvm .fvm-blog-featured__body { padding: 30px; }
}

@media (max-width: 580px) {
  .london-style-fvm .fvm-section { padding: 64px 0; }
  .london-style-fvm .fvm-card-grid,
  .london-style-fvm .fvm-card-grid--4,
  .london-style-fvm .fvm-blog-grid,
  .london-style-fvm .fvm-team { grid-template-columns: 1fr; }
  .london-style-fvm .fvm-form-grid { grid-template-columns: 1fr; }
  .london-style-fvm .fvm-contact-form { padding: 26px 20px; }
}

/* --------------------------------------------------------------------------
   CONTACT FORM — style Drupal / Webform elements inside the contact card
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-form .js-form-item,
.london-style-fvm .fvm-form .form-item { margin: 0 0 16px; }
.london-style-fvm .fvm-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: var(--fvm-fw-semibold);
  color: var(--fvm-text-strong);
  margin-bottom: 6px;
}
.london-style-fvm .fvm-form input[type="text"],
.london-style-fvm .fvm-form input[type="email"],
.london-style-fvm .fvm-form input[type="tel"],
.london-style-fvm .fvm-form input[type="number"],
.london-style-fvm .fvm-form input[type="url"],
.london-style-fvm .fvm-form input[type="search"],
.london-style-fvm .fvm-form input[type="date"],
.london-style-fvm .fvm-form textarea,
.london-style-fvm .fvm-form select {
  width: 100%;
  height: 46px;
  padding: 0 var(--fvm-space-4);
  font-family: var(--fvm-font-sans);
  font-size: 1rem;
  color: var(--fvm-text-body);
  background: #fff;
  border: 1px solid var(--fvm-grey-300);
  border-radius: var(--fvm-radius-md);
  box-sizing: border-box;
}
.london-style-fvm .fvm-form textarea { height: auto; min-height: 120px; padding: 12px var(--fvm-space-4); }
.london-style-fvm .fvm-form input:focus,
.london-style-fvm .fvm-form textarea:focus,
.london-style-fvm .fvm-form select:focus {
  outline: none;
  border-color: var(--fvm-blue-500);
  box-shadow: var(--fvm-shadow-focus);
}
.london-style-fvm .fvm-form .description { font-size: 12.5px; color: var(--fvm-text-muted); margin-top: 5px; }
.london-style-fvm .fvm-form .form-required::after { color: #d62b2b; }
.london-style-fvm .fvm-form .form-actions { margin-top: 8px; }
.london-style-fvm .fvm-form .button,
.london-style-fvm .fvm-form .form-submit,
.london-style-fvm .fvm-form button[type="submit"],
.london-style-fvm .fvm-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 var(--fvm-space-6);
  font-family: var(--fvm-font-sans);
  font-size: 1.0625rem;
  font-weight: var(--fvm-fw-bold);
  color: #fff;
  background: var(--fvm-navy-700);
  border: 2px solid var(--fvm-navy-700);
  border-radius: var(--fvm-radius-lg);
  cursor: pointer;
  transition: background var(--fvm-dur-fast);
}
.london-style-fvm .fvm-form .button:hover,
.london-style-fvm .fvm-form .form-submit:hover,
.london-style-fvm .fvm-form button[type="submit"]:hover,
.london-style-fvm .fvm-form input[type="submit"]:hover { background: var(--fvm-navy-800); border-color: var(--fvm-navy-800); }

/* --------------------------------------------------------------------------
   PAGE HEAD — HOME VARIANT
   Brand ribbon directly under the header on the home page: tagline and sub on
   the left, watermarked logo on the right. No breadcrumb (there is nowhere to
   go back to), so the decorative corner circle is dropped in favour of the logo.
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-pagehead--home::after { content: none; }

.london-style-fvm .fvm-pagehead--home .fvm-pagehead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 44px 24px 48px;
}

.london-style-fvm .fvm-pagehead__tagline {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 0 0 12px;
}

.london-style-fvm .fvm-pagehead--home .fvm-pagehead__sub { margin-top: 0; }

.london-style-fvm .fvm-pagehead__logo-deco {
  flex-shrink: 0;
  opacity: 0.18;
  pointer-events: none;
}

/* On the home banner the mark reads as branding rather than a watermark, so it
   runs at full strength. Inner pageheads keep the faded treatment above. */
.london-style-fvm .fvm-pagehead--home .fvm-pagehead__logo-deco {
  opacity: 1;
}

.london-style-fvm .fvm-pagehead__logo-deco img {
  display: block;
  width: 280px;
  height: auto;
  filter: brightness(0) invert(1);
}

@media (max-width: 860px) {
  .london-style-fvm .fvm-pagehead--home .fvm-pagehead__inner { display: block; }
  .london-style-fvm .fvm-pagehead__logo-deco { display: none; }
}

/* --------------------------------------------------------------------------
   MAP STRIP — LIVE EMBED
   The base .fvm-map is a centred placeholder panel with a diagonal-stripe
   background. When a real map is embedded, the iframe fills the panel instead,
   so the stripes and the centring are turned off and the caption moves below.
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-map--live {
  display: block;
  background: none;
  min-height: 0;
}

.london-style-fvm .fvm-map--live iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
}

.london-style-fvm .fvm-map__caption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--fvm-navy-700);
  font-weight: var(--fvm-fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

.london-style-fvm .fvm-map__caption-pin {
  display: inline-flex;
  align-items: center;
}

.london-style-fvm .fvm-map__caption a {
  margin-left: auto;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--fvm-blue-600);
}

@media (max-width: 600px) {
  .london-style-fvm .fvm-map--live iframe { height: 300px; }
  .london-style-fvm .fvm-map__caption { flex-wrap: wrap; }
  .london-style-fvm .fvm-map__caption a { margin-left: 0; }
}

/* --------------------------------------------------------------------------
   CONTACT FORM — LABELLED FIELDS, HELP TEXT, CHECKBOX GROUP
   The short CTA forms use placeholder-only inputs. The contact page form is
   long enough that it needs real labels, so these add the label/help/fieldset
   layer on top of the existing .fvm-field / .fvm-form styling.
   -------------------------------------------------------------------------- */
.london-style-fvm .fvm-contact-form__intro { margin-bottom: 28px; }
.london-style-fvm .fvm-contact-form__intro p {
  color: var(--fvm-text-body);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.london-style-fvm .fvm-form__legend {
  font-family: var(--fvm-font-display);
  font-weight: var(--fvm-fw-black);
  text-transform: uppercase;
  font-size: 22px;
  letter-spacing: 0.01em;
  color: var(--fvm-navy-700);
  margin: 0 0 18px;
}

.london-style-fvm .fvm-label {
  display: block;
  font-size: 14px;
  font-weight: var(--fvm-fw-bold);
  color: var(--fvm-navy-700);
  margin-bottom: 6px;
}

.london-style-fvm .fvm-req { color: var(--fvm-blue-600); }

.london-style-fvm .fvm-help {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--fvm-text-muted);
  margin: 0 0 8px;
}

.london-style-fvm .fvm-field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--fvm-border);
  border-radius: var(--fvm-radius-md);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--fvm-text-body);
}

.london-style-fvm .fvm-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 22px;
}

.london-style-fvm .fvm-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 4px;
}

.london-style-fvm .fvm-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--fvm-text-body);
  cursor: pointer;
}

.london-style-fvm .fvm-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex-shrink: 0;
  accent-color: var(--fvm-navy-700);
}

.london-style-fvm .fvm-info-card__value--lines {
  line-height: 1.6;
  font-weight: 500;
}

@media (max-width: 620px) {
  .london-style-fvm .fvm-checks { grid-template-columns: 1fr; }
}
