@charset "UTF-8";
/* ==========================================================================
   HHTS: Harris & Huri Transportation Services
   Design system. Benchmarked on ichauffeur.co.uk structure, HHTS palette.
   ========================================================================== */

/* ---------- Fonts (self-hosted, variable, latin subset) ---------- */
@font-face {
  font-family: "Inter Tight";
  src: url("../fonts/inter-tight-var.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* Jost kept on disk for rollback; no longer referenced. */
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  /* palette */
  --ink:          #0D0D0D;
  --ink-raised:   #171717;
  --ink-footer:   #0A0A0A;
  --white:        #FFFFFF;
  --grey-050:     #F7F7F7;
  --grey-200:     #E4E4E4;
  --grey-300:     #DBDBDB;
  --grey-400:     #A7A7A7;
  --grey-500:     #8A8A8A;
  --grey-600:     #6B6B6B; /* muted text on light sections; grey-500 fails AA there */
  --accent-text:  #08807A; /* teal for TEXT on light; #0BB4AA is 2.6:1 on white */
  --grey-700:     #4A4A4A;
  --accent:       #0BB4AA;
  --accent-hover: #5EC5BD;
  --accent-deep:  #08807A;

  /* type */
  /* Gill Sans Nova comes from Adobe Fonts, see hhts_typekit_kit(). Until the kit
     ID is set the name simply does not resolve and the self-hosted faces below
     it carry the site, which is also the fallback if Adobe is unreachable. */
  --display: "gill-sans-nova", "Inter Tight", "Inter", -apple-system, sans-serif;
  --body:    "gill-sans-nova", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* rhythm */
  --pad-section:    100px;
  --pad-section-b:  108px;
  --container:      1300px;
  --gutter:         28px;

  /* motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (max-width: 1024px) {
  :root { --pad-section: 68px; --pad-section-b: 72px; --gutter: 24px; }
}
@media (max-width: 640px) {
  :root { --pad-section: 52px; --pad-section-b: 56px; --gutter: 20px; }
}

/* ---------- Reset extras ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
a { font-family: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: #001a19; padding: 12px 20px;
  font-family: var(--display); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Type scale ---------- */
h1, h2, h3, h4, .h-display {
  font-family: var(--display);
  font-optical-sizing: auto;
  /*
   * Uppercase, light and widely tracked. Owner's choice, 2026-08-19, after a
   * side-by-side against ichauffeur.co.uk: most of what separated their
   * headings from ours was the setting, not the typeface. They run Gill Sans
   * Nova, we stay on Inter Tight, and set it the same way.
   *
   * Model names keep their real case through .keepcase, so "BMW i7" does not
   * become "BMW I7".
   */
  font-weight: 300;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
h1, .t-h1 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.24;
  letter-spacing: 0.1em;
}
h2, .t-h2 {
  font-size: clamp(23px, 2.9vw, 31px);
  line-height: 1.3;
  letter-spacing: 0.1em;
}
h3, .t-h3 {
  font-size: clamp(18px, 1.9vw, 22px);
  line-height: 1.32;
  letter-spacing: 0.09em;
  font-weight: 400;
}
h4, .t-h4 {
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  font-weight: 500;
}
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }
.lede { font-size: 17px; line-height: 1.75; }
.eyebrow {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.small-print {
  font-size: 12px;
  line-height: 1.6;
  color: var(--grey-500);
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.section {
  padding-top: var(--pad-section);
  padding-bottom: var(--pad-section-b);
}
.section--dark   { background: var(--ink);      color: var(--grey-400); }
.section--raised { background: var(--ink-raised); color: var(--grey-400); }
.section--grey   { background: var(--grey-050); color: var(--ink); }
.section--white  { background: var(--white);   color: var(--ink); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4,
.section--raised h1, .section--raised h2, .section--raised h3, .section--raised h4 { color: var(--white); }

.section-head { text-align: center; margin-bottom: 46px; }
.section-head p { max-width: 62ch; margin-inline: auto; }
.section-head .sub {
  font-family: var(--display);
  font-size: clamp(16px, 1.8vw, 19px);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-top: 12px;
}
.section--dark .section-head .sub, .section--raised .section-head .sub { color: var(--grey-400); }
.rule {
  width: 62px; height: 1px; border: 0; margin: 26px auto 0;
  background: var(--accent);
}
.section-head--left { text-align: left; }
.section-head--left .rule { margin-inline: 0; }
.section-head--left p { margin-inline: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 30px;
  border: 1px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn .arw { transition: transform .25s var(--ease); }
.btn:active { transform: scale(.975); }
.btn:hover .arw { transform: translateX(4px); }
.btn--primary { background: var(--accent); color: #00201E; border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--ghost:hover { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn--ghost-dark { background: transparent; color: var(--ink); border-color: rgba(13,13,13,.35); }
.btn--ghost-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--block { display: flex; justify-content: center; width: 100%; }
.btn--sm { padding: 10px 26px; font-size: 12px; }
.link-under {
  font-family: var(--display); font-size: 14px; letter-spacing: .03em;
  text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,0));
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-stuck {
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,.08);
}
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-block: 14px; transition: padding-block .3s var(--ease);
}
.header-tel {
  font-family: var(--display); font-size: 14px; letter-spacing: .04em;
  color: var(--white); display: inline-flex; align-items: center; gap: 9px;
}
.header-tel:hover { color: var(--accent-hover); }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* wordmark, rebuilt typographically */
.wordmark { display: block; text-align: center; color: var(--white); line-height: 1; }
.wordmark .mark {
  font-family: var(--display);
  font-size: 25px; font-weight: 300; letter-spacing: .34em;
  text-indent: .34em; display: block;
}
.wordmark .sub {
  font-family: var(--body); font-size: 8.5px; font-weight: 400;
  letter-spacing: .3em; text-indent: .3em;
  text-transform: uppercase; color: var(--grey-400);
  margin-top: 6px; display: block;
}

.site-nav { border-top: 1px solid rgba(255,255,255,.12); }
.site-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 34px;
}
.site-nav a {
  display: block; padding: 11px 0;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  /* Uppercase throughout: the labels were typed inconsistently in WordPress,
     so half the menu shouted and half did not. Setting it here means the
     display is uniform whatever anyone types into a label later. */
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--white); position: relative;
}
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 8px;
  height: 1px; background: var(--accent); transform: scaleX(0);
  transition: transform .25s var(--ease); transform-origin: left;
}
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
/* The base reset gives svg `height:auto`, which collapses an svg that has no
   explicit CSS size to nothing inside a shrink-to-fit button. Every other icon
   in the theme sets a size; this one must too, or the burger is invisible.
   44px box = minimum comfortable tap target. */
