

    /* London Bridge Healthcare - brand guidelines (Richmond palette + typography) */
    :root {
      /* Primary - Richmond Orange (Pantone 021 C) */
      --richmond-orange: #ff6600;
      --richmond-orange-dark: #e65c00;
      --richmond-orange-75: rgba(255, 102, 0, 0.75);
      --richmond-orange-50: rgba(255, 102, 0, 0.5);
      --richmond-orange-25: rgba(255, 102, 0, 0.25);
      /* Secondary accents (complement only - not lead colours) */
      --richmond-green: #697e70;
      --richmond-green-soft: rgba(105, 126, 112, 0.12);
      --richmond-blue: #00239c;
      --richmond-blue-soft: rgba(0, 35, 156, 0.08);
      /* Neutrals - dominant white */
      --black: #000000;
      --white: #ffffff;
      --text-body: #3d3d3d;
      --text-muted: #5c5c5c;
      --line: #e8e8e8;
      --surface-subtle: #f7f7f7;
      --surface-peach: #fff3ea;
      --overlay-dark: rgba(0, 0, 0, 0.88);
      /* Aliases for existing class names */
      --orange: var(--richmond-orange);
      --orange-dark: var(--richmond-orange-dark);
      --muted: var(--text-muted);
      --grey: var(--surface-subtle);
      --grey-mid: #ebebeb;
      --grey-dark: var(--line);
      --overlay: var(--overlay-dark);
      /* Typography: Sharp Sans / Avenir - Montserrat licensed substitute for web */
      --font-brand: "Montserrat", "Avenir Next", Avenir, "Trebuchet MS", sans-serif!important;
      --font: var(--font-brand);
      --w-book: 400;
      --w-medium: 500;
      --w-semibold: 600;
      --w-bold: 700;
      --w-black: 800;
      --shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
      --radius: 4px;
      --container: min(1180px, 92vw);
      --logo-min-h: 40px;
      --header-cta-bg: #2d2d2d;
      --header-cta-hover: #1a1a1a;
      --nav-pipe: #c9c9c9;
    }
body {
    font-family: "Montserrat", sans-serif!important;
}

 .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}
@media (max-width: 767px) {
  /* .hero-bg { object-position: -160px 0; } */
}

