/* ============================================================
   LA Transfers — monochrome editorial, executive feel
   ============================================================ */

:root {
  --ink:        #0a0a0a;
  --ink-2:      #161616;
  --ink-3:      #2a2a2a;
  --line:       #e6e3dd;
  --line-dark:  #2a2a2a;
  --paper:      #f6f3ec;     /* warm off-white, like the splash */
  --paper-2:    #ece8df;
  --white:      #ffffff;
  --muted:      #6b6660;
  --accent:     #8a6a3b;     /* understated bronze */
  --accent-2:   #c8a974;

  --maxw: 1240px;
  --r:    14px;
  --r-lg: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);

  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--ink); color: var(--paper); }

/* ============= NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(20px, 4vw, 56px);
  background: rgba(246, 243, 236, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  flex: 0 0 auto;
}
.brand-logo {
  width: clamp(132px, 14vw, 190px);
  height: auto;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
}
@media (max-width: 480px) {
  .brand-logo { width: 118px; }
  .nav { padding-inline: 14px; padding-block: 8px; }
}

.nav-links {
  margin-left: auto;
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-3);
  position: relative;
  padding: 6px 0;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  margin-left: 2px;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.nav-cta:hover { transform: translateY(-1px); background: var(--ink-2); }

@media (max-width: 760px) {
  .nav { gap: 14px; }
  .nav-links { display: none; }
  .nav-cta { margin-left: auto; padding: 9px 13px; font-size: 13px; }
}

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: auto;
  display: block;
  padding: clamp(18px, 2.8vw, 36px) clamp(20px, 4vw, 56px) clamp(32px, 4.5vw, 58px);
  scroll-margin-top: 88px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-bg img {
  position: absolute;
  right: clamp(40px, 12vw, 210px);
  top: clamp(4px, 2vw, 30px);
  width: min(58vw, 820px);
  min-width: 520px;
  height: auto;
  object-fit: contain;
  opacity: .085;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 82% at 0% 44%, var(--paper) 0%, rgba(246,243,236,.9) 52%, rgba(246,243,236,0) 82%),
    linear-gradient(180deg, rgba(246,243,236,.92) 0%, rgba(246,243,236,.62) 24%, rgba(246,243,236,0) 72%, var(--paper) 100%);
}

.hero-layout {
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 500px);
  gap: clamp(24px, 3.4vw, 54px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.hero-inner {
  max-width: 700px;
  position: relative;
  padding-top: clamp(20px, 4vw, 62px);
}

.hero-booking {
  width: 100%;
  justify-self: end;
  position: relative;
  z-index: 2;
  padding-top: 0;
  margin-top: clamp(0px, 1vw, 10px);
}
.hero-booking h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 6px 0 8px;
}
.hero-booking p {
  color: var(--ink-3);
  margin: 0 0 12px;
  font-size: 14px;
}
.booking-kicker {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-inner { padding-top: 24px; }
  .hero-booking { max-width: 720px; justify-self: start; margin-top: 8px; }
  .hero-bg img { right: -18%; top: 18%; width: 95%; min-width: 0; opacity: .075; }
}
@media (max-width: 760px) {
  .hero { padding-top: 20px; padding-bottom: 34px; }
  .hero-bg img { right: -34%; top: 22%; width: 130%; min-width: 0; opacity: .07; }
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 18px;
  position: relative;
}
.eyebrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: 10px;
  width: 48px; height: 1px;
  background: var(--ink);
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 1.02;
  letter-spacing: -.015em;
  margin: 18px 0 22px;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--ink-3);
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-3);
  max-width: 560px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { transform: translateY(-1px); background: var(--ink-2); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(0,0,0,.18);
}
.btn-ghost:hover { border-color: var(--ink); }
.btn-light {
  background: var(--paper);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-1px); }

.hero-points {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  max-width: 560px;
  border-top: 1px solid rgba(0,0,0,.12);
  padding-top: 28px;
}
.hero-points li {
  display: flex;
  flex-direction: column;
}
.hero-points strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -.01em;
}
.hero-points span {
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
@media (max-width: 560px) {
  .hero-points { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 22px; height: 36px;
  border: 1px solid rgba(0,0,0,.25);
  border-radius: 999px;
  display: none;
  justify-content: center;
  padding-top: 6px;
}
.hero-scroll span {
  width: 2px; height: 8px;
  background: var(--ink);
  border-radius: 2px;
  animation: scrollDot 1.8s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============= SECTIONS ============= */
.hero + .section { padding-top: clamp(42px, 6vw, 72px); }
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
}
.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 72px);
  text-align: center;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.section-tag::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--accent);
  flex: none;
}
.section-tag.light { color: rgba(255,255,255,.7); }
.section-tag.light::before { background: var(--accent-2); }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -.015em;
  margin: 0 0 18px;
}
.section-head p {
  color: var(--ink-3);
  font-size: clamp(15px, 1.2vw, 18px);
  margin: 0;
}