.nav-toggle { display: none; background: none; border: 0; color: var(--white); padding: 9px; }
.nav-toggle { min-width: 44px; min-height: 44px; }
.nav-toggle svg { width: 26px; height: 26px; max-width: none; margin-inline: auto; }

@media (max-width: 900px) {
  .site-nav { display: none; }
  .site-nav.is-open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding-bottom: 16px; }
  .site-nav a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav-toggle { display: block; }
  .header-tel span { display: none; }
}

/* Small phones: the full action row (Speak to us + Book + burger) is wider
   than the viewport and pushed the burger off-screen entirely. Keep Book and
   the burger, drop the secondary action, tighten the gaps. */
@media (max-width: 640px) {
  .header-top { gap: 12px; }
  .header-actions { gap: 6px; }
  .header-actions .btn--ghost { display: none; }
}

/* ---------- Hero ----------
   Background video with a poster frame. The poster is the LCP element and
   loads immediately; the video attaches only after first paint, and only when
   the visitor has not asked to save data or reduce motion. */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: #0A0B0C;
  padding: 190px 0 110px;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.hero__media video { opacity: 0; transition: opacity .9s var(--ease); }
.hero__media video.is-playing { opacity: 1; }
.hero__media::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,9,10,.92) 0%, rgba(8,9,10,.72) 42%, rgba(8,9,10,.35) 100%),
    linear-gradient(180deg, rgba(8,9,10,.55) 0%, rgba(8,9,10,.15) 40%, rgba(8,9,10,.75) 100%);
}
.hero__inner { position: relative; z-index: 2; }
.hero__copy { max-width: 560px; }
.hero h1 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.26;
}
.hero__sub {
  font-family: var(--display); font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--grey-300);
  margin-top: 20px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 38px; }
