:root {
  /* Sampled straight from the official logo (Logo.png) — the mark is a
     green→teal gradient, not the flat #00a651 the current site uses. */
  --brand-green: #71b54a;
  --brand: #35af74;        /* gradient midpoint — the workhorse brand colour */
  --brand-teal: #08aa95;
  --brand-dark: #0d8f6f;
  --brand-gradient: linear-gradient(120deg, var(--brand-green), var(--brand-teal));
  --ink: #111827;          /* near-black text */
  --navy: #0a1628;         /* deep cinematic background */
  --paper: #f7f9f8;        /* light section background */
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* display:flex|grid on a component outranks the [hidden] attribute's default
   display:none, so anything toggled with `hidden` needs this to actually hide. */
[hidden] { display: none !important; }

html { scrollbar-width: none; scroll-behavior: smooth; }
html::-webkit-scrollbar { display: none; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ---------- Fixed nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 32px;
  mix-blend-mode: normal;
}
.nav-logo {
  height: 136px;
  width: auto;
  transition: opacity 0.25s ease;
}
/* Two logo variants cross-fade so the mark stays legible over both the dark
   cinematic sections and the light content sections below them. */
.nav-logo-light { filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5)); }
.nav-logo-dark  { position: absolute; top: 0; left: 0; opacity: 0; }
.nav.on-light .nav-logo-light { opacity: 0; }
.nav.on-light .nav-logo-dark  { opacity: 1; }
.nav.on-light {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav { transition: background 0.25s ease; }
.nav-cta {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--brand-gradient);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 18px rgba(13,143,111,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(13,143,111,0.55); }

/* ---------- Cinematic scrub sections ---------- */
.cinematic {
  position: relative;
  height: 480vh;
}
.sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--navy);
}
.sticky canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% 45%, transparent 40%, rgba(4,10,8,0.55) 100%),
    linear-gradient(180deg, rgba(4,10,8,0.55) 0%, transparent 28%, transparent 68%, rgba(4,10,8,0.75) 100%);
}

/* ---------- Overlay copy ---------- */
.overlay { position: relative; z-index: 10; text-align: center; padding: 0 24px; }
.reveal-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(90vw, 860px);
  text-align: center;
  text-wrap: balance;
  font-weight: 800;
  font-size: clamp(1.7rem, 4.6vw, 3.9rem);
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--white);
  opacity: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
  will-change: opacity, transform;
}
/* Brand-gradient text read poorly at this size against the cinematic
   vignette on both closing lines — plain white instead. */