/* ============= SERVICE CARDS ============= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 38px 34px 34px;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px -34px rgba(0,0,0,.45);
  border-color: rgba(138,106,59,.45);
}
.card-feature--accent {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.card-feature--accent:hover { border-color: var(--accent-2); }
.card-feature--accent .card-lede { color: rgba(255,255,255,.78); }
.card-feature--accent .card-list { color: rgba(255,255,255,.86); }
.card-feature--accent .card-list li::before { background: var(--accent-2); }
.card-feature--accent .card-link { color: var(--accent-2); }

.card-icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid rgba(138,106,59,.30);
  border-radius: 16px;
  color: var(--accent);
  margin-bottom: 26px;
}
.card-feature--accent .card-icon {
  background: rgba(255,255,255,.06);
  border-color: rgba(200,169,116,.45);
  color: var(--accent-2);
}
.card-icon svg { width: 30px; height: 30px; }

.card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -.01em;
  margin: 0 0 8px;
}
.card-lede {
  margin: 0 0 18px;
  color: var(--ink-3);
  font-size: 15px;
}
.card-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  font-size: 14.5px;
  color: var(--ink-3);
}
.card-list li {
  position: relative;
  padding: 7px 0 7px 18px;
  border-top: 1px solid rgba(0,0,0,.06);
}
.card-list li:first-child { border-top: none; }
.card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 16px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.card-link {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--accent);
  border-bottom: 1px solid rgba(138,106,59,.45);
  padding-bottom: 2px;
  transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.card-link:hover {
  transform: translateX(3px);
  border-color: var(--accent);
}

/* ============= CONTRACT BANNER ============= */
.contract {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) clamp(20px, 4vw, 56px);
}
.contract-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 900px) {
  .contract-grid { grid-template-columns: 1fr; }
}
.contract-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 14px 0 18px;
}
.contract-copy p {
  color: rgba(255,255,255,.75);
  max-width: 560px;
  margin: 0 0 32px;
  font-size: clamp(15px, 1.2vw, 17px);
}
.contract-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
  margin-bottom: 36px;
}
@media (max-width: 560px) {
  .contract-points { grid-template-columns: 1fr; }
}
.contract-points > div {
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.contract-points strong {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 4px;
}
.contract-points span {
  font-size: 13.5px;
  color: rgba(255,255,255,.65);
}

.contract-quote {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: clamp(24px, 3vw, 40px);
}
.contract-quote blockquote {
  margin: 0;
}
.contract-quote p {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.3;
  margin: 0 0 16px;
  color: var(--paper);
}
.contract-quote cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ============= BOOKING WIDGET ============= */
.widget-frame {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  min-height: 0;
  position: relative;
  overflow: visible;
}
.widget-frame iframe {
  width: 100% !important;
  max-width: 100%;
  min-height: 0;
  height: 520px !important;
  border: 0;
  display: block;
  background: transparent;
  margin: 0;
}
.widget-fallback {
  color: var(--ink-3);
  text-align: center;
  padding: 40px 20px;
}
.widget-fallback a { border-bottom: 1px solid currentColor; }
.widget-note {
  font-size: 10.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  margin: 8px 0 0;
}
@media (max-width: 1040px) {
  .widget-frame { min-height: 0; }
  .widget-frame iframe { min-height: 0; height: 560px !important; }
}
/* ============= AREAS ============= */
.section--areas {
  border-top: 1px solid rgba(0,0,0,.06);
}
.areas-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.areas-grid li {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 22px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -.005em;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.areas-grid li:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ============= FOOTER ============= */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px clamp(20px, 4vw, 56px) 28px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(40px, 6vw, 80px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr; }
}
.footer-logo { width: min(300px, 82vw); height: auto; opacity: .95; }
.footer-brand p {
  margin: 0;
  color: rgba(255,255,255,.6);
  max-width: 320px;
  font-size: 14px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 600px) { .footer-cols { grid-template-columns: 1fr 1fr; } }
.footer-cols h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin: 0 0 14px;
}
.footer-cols a {
  display: block;
  font-size: 14.5px;
  padding: 4px 0;
  color: rgba(255,255,255,.85);
  transition: color .2s var(--ease);
}
.footer-cols a:hover { color: var(--accent-2); }

.footer-base {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}

/* ============= reduced motion ============= */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

@media (max-width: 760px) {
  .widget-frame iframe { height: 600px !important; }
}

/* ============================================================
   Final booking embed visibility fix
   - compact top nav so the full form fits on normal desktop screens
   - no visible frame around the booking widget
   - taller iframe so the RouteOrdo form does not need internal scrolling
   ============================================================ */
body { overflow-x: hidden; }
.nav {
  padding-top: 6px;
  padding-bottom: 6px;
}
.brand-logo {
  width: clamp(108px, 9.5vw, 148px);
  background: transparent !important;
  mix-blend-mode: multiply;
}
.nav-cta { white-space: nowrap; }

.hero {
  padding-top: clamp(6px, 1.2vw, 16px);
  padding-bottom: clamp(14px, 2vw, 28px);
  overflow: visible;
}
.hero-bg { overflow: visible; }
.hero-bg img {
  top: clamp(0px, 1vw, 14px);
  right: clamp(24px, 9vw, 150px);
  width: min(58vw, 790px);
  opacity: .08;
}
.hero-layout {
  grid-template-columns: minmax(0, 1fr) minmax(430px, 540px);
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
}
.hero-inner { padding-top: clamp(20px, 3.2vw, 46px); }
.hero-booking {
  margin-top: 0 !important;
  padding-top: 0 !important;
  align-self: start;
}
.hero-booking .booking-kicker,
.hero-booking > h2,
.hero-booking > p,
.widget-note {
  display: none !important;
}
.widget-frame {
  width: 100%;
  max-width: 100%;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}
.widget-frame iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 690px !important;
  min-height: 690px !important;
  border: 0 !important;
  display: block !important;
  overflow: hidden !important;
  background: transparent !important;
}
.hero + .section { padding-top: clamp(28px, 4vw, 48px); }

@media (min-width: 1041px) and (max-height: 900px) {
  .brand-logo { width: clamp(104px, 8.8vw, 136px); }
  .nav { padding-top: 5px; padding-bottom: 5px; }
  .hero { padding-top: 4px; padding-bottom: 16px; }
  .hero-inner { padding-top: 22px; }
  .hero-title {
    font-size: clamp(40px, 6vw, 78px);
    margin-top: 12px;
    margin-bottom: 14px;
  }
  .hero-sub { margin-bottom: 22px; }
  .hero-actions { margin-bottom: 24px; }
  .hero-points { padding-top: 16px; gap: 18px; }
  .widget-frame iframe {
    height: 690px !important;
    min-height: 690px !important;
  }
}

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-booking { max-width: 720px; justify-self: stretch; }
  .widget-frame iframe {
    height: 720px !important;
    min-height: 720px !important;
  }
}
@media (max-width: 760px) {
  .hero { padding-top: 12px; }
  .hero-inner { padding-top: 16px; }
  .widget-frame iframe {
    height: 740px !important;
    min-height: 740px !important;
  }
}
@media (max-width: 480px) {
  .brand-logo { width: 104px; }
  .widget-frame iframe {
    height: 780px !important;
    min-height: 780px !important;
  }
}