@media (max-width: 900px) {
  .hero { padding: 168px 0 84px; min-height: 0; }
  .hero__copy { max-width: none; }
  .hero__media::after {
    background:
      linear-gradient(180deg, rgba(8,9,10,.75) 0%, rgba(8,9,10,.55) 40%, rgba(8,9,10,.9) 100%);
  }
}

/* ---------- Grids ---------- */
.grid { display: grid; gap: 30px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
/*
 * The partner card sits in the fleet grid on the fleet page, as the sixth tile
 * that closes five cars into two full rows. It carries no image, so it needs
 * the top padding the others get from theirs.
 */
.vehicle--partner .vehicle__body { padding-top: 34px; }
.bespoke--wide { display: block; }
.bespoke--wide p { max-width: 68ch; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 1024px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 720px)  {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
}

/* ---------- Pillar card (why choose us) ---------- */
.pillar { text-align: center; }
.pillar__icon {
  width: 62px; height: 62px; margin: 0 auto 24px;
  display: grid; place-items: center;
  border: 1px solid var(--accent); border-radius: 50%;
  color: var(--accent);
}
.pillar__icon svg { width: 26px; height: 26px; }
.pillar h3 { font-size: 17px; letter-spacing: .07em; margin-bottom: 14px; }
.pillar p { font-size: 15px; line-height: 1.75; }

/* ---------- Vehicle / rate card ---------- */
.vehicle {
  background: var(--white);
  border: 1px solid var(--grey-200);
  display: flex; flex-direction: column;
}
.section--grey .vehicle { border-color: var(--grey-300); }
.vehicle__media {
  aspect-ratio: 16 / 10; background: var(--grey-050);
  display: grid; place-items: center; overflow: hidden;
  border-bottom: 1px solid var(--grey-200);
}
.vehicle__media img { width: 100%; height: 100%; object-fit: cover; }
.vehicle__body { padding: 28px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.vehicle h3 { font-size: 21px; letter-spacing: .05em; margin-bottom: 4px; }
.vehicle__meta {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 20px;
}
.rates { margin: 0 0 6px; }
.rate {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--grey-200);
  font-size: 14.5px; font-variant-numeric: tabular-nums;
}
.rate span:last-child { font-weight: 600; white-space: nowrap; }
.vehicle .small-print { margin: 12px 0 22px; }
.vehicle__foot { margin-top: auto; }
.vehicle__more { display: block; text-align: center; margin-top: 15px; font-size: 14px; }
.vehicle__more span { border-bottom: 1px solid var(--grey-400); padding-bottom: 2px; }

/* dark "bespoke" panel that sits in the vehicle grid */
.bespoke {
  background: var(--ink); color: var(--grey-400);
  padding: 40px 32px; display: flex; flex-direction: column;
}
.bespoke h3 { color: var(--white); margin-bottom: 16px; }
.bespoke p { font-size: 15px; }
.bespoke .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Split block ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.split--reverse .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 40px; } .split--reverse .split__media { order: 0; } }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- Service tiles ---------- */
.tile {
  position: relative; min-height: 340px; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px 30px; color: var(--white); background: var(--ink-raised);
}
.tile__bg { position: absolute; inset: 0; z-index: 0; }
.tile__bg img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.tile:hover .tile__bg img { transform: scale(1.05); }
.tile__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.15) 0%, rgba(10,10,10,.85) 78%);
}
.tile > * { position: relative; z-index: 1; }
.tile h3 { color: var(--white); font-size: 20px; margin-bottom: 10px; }
.tile p { font-size: 14.5px; color: var(--grey-300); margin-bottom: 16px; }
.tile .link-under { font-size: 13px; color: var(--accent); border-color: var(--accent); }

