/* luxury-chauffeur-services-london.php — Extracted 2026-05-20. */

  /* Services hub - split-panel hero (scoped) */
  .services-hero {
    position: relative;
    min-height: 720px;
    padding-top: 140px;
    padding-bottom: 80px;
    background: #030303;
    overflow: hidden;
  }
  .services-hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center right;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 28%, #000 60%);
            mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.55) 28%, #000 60%);
    z-index: 0;
  }
  .services-hero-content { position: relative; z-index: 2; max-width: 640px; }
  .services-hero-eyebrow {
    color: #D4AF37;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 22px;
    display: block;
  }
  .services-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.5rem);
    line-height: 1.05;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
  }
  .services-hero-title .accent { color: #D4AF37; font-style: italic; font-weight: 400; }
  .services-hero-sub {
    color: #cbcbcb;
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 300;
    max-width: 560px;
    margin-bottom: 36px;
  }
  .services-hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

  @media (max-width: 880px) {
    .services-hero { min-height: 580px; padding-top: 120px; }
    .services-hero-bg-img {
      width: 100%;
      opacity: 0.38;
      -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 75%);
              mask-image: linear-gradient(180deg, transparent 0%, #000 75%);
    }
  }

  /* Ambient gold-glow + nav gutter mask opt-outs (page has a hero image) */
  .ambient-light { display: none !important; }
  body > div[aria-hidden="true"][style*="height: 145px"] { display: none !important; }

  /* Image-fill service cards with text overlay (scoped, no Tailwind arbitrary deps) */
  .service-card-overlay { position: relative; display: block; }
  .service-card-overlay--core       { aspect-ratio: 4 / 3; }
  .service-card-overlay--specialist { aspect-ratio: 4 / 5; }
  /* Aspect-ratio fallback for older browsers */
  @supports not (aspect-ratio: 1) {
    .service-card-overlay--core       { height: 320px; }
    .service-card-overlay--specialist { height: 380px; }
  }
  .service-card-overlay__scrim {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 45%;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.78) 35%,
      rgba(0,0,0,0.40) 75%,
      rgba(0,0,0,0)    100%
    );
    pointer-events: none;
    z-index: 1;
  }
  .service-card-overlay__body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 1.5rem;
    z-index: 2;
  }
  .service-card-overlay__body--compact { padding: 1.25rem; }
  .service-card-overlay__title,
  .service-card-overlay__desc,
  .service-card-overlay__cta {
    text-shadow: 0 2px 6px rgba(0,0,0,0.85), 0 1px 2px rgba(0,0,0,0.9);
  }