/* ============================================================
   FINAL OVERRIDE — make the booking widget fit the hero
   ============================================================ */
html { scroll-behavior: auto !important; }
body { overflow-x: hidden !important; }

.nav {
  min-height: 56px;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.brand-logo {
  width: clamp(108px, 10vw, 138px) !important;
  height: auto !important;
  background: transparent !important;
  mix-blend-mode: multiply;
}

.hero {
  min-height: calc(100svh - 58px);
  padding-top: 4px !important;
  padding-bottom: 10px !important;
  overflow: visible !important;
}
.hero-layout {
  align-items: start !important;
  gap: clamp(12px, 2.3vw, 34px) !important;
}
.hero-booking {
  margin-top: 0 !important;
  padding-top: 0 !important;
  align-self: start !important;
}
.widget-frame {
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}
.widget-frame iframe {
  width: 100% !important;
  max-width: none !important;
  height: 910px !important;
  min-height: 910px !important;
  border: 0 !important;
  background: transparent !important;
  overflow: hidden !important;
  display: block !important;
}
.hero + .section { padding-top: clamp(24px, 4vw, 44px) !important; }

@media (min-width: 1041px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(430px, 540px) !important;
  }
  .hero-inner { padding-top: clamp(18px, 3vw, 42px) !important; }
}

@media (max-width: 1040px) {
  .hero-layout { grid-template-columns: 1fr !important; }
  .hero-inner { display: none !important; }
  .hero-booking {
    width: min(540px, 100%) !important;
    max-width: 540px !important;
    justify-self: center !important;
  }
  .widget-frame { margin: 0 auto !important; }
}

@media (max-height: 820px) and (min-width: 521px) {
  .nav { min-height: 50px; }
  .brand-logo { width: clamp(96px, 8.2vw, 118px) !important; }
  .hero { min-height: calc(100svh - 50px); padding-top: 2px !important; }
}

@media (max-width: 520px) {
  .nav { min-height: 52px; }
  .brand-logo { width: 104px !important; }
  .hero {
    min-height: auto;
    padding: 8px 10px 18px !important;
  }
  .widget-frame {
    max-width: 100% !important;
    overflow: visible !important;
  }
  .widget-frame iframe {
    height: 900px !important;
    min-height: 900px !important;
    transform: none !important;
    width: 100% !important;
  }
}

/* ============================================================
   FINAL TWEAK — wider internal booking layout
   Makes One Way / Airport sit side-by-side while still fitting.
   ============================================================ */
.hero-booking {
  width: min(600px, 100%) !important;
  max-width: 600px !important;
}
.widget-frame {
  max-width: 600px !important;
}
@media (min-width: 1041px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 600px) !important;
  }
}
@media (max-width: 1040px) {
  .hero-booking {
    width: min(600px, 100%) !important;
    max-width: 600px !important;
  }
}
@media (max-width: 520px) {
  .hero-booking,
  .widget-frame {
    width: 100% !important;
    max-width: 100% !important;
  }
}


/* ============================================================
   Yusuf final patch — actual logo + larger airport booking fit
   ============================================================ */