/* ---------- Reviews ---------- */
.review {
  background: var(--ink-raised); padding: 34px 32px;
  display: flex; flex-direction: column; gap: 16px;
  border-top: 2px solid var(--accent);
}
.review__stars { color: var(--accent); letter-spacing: .2em; font-size: 15px; }
.review p { font-size: 15.5px; line-height: 1.75; color: var(--grey-300); }
.review__who { font-family: var(--display); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--white); margin-top: auto; }
.review__who span { display: block; font-family: var(--body); font-size: 12px; letter-spacing: .06em; color: var(--grey-500); text-transform: none; margin-top: 4px; }
.rating-summary {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  flex-wrap: wrap; margin-bottom: 46px;
}
.rating-summary .score { font-family: var(--display); font-size: 46px; color: var(--white); line-height: 1; }
.rating-summary .meta { text-align: left; font-size: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--grey-200);
}
.section--dark .faq details, .section--raised .faq details { border-bottom-color: rgba(255,255,255,.12); }
.faq summary {
  list-style: none; cursor: pointer; padding: 24px 44px 24px 0; position: relative;
  font-family: var(--display); font-size: 17px; letter-spacing: .047em;
  text-transform: uppercase; color: inherit;
}
.section--dark .faq summary { color: var(--white); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 50%; width: 13px; height: 13px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-20%) rotate(-135deg); }
.faq .faq__a { padding: 0 40px 26px 0; font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; text-align: center; padding-block: 88px; overflow: hidden; background: var(--ink); }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: rgba(8,8,8,.78); }
.cta-band > .wrap { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); }
.cta-band p { max-width: 56ch; margin: 20px auto 0; color: var(--grey-300); }
.cta-band .hero__cta { margin-top: 34px; }

/* ---------- Footer ---------- */
/* Tightened on the owner's read, 2026-08-19: the footer was carrying more
   weight than its content warranted. */
.site-footer { background: var(--ink-footer); color: var(--grey-400); padding-top: 60px; font-size: 13.5px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 34px;
  padding-bottom: 42px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--white); font-size: 12px; letter-spacing: .12em; margin-bottom: 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 7px; }