.reveal-line.accent {
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.reveal-line .sub {
  display: block;
  margin-top: 14px;
  font-size: clamp(0.85rem, 1.6vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.badge-row {
  position: absolute;
  z-index: 12;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.pill {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.scroll-hint {
  position: absolute;
  bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.65);
  animation: bob 1.8s ease-in-out infinite;
  transition: opacity 0.4s;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* Mobile-only CTA pinned to the bottom of the hero itself, not the whole
   page — .sticky stays pinned for the full cinematic scroll range, so this
   travels with it rather than needing its own fixed/scroll-tracking logic. */
.hero-cta-mobile { display: none; }
@media (max-width: 900px) {
  .scroll-hint { display: none; } /* the CTA takes this spot instead */
  .hero-cta-mobile {
    display: block;
    position: absolute;
    z-index: 13;
    left: 50%; bottom: 24px;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 380px;
    text-align: center;
    padding: 15px 20px;
    border-radius: 999px;
    background: var(--brand-gradient);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(13,143,111,0.45);
  }
}

/* ---------- Reveal-on-scroll (non-cinematic sections) ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- Stats ---------- */
.stats {
  background: var(--navy);
  padding: 90px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-num {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
}
.stat-num.brand { color: var(--brand); }
.stat-label {
  margin-top: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.stat-reviews-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.stat-reviews-link:hover { border-bottom-color: var(--brand); }

/* ---------- Section shell ---------- */
.section { padding: 110px 24px; max-width: 1180px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(53,175,116,0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.section h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  max-width: 720px;
  line-height: 1.15;
}
.section p.lead {
  margin-top: 18px;
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.65;
  color: #4b5563;
}

/* ---------- Fleet ---------- */
.fleet-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.fleet-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(10,22,15,0.35);
}
.fleet-list { display: flex; flex-direction: column; gap: 22px; }
.fleet-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}
.fleet-item .dot {
  flex: none;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand-gradient);
  margin-top: 7px;
}
.fleet-item h3 { font-size: 1.05rem; font-weight: 700; }
.fleet-item p { margin-top: 4px; font-size: 0.92rem; color: #6b7280; line-height: 1.5; }

/* ---------- Why us cards ---------- */
.why-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  padding: 28px 22px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
}
.why-card .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(53,175,116,0.14);
  color: var(--brand-dark);
  display: grid; place-items: center;
  font-weight: 800;
  margin-bottom: 16px;
}
.why-card h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.why-card p { font-size: 0.9rem; color: #6b7280; line-height: 1.55; }

/* ---------- Reviews ---------- */
.reviews {
  background: var(--paper);
  padding: 100px 24px;
}
.reviews-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 40px;
  border-radius: 24px;
  background: var(--navy);
  color: var(--white);
}
.reviews-stars { color: #ffb443; font-size: 1.6rem; letter-spacing: 0.15em; }
.reviews-score { font-size: 3.2rem; font-weight: 800; margin-top: 10px; }
.reviews-count { margin-top: 6px; color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.reviews-actions { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--brand-gradient); color: var(--white); }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.reviews-note.stale { color: #b45309; }
.reviews-note { margin-top: 20px; font-size: 0.76rem; color: rgba(255,255,255,0.4); }

/* ---------- Review quotes ---------- */
.quotes { max-width: 1180px; margin: 72px auto 0; }
.quotes-title {
  text-align: center;
  font-size: clamp(1.3rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 34px;
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.quote-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.quote-stars { color: #ffb443; font-size: 0.95rem; letter-spacing: 0.12em; }
.quote-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
  /* Reviews run long — clamp to keep the cards on an even keel, with the full
     text one click away on Google. */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.quote-foot { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.quote-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  flex: none;
  object-fit: cover;
  background: #e5e7eb;
}
.quote-who { min-width: 0; }
.quote-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.quote-when { font-size: 0.78rem; color: #9ca3af; }
.quote-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
}
.quote-link:hover { border-bottom-color: var(--brand-dark); }
.quotes-attrib {
  margin-top: 26px;
  text-align: center;
  font-size: 0.76rem;
  color: #9ca3af;
}

/* ---------- CTA / Footer ---------- */
.cta {
  text-align: center;
  padding: 64px 24px 120px;
  background: linear-gradient(180deg, var(--white), var(--paper));
}
.cta h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.01em; }
.cta p { margin-top: 14px; color: #6b7280; font-size: 1.05rem; }
.cta .btn { margin-top: 30px; padding: 16px 34px; font-size: 1rem; }

.footer {
  padding: 40px 24px 50px;
  text-align: center;
  color: #9ca3af;
  font-size: 0.82rem;
  background: var(--paper);
}
.footer b { color: var(--ink); }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav { padding: 16px 18px; }
  .section { padding: 80px 20px; }
  .reviews-card { padding: 40px 24px; }
}

/* ---------- Fleet showcase ----------
   The photography is studio-on-white with a reflection under each vehicle.
   Rather than fight that, the stage mimics a studio floor so the cutouts sit
   in something rather than floating on the page. */
.showcase { margin-top: 44px; }
.showcase-picker {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px;
}
.pick {
  font: inherit; font-size: 0.86rem; font-weight: 600; cursor: pointer;
  padding: 10px 18px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08); background: var(--white); color: #4b5563;
  transition: all 0.18s;
}
.pick:hover { border-color: rgba(8,170,149,0.45); color: var(--ink); }
.pick.is-on { border-color: transparent; background: var(--brand-gradient); color: #fff; }
.pick:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(8,170,149,0.25); }

.showcase-stage {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 36px; align-items: center;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 22px;
  padding: 30px;
}
.stage-photo {
  border-radius: 16px; overflow: hidden;
  background: radial-gradient(120% 85% at 50% 78%, #ffffff 0%, #eef3f1 62%, #e4ebe8 100%);
  display: grid; place-items: center; padding: 10px;
  /* Fixed ratio so swapping vehicles never reflows the page — the source
     shots vary between 3:2 and 16:9. */
  aspect-ratio: 3 / 2;
}
.stage-photo img {
  width: 100%; height: 100%; display: block;
  object-fit: contain;
  animation: vfade 0.45s ease;
}
@keyframes vfade { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

.stage-kicker {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-dark);
}
.stage-name { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -0.015em; margin-top: 8px; }
.stage-desc { margin-top: 12px; color: #6b7280; line-height: 1.6; font-size: 0.98rem; }
.stage-specs {
  margin-top: 24px; display: flex; flex-direction: column; gap: 12px;
  border-top: 1px solid rgba(0,0,0,0.07); padding-top: 20px;
}
.stage-specs > div { display: flex; justify-content: space-between; gap: 18px; font-size: 0.92rem; }
.stage-specs dt { color: #6b7280; }
.stage-specs dd { font-weight: 700; text-align: right; }
.stage-cta {
  display: inline-block; margin-top: 24px;
  font-size: 0.92rem; font-weight: 700; color: var(--brand-dark);
  text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.stage-cta:hover { border-bottom-color: var(--brand-dark); }

@media (max-width: 900px) {
  .showcase-stage { grid-template-columns: 1fr; gap: 24px; padding: 20px; }
}
@media (prefers-reduced-motion: reduce) { .stage-photo img { animation: none; } }

/* ---------- Landing nav: links + mobile sheet ----------
   The bar floats over cinematic imagery, so the links use the same
   light/dark swap as the logo rather than a fixed colour. */
/* The two logo variants are stacked, so the wrapper must be the positioning
   context — otherwise the absolute one falls to its static position on the
   next line and hangs below the bar. */
.nav-home { display: block; line-height: 0; position: relative; }
.nav-right { display: flex; align-items: center; gap: 26px; }
.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 0.88rem; font-weight: 600; text-decoration: none;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.45);
  padding-bottom: 3px; border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, text-shadow 0.2s;
}
.nav-links a:hover { border-bottom-color: var(--brand); }
.nav.on-light .nav-links a { color: #4b5563; text-shadow: none; }
.nav.on-light .nav-links a:hover { color: var(--ink); }
.nav-links a:focus-visible, .nav-cta:focus-visible, .nav-burger:focus-visible {
  outline: none; box-shadow: 0 0 0 3px rgba(8,170,149,0.45); border-radius: 6px;
}

.nav-burger {
  display: none; width: 42px; height: 42px; border: 0; border-radius: 10px;
  background: rgba(255,255,255,0.14); cursor: pointer;
  padding: 11px 10px; flex-direction: column; justify-content: space-between;
}
.nav.on-light .nav-burger { background: rgba(0,0,0,0.06); }
.nav-burger span {
  display: block; height: 2px; width: 100%; border-radius: 2px;
  background: #fff; transition: transform 0.22s, opacity 0.22s, background 0.2s;
}
.nav.on-light .nav-burger span { background: var(--ink); }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-sheet {
  position: fixed; inset: 0; z-index: 45;
  background: var(--navy);
  padding: 176px 28px 40px; /* clears the doubled-height logo in the fixed bar above it */
  display: flex; flex-direction: column; gap: 4px;
  animation: sheetIn 0.24s ease;
}
@keyframes sheetIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.nav-sheet a {
  color: #fff; text-decoration: none; font-size: 1.15rem; font-weight: 600;
  padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.10);
}
.nav-sheet .sheet-cta {
  margin-top: 22px; border: 0; text-align: center;
  background: var(--brand-gradient); border-radius: 999px; padding: 16px;
  font-weight: 700;
}
.nav-sheet .sheet-call {
  border: 0; text-align: center; color: rgba(255,255,255,0.7);
  font-size: 0.95rem; font-weight: 500;
}

/* ---------- Landing footer ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.62); padding: 66px 24px 40px; text-align: left; }
.foot-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
}
.foot-brand img { height: 62px; width: auto; margin-bottom: 16px; }
.foot-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 34ch; }
.foot-phone {
  display: inline-block; margin-top: 14px; color: #fff;
  font-size: 1.25rem; font-weight: 800; text-decoration: none; letter-spacing: -0.01em;
}
.foot-phone:hover { color: var(--brand-green); }
.foot-col h3 {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-bottom: 14px;
}
.foot-col a {
  display: block; color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 0.92rem; padding: 5px 0;
}
.foot-col a:hover { color: #fff; }
.foot-note {
  max-width: 1180px; margin: 44px auto 0; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-right { gap: 12px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .nav-logo { height: 112px; }
  .nav { padding: 12px 18px; }
  .nav-cta { display: none; }   /* the sheet carries the CTA on a phone */
  .foot-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { .nav-sheet { animation: none; } }

/* Secondary international number, always sitting under the 0861 */
.foot-phone-intl {
  display: inline-block; margin-top: 4px;
  color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; text-decoration: none;
}
.foot-phone-intl:hover { color: #fff; }
.nav-sheet .sheet-intl { margin-top: -10px; font-size: 0.88rem; }

/* Landing-page logo links home too (harmless self-link, consistent affordance) */
.nav-home { border-radius: 8px; transition: opacity 0.18s; }
.nav-home:hover { opacity: 0.82; }
.nav-home:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(8,170,149,0.5); }

/* ============================================================
   Type system — matched to the booking page
   Bricolage Grotesque carries the display sizes, Inter the body,
   JetBrains Mono anything numeric (stats, ratings) so figures read
   as data rather than prose.
   ============================================================ */
body { font-feature-settings: "tnum" 1; }

.reveal-line,
.section h2,
.stage-name,
.cta h2,
.quotes-title,
.reviews-score {
  font-family: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.stat-num,
.reviews-score {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Rating pill carries the review count underneath — the number is what makes
   a 4.9 credible, so it belongs next to it rather than only further down. */
.pill-rating { display: inline-flex; flex-direction: column; align-items: center; gap: 1px; line-height: 1.25; padding: 7px 18px; }
.pill-rating strong { font-weight: 700; font-size: 0.75rem; }
.pill-rating em {
  font-style: normal; font-size: 0.68rem; font-weight: 500;
  color: rgba(255,255,255,0.72);
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

/* ---------- Partners strip ---------- */
.partners-strip { background: var(--white); padding: 70px 24px; border-top: 1px solid rgba(0,0,0,0.06); }
.ps-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.ps-eyebrow {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: #9aa8ae; margin-bottom: 28px;
}
.ps-logos {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 34px; margin-bottom: 26px;
}
/* Greyscale keeps a dozen different brand palettes from fighting the page;
   colour returns on hover so they're still recognisable. */
.ps-logos img {
  height: 42px; width: auto; opacity: 0.5;
  filter: grayscale(1); transition: opacity 0.2s, filter 0.2s;
}
.ps-logos img:hover { opacity: 1; filter: none; }
.ps-logos a { display: inline-flex; text-decoration: none; }
.ps-link {
  display: inline-block; font-size: 0.92rem; font-weight: 700;
  color: var(--brand-dark); text-decoration: none;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.ps-link:hover { border-bottom-color: var(--brand-dark); }
@media (max-width: 560px) { .ps-logos { gap: 12px 22px; } .ps-logos img { height: 32px; } }

/* ---------- Copyright line ---------- */
.foot-copyright {
  max-width: 1180px; margin: 14px auto 0;
  font-size: 0.76rem; color: rgba(255,255,255,0.35);
}