.brand-logo {
  width: clamp(136px, 12vw, 188px) !important;
  height: auto !important;
  max-height: 78px !important;
  object-fit: contain !important;
  mix-blend-mode: normal !important;
}
.nav {
  min-height: 66px !important;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.footer-logo {
  width: min(260px, 78vw) !important;
  height: auto !important;
  filter: none !important;
  opacity: .96 !important;
}
.hero-booking {
  width: min(670px, 100%) !important;
  max-width: 670px !important;
}
.widget-frame {
  max-width: 670px !important;
  width: 100% !important;
}
.widget-frame iframe {
  height: 1040px !important;
  min-height: 1040px !important;
}
@media (min-width: 1041px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 670px) !important;
  }
}
@media (max-width: 1040px) {
  .hero {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .hero-booking {
    width: min(670px, 100%) !important;
    max-width: 670px !important;
  }
  .widget-frame iframe {
    height: 1060px !important;
    min-height: 1060px !important;
  }
}
@media (max-width: 520px) {
  .brand-logo { width: 122px !important; max-height: 70px !important; }
  .nav { min-height: 58px !important; }
  .widget-frame iframe {
    height: 1080px !important;
    min-height: 1080px !important;
  }
}

/* ============================================================
   Adaptive iframe height patch
   The booking iframe now expands naturally; the next section is
   pushed down instead of the form being clipped inside a fixed hero.
   ============================================================ */
.hero {
  min-height: auto !important;
  overflow: visible !important;
  padding-bottom: clamp(28px, 4vw, 54px) !important;
}
.hero-layout {
  align-items: start !important;
}
.hero-booking,
.widget-frame {
  overflow: visible !important;
}
.widget-frame {
  height: auto !important;
  min-height: 1360px !important;
}
.widget-frame iframe {
  width: 100% !important;
  max-width: 100% !important;
  height: 1360px !important;
  min-height: 1360px !important;
  transform: none !important;
  overflow: visible !important;
}
.hero + .section {
  clear: both;
  padding-top: clamp(34px, 5vw, 64px) !important;
}
@media (max-width: 1040px) {
  .widget-frame { min-height: 1420px !important; }
  .widget-frame iframe {
    height: 1420px !important;
    min-height: 1420px !important;
  }
}
@media (max-width: 760px) {
  .widget-frame { min-height: 1500px !important; }
  .widget-frame iframe {
    height: 1500px !important;
    min-height: 1500px !important;
  }
}
@media (max-width: 420px) {
  .widget-frame { min-height: 1580px !important; }
  .widget-frame iframe {
    height: 1580px !important;
    min-height: 1580px !important;
  }
}

/* ============================================================
   Final mobile flow patch
   Desktop/tablet keeps the private-hire hero intro beside the widget.
   Mobile shows: private-hire intro -> What we do cards -> booking form.
   ============================================================ */
.hero-layout {
  grid-template-areas:
    "intro booking"
    "services services" !important;
}
.hero-inner {
  grid-area: intro !important;
}
.hero-booking {
  grid-area: booking !important;
}
.hero-services {
  grid-area: services !important;
  width: 100% !important;
  max-width: var(--maxw) !important;
  margin: clamp(24px, 4vw, 46px) auto 0 !important;
  padding: clamp(22px, 4vw, 48px) 0 0 !important;
}
.hero-services .section-head {
  margin-bottom: clamp(28px, 4vw, 46px) !important;
}

@media (max-width: 1040px) {
  .hero-layout {
    width: min(720px, 100%) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "intro"
      "services"
      "booking" !important;
    gap: 22px !important;
    margin: 0 auto !important;
  }

  .hero-inner {
    display: block !important;
    width: min(670px, 100%) !important;
    max-width: 670px !important;
    margin: 0 auto !important;
    padding-top: 16px !important;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 62px) !important;
    line-height: 1.02 !important;
    margin-bottom: 16px !important;
  }

  .hero-sub {
    max-width: 620px !important;
    margin-bottom: 22px !important;
  }

  .hero-actions {
    margin-bottom: 24px !important;
  }

  .hero-points {
    max-width: 670px !important;
    gap: 14px !important;
  }

  .hero-services {
    width: min(670px, 100%) !important;
    max-width: 670px !important;
    margin: 2px auto 0 !important;
    padding: 8px 0 0 !important;
  }

  .hero-services .section-head {
    max-width: 670px !important;
    margin: 0 0 18px !important;
    text-align: left !important;
  }

  .hero-services .section-tag {
    margin-bottom: 10px !important;
  }

  .hero-services .section-head h2 {
    font-size: clamp(28px, 7vw, 40px) !important;
    margin-bottom: 10px !important;
  }

  .hero-services .section-head p {
    font-size: 15px !important;
  }

  .hero-services .cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-services .card {
    min-height: auto !important;
    padding: 24px 22px !important;
  }

  .hero-services .card-icon {
    width: 46px !important;
    height: 46px !important;
    margin-bottom: 14px !important;
  }

  .hero-services .card-icon svg {
    width: 23px !important;
    height: 23px !important;
  }

  .hero-services .card h3 {
    font-size: 25px !important;
  }

  .hero-services .card-list {
    margin-bottom: 16px !important;
  }

  .hero-booking {
    margin-top: 6px !important;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 10px !important;
  }

  .hero-layout {
    gap: 18px !important;
  }

  .hero-inner,
  .hero-services,
  .hero-booking {
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-actions {
    gap: 10px !important;
  }

  .hero-actions .btn {
    padding: 12px 16px !important;
  }

  .hero-points {
    grid-template-columns: 1fr !important;
  }

  .hero-services .card {
    padding: 22px 18px !important;
  }
}

/* ============================================================
   Final responsive layout patch — cards beside widget on desktop
   - desktop: hero intro + service cards sit on the left, booking widget on right
   - the "Three things" line sits underneath the cards, not as a big separate block
   - mobile: compact hero -> cards -> booking form, no separate mobile site needed
   ============================================================ */

@media (min-width: 1041px) {
  .hero {
    padding-top: 8px !important;
    padding-bottom: clamp(30px, 4vw, 58px) !important;
  }

  .hero-layout {
    width: min(1320px, 100%) !important;
    display: grid !important;
    grid-template-columns: minmax(470px, 1fr) minmax(600px, 670px) !important;
    grid-template-areas:
      "intro booking"
      "services booking" !important;
    align-items: start !important;
    gap: clamp(18px, 2.4vw, 38px) !important;
  }

  .hero-inner {
    grid-area: intro !important;
    max-width: 620px !important;
    padding-top: clamp(18px, 3vw, 44px) !important;
  }

  .hero-title {
    font-size: clamp(48px, 5.6vw, 82px) !important;
    line-height: 1.01 !important;
    margin: 14px 0 16px !important;
  }

  .hero-sub {
    max-width: 590px !important;
    margin-bottom: 24px !important;
  }

  .hero-actions {
    margin-bottom: 24px !important;
  }

  .hero-points {
    max-width: 590px !important;
    gap: 14px !important;
    padding-top: 16px !important;
  }

  .hero-booking {
    grid-area: booking !important;
    align-self: start !important;
    justify-self: end !important;
    width: min(670px, 100%) !important;
    max-width: 670px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-services {
    grid-area: services !important;
    width: 100% !important;
    max-width: 620px !important;
    margin: 20px 0 0 !important;
    padding: 0 !important;
  }

  .hero-services .cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-services .card {
    min-height: 0 !important;
    border-radius: 18px !important;
    padding: 18px 20px !important;
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) !important;
    grid-template-areas:
      "icon title"
      "icon lede"
      "list list"
      "link link" !important;
    column-gap: 14px !important;
    row-gap: 3px !important;
  }

  .hero-services .card-icon {
    grid-area: icon !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    margin: 0 !important;
  }

  .hero-services .card-icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .hero-services .card h3 {
    grid-area: title !important;
    font-size: 23px !important;
    line-height: 1.05 !important;
    margin: 0 !important;
  }

  .hero-services .card-lede {
    grid-area: lede !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    margin: 2px 0 0 !important;
  }

  .hero-services .card-list {
    grid-area: list !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2px 16px !important;
    margin: 10px 0 8px !important;
    font-size: 13.25px !important;
    line-height: 1.35 !important;
  }

  .hero-services .card-list li {
    border-top: 0 !important;
    padding: 3px 0 3px 15px !important;
  }

  .hero-services .card-list li::before {
    top: 10px !important;
    width: 5px !important;
    height: 5px !important;
  }

  .hero-services .card-link {
    grid-area: link !important;
    justify-self: start !important;
    font-size: 13px !important;
    margin-top: 0 !important;
  }

  .hero-services .section-head {
    text-align: left !important;
    max-width: 620px !important;
    margin: 16px 0 0 !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0,0,0,.12) !important;
  }

  .hero-services .section-tag {
    margin-bottom: 8px !important;
  }

  .hero-services .section-head h2 {
    font-size: clamp(26px, 2.8vw, 36px) !important;
    line-height: 1.05 !important;
    margin: 0 0 8px !important;
  }

  .hero-services .section-head p {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    max-width: 580px !important;
  }

  .widget-frame,
  .widget-frame iframe {
    max-width: 670px !important;
  }
}