.site-footer a { font-size: 13.5px; }
.site-footer a:hover { color: var(--accent-hover); }
.footer-brand .wordmark { text-align: left; margin-bottom: 16px; }
.footer-brand p { font-size: 13.5px; line-height: 1.65; max-width: 34ch; }
.footer-nap { font-size: 13.5px; font-style: normal; line-height: 1.7; }
.footer-nap a:hover { color: var(--accent-hover); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-block: 18px;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px; color: var(--grey-500);
}
.footer-bottom ul { display: flex; gap: 22px; }
.footer-bottom li { margin: 0; }
.social { display: flex; gap: 11px; margin-top: 18px; }
.social a {
  width: 32px; height: 32px; border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; display: grid; place-items: center; color: var(--grey-400);
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.social a:hover { border-color: var(--accent); color: var(--accent); }
.social svg { width: 16px; height: 16px; }

/* ---------- Reveal ----------
   Content is visible by default. The hidden state is only applied when JS has
   confirmed it can run (html.js-reveal), so a JS failure can never blank the
   page. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js-reveal .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mt-56 { margin-top: 56px; }
.stack-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* keep brand casing inside uppercase headings (BMW i5, iX) */
.keepcase { text-transform: none; }

/* vehicle cutout sitting directly on a dark section */
.split__media--cutout {
  background: linear-gradient(160deg, #1B1F22 0%, #101315 100%);
  padding: 46px 34px;
  display: grid; place-items: center;
}
.split__media--cutout img { aspect-ratio: auto; object-fit: contain; width: 100%; }

/* ---------- Service card ---------- */
.svc {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.07);
  padding: 40px 34px 38px;
  display: flex; flex-direction: column;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.svc:hover { border-color: rgba(11,180,170,.5); transform: translateY(-3px); }
.svc__icon { color: var(--accent); margin-bottom: 26px; }
.svc__icon svg { width: 34px; height: 34px; }
.svc h3 { font-size: 19px; margin-bottom: 14px; }
.svc p { font-size: 15px; line-height: 1.75; margin-bottom: 24px; }
.svc .link-under { margin-top: auto; align-self: flex-start; font-size: 13px; color: var(--accent); border-color: var(--accent); }

/* tighten the left-aligned section head, it introduces a block not a whole section */
.section-head--left { margin-bottom: 26px; }

/* ---------- CTA band gradient (moved out of inline style for the theme) ---------- */
.cta-band__grade {
  width: 100%; height: 100%;
  background: radial-gradient(110% 100% at 50% 30%, #202427 0%, #0F1113 55%, #08090A 100%);
}

/* ---------- Prose (page + post content from the editor) ---------- */
.prose { max-width: 72ch; margin-inline: auto; font-size: 17px; }
.prose > * + * { margin-top: 1.15em; }
.prose h2 { font-size: clamp(23px, 2.6vw, 30px); margin-top: 1.8em; }
.prose h3 { font-size: clamp(19px, 2vw, 23px); margin-top: 1.6em; }
.prose a { color: var(--accent-deep); border-bottom: 1px solid currentColor; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: .4em; }
.prose img { margin-inline: auto; }
.prose blockquote {
  border-left: 2px solid var(--accent); padding-left: 22px;
  font-size: 19px; color: var(--grey-700);
}
.prose table { width: 100%; border-collapse: collapse; }
.prose th, .prose td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--grey-200); }
.post-hero { margin: 0 auto 48px; max-width: 900px; }

/* ---------- Pagination ---------- */
.pagination { display: flex; justify-content: center; gap: 10px; }
.pagination .page-numbers {
  font-family: var(--display); font-size: 14px; letter-spacing: .036em;
  padding: 9px 15px; border: 1px solid var(--grey-200);
}
.pagination .current { background: var(--ink); color: var(--white); border-color: var(--ink); }
/* Pagination on a dark section (the articles listing). */
.section--raised .pagination .page-numbers,
.section--dark .pagination .page-numbers { border-color: rgba(255,255,255,.18); color: var(--grey-400); }
.section--raised .pagination a.page-numbers:hover,
.section--dark .pagination a.page-numbers:hover { color: var(--white); border-color: var(--white); }
.section--raised .pagination .current,
.section--dark .pagination .current { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* Closing CTA and 404 centre their button row; the hero keeps it left. */
.cta-band .hero__cta,
.cta-row--center { justify-content: center; }

/* ---------- Header compression on scroll ----------
   Full height while the hero is in view, compact once the user commits to
   scrolling. Keeps the nav under the 80px cap for the whole reading session. */
.site-header.is-stuck .header-top { padding-block: 4px; }
.site-header.is-stuck .wordmark .mark { font-size: 19px; letter-spacing: .3em; }
.site-header.is-stuck .wordmark .sub { display: none; }
.site-header.is-stuck .site-nav a { padding: 7px 0; font-size: 14px; }
.site-header.is-stuck .btn--sm { padding: 8px 22px; }

/* ---------- Trust bar (moved out of the hero) ---------- */
.trustbar { background: var(--ink-raised); border-block: 1px solid rgba(255,255,255,.07); }
.trustbar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px 38px; flex-wrap: wrap; padding-block: 22px;
  color: var(--grey-400); font-size: 14.5px;
}
.trustbar strong { color: var(--white); font-weight: 600; }
.trustbar .stars { font-size: 14px; }
.trustbar__item { display: inline-flex; align-items: center; gap: 10px; }
.trustbar__sep { width: 1px; height: 20px; background: rgba(255,255,255,.14); }
@media (max-width: 720px) { .trustbar__sep { display: none; } }

/* ==========================================================================
   Interior pages
   ========================================================================== */

/* ---------- Page hero (shorter than the home hero) ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background: #0A0B0C;
  padding: 190px 0 84px;
  text-align: center;
}
.page-hero__grade {
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 90% at 50% 0%, rgba(11,180,170,.13) 0%, rgba(10,11,12,0) 62%),
    radial-gradient(100% 100% at 50% 40%, #1B2024 0%, #0C0E10 60%, #08090A 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); max-width: 20ch; margin-inline: auto; }
.page-hero__sub {
  font-family: var(--display); font-size: clamp(15px, 1.7vw, 19px);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-300);
  margin-top: 18px;
}
.page-hero .hero__cta { margin-top: 34px; }
@media (max-width: 900px) { .page-hero { padding: 160px 0 64px; } }

/* ---------- Breadcrumbs ---------- */
.crumbs { background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.07); }
.crumbs .wrap {
  display: flex; gap: 10px; align-items: center;
  padding-block: 14px; font-size: 13px; color: var(--grey-500);
}
.crumbs a { color: var(--grey-400); }
.crumbs a:hover { color: var(--accent-hover); }
.crumbs [aria-current] { color: var(--white); }