/*Clamp fix*/
.logo { font-size: clamp(20px, 2.4vw, 26px) !important; }
.hero-panel h1 { font-size: clamp(22px, 3.2vw, 32px) !important; font-family:"Montserrat", sans-serif!important;
    color:#ffffff!important;
}
.section-intro-block h2 { font-size: clamp(24px, 3.2vw, 34px)!important; font-family: "Montserrat", sans-serif!important;     color: var(--black) !important;}
.welcome-title-line { font-size: clamp(28px, 4.2vw, 44px) !important; font-family:"Montserrat", sans-serif!important;    color: var(--black) !important;}
.welcome-lead { font-size: clamp(15px, 1.9vw, 17px) !important; font-family:"Montserrat", sans-serif!important;}
.feature-panel h2 { font-size: clamp(22px, 3vw, 30px) !important;font-family:"Montserrat", sans-serif!important; }
.specialists-title { font-size: clamp(28px, 4vw, 40px) !important;font-family:"Montserrat", sans-serif!important;    color: var(--black) !important; }
.specialists-deck { font-size: clamp(15px, 1.9vw, 17px) !important; font-family:"Montserrat", sans-serif!important;}
.location-transport-tagline { font-size: clamp(20px, 2.8vw, 28px) !important;font-family:"Montserrat", sans-serif!important; }
.location-split__left h2 { font-size: clamp(22px, 3vw, 30px) !important; font-family:"Montserrat", sans-serif!important;}
.footer-logo-merged { font-size: clamp(20px, 2.2vw, 26px) !important; }
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }
    }

    body {
      font-family: var(--font-brand);
      color: var(--text-body);
      background: var(--white);
      line-height: 1.6;
      font-size: 16px;
      font-weight: var(--w-book);
      -webkit-font-smoothing: antialiased;
    }

    strong {
      font-weight: var(--w-semibold);
      color: var(--black)!important;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible,
    .btn-header-book:focus-visible {
      outline: 2px solid var(--richmond-orange);
      outline-offset: 3px;
    }

    .skip-link {
      position: absolute;
      left: -9999px;
      top: 8px;
      z-index: 2000;
      background: var(--black);
      color: var(--white);
      padding: 12px 20px;
      border-radius: var(--radius);
    }

    .skip-link:focus {
      left: 8px;
    }

    .container {
      width: var(--container);
      margin-inline: auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-brand);
      font-weight: var(--w-black);
      font-size: 13px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 14px 22px;
      border-radius: var(--radius);
      border: 2px solid transparent;
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }

    .btn-primary:hover {
      background: var(--orange-dark);
      border-color: var(--orange-dark);
    }

    .btn-outline-light {
      background: transparent;
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.65);
    }

    .btn-outline-light:hover {
      background: var(--white);
      color: var(--black)!important;
      border-color: var(--white);
    }

    .btn-outline-dark {
      background: transparent;
      color: var(--black)!important;
      border-color: var(--black)!important;
    }

    .btn-outline-dark:hover {
      background: var(--black);
      color: var(--white);
    }

    .header-main {
      position: sticky;
      top: 0;
      z-index: 200;
      background: var(--white);
      border-bottom: 1px solid var(--grey-dark);
    }

    .header-grid {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: clamp(16px, 3vw, 40px);
      min-height: 104px;
      padding: 24px 0 20px;
    }

    .header-grid .logo {
      grid-column: 1;
      justify-self: start;
      align-self: center;
    }

    .header-grid .nav-primary {
      grid-column: 2;
      justify-self: center;
      width: 100%;
    }

    .header-grid .header-actions {
      grid-column: 3;
      justify-self: end;
      align-self: center;
    }

    /* Primary logo: black wordmark + Richmond Orange dot (min 40px height web) */
    .logo {
      display: block;
      min-height: var(--logo-min-h);
      letter-spacing: -0.03em;
      line-height: 0.95;
      text-transform: lowercase;
      font-size: clamp(20px, 2.4vw, 26px);
      color: var(--black)!important;
    }

    .logo-line1 {
      display: flex;
      align-items: center;
      gap: 5px;
      font-weight: var(--w-black);
    }

    .logo-dot {
      width: 0.42em;
      height: 0.42em;
      min-width: 10px;
      min-height: 10px;
      background: var(--richmond-orange);
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* “healthcare” - Book weight per brand hierarchy */
    .logo-line2 {
      font-size: 0.72em;
      font-weight: var(--w-book);
      letter-spacing: 0.01em;
    }

    .header-main .logo-line2 {
      color: var(--black)!important;
      opacity: 0.88;
    }

    /* Secondary logo: all white on Richmond Blue / dark (no box behind mark) */
    .logo--inverse {
      color: var(--white);
    }

    .logo--inverse .logo-dot {
      background: var(--white);
    }

    /* Centred pipe-separated nav - regular weight */
    .nav-primary {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0;
      row-gap: 6px;
    }

    .nav-primary a {
      font-size: 14px;
      font-weight: var(--w-book);
      color: var(--black)!important;
      padding: 6px 10px;
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    .nav-primary a:hover {
      color: var(--richmond-orange);
    }

    .nav-pipe {
      color: var(--nav-pipe);
      font-size: 14px;
      font-weight: var(--w-book);
      user-select: none;
      padding: 0 2px;
    }

    .header-actions {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: flex-end;
      gap: 12px;
      flex-shrink: 0;
    }

    @media (min-width: 1025px) {
      .header-actions {
        padding-left: clamp(18px, 2.2vw, 32px);
        margin-left: clamp(10px, 1.5vw, 20px);
        border-left: 1px solid var(--line);
      }

      .nav-primary a {
        font-weight: var(--w-medium);
      }
    }

    .header-icons-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Circular outline icons - phone & WhatsApp */
    .header-icon-ring {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      background: var(--richmond-orange);
      color: var(--white);
      display: grid;
      place-items: center;
      flex-shrink: 0;
      transition: background 0.2s, color 0.2s, transform 0.15s;
    }

    .header-icon-ring:hover {
      background: var(--richmond-orange-dark);
      color: var(--white);
    }

    .header-icon-ring svg {
      width: 20px;
      height: 20px;
    }

    /* Charcoal header CTA - matches reference */
    .btn-header-book {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--header-cta-bg);
      color: var(--white);
      font-family: var(--font-brand);
      font-weight: var(--w-bold);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 22px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .btn-header-book:hover {
      background: var(--header-cta-hover);
      color: var(--white);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1.5px solid var(--black);
      background: var(--white);
      border-radius: 50%;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .menu-toggle:hover {
      border-color: var(--richmond-orange);
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--black);
      transition: transform 0.25s ease, opacity 0.2s ease;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-drawer {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: auto;
      max-height: min(88vh, 680px);
      padding: 16px 20px 24px;
      background: var(--white);
      z-index: 260;
      flex-direction: column;
      gap: 0;
      overflow-y: auto;
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
      border-radius: 0;
    }

    .mobile-drawer.is-open {
      display: flex;
      background: rgb(255 255 255 / 98%);
    }

    .mobile-drawer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--line);
      flex-shrink: 0;
    }

    .mobile-drawer-top .logo {
      min-height: 0;
      font-size: 18px;
    }

    .drawer-close {
      width: 44px;
      height: 44px;
      flex-shrink: 0;
      border: none;
      background: transparent;
      color: var(--black)!important;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      display: grid;
      place-items: center;
      border-radius: 50%;
      transition: background 0.2s, color 0.2s;
    }

    .drawer-close:hover {
      background: rgba(0, 0, 0, 0.06);
      color: var(--richmond-orange);
    }

    .mobile-drawer-links {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
    }

    .mobile-drawer a {
      font-weight: var(--w-bold);
      padding: 14px 12px;
      border-bottom: 1px solid var(--grey-dark);
    }

    .mobile-sub a {
      font-weight: var(--w-medium);
      color: var(--muted);
      border: none;
      padding-left: 20px;
    }

    /* ----- Hero ----- */
    .hero {
      position: relative;
      min-height: min(88vh, 820px);
      display: flex;
      flex-direction: column;
      background: #1a1a1a;
    }

.hero-bg {
    position: absolute;
    inset: 0;
    /* background: url("https://londonbridgehealthcare.co.uk/wp-content/uploads/2026/08/london-bridge-healthcare-private-specialist-clinic-london.webp")
                top left / cover no-repeat; */
}

@media (max-width: 767px) {
    .hero-bg {
        /* background-position: -160px 0; */
    }
}

    .hero-top {
      position: relative;
      z-index: 1;
      flex: 1;
      display: flex;
      align-items: center;
      padding: clamp(20px, 3vw, 36px) 0 clamp(50px, 7vw, 70px);
    }

    .hero-panel {
      /* max-width: 520px; */
   
      background: rgb(0 0 0 / 56%);
      color: var(--white);
      padding: clamp(28px, 4vw, 40px);
      border-radius: 2px;
    }

    .hero-panel h1 {
      font-size: clamp(22px, 3.2vw, 32px);
      font-weight: var(--w-black);
      letter-spacing: 0.04em;
      line-height: 1.2;
      text-transform: uppercase;
      margin-bottom: 16px;
      color: var(--white);
    }

    .hero-panel .lead {
      font-size: 16px;
      font-weight: var(--w-book);
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 24px;
      /* max-width: 46ch; */
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .checklist {
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .checklist li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 14px;
      font-weight: var(--w-semibold);
      color: rgba(255, 255, 255, 0.95);
    }

    .checklist li::before {
      content: "";
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 2px;
      border-radius: 50%;
      background-color: var(--richmond-orange);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath stroke='white' stroke-width='2' fill='none' d='M1 5l3 3 7-7'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 12px;
    }

    .hero-strip {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hero-strip-item {
      background: rgba(0, 0, 0, 0.88);
      color: var(--white);
      padding: 18px 16px;
      text-align: center;
      font-size: 13px;
      font-weight: var(--w-black);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-right: 1px solid rgba(255, 255, 255, 0.12);
    }

    /* Richmond Green accent strip - highlight mid column per secondary palette */
    .hero-strip-item:nth-child(2) {
      background: rgba(105, 126, 112, 0.88);
    }

    .hero-strip-item:last-child {
      border-right: none;
    }

    /* ----- Section typography ----- */
    .section {
      padding: clamp(56px, 8vw, 96px) 0;
    }

    .section-intro-block {
      text-align: center;
      max-width: 720px;
      margin: 0 auto 40px;
    }

    .section-intro-block h2 {
      font-size: clamp(24px, 3.2vw, 34px)!important;
      font-weight: var(--w-black);
      letter-spacing: -0.02em;
      text-transform: uppercase;
      margin-bottom: 18px;
      color: var(--black)!important;
      display: inline-block;
      position: relative;
      padding-bottom: 14px;
    }

    .section-intro-block h2::after {
      content: "";
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 0;
      width: 56px;
      height: 4px;
      background: var(--richmond-orange);
    }

    .section-intro-block p {
      color: var(--text-muted);
      font-size: 17px;
      font-weight: var(--w-book);
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
@media (min-width: 1025px) {

  .hero-top {
    align-items: flex-end;
    padding-bottom: 0px;
  }

}
    /* ----- Welcome + treatments (homepage band) ----- */
    .welcome-section {
      background: var(--white);
    }

    .welcome-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto clamp(40px, 6vw, 56px);
    }

    .welcome-kicker {
      margin: 0 0 10px;
      font-size: 12px;
      font-weight: var(--w-bold);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--richmond-orange);
    }

    .welcome-title {
      margin: 0;
      padding: 0;
      line-height: 1.05;
      font-family: var(--font-brand);
    }

    .welcome-title-line {
      display: block;
      font-size: clamp(28px, 4.2vw, 44px);
      font-weight: var(--w-black);
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .welcome-title-line--navy {
      color: #001a33;
    }

    .welcome-title-line--orange {
      color: var(--richmond-orange);
    }

    .welcome-rule {
      display: block;
      width: 48px;
      height: 4px;
      margin: 18px auto 22px;
      background: var(--richmond-orange);
      border-radius: 2px;
    }

    .welcome-lead {
      margin: 0;
      font-size: clamp(15px, 1.9vw, 17px);
      font-weight: var(--w-book);
      line-height: 1.65;
      color: var(--text-body);
      max-width: 62ch;
      margin-inline: auto;
    }

    .welcome-trust-bar {
      margin-top: clamp(36px, 5vw, 52px);
      display: grid;
      grid-template-columns: 1fr 1fr auto;
      gap: clamp(16px, 3vw, 28px);
      align-items: center;
      padding: clamp(18px, 2.5vw, 24px) clamp(20px, 3vw, 32px);
      background: var(--richmond-green);
      border-radius: 4px;
      border: 1px solid rgba(255, 255, 255, 0.2)!important;
    }

    .welcome-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      min-width: 0;
    }

    .welcome-trust-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgb(255, 255, 255)!important;
      color: var(--richmond-green)!important;
    }

    .welcome-trust-icon svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
    }

    .welcome-trust-text strong {
      display: block!important;
      font-size: 14px!important;
      font-weight: var(--w-black)!important;
      color: var(--white)!important;
      margin-bottom: 4px!important;
      letter-spacing: 0.02em!important;
    }

    .welcome-trust-text span {
      font-size: 13px!important;
      color: rgba(255, 255, 255, 0.92)!important;
      line-height: 1.45!important;
      font-weight: var(--w-book)!important;
    }

    .welcome-trust-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-shrink: 0;
      padding: 14px 22px;
      background: var(--richmond-blue)!important;
      color: var(--white);
      font-family: var(--font-brand)!important;
      font-weight: var(--w-bold)!important;
      font-size: 11px!important;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      white-space: nowrap;
      transition: background 0.2s, color 0.2s!important;
    }

    .welcome-trust-cta:hover {
      background: #00145e;
      color: var(--white);
    }

    @media (max-width: 900px) {
      .welcome-trust-bar {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .welcome-trust-cta {
        width: 100%;
        justify-content: center;
      }
      
    }

    /* ----- Services 4-col ----- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .service-card {
      border: 1px solid var(--grey-dark);
      background: var(--white);
      display: flex;
      flex-direction: column;
      border-radius: 12px;
      overflow: visible;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
      transition: box-shadow 0.25s, transform 0.2s;
    }

    .service-card:hover {
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
      transform: translateY(-2px);
    }

    .service-card-visual {
      position: relative;
    }

    .service-card-img {
      aspect-ratio: 4 / 3;
      background-color: #e8e8e8;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      border-radius: 12px 12px 0 0;
    }

    .service-card-icon {
      position: absolute;
      left: 16px;
      bottom: -22px;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--white);
      border: 2px solid rgba(255, 102, 0, 0.2);
      display: grid;
      place-items: center;
      color: var(--richmond-orange);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
      z-index: 1;
    }

    .service-card-icon svg {
      width: 26px;
      height: 26px;
    }

    .service-card-body {
      padding: 32px 20px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
      background: var(--white);
      border-radius: 0 0 12px 12px;
    }

    .service-card-rule {
      display: block;
      width: 32px;
      height: 3px;
      background: var(--richmond-orange);
      border-radius: 2px;
      margin-bottom: 14px;
    }

    .service-card h3 {
      font-size: 17px;
      font-weight: var(--w-black);
      margin-bottom: 10px;
      letter-spacing: -0.02em;
      color: #001a33;
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-body);
      font-weight: var(--w-book);
      flex: 1;
      margin-bottom: 18px;
      line-height: 1.55;
    }

    .service-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
    }

    .service-card-readmore {
      font-weight: var(--w-black);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--richmond-orange);
      text-decoration: none;
    }

    .service-card-readmore:hover {
      text-decoration: underline;
    }

    .service-card-arrow {
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--richmond-orange);
      color: var(--white);
      display: grid;
      place-items: center;
      text-decoration: none;
      font-size: 16px;
      line-height: 1;
      transition: background 0.2s, transform 0.15s;
    }

    .service-card-arrow:hover {
      background: var(--richmond-orange-dark);
      transform: scale(1.05);
    }

    .link-more {
      font-weight: var(--w-black);
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--richmond-orange);
    }

    .link-more:hover {
      text-decoration: underline;
    }

    /* ----- Featured treatment ----- */
    .feature-band {
      position: relative;
      min-height: 480px;
      display: flex;
      align-items: center;
      background: #222;
      border-top: 20px solid var(--richmond-blue);
      border-bottom: 1px solid var(--richmond-blue);
    }

    .feature-band-bg {
      position: absolute;
      inset: 0;
      background: url("https://londonbridgehealthcare.co.uk/wp-content/uploads/2026/06/varicose-veins.webp") center/ cover no-repeat;
    }

    .feature-band .container {
      position: relative;
      z-index: 1;
      padding: 56px 0;
    }

    .feature-panel {
      max-width: 520px;
      background: var(--white);
      padding: clamp(28px, 4vw, 40px);
      border-radius: 2px;
      border-left: 4px solid var(--richmond-orange);
      box-shadow: var(--shadow);
    }

    .feature-panel h2 {
      font-size: clamp(22px, 3vw, 30px);
      font-weight: var(--w-black);
      text-transform: capitalize;
      margin-bottom: 14px;
      letter-spacing: -0.02em;
      color: var(--black)!important;
    }

    .feature-panel > p {
      color: var(--text-muted);
      margin-bottom: 18px;
      font-size: 15px;
      font-weight: var(--w-book);
    }

    .feature-panel ul {
      margin: 0 0 22px 1.1em;
      color: var(--text-muted);
      font-size: 15px;
      font-weight: var(--w-book);
    }

    .feature-panel li {
      margin-bottom: 8px;
    }

    /* ----- Specialists ----- */
    .specialists-band {
      background: var(--white);
    }

    .specialists-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto clamp(36px, 5vw, 48px);
    }

    .specialists-kicker {
      margin: 0 0 8px;
      font-size: 12px;
      font-weight: var(--w-bold);
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--richmond-orange);
    }

    .specialists-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 40px)!important;
      font-weight: var(--w-black);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #001a33;
      line-height: 1.1;
    }

    .specialists-rule {
      display: block;
      width: 48px;
      height: 4px;
      margin: 16px auto 18px;
      background: var(--richmond-orange);
      border-radius: 2px;
    }

    .specialists-deck {
      margin: 0;
      font-size: clamp(15px, 1.9vw, 17px)!important;
      font-weight: var(--w-book);
      line-height: 1.6;
      color: var(--text-muted)!important;
    }

    .specialists-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 22px;
    }

    .spec-card {
      background: var(--white);
      border: 1px solid var(--grey-dark);
      border-radius: 12px;
      text-align: left;
      overflow: hidden;
      box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
      display: flex;
      flex-direction: column;
      transition: box-shadow 0.25s, transform 0.2s;
    }

    .spec-card:hover {
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.11);
      transform: translateY(-2px);
    }

    .spec-photo {
      aspect-ratio: 3 / 4;
      background-color: #e8e8e8;
      background-size: cover;
      background-position: center top;
      background-repeat: no-repeat;
      border-radius: 12px 12px 0 0;
    }

    .spec-card-body {
      padding: 18px 18px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .spec-card h3 {
      font-size: 16px;
      font-weight: var(--w-black);
      margin: 0 0 6px;
      letter-spacing: -0.02em;
      color: #001a33;
      text-transform: none;
    }

    .spec-card .cred {
      font-size: 11px;
      font-weight: var(--w-semibold);
      color: var(--richmond-green);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin: 0 0 12px;
      line-height: 1.35;
    }

    .spec-card .spec-rule {
      display: block;
      height: 1px;
      background: var(--line);
      margin: 0 0 12px;
    }

    .spec-card .spec-label {
      font-size: 13px;
      color: var(--text-body);
      font-weight: var(--w-book);
      line-height: 1.45;
      margin: 0 0 18px;
      padding: 0;
    }

    .spec-card-more {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: var(--w-black);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #001a33!important;
      text-decoration: none;
    }

    .spec-card-more:hover {
      color: var(--richmond-orange)!important;
    }

    .spec-card-more-arrow {
      color: var(--richmond-orange)!important;
      font-weight: var(--w-bold)!important;
    }

    .btn-specialists-all {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 32px;
      background: #001a33!important;
      color: var(--white);
      font-family: var(--font-brand);
      font-weight: var(--w-bold);
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 6px;
      border: none;
      transition: background 0.2s, color 0.2s;
    }

    .btn-specialists-all:hover {
      background: var(--richmond-blue)!important;
      color: var(--white);
    }

    .btn-specialists-all:focus-visible {
      outline: 3px solid var(--richmond-orange)!important;
      outline-offset: 3px;
    }

    .grey-bg {
      background: linear-gradient(180deg, var(--white) 0%, var(--richmond-green-soft) 100%)!important;
    }

    .peach-bg {
      background: var(--surface-peach)!important;
    }

    .section-footer-cta {
      text-align: center;
      margin-top: 36px;
    }

    /* ----- Journey ----- */
    .journey-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      max-width: 960px;
      margin: 0 auto 32px;
      position: relative;
    }

    .journey-steps::before {
      content: "";
      position: absolute;
      top: 28px;
      left: 12%;
      right: 12%;
      height: 2px;
      background: rgba(105, 126, 112, 0.45)!important;
      z-index: 0;
    }

    .j-step {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 8px;
    }

    .j-num {
      width: 56px;
      height: 56px;
      margin: 0 auto 14px;
      border-radius: 50%;
      background: var(--richmond-orange)!important;
      color: var(--white)!important;
      font-size: 22px;
      font-weight: var(--w-black)!important;
      display: grid;
      place-items: center;
      border: 4px solid var(--white)!important;
      box-shadow: 0 0 0 1px var(--grey-dark)!important;
    }

    .j-step h3 {
      font-size: 14px;
      font-weight: var(--w-bold);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 6px;
      color: var(--black)!important;
    }

    .j-step p {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: var(--w-book);
    }

    /* ----- Speech bubble testimonials ----- */
    .bubble-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .bubble {
      position: relative;
      background: var(--white);
      border: 1px solid var(--grey-dark);
      border-radius: 16px;
      padding: 28px 24px 22px;
      box-shadow: var(--shadow);
    }

    .bubble::after {
      content: "";
      position: absolute;
      bottom: -12px;
      left: 32px;
      width: 0;
      height: 0;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 12px solid var(--white);
      filter: drop-shadow(0 1px 0 var(--grey-dark));
    }

    .bubble p {
      font-size: 16px;
      font-weight: var(--w-medium);
      font-style: italic;
      color: var(--black)!important;
      margin-bottom: 16px;
      line-height: 1.45;
    }

    .bubble cite {
      font-size: 14px;
      font-weight: var(--w-semibold);
      font-style: normal;
      color: var(--richmond-orange);
    }

    /* ----- Why choose ----- */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      text-align: center;
    }

    .why-icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 18px;
      background: var(--richmond-green);
      color: var(--white);
      border-radius: 50%;
      display: grid;
      place-items: center;
    }

    .why-icon svg {
      width: 28px;
      height: 28px;
    }

    .why-grid h3 {
      font-size: 15px;
      font-weight: var(--w-black);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 12px;
      color: var(--black)!important;
    }

    .why-grid p {
      font-size: 15px;
      color: var(--text-muted);
      font-weight: var(--w-book);
      max-width: 36ch;
      margin-inline: auto;
    }

    /* ----- Memberships ----- */
    .member-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .member-logo {
      aspect-ratio: 16 / 10;
      background: var(--white);
      border: 1px dashed rgba(0, 35, 156, 0.25);
      display: grid;
      place-items: center;
      font-size: 11px;
      font-weight: var(--w-bold);
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .member-logo--cqc {
      border: none;
      padding: 16px;
      background: #ffffff;
    }

    .member-logo--cqc img {
      width: 100%;
      max-width: 250px;
      height: auto;
      display: block;
      margin: 0 auto;
    }

    /* ----- Location ----- */
    .location-split {
      display: grid;
      grid-template-columns: 35% 65%;
      gap: 0;
      align-items: stretch;
      max-width: 1100px;
      margin: 0 auto;
    }

    .location-split__left {
      text-align: left;
      background: #f4f4f4;
      padding: clamp(24px, 4vw, 48px);
    }

    .location-book-panel {
      background: var(--richmond-green);
      padding: clamp(24px, 4vw, 48px);
      color: var(--white);
    }

    .location-book-panel .footer-text {
      color: rgba(255, 255, 255, 0.95);
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .location-transport {
      display: flex;
      align-items: center;
      gap: clamp(16px, 3vw, 24px);
      margin-bottom: 20px;
    }

    .location-transport-marks {
      display: block;
      flex-shrink: 0;
    }

    .location-transport-tagline {
      margin: 0;
      font-size: clamp(20px, 2.8vw, 28px)!important;
      font-weight: var(--w-black);
      line-height: 1.2;
      color: var(--white);
      letter-spacing: -0.02em;
    }

    .location-map-wrap {
      background: var(--white);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      line-height: 0;
    }

    .location-map-iframe {
      width: 100%;
      height: min(380px, 52vw);
      min-height: 260px;
      border: 0;
      display: block;
      filter: none;
    }

    .location-book-panel .location-map-link {
      color: var(--white);
      margin-top: 16px;
      text-underline-offset: 4px;
    }

    .location-book-panel .location-map-link:hover {
      color: rgba(255, 255, 255, 0.88);
    }

    .location-split__left h2 {
      font-size: clamp(22px, 3vw, 30px)!important;
      font-weight: var(--w-black);
      text-transform: uppercase;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      color: var(--black)!important;
    }

    .location-split__left p {
      color: var(--text-muted);
      font-size: 17px;
      margin-bottom: 12px;
      line-height: 1.55;
    }

    .location-split__left .hours {
      font-weight: var(--w-black);
      color: var(--black)!important;
      margin-top: 8px;
    }

    .location-map-link {
      display: inline-block;
      font-weight: var(--w-bold);
      font-size: 14px;
      color: var(--richmond-blue);
      text-decoration: underline;
      text-underline-offset: 3px;
      margin-top: 12px;
    }

    .location-map-link:hover {
      color: var(--richmond-orange);
    }

    /* ----- Mobile sticky bar (match header actions: call / WhatsApp / contact + book) ----- */
    .mobile-sticky-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 250;
      align-items: center;
      justify-content: center;
      padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0));
      background: #ffffffdb;
      border-top: none;
      backdrop-filter: none;
    }

    .mobile-sticky-bar-inner {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      max-width: 480px;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
    }

    .mobile-sticky-bar .header-icons-row {
      gap: 10px;
    }

    .mobile-sticky-bar .header-icon-ring {
      background: var(--richmond-orange);
      color: var(--white);
      border: none;
    }

    .mobile-sticky-bar .header-icon-ring:hover {
      background: var(--richmond-orange-dark);
      color: var(--white);
    }

    .mobile-sticky-bar .btn-header-book {
      white-space: nowrap;
    }

    /* ----- Footer - Richmond Green ----- */
    .site-footer {
      position: relative;
      overflow: hidden;
      background: var(--richmond-green);
      color: rgba(255, 255, 255, 0.82);
      padding: 56px 0 24px;
    }

    .site-footer::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: min(55%, 520px);
      height: min(45vw, 280px);
      max-height: 100%;
      background: url("https://londonbridgehealthcare.co.uk/wp-content/uploads/2024/08/london-bridge-footer-image.webp") no-repeat right bottom / contain;
      pointer-events: none;
      opacity: 0.95;
      z-index: 0;
    }

    .site-footer .container {
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr 1.15fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* First footer column - light panel + pin graphic (brand reference) */
    .footer-col-brand {
      background: #ececec;
      color: var(--black)!important;
      padding: 28px 24px 32px;
      border-radius: 2px;
    }

    .footer-logo-light {
      color: var(--black)!important;
      margin-bottom: 22px;
    }

    .footer-logo-light .logo-dot {
      background: var(--richmond-orange);
    }

    .footer-logo-merged {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      font-weight: var(--w-black);
      font-size: clamp(20px, 2.2vw, 26px)!important;
      letter-spacing: -0.03em;
      line-height: 1;
      text-transform: lowercase;
    }

    .footer-logo-part {
      font-weight: var(--w-black);
    }

    .footer-logo-light .footer-logo-sub {
      font-size: 0.72em;
      font-weight: var(--w-book);
      color: var(--black)!important;
      margin-top: 4px;
      display: block;
    }

    .footer-location-visual {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 22px;
    }

    .footer-pins-col {
      flex-shrink: 0;
      padding-top: 2px;
    }

    .footer-pins-col svg {
      width: 18px;
      height: 18px;
      color: var(--black)!important;
      display: block;
    }

    .footer-pins-copy {
      font-size: 15px;
      font-weight: var(--w-bold);
      line-height: 1.35;
    }

    .footer-pins-copy p {
      margin: 0;
      color: var(--black)!important;
    }

    .footer-treatments ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-treatments li {
      margin-bottom: 10px;
    }

    .footer-treatments a {
      font-size: 14px;
      color: rgba(255, 255, 255, 0.82);
    }

    .footer-treatments a:hover {
      color: var(--white);
    }

    .footer-book-btn {
      width: 100%;
      max-width: 280px;
      margin-bottom: 20px;
      text-align: center;
      justify-content: center;
    }

    .footer-contact-lines {
      font-size: 15px;
      font-weight: var(--w-bold);
      line-height: 1.6;
      margin: 0;
    }

    .footer-contact-lines a {
      color: var(--black)!important;
      text-decoration: none;
    }

    .footer-contact-lines a:hover {
      color: var(--richmond-orange);
    }

    .site-footer .footer-text {
      font-size: 14px;
      font-weight: var(--w-book);
      line-height: 1.65;
      margin-bottom: 18px;
      max-width: 32ch;
    }

    .site-footer h3 {
      font-size: 13px;
      font-weight: var(--w-black);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 14px;
    }

    .site-footer ul {
      list-style: none;
    }

    .site-footer li {
      margin-bottom: 8px;
    }

    .site-footer .footer-grid > div:not(.footer-col-brand) a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
    }

    .site-footer .footer-grid > div:not(.footer-col-brand) a:hover {
      color: var(--white);
    }

    .footer-map {
      width: 100%;
      height: 200px;
      border: 0;
      margin-top: 12px;
      filter: grayscale(100%) contrast(1.05);
    }

    .footer-social {
      display: flex;
      gap: 8px;
      margin-top: 14px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      background: var(--richmond-orange);
      color: var(--white);
      border-radius: 50%;
    }

    .footer-social a:hover {
      background: var(--richmond-orange-dark);
    }

    .copyright {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      text-align: center;
      font-size: 11px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.45);
    }



    @media (max-width: 1024px) {
      .header-grid {
        grid-template-columns: 1fr auto;
        align-items: end;
        min-height: 88px;
        padding: 20px 0 16px;
      }

      .logo {
        grid-column: 1;
      }

      .header-actions {
        grid-column: 2;
        grid-row: 1;
      }

      .nav-primary {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .services-grid,
      .specialists-grid,
      .bubble-grid,
      .why-grid,
      .member-row,
      .journey-steps {
        grid-template-columns: repeat(2, 1fr);
      }

      .journey-steps::before {
        display: none;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .hero-strip {
        grid-template-columns: 1fr;
      }

      .hero-strip-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      }

      .hero-strip-item:last-child {
        border-bottom: none;
      }
    }

    @media (max-width: 640px) {
      body {
        padding-bottom: 96px;
      }

      .hero {
        min-height: 0;
      }

      .hero-top {
        padding-bottom: 0px;
      }

      .mobile-sticky-bar {
        display: flex;
      }

      .site-footer {
        padding-bottom: 80px;
      }

      .header-grid .btn-header-book {
        display: none;
      }

      .services-grid,
      .specialists-grid,
      .bubble-grid,
      .why-grid,
      .member-row,
      .journey-steps,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .mobile-drawer {
        padding-bottom: 100px;
      }

      .location-split {
        grid-template-columns: 1fr;
      }

      .specialists-grid.mob-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 4px 12px;
        margin: 0 -8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
      }

      .specialists-grid.mob-carousel .spec-card {
        flex: 0 0 min(86vw, 320px);
        scroll-snap-align: start;
      }

      .member-row.mob-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding: 0 4px 12px;
        margin: 0 -8px;
        -webkit-overflow-scrolling: touch;
      }

      .member-row.mob-carousel .member-logo {
        flex: 0 0 min(72vw, 280px);
        scroll-snap-align: start;
      }

      .bubble-grid.mob-carousel {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding: 0 4px 12px;
        margin: 0 -8px;
        -webkit-overflow-scrolling: touch;
      }

      .bubble-grid.mob-carousel .bubble {
        flex: 0 0 min(88vw, 340px);
        scroll-snap-align: start;
      }
    }
    .location-map-wrap{
      border-radius:24px;
      overflow:hidden;
      box-shadow:0 12px 40px rgba(0,0,0,0.18);
    }

    .location-map-iframe{
      width:100%;
     height: min(380px, 52vw);
      border:0;
      display:block;
    }
    /* Mobile map responsive fix */
@media (max-width: 640px) {
  .location-book-panel {
    padding: 22px 16px;
  }

  .location-transport {
    width: 100%;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .location-transport-tagline {
    font-size: 20px;
    line-height: 1.25;
  }

  .location-map-wrap {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    overflow: hidden;
  }

  .location-map-iframe {
    width: 100%;
    height: 430px;
    min-height: 430px;
    display: block;
  }
}/* Fix map overflowing on mobile */
@media (max-width: 640px) {
  .location-split,
  .location-book-panel,
  .location-map-wrap {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .location-book-panel {
    padding: 20px 14px !important;
  }

  .location-map-iframe {
    width: 100% !important;
    max-width: 100% !important;
    height: 420px !important;
    min-height: 420px !important;
    border: 0 !important;
    display: block !important;
  }

  .location-transport {
    width: 100% !important;
    max-width: 100% !important;
  }
}