@media (max-width: 1040px) {
  .hero-layout {
    width: min(720px, 100%) !important;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "intro"
      "services"
      "booking" !important;
    gap: 16px !important;
  }

  .hero-inner {
    grid-area: intro !important;
    display: block !important;
    padding-top: 10px !important;
  }

  .hero-booking {
    grid-area: booking !important;
    margin-top: 4px !important;
  }

  .hero-services {
    grid-area: services !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .hero-services .section-head {
    order: 2;
    text-align: left !important;
    margin: 14px 0 0 !important;
    padding-top: 14px !important;
    border-top: 1px solid rgba(0,0,0,.12) !important;
  }

  .hero-services .section-head h2 {
    font-size: clamp(25px, 6.5vw, 36px) !important;
    margin-bottom: 8px !important;
  }

  .hero-services .section-head p {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 8px 12px 18px !important;
  }

  .hero-layout {
    gap: 14px !important;
  }

  .eyebrow {
    font-size: 10px !important;
    letter-spacing: .22em !important;
    padding-bottom: 10px !important;
  }

  .eyebrow::after {
    bottom: 5px !important;
    width: 42px !important;
  }

  .hero-title {
    font-size: clamp(38px, 13vw, 56px) !important;
    line-height: .98 !important;
    margin: 10px 0 12px !important;
  }

  .hero-sub {
    font-size: 15px !important;
    line-height: 1.45 !important;
    margin-bottom: 16px !important;
  }

  .hero-actions {
    margin-bottom: 16px !important;
  }

  .hero-actions .btn {
    padding: 11px 15px !important;
    font-size: 13px !important;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    padding-top: 12px !important;
  }

  .hero-points strong {
    font-size: 16px !important;
    line-height: 1.05 !important;
  }

  .hero-points span {
    font-size: 9px !important;
    letter-spacing: .1em !important;
  }

  .hero-services .cards {
    gap: 10px !important;
  }

  .hero-services .card {
    padding: 16px 16px !important;
    border-radius: 16px !important;
  }

  .hero-services .card-icon {
    width: 40px !important;
    height: 40px !important;
    margin-bottom: 10px !important;
  }

  .hero-services .card h3 {
    font-size: 22px !important;
  }

  .hero-services .card-lede {
    margin-bottom: 8px !important;
  }

  .hero-services .card-list {
    font-size: 13px !important;
    margin-bottom: 10px !important;
  }

  .hero-services .card-list li {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .hero-services .card-list li:nth-child(n+3) {
    display: none !important;
  }

  .hero-services .section-head {
    margin-top: 10px !important;
    padding-top: 10px !important;
  }

  .hero-services .section-tag {
    margin-bottom: 6px !important;
  }

  .hero-services .section-head h2 {
    font-size: 24px !important;
  }

  .hero-services .section-head p {
    display: none !important;
  }
}

/* ============================================================
   Final patch — "Three things" above widget on desktop only
   ============================================================ */
.hero-widget-head {
  display: none !important;
}

.hero-widget-title {
  font-family: var(--font-display);
  font-weight: 400;
  color: inherit;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 1041px) {
  .hero-layout {
    grid-template-columns: minmax(470px, 1fr) minmax(600px, 670px) !important;
    grid-template-areas:
      "intro widgethead"
      "services booking" !important;
  }

  .hero-widget-head {
    grid-area: widgethead !important;
    display: block !important;
    max-width: 670px !important;
    width: 100% !important;
    justify-self: end !important;
    text-align: left !important;
    margin: clamp(18px, 3vw, 44px) 0 8px !important;
    padding: 0 4px 14px !important;
    border-bottom: 1px solid rgba(0,0,0,.10) !important;
  }

  .hero-widget-head .section-tag {
    margin-bottom: 8px !important;
  }

  .hero-widget-head h2,
  .hero-widget-head .hero-widget-title {
    font-size: clamp(28px, 3.2vw, 42px) !important;
    line-height: 1.05 !important;
    margin: 0 0 8px !important;
  }

  .hero-widget-head p:not(.hero-widget-title) {
    max-width: 640px !important;
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    margin: 0 !important;
  }

  .hero-services .section-head {
    display: none !important;
  }

  .hero-services {
    margin-top: 8px !important;
  }

  .hero-booking {
    margin-top: 0 !important;
  }
}

@media (max-width: 1040px) {
  .hero-widget-head,
  .hero-services .section-head {
    display: none !important;
  }
}

/* ============================================================
   GAP CLEANUP PATCH — independent left/right desktop columns
   Removes the forced grid row gap between the "Three things" text
   and the booking widget. Mobile keeps a natural single-column flow.
   ============================================================ */
.hero-left,
.hero-right {
  min-width: 0 !important;
}

@media (min-width: 1041px) {
  .hero {
    padding-top: clamp(6px, 1.1vw, 16px) !important;
    padding-bottom: clamp(22px, 3vw, 40px) !important;
  }

  .hero-layout {
    width: min(1320px, 100%) !important;
    display: grid !important;
    grid-template-columns: minmax(455px, 600px) minmax(560px, 670px) !important;
    grid-template-areas: none !important;
    gap: clamp(16px, 2.5vw, 34px) !important;
    align-items: start !important;
  }

  .hero-left,
  .hero-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
  }

  .hero-inner {
    grid-area: auto !important;
    display: block !important;
    max-width: 600px !important;
    padding-top: clamp(6px, 1.8vw, 24px) !important;
    margin: 0 !important;
  }

  .hero-title {
    font-size: clamp(46px, 5.25vw, 76px) !important;
    margin: 10px 0 14px !important;
  }

  .hero-sub {
    max-width: 570px !important;
    margin-bottom: 18px !important;
  }

  .hero-actions {
    margin-bottom: 18px !important;
  }

  .hero-points {
    max-width: 570px !important;
    padding-top: 14px !important;
    gap: 12px !important;
  }

  .hero-services {
    grid-area: auto !important;
    width: 100% !important;
    max-width: 600px !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
  }

  .hero-services .section-head {
    display: none !important;
  }

  .hero-services .cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .hero-services .card {
    min-height: 0 !important;
    padding: 14px 18px !important;
    border-radius: 16px !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    column-gap: 12px !important;
  }

  .hero-services .card-icon {
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
  }

  .hero-services .card-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .hero-services .card h3 {
    font-size: 21px !important;
  }

  .hero-services .card-lede {
    font-size: 13px !important;
  }

  .hero-services .card-list {
    margin: 8px 0 6px !important;
    font-size: 12.5px !important;
    gap: 1px 14px !important;
  }

  .hero-services .card-list li {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .hero-services .card-link {
    font-size: 12.5px !important;
  }

  .hero-widget-head {
    grid-area: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 670px !important;
    justify-self: auto !important;
    text-align: left !important;
    margin: clamp(6px, 1.8vw, 24px) 0 10px !important;
    padding: 0 2px 12px !important;
    border-bottom: 1px solid rgba(0,0,0,.10) !important;
  }

  .hero-widget-head .section-tag {
    margin-bottom: 6px !important;
  }

  .hero-widget-head h2,
  .hero-widget-head .hero-widget-title {
    font-size: clamp(27px, 2.85vw, 38px) !important;
    line-height: 1.03 !important;
    margin: 0 0 6px !important;
  }

  .hero-widget-head p:not(.hero-widget-title) {
    max-width: 620px !important;
    font-size: 13.5px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
  }

  .hero-booking {
    grid-area: auto !important;
    width: 100% !important;
    max-width: 670px !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: auto !important;
  }

  .widget-frame {
    width: 100% !important;
    max-width: 670px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  .widget-frame iframe {
    width: 100% !important;
    max-width: 670px !important;
    height: 980px !important;
    min-height: 980px !important;
    display: block !important;
  }
}

@media (min-width: 1041px) and (max-height: 850px) {
  .hero-title {
    font-size: clamp(42px, 4.85vw, 68px) !important;
  }

  .hero-sub,
  .hero-actions {
    margin-bottom: 14px !important;
  }

  .hero-services {
    margin-top: 14px !important;
  }

  .hero-widget-head {
    margin-top: 10px !important;
  }
}

@media (max-width: 1040px) {
  .hero-layout {
    width: min(720px, 100%) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: none !important;
    gap: 14px !important;
    margin: 0 auto !important;
  }

  .hero-left,
  .hero-right {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
  }

  .hero-widget-head,
  .hero-services .section-head {
    display: none !important;
  }

  .hero-inner,
  .hero-services,
  .hero-booking {
    grid-area: auto !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .hero-services {
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-booking {
    margin-top: 0 !important;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 6px 10px 14px !important;
  }

  .hero-layout {
    gap: 12px !important;
  }

  .hero-inner {
    padding-top: 4px !important;
  }

  .hero-title {
    font-size: clamp(34px, 12vw, 50px) !important;
    margin: 8px 0 10px !important;
  }

  .hero-sub {
    margin-bottom: 12px !important;
  }

  .hero-actions {
    margin-bottom: 12px !important;
  }
}

/* ============================================================
   FINAL GAP REMOVAL PATCH — compact widget height, no dead space
   ============================================================ */
@media (min-width: 1041px) {
  .hero {
    min-height: auto !important;
    padding-top: clamp(6px, 1vw, 14px) !important;
    padding-bottom: clamp(14px, 2vw, 28px) !important;
  }

  .hero-layout {
    width: min(1320px, 100%) !important;
    grid-template-columns: minmax(455px, 600px) minmax(560px, 670px) !important;
    gap: clamp(14px, 2.2vw, 30px) !important;
    align-items: start !important;
  }

  .hero-left,
  .hero-right {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
  }

  .hero-inner {
    padding-top: clamp(4px, 1.2vw, 18px) !important;
  }

  .hero-services {
    margin-top: 12px !important;
    padding: 0 !important;
  }

  .hero-services .cards {
    gap: 8px !important;
  }

  .hero-services .card {
    padding: 12px 16px !important;
    border-radius: 15px !important;
  }

  .hero-widget-head {
    margin: clamp(4px, 1.2vw, 18px) 0 8px !important;
    padding-bottom: 10px !important;
  }

  .hero-booking,
  .widget-frame {
    margin: 0 !important;
    padding: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .widget-frame iframe {
    height: 635px !important;
    min-height: 635px !important;
    max-height: none !important;
    overflow: hidden !important;
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: auto !important;
    padding-bottom: 18px !important;
  }

  .hero-booking,
  .widget-frame {
    min-height: 0 !important;
    height: auto !important;
    overflow: visible !important;
  }

  .widget-frame iframe {
    height: 820px !important;
    min-height: 820px !important;
    overflow: hidden !important;
  }
}

@media (max-width: 760px) {
  .widget-frame iframe {
    height: 900px !important;
    min-height: 900px !important;
  }
}

@media (max-width: 420px) {
  .widget-frame iframe {
    height: 930px !important;
    min-height: 930px !important;
  }
}


/* ============================================================
   YUSUF PATCH — RouteOrdo frame about 35% taller
   Gives the embedded booking form more visible height and reduces
   internal iframe scrolling while still allowing JS resize expansion.
   ============================================================ */
@media (min-width: 1041px) {
  .widget-frame iframe {
    height: 860px !important;
    min-height: 860px !important;
  }
}

@media (max-width: 1040px) {
  .widget-frame iframe {
    height: 1110px !important;
    min-height: 1110px !important;
  }
}

@media (max-width: 760px) {
  .widget-frame iframe {
    height: 1215px !important;
    min-height: 1215px !important;
  }
}

@media (max-width: 420px) {
  .widget-frame iframe {
    height: 1260px !important;
    min-height: 1260px !important;
  }
}


/* ============================================================
   YUSUF PATCH — anchor positions and booking-link presets
   ============================================================ */
#services,
.hero-services {
  scroll-margin-top: 92px !important;
}
#book,
.hero-booking {
  scroll-margin-top: 88px !important;
}

@media (min-width: 1041px) {
  /* Keep the service cards close to the hero stats and make the services
     jump stop just above Airport Transfers rather than cutting into it. */
  .hero-services {
    margin-top: 12px !important;
  }
}

@media (max-width: 760px) {
  #services,
  .hero-services {
    scroll-margin-top: 72px !important;
  }
  #book,
  .hero-booking {
    scroll-margin-top: 72px !important;
  }
}


/* ============================================================
   YUSUF PATCH — mobile burger menu
   Desktop stays normal. On mobile the top-right burger opens
   Services / Contracts / Book and each link lands at the right section.
   ============================================================ */
.mobile-menu-toggle,
.mobile-menu {
  display: none;
}

@media (max-width: 760px) {
  .nav {
    position: sticky !important;
    min-height: 56px !important;
    padding: 7px 12px !important;
    gap: 10px !important;
  }

  .nav-links,
  .nav-cta {
    display: none !important;
  }

  .mobile-menu-toggle {
    margin-left: auto !important;
    width: 44px !important;
    height: 42px !important;
    border: 1px solid rgba(0,0,0,.18) !important;
    border-radius: 999px !important;
    background: rgba(255,255,255,.62) !important;
    color: var(--ink) !important;
    display: inline-flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    box-shadow: 0 8px 22px rgba(0,0,0,.08) !important;
    cursor: pointer !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .mobile-menu-toggle span {
    width: 18px !important;
    height: 2px !important;
    border-radius: 999px !important;
    background: currentColor !important;
    display: block !important;
    transition: transform .22s var(--ease), opacity .22s var(--ease) !important;
  }

  .nav.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .nav.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0 !important;
  }

  .nav.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  .mobile-menu {
    position: absolute !important;
    right: 12px !important;
    top: calc(100% + 8px) !important;
    width: min(245px, calc(100vw - 24px)) !important;
    padding: 8px !important;
    border: 1px solid rgba(0,0,0,.12) !important;
    border-radius: 18px !important;
    background: rgba(246,243,236,.97) !important;
    backdrop-filter: blur(18px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
    box-shadow: 0 24px 60px rgba(0,0,0,.18) !important;
    z-index: 80 !important;
  }

  .nav.is-menu-open .mobile-menu {
    display: grid !important;
    gap: 4px !important;
  }

  .mobile-menu a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 48px !important;
    padding: 12px 14px !important;
    border-radius: 13px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--ink) !important;
    background: rgba(255,255,255,.42) !important;
  }

  .mobile-menu a::after {
    content: "→" !important;
    color: var(--muted) !important;
    font-weight: 600 !important;
  }

  .mobile-menu a:active {
    background: rgba(0,0,0,.08) !important;
  }

  #services,
  .hero-services,
  #contract,
  #book,
  .hero-booking {
    scroll-margin-top: 74px !important;
  }
}


/* ============================================================
   FINAL YUSUF PATCH — journey buttons side-by-side + mobile card proportions
   ============================================================ */
@media (min-width: 1041px) {
  .hero-layout {
    width: min(1360px, 100%) !important;
    grid-template-columns: minmax(390px, 560px) minmax(620px, 760px) !important;
    gap: clamp(14px, 2vw, 28px) !important;
  }

  .hero-right,
  .hero-widget-head,
  .hero-booking,
  .widget-frame,
  .widget-frame iframe {
    max-width: 760px !important;
  }

  .hero-booking,
  .widget-frame {
    width: 100% !important;
  }

  .hero-widget-head {
    margin-top: clamp(4px, 1vw, 14px) !important;
  }
}

@media (min-width: 1041px) and (max-width: 1180px) {
  .hero-title {
    font-size: clamp(38px, 4.4vw, 58px) !important;
  }
  .hero-sub {
    font-size: 15px !important;
  }
  .hero-points strong {
    font-size: 18px !important;
  }
}

@media (max-width: 760px) {
  .hero-booking,
  .widget-frame {
    width: 100% !important;
    max-width: 100% !important;
  }

  .widget-frame {
    overflow: hidden !important;
  }

  .widget-frame iframe {
    width: 620px !important;
    max-width: none !important;
    transform-origin: top left !important;
  }

  /* Make the service cards feel like proper wide mobile cards, not square tiles. */
  .hero-services .card {
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) !important;
    grid-template-areas:
      "icon title"
      "icon lede"
      "list list"
      "link link" !important;
    column-gap: 12px !important;
    row-gap: 2px !important;
    padding: 16px 16px 15px !important;
    border-radius: 18px !important;
    min-height: 0 !important;
  }

  .hero-services .card-icon {
    grid-area: icon !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    margin: 0 !important;
  }

  .hero-services .card-icon svg {
    width: 21px !important;
    height: 21px !important;
  }

  .hero-services .card h3 {
    grid-area: title !important;
    font-size: 22px !important;
    line-height: 1.05 !important;
    margin: 0 !important;
  }

  .hero-services .card-lede {
    grid-area: lede !important;
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    margin: 1px 0 0 !important;
  }

  .hero-services .card-list {
    grid-area: list !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1px !important;
    margin: 10px 0 8px !important;
    font-size: 13px !important;
    line-height: 1.35 !important;
  }

  .hero-services .card-list li,
  .hero-services .card-list li:nth-child(n+3) {
    display: list-item !important;
    border-top: 0 !important;
    padding: 3px 0 3px 15px !important;
  }

  .hero-services .card-list li::before {
    top: 10px !important;
    width: 5px !important;
    height: 5px !important;
  }

  .hero-services .card-link {
    grid-area: link !important;
    justify-self: start !important;
    font-size: 13px !important;
    margin-top: 0 !important;
  }
}

/* ============================================================
   MOBILE AESTHETIC OVERHAUL  (≤760px)
   Cleaner rhythm, stacked service cards, refined hero.
   Appended last so it wins the cascade.
   ============================================================ */
@media (max-width: 760px) {

  /* --- Hero: calmer, better proportioned --- */
  .hero-inner { padding-top: 6px !important; }

  .eyebrow {
    display: inline-block !important;
    font-size: 10.5px !important;
    letter-spacing: .2em !important;
    line-height: 1.5 !important;
    opacity: .82 !important;
  }

  .hero-title {
    font-size: clamp(34px, 11.5vw, 52px) !important;
    line-height: 1.02 !important;
    letter-spacing: -0.01em !important;
    margin: 12px 0 14px !important;
  }
  .hero-title em { display: inline !important; }

  .hero-sub {
    font-size: 15.5px !important;
    line-height: 1.5 !important;
    max-width: 34em !important;
    margin-bottom: 20px !important;
  }

  /* Full-width primary CTA, secondary sits beside/under it neatly */
  .hero-actions {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 22px !important;
  }
  .hero-actions .btn {
    flex: 1 1 auto !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 14px 18px !important;
    font-size: 14px !important;
  }
  .hero-actions .btn-primary { flex-basis: 100% !important; }

  /* Quick-facts strip: divided, even, legible */
  .hero-points {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    padding: 16px 0 !important;
    border-top: 1px solid rgba(0,0,0,.10) !important;
    border-bottom: 1px solid rgba(0,0,0,.10) !important;
    margin-bottom: 4px !important;
  }
  .hero-points li {
    text-align: center !important;
    padding: 2px 6px !important;
    position: relative !important;
  }
  .hero-points li + li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important; top: 12% !important;
    height: 76% !important;
    width: 1px !important;
    background: rgba(0,0,0,.12) !important;
  }
  .hero-points strong {
    display: block !important;
    font-size: 17px !important;
    line-height: 1.1 !important;
    margin-bottom: 3px !important;
  }
  .hero-points span {
    font-size: 9.5px !important;
    letter-spacing: .09em !important;
    text-transform: uppercase !important;
    opacity: .7 !important;
    line-height: 1.25 !important;
  }

  /* --- Service cards: stack icon ABOVE heading, roomier --- */
  .hero-services { margin-top: 18px !important; }

  .hero-services .cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-services .card {
    display: block !important;              /* kill the icon|title grid */
    padding: 22px 20px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,.09) !important;
    box-shadow: 0 1px 2px rgba(0,0,0,.03) !important;
  }
  .hero-services .card-feature--accent {
    border-color: rgba(0,0,0,.14) !important;
  }

  .hero-services .card-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 14px !important;
    margin: 0 0 14px !important;
  }
  .hero-services .card-icon svg { width: 24px !important; height: 24px !important; }

  .hero-services .card h3 {
    font-size: 21px !important;
    line-height: 1.15 !important;
    margin: 0 0 6px !important;
  }

  .hero-services .card-lede {
    font-size: 14.5px !important;
    line-height: 1.45 !important;
    opacity: .8 !important;
    margin: 0 0 14px !important;
  }

  .hero-services .card-list {
    display: block !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 0 16px !important;
  }
  .hero-services .card-list li {
    border-top: 1px solid rgba(0,0,0,.07) !important;
    padding: 8px 0 8px 16px !important;
    position: relative !important;
  }
  .hero-services .card-list li:first-child { border-top: 0 !important; }
  .hero-services .card-list li:nth-child(n+3) { display: list-item !important; } /* show all again */
  .hero-services .card-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important; top: 15px !important;
    width: 5px !important; height: 5px !important;
    border-radius: 50% !important;
    background: currentColor !important;
    opacity: .55 !important;
  }

  .hero-services .card-link {
    display: inline-block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-top: 2px !important;
  }

  /* --- Section headings elsewhere: tighter, centered rhythm --- */
  .section-head h2 { letter-spacing: -0.01em !important; }

  /* --- Coverage / areas chips: even 2-col, comfortable tap size --- */
  .areas-grid, .area-list {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  /* --- Footer: a touch more breathing room --- */
  .footer-cols { gap: 22px 18px !important; }
}

/* Extra-tight phones */
@media (max-width: 380px) {
  .hero-points strong { font-size: 15px !important; }
  .hero-points span { font-size: 8.5px !important; }
  .hero-title { font-size: clamp(30px, 12vw, 44px) !important; }
}

/* ============================================================
   EYEBROW — keep service phrases whole, tidy separators
   ============================================================ */
.eyebrow-item { white-space: nowrap; }
.eyebrow-sep { margin: 0 .5em; opacity: .55; }

@media (max-width: 760px) {
  .eyebrow {
    display: block !important;
    font-size: 10px !important;
    letter-spacing: .16em !important;
    line-height: 1.7 !important;
  }
  .eyebrow-sep { margin: 0 .4em !important; }
}

/* Very narrow phones: give each service its own line, centred under the row */
@media (max-width: 400px) {
  .eyebrow-sep { display: none !important; }
  .eyebrow-item { display: inline-block !important; }
  .eyebrow-item::after {
    content: "·";
    margin: 0 .45em;
    opacity: .5;
  }
  .eyebrow-item:last-child::after { content: none; }
}

/* ============== FLEET GALLERY ============== */
.section--fleet { padding-top: clamp(60px, 8vw, 100px); }
.fleet-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 16px);
}
.fleet-item {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-3);
}
.fleet-item--main { grid-row: 1 / 3; }
.fleet-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.fleet-item:hover img { transform: scale(1.025); }
@media (max-width: 760px) {
  .fleet-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 8px;
  }
  .fleet-item--main {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 4 / 3;
  }
  .fleet-item { aspect-ratio: 1 / 1; }
  .fleet-item:hover img { transform: none; }
}