/* ---------- Fleet page: cutout on a light stage ---------- */
.split__media--light {
  background: var(--white);
  display: grid; place-items: center;
  padding: 44px 34px;
  border: 1px solid var(--grey-200);
}
.split__media--light img { aspect-ratio: auto; object-fit: contain; width: 100%; }
.rates--lg .rate { padding: 15px 0; font-size: 16px; }

/* ---------- Pillars without the icon circle (airport inclusions) ---------- */
.pillar--plain { text-align: left; border-top: 2px solid var(--accent); padding-top: 24px; }
.pillar--plain h3 { font-size: 16px; margin-bottom: 12px; }

/* ---------- Fact list (about the airport) ---------- */
.factlist { max-width: 820px; margin-inline: auto; }
.factlist > div {
  display: grid; grid-template-columns: 190px 1fr; gap: 24px;
  padding: 18px 0; border-bottom: 1px solid var(--grey-200);
}
.factlist > div:last-child { border-bottom: 0; }
.factlist dt {
  font-family: var(--display); font-size: 13px; letter-spacing: .092em;
  text-transform: uppercase; color: var(--grey-500);
}
.factlist dd { margin: 0; font-size: 15.5px; }
@media (max-width: 640px) {
  .factlist > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Neighbourhood list ---------- */
.arealist {
  list-style: none; margin: 0; padding: 0;
  columns: 4; column-gap: 34px;
  max-width: 980px; margin-inline: auto;
}
.arealist li {
  break-inside: avoid;
  padding: 9px 0 9px 18px; position: relative;
  font-size: 15.5px; border-bottom: 1px solid var(--grey-200);
}
.arealist li::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 7px; height: 1px; background: var(--accent);
}
.arealist__also { font-size: 15px; color: var(--grey-700); }
.arealist__also .link-under { color: var(--accent-deep); border-color: currentColor; }
@media (max-width: 900px) { .arealist { columns: 2; } }
@media (max-width: 520px) { .arealist { columns: 1; } }

/* ---------- Prose used inline inside a dark split column ---------- */
.prose--inline { max-width: 72ch; margin: 0 auto 1.1em; font-size: 16px; }
.section--dark .prose--inline a { color: var(--accent-hover); }

/* ---------- Nav submenus ----------
   Services and Fleet are parents. Hover opens on pointer devices, focus-within
   keeps it usable from the keyboard, and below 900px it flattens into the
   stacked mobile list rather than becoming a hover trap. */
.site-nav li { position: relative; }
.site-nav .sub-menu {
  position: absolute; left: 0; top: 100%;
  transform: translateY(6px);
  /*
   * Sized to its own items. A fixed 232px minimum left a wide empty strip to the
   * right of short entries like "FAQs", so the panel read as misaligned with the
   * text sitting off in one corner of an oversized box.
   */
  width: max-content;
  max-width: min(320px, calc(100vw - 40px));
  margin: 0; padding: 8px 0;
  list-style: none; display: block;
  background: var(--ink-raised);
  border: 1px solid rgba(255,255,255,.1);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
}
.site-nav li:hover > .sub-menu,
.site-nav li:focus-within > .sub-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
/* The last dropdown would otherwise run past the right edge. */
.site-nav > li:last-child .sub-menu,
.site-nav > .menu-item:last-child .sub-menu { left: auto; right: 0; }
.site-nav .sub-menu a {
  padding: 10px 20px; font-size: 12px; font-weight: 500;
  letter-spacing: .09em;
  color: var(--grey-300); white-space: nowrap; text-align: left;
}
.site-nav .sub-menu a::after { display: none; }
.site-nav .sub-menu a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.site-nav .menu-item-has-children > a::before {
  content: ""; position: absolute; right: -14px; top: 50%;
  width: 5px; height: 5px; margin-top: -4px;
  border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg); opacity: .6;
}
.site-nav .menu-item-has-children { margin-right: 14px; }

