/* ==========================================================================
   London Theme — LANDING PAGES
   Chrome-free lead-capture pages served under /go/.

   Brand-neutral by design: every rule below is written against `--lp-*` custom
   properties, and each brand maps its own palette onto them once, at the top.
   That is what lets a single landing-hero component and a single page template
   serve all three sites instead of three near-identical copies.
   ========================================================================== */

.london-style-fvm {
  --lp-accent:        var(--fvm-navy-700);
  --lp-accent-ink:    #fff;
  --lp-accent-soft:   var(--fvm-blue-600);
  --lp-ink:           var(--fvm-navy-700);
  --lp-body:          var(--fvm-text-body);
  --lp-muted:         var(--fvm-text-muted);
  --lp-border:        var(--fvm-border);
  --lp-surface:       #fff;
  --lp-band:          var(--fvm-navy-700);
  --lp-radius:        14px;
  --lp-font-display:  var(--fvm-font-display);
}

.london-style-arc {
  --lp-accent:        var(--arc-orange);
  --lp-accent-ink:    #fff;
  --lp-accent-soft:   var(--arc-orange);
  --lp-ink:           #0b1f3a;
  --lp-body:          #2c3e56;
  --lp-muted:         #6b7c93;
  --lp-border:        rgba(11, 31, 58, .14);
  --lp-surface:       #fff;
  --lp-band:          #0b1f3a;
  --lp-radius:        10px;
  --lp-font-display:  inherit;
}

.london-style-svc {
  --lp-accent:        var(--svc-brown-deep);
  --lp-accent-ink:    #fff;
  --lp-accent-soft:   var(--svc-brown-deep);
  --lp-ink:           var(--svc-brown-deep);
  --lp-body:          #4a3f36;
  --lp-muted:         #8a7a6c;
  --lp-border:        rgba(74, 63, 54, .16);
  --lp-surface:       #fff;
  --lp-band:          var(--svc-brown-deep);
  --lp-radius:        12px;
  --lp-font-display:  var(--svc-font-serif);
}

/* --------------------------------------------------------------------------
   MINIMAL CHROME
   A landing page has no navigation on purpose: every link that is not the form
   is a way to lose a cold visitor. Logo and phone number only.
   -------------------------------------------------------------------------- */
.lp-header {
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.lp-header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.lp-header__logo img { display: block; height: 52px; width: auto; }

.lp-header__wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: .02em;
  color: var(--lp-ink);
  text-transform: uppercase;
}

.lp-header__phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--lp-ink);
  text-decoration: none;
  white-space: nowrap;
}
.lp-header__phone:hover { color: var(--lp-accent-soft); text-decoration: none; }

.lp-footer {
  background: var(--lp-band);
  color: rgba(255, 255, 255, .72);
  padding: 26px 24px;
  text-align: center;
  font-size: 13.5px;
}

/* --------------------------------------------------------------------------
   HERO — copy left, form right. The form sits above the fold by design.
   -------------------------------------------------------------------------- */
.lp-hero {
  background: var(--lp-surface);
  padding: 56px 24px 64px;
}

.lp-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--lp-accent-soft);
  margin-bottom: 14px;
}

.lp-hero__heading {
  font-family: var(--lp-font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
  color: var(--lp-ink);
  margin: 0 0 18px;
}

.lp-hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-body);
  margin: 0 0 26px;
  max-width: 34em;
}

.lp-bullets { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }

.lp-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--lp-body);
  font-weight: 500;
}

.lp-bullet__tick {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}

/* --------------------------------------------------------------------------
   FORM CARD
   -------------------------------------------------------------------------- */
.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: 0 18px 50px rgba(10, 20, 50, .12);
  padding: 28px;
  position: sticky;
  top: 96px;
}

.lp-card__heading {
  font-family: var(--lp-font-display);
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  color: var(--lp-ink);
  margin: 0 0 6px;
}

.lp-card__sub {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--lp-muted);
  margin: 0 0 20px;
}

.lp-field { margin-bottom: 14px; }

.lp-label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--lp-ink);
  margin-bottom: 5px;
}

.lp-req { color: var(--lp-accent-soft); }

.lp-field input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--lp-body);
}

.lp-field input:focus {
  outline: none;
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--lp-accent) 22%, transparent);
}

.lp-submit {
  width: 100%;
  margin-top: 6px;
  padding: 16px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--lp-accent);
  color: var(--lp-accent-ink);
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: filter 160ms ease;
}
.lp-submit:hover { filter: brightness(1.08); }
.lp-submit:disabled { opacity: .6; cursor: default; }

.lp-fineprint {
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--lp-muted);
  text-align: center;
}

.lp-msg {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lp-accent-soft);
  text-align: center;
}

/* --------------------------------------------------------------------------
   THANK-YOU PAGE
   -------------------------------------------------------------------------- */
.lp-thanks {
  padding: 80px 24px 96px;
  background: var(--lp-surface);
}

.lp-thanks__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.lp-thanks__tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-accent-ink);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 26px;
}

.lp-thanks__heading {
  font-family: var(--lp-font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  color: var(--lp-ink);
  margin: 0 0 16px;
}

.lp-thanks__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-body);
  margin: 0;
}

.lp-thanks__next {
  margin-top: 44px;
  padding: 28px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  text-align: left;
}

.lp-thanks__next-heading {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lp-ink);
  margin: 0 0 14px;
}

.lp-thanks__list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--lp-body);
  font-size: 15.5px;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   On mobile the form moves above the supporting bullets — the whole point of
   the page is the form, so it must not sit below a screenful of prose.
   -------------------------------------------------------------------------- */
@media (max-width: 940px) {
  .lp-hero__inner { grid-template-columns: 1fr; gap: 34px; }
  .lp-card { position: static; order: -1; }
  .lp-hero__copy { order: 1; }
}

@media (max-width: 600px) {
  .lp-hero { padding: 32px 18px 40px; }
  .lp-card { padding: 22px 18px; }
  .lp-header__logo img { height: 40px; }
  .lp-header__phone { font-size: 14px; }
}