@media (max-width: 900px) {
  .site-nav .sub-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    pointer-events: auto; border: 0; background: transparent;
    min-width: 0; padding: 0 0 6px 16px;
  }
  .site-nav .sub-menu a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .site-nav .menu-item-has-children > a::before { display: none; }
  .site-nav .menu-item-has-children { margin-right: 0; }
}

/* ---------- Post cards (blog list and archives) ---------- */
.postcard {
  display: flex; flex-direction: column;
  border: 1px solid var(--grey-200);
  background: var(--white);
  transition: border-color .25s var(--ease);
}
.postcard:hover { border-color: var(--accent); }
.postcard__media {
  display: block; aspect-ratio: 16 / 10; overflow: hidden;
  background: var(--ink); border-bottom: 1px solid var(--grey-200);
  display: grid; place-items: center;
}
.postcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.postcard:hover .postcard__media img { transform: scale(1.04); }
.postcard__fallback {
  font-family: var(--display); font-size: 20px; font-weight: 300;
  letter-spacing: .34em; text-indent: .34em; color: var(--grey-500);
}
.postcard__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.postcard__date {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 12px;
}
.postcard h3 { font-size: 18px; letter-spacing: .044em; margin-bottom: 12px; }
.postcard h3 a:hover { color: var(--accent-deep); }
.postcard p { font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.postcard .link-under { margin-top: auto; align-self: flex-start; font-size: 13px; color: var(--accent-deep); }

/* single post */
.post-meta {
  text-align: center; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey-500); margin-bottom: 16px;
}

/* ---------- Service card with a photograph ---------- */
.svc--photo { padding: 0; }
.svc--photo .svc__media {
  display: block; aspect-ratio: 16 / 9; overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.svc--photo .svc__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease);
}
.svc--photo:hover .svc__media img { transform: scale(1.05); }
.svc--photo .svc__icon { margin: 28px 30px 18px; }
/* Article cards have no icon between the photo and the title. */
.svc--photo .svc__media + h3 { margin-top: 26px; }
.svc--photo h3 a { color: inherit; }
.svc--photo h3, .svc--photo p { padding-inline: 30px; }
/* margin-top auto, not 0: the base card pins its link to the bottom edge so a
   row of cards lines up whatever the text lengths; zeroing the top margin here
   broke that on the articles grid. */
.svc--photo .link-under { margin: auto 30px 30px; }

/* ---------- Third-party link reset ----------
   Elementor's global kit is dequeued in inc/assets.php, but other plugins on
   this site also underline links. Keeping a reset here means the theme's own
   chrome is never at the mercy of plugin load order. */
a { text-decoration: none; }
.prose a { text-decoration: underline; }


/* ---------- AA contrast repairs (2026-08-13) ----------
   #8A8A8A muted text is 3.2:1 on light backgrounds and teal #0BB4AA text is
   2.6:1 on white; both fail WCAG AA. Dark sections keep the original tones,
   light contexts get the darker pair. */
.small-print,
.vehicle__meta,
.factlist dt,
.section--white .section-head .sub,
.section--grey .section-head .sub,
.trustbar { color: var(--grey-600); }

.section--white .eyebrow,
.section--grey .eyebrow,
.section--white .link-under,
.section--grey .link-under,
.vehicle__more { color: var(--accent-text); }

.pagination .current,
.section--raised .pagination .current,
.section--dark .pagination .current {
  background: var(--accent-text); border-color: var(--accent-text); color: var(--white);
}

/* ---------- Tick list (vehicle "best for", service uses) ---------- */
.ticks__head {
  font-family: var(--display);
  font-size: 15px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey-500);
  margin: 30px 0 14px;
}
.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.ticks li {
  position: relative;
  padding-left: 30px;
  font-size: 17px; line-height: 1.55;
}
.ticks li::before {
  content: ""; position: absolute; left: 2px; top: .5em;
  width: 12px; height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ---------- Contact form (theme owned, no plugin) ---------- */
.cform { display: grid; gap: 20px; max-width: 560px; }
.cform__row { display: grid; gap: 8px; margin: 0; }
.cform__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cform label {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--grey-500);
}
.cform .req { color: var(--accent-deep); }
.cform input, .cform textarea {
  width: 100%;
  font: inherit; font-size: 16px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: 2px;
  padding: 14px 16px;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.cform textarea { resize: vertical; min-height: 150px; }
.cform input:focus, .cform textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(11, 180, 170, .18);
}
.cform button { justify-self: start; }
.form-note {
  padding: 14px 18px;
  margin: 0 0 24px;
  border-left: 3px solid var(--accent);
  background: var(--grey-050);
  font-size: 16px;
}
.form-note--fail { border-left-color: #B4360B; }

/* ---------- Reservations panel (first tile of the home page fleet row) ---------- */
.reserve {
  background: var(--ink);
  color: var(--grey-400);
  border: 1px solid var(--ink);
  padding: 34px 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
}
.reserve .eyebrow { color: var(--accent); margin-bottom: 14px; }
.reserve h3 {
  color: var(--white);
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.reserve p { font-size: 15px; line-height: 1.7; }
.reserve__foot { margin-top: auto; }
.reserve__call {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: var(--grey-400);
}
.reserve__call:hover { color: var(--white); }
@media (max-width: 900px) {
  .reserve { padding: 30px 24px 28px; }
}

/* ---------- Cut-out vehicle cards ---------- */
/*
 * A cut-out is the whole car on a plain background, so it is contained and
 * padded rather than cropped to fill. Photographs keep the cover treatment
 * until every car has a cut-out of its own.
 */
.vehicle__media--cutout {
  background: var(--white);
  padding: 14px 16px;
}
.vehicle__media--cutout img { object-fit: contain; }

/* A vehicle page with no photograph of its own car runs full width. */
.solo { max-width: 760px; }

/* Car inside the reservations panel. The image's own ground is near black, so
   the edges are faded out and it reads as part of the panel rather than a
   photograph pasted onto it. */
.reserve__car { margin: 10px -28px -10px; }
.reserve__car img {
  width: 100%; height: auto; display: block;
  -webkit-mask-image: radial-gradient(120% 100% at 50% 45%, #000 45%, transparent 82%);
  mask-image: radial-gradient(120% 100% at 50% 45%, #000 45%, transparent 82%);
}
@media (max-width: 1024px) {
  .reserve__car { margin-inline: -24px; max-width: none; }
}

/* Light closing band, used when the section above it is already dark. */
.cta-band--light { background: var(--grey-050); }
.cta-band--light .cta-band__bg { display: none; }
.cta-band--light h2 { color: var(--ink); }
.cta-band--light p { color: var(--grey-600); }
.cta-band--light .btn--ghost { color: var(--ink); border-color: rgba(13,13,13,.35); }
.cta-band--light .btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ---------- Cards carry their own colours ---------- */
/*
 * A card that paints its own background must also state its own text colours.
 * These used to inherit from the section, which worked only while each section's
 * tone was written in by hand: the moment backgrounds started alternating, the
 * dark service cards landed on a light section and their text turned dark on
 * dark, invisible. The white vehicle cards had the same fault in reverse,
 * waiting for the first time they sat on a dark section.
 *
 * Declared last so they beat the .section--dark / .section--raised heading
 * rules, which are the same specificity.
 */
.svc { color: var(--grey-400); }
.svc h3 { color: var(--white); }
.svc p { color: var(--grey-400); }

.review { color: var(--grey-300); }
.review p { color: var(--grey-300); }
.review__who { color: var(--white); }
.review__who span { color: var(--grey-500); }

.bespoke { color: var(--grey-400); }
.bespoke h3 { color: var(--white); }
.bespoke p { color: var(--grey-400); }

.tile { color: var(--white); }
.tile h3 { color: var(--white); }

.vehicle { color: var(--ink); }
.vehicle h3 { color: var(--ink); }
.vehicle .small-print { color: var(--grey-600); }
.vehicle__meta { color: var(--grey-600); }
.vehicle .rate { color: var(--ink); }

.reserve h3 { color: var(--white); }
.reserve p { color: var(--grey-400); }
