/* ==========================================================
   Pearson Airport Transit
   Brand rebuild — pre-launch static site

   Logo-derived palette:
   hot pink   #ea2a86
   magenta    #c21b72
   plum       #76246b
   near-black #09080b
   white      #ffffff
========================================================== */

:root {
  --brand-pink: #ea2a86;
  --brand-magenta: #c21b72;
  --brand-deep: #9a195e;
  --brand-plum: #76246b;
  --brand-plum-dark: #49133f;

  --black: #09080b;
  --black-2: #121014;
  --black-3: #1a161b;

  --white: #ffffff;
  --paper: #fbf8fb;
  --paper-2: #f4eef3;

  --ink: #171118;
  --ink-soft: #5f5660;
  --ink-muted: #756b76;

  --line-light: #d7cdd5;
  --line-mid: #8b818b;
  --line-dark: #5f5662;

  --danger: #a51d3f;

  --brand-gradient: linear-gradient(
    120deg,
    var(--brand-pink) 0%,
    var(--brand-magenta) 48%,
    var(--brand-plum) 100%
  );

  --brand-gradient-wide: linear-gradient(
    135deg,
    #f34296 0%,
    var(--brand-pink) 25%,
    var(--brand-magenta) 58%,
    var(--brand-plum) 100%
  );

  --shadow-soft: 0 22px 60px rgba(61, 17, 49, 0.13);
  --shadow-card: 0 24px 70px rgba(32, 10, 27, 0.16);
  --shadow-brand: 0 22px 54px rgba(194, 27, 114, 0.3);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;

  --font-display:
    "Barlow Condensed", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --font-body:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);

  --header-height: 84px;
}

/* ==========================================================
   Reset / base
========================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;

  background: var(--paper);
  color: var(--ink);

  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  -webkit-appearance: none;
  appearance: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

[hidden] {
  display: none !important;
}

::selection {
  background: var(--brand-pink);
  color: var(--white);
}

.wrap {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding-inline: 32px;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

/* ==========================================================
   Typography
========================================================== */

h1,
h2,
h3 {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(4rem, 8.1vw, 7.8rem);
  line-height: 0.84;
}

h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.9;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

p {
  margin: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;

  margin: 0 0 18px;

  color: var(--brand-deep);

  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #ff8bbe;
}

.eyebrow > span {
  width: 24px;
  height: 2px;

  display: inline-block;

  background: currentColor;
}

.section {
  padding: 118px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.7fr);
  align-items: end;
  gap: 70px;

  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-lead {
  max-width: 430px;

  padding-bottom: 8px;

  color: var(--ink-soft);

  font-size: 1.02rem;
}

/* ==========================================================
   Focus / accessibility
========================================================== */

:focus-visible {
  outline: 3px solid #ff5ba7;
  outline-offset: 4px;
}

.form-row input:focus-visible,
.booking-message:focus-visible {
  border-color: var(--brand-magenta);
  outline: 3px solid rgba(234, 42, 134, 0.3);
  outline-offset: 2px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;

  padding: 11px 17px;

  border-radius: 8px;

  background: var(--black);
  color: var(--white);

  font-weight: 800;
  text-decoration: none;

  transform: translateY(-180%);
  transition: transform 0.18s var(--ease);
}

.skip-link:focus,
.skip-link:focus-visible {
  transform: translateY(0);
}

/* ==========================================================
   Buttons
========================================================== */

.btn {
  min-height: 48px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 13px 23px;

  border: 2px solid transparent;
  border-radius: 999px;

  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  cursor: pointer;

  transition:
    transform 0.22s var(--ease),
    background-color 0.22s var(--ease),
    border-color 0.22s var(--ease),
    color 0.22s var(--ease),
    box-shadow 0.22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border-color: var(--brand-magenta);

  background: var(--brand-gradient);
  color: var(--white);

  box-shadow: 0 12px 30px rgba(194, 27, 114, 0.23);
}

.btn-primary:hover {
  box-shadow: var(--shadow-brand);
}

.btn-header-call {
  border-color: #6f6670;

  background: var(--white);
  color: var(--black);
}

.btn-header-call:hover {
  border-color: var(--brand-magenta);
  color: var(--brand-deep);
}

.btn-hero-outline {
  border-color: #aaa0aa;

  background: rgba(9, 8, 11, 0.35);
  color: var(--white);

  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.btn-hero-outline:hover {
  border-color: #ff86ba;
  background: rgba(234, 42, 134, 0.12);
}

.btn-light-outline {
  border-color: #777078;

  background: var(--white);
  color: var(--black);
}

.btn-light-outline:hover {
  border-color: var(--brand-magenta);
  color: var(--brand-deep);
}

.btn-xl {
  min-height: 58px;

  padding: 17px 30px;

  font-size: 0.98rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================
   Header
========================================================== */

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;

  border-bottom: 1px solid transparent;

  background: rgba(255, 255, 255, 0.9);

  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);

  transition:
    box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease),
    background 0.22s var(--ease);
}

.site-header::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;

  height: 2px;

  background: var(--brand-gradient);

  opacity: 0;
  transform: scaleX(0.72);

  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(34, 19, 30, 0.08);

  background: rgba(255, 255, 255, 0.96);

  box-shadow: 0 14px 38px rgba(28, 11, 24, 0.09);
}

.site-header.is-scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-inner {
  min-height: var(--header-height);

  display: flex;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;

  display: inline-flex;

  border-radius: 10px;

  text-decoration: none;
}

.brand-image-shell,
.footer-logo-shell {
  overflow: hidden;

  display: block;

  background: var(--white);
}

.brand-image-shell {
  width: 176px;
  height: 64px;

  border-radius: 10px;
}

.brand-image {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.nav-panel {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;

  flex: 1 1 auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  position: relative;

  padding: 9px 0;

  color: #3f3740;

  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a::after {
  content: "";

  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;

  height: 2px;

  border-radius: 999px;

  background: var(--brand-gradient);

  transform: scaleX(0);
  transform-origin: right;

  transition: transform 0.2s var(--ease);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-toggle {
  width: 48px;
  height: 48px;

  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  margin-left: auto;
  padding: 0;

  border: 2px solid #655c66;
  border-radius: 14px;

  background: var(--white);
  color: var(--black);

  cursor: pointer;
}

.nav-toggle span {
  width: 21px;
  height: 2px;

  display: block;

  border-radius: 999px;

  background: currentColor;

  transition:
    transform 0.2s var(--ease),
    opacity 0.2s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================
   Hero
========================================================== */

.hero {
  position: relative;

  min-height: 800px;
  overflow: hidden;

  padding: 176px 0 100px;

  background:
    radial-gradient(
      circle at 77% 24%,
      rgba(234, 42, 134, 0.18),
      transparent 29%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(118, 36, 107, 0.32),
      transparent 31%
    ),
    var(--black);

  color: var(--white);
}

.hero::after {
  content: "";

  position: absolute;
  z-index: 1;
  right: -8vw;
  bottom: -140px;

  width: 46vw;
  height: 280px;

  background: var(--brand-gradient);

  filter: blur(100px);
  opacity: 0.24;

  transform: rotate(-14deg);

  pointer-events: none;
}

.hero-effects {
  position: absolute;
  z-index: 0;
  inset: 0;

  pointer-events: none;
}

.hero-glow {
  position: absolute;

  border-radius: 999px;

  filter: blur(5px);
}

.hero-glow-one {
  top: 21%;
  right: -160px;

  width: 620px;
  height: 620px;

  border: 1px solid rgba(234, 42, 134, 0.25);

  box-shadow:
    inset 0 0 100px rgba(234, 42, 134, 0.07),
    0 0 120px rgba(194, 27, 114, 0.07);
}

.hero-glow-two {
  top: 29%;
  right: -60px;

  width: 380px;
  height: 380px;

  border: 1px solid rgba(255, 255, 255, 0.12);
}

.runway-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);

  background-size: 66px 66px;

  mask-image: linear-gradient(to right, transparent 0%, black 58%, black 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 58%,
    black 100%
  );
}

.hero-route {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  opacity: 0.75;
}

.route-shadow,
.route-line {
  fill: none;
}

.route-shadow {
  stroke: rgba(234, 42, 134, 0.22);
  stroke-width: 13;

  filter: blur(10px);
}

.route-line {
  stroke: #f94b9e;
  stroke-width: 2;
  stroke-dasharray: 9 13;

  animation: routeDash 32s linear infinite;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -440;
  }
}

.hero-layout {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(52px, 8vw, 110px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 790px;

  color: var(--white);
}

.hero h1 strong {
  display: block;

  color: #ff5fa8;
  color: transparent;

  background: var(--brand-gradient-wide);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-sub {
  max-width: 660px;

  margin-top: 30px;

  color: #d9d1d8;

  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;

  margin: 50px 0 0;
  padding: 25px 0 0;

  border-top: 1px solid #625a63;

  list-style: none;
}

.hero-trust li {
  min-width: 0;

  display: flex;
  gap: 11px;
}

.trust-icon {
  width: 32px;
  height: 32px;

  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #b0387b;
  border-radius: 50%;

  color: #ff77b5;

  font-size: 0.65rem;
  font-weight: 800;
}

.hero-trust li > span:last-child {
  display: flex;
  flex-direction: column;

  color: #afa6af;

  font-size: 0.74rem;
  line-height: 1.45;
}

.hero-trust strong {
  color: var(--white);

  font-size: 0.78rem;
}

.hero-board {
  position: relative;

  overflow: hidden;

  padding: 28px;

  border: 1px solid #706672;
  border-radius: 30px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.09),
      rgba(255, 255, 255, 0.025)
    ),
    rgba(22, 17, 23, 0.77);

  color: var(--white);

  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);

  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.35),
    inset 0 1px rgba(255, 255, 255, 0.08);

  transform: rotate(1.25deg);
}

.hero-board::before {
  content: "";

  position: absolute;
  right: -70px;
  bottom: -100px;

  width: 250px;
  height: 250px;

  border-radius: 50%;

  background: var(--brand-magenta);

  filter: blur(70px);
  opacity: 0.22;
}

.board-top,
.board-footer {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.board-top {
  padding-bottom: 23px;

  border-bottom: 1px solid #615762;
}

.board-label {
  display: block;

  margin-bottom: -5px;

  color: #aea4ae;

  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-top strong {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.board-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 11px;

  border: 1px solid #87637a;
  border-radius: 999px;

  color: #f2eaf0;

  font-size: 0.72rem;
  font-weight: 700;
}

.board-status > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #ff4e9d;

  box-shadow: 0 0 0 5px rgba(234, 42, 134, 0.15);
}

.board-route {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;

  padding: 32px 0;

  color: #c8bec7;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.route-track {
  position: relative;

  height: 34px;

  display: flex;
  align-items: center;
}

.route-track::before {
  content: "";

  position: absolute;
  right: 0;
  left: 0;

  height: 2px;

  background: repeating-linear-gradient(
    90deg,
    #8d818b 0,
    #8d818b 8px,
    transparent 8px,
    transparent 14px
  );
}

.route-node {
  position: absolute;
  z-index: 1;

  width: 10px;
  height: 10px;

  border: 2px solid var(--white);
  border-radius: 50%;

  background: var(--black);
}

.route-node-start {
  left: 0;
}

.route-node-end {
  right: 0;

  border-color: #ff5ca7;
  background: var(--brand-magenta);

  box-shadow: 0 0 0 5px rgba(234, 42, 134, 0.13);
}

.route-plane {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 58%;

  width: 29px;
  height: 29px;

  color: #ff69ad;

  filter: drop-shadow(0 4px 8px rgba(234, 42, 134, 0.4));

  transform: translate(-50%, -50%) rotate(-4deg);
}

.board-fare {
  position: relative;
  z-index: 1;

  display: grid;

  padding: 23px;

  border: 1px solid #884871;
  border-radius: 20px;

  background:
    linear-gradient(135deg, rgba(234, 42, 134, 0.16), rgba(118, 36, 107, 0.16)),
    rgba(255, 255, 255, 0.025);
}

.board-fare > span {
  color: #ff9aca;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.board-fare strong {
  margin: 2px 0 1px;

  font-family: var(--font-display);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.board-fare small {
  color: #cfc4cd;
}

.board-areas {
  position: relative;
  z-index: 1;

  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  padding: 21px 0;
}

.board-areas span {
  padding: 6px 9px;

  border: 1px solid #6c626d;
  border-radius: 999px;

  color: #d9d0d8;

  font-size: 0.65rem;
  font-weight: 600;
}

.board-footer {
  padding-top: 20px;

  border-top: 1px solid #615762;

  color: #aaa0aa;

  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-footer a {
  color: var(--white);

  font-size: 0.84rem;
  letter-spacing: 0;
  text-decoration-color: #e25198;
}

/* ==========================================================
   Services
========================================================== */

.services-section {
  position: relative;

  overflow: hidden;

  background: var(--paper);
}

.services-section::before {
  content: "PEARSON";

  position: absolute;
  top: -66px;
  right: -22px;

  color: rgba(194, 27, 114, 0.038);

  font-family: var(--font-display);
  font-size: clamp(10rem, 24vw, 24rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;

  pointer-events: none;
}

.services-grid {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;

  min-height: 365px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 28px 25px;

  border: 1px solid var(--line-light);
  border-radius: var(--radius);

  background: var(--white);

  box-shadow: 0 8px 26px rgba(31, 11, 26, 0.05);

  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.service-card::after {
  content: "";

  position: absolute;
  right: -80px;
  bottom: -100px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background: var(--brand-magenta);

  filter: blur(55px);
  opacity: 0;

  transition: opacity 0.3s var(--ease);
}

.service-card:hover {
  border-color: #b62e7b;

  box-shadow: var(--shadow-card);

  transform: translateY(-7px);
}

.service-card:hover::after {
  opacity: 0.12;
}

.service-card-featured {
  border-color: #9c286d;

  background:
    linear-gradient(145deg, rgba(234, 42, 134, 0.06), rgba(118, 36, 107, 0.02)),
    var(--white);
}

.card-number {
  position: absolute;
  top: 23px;
  right: 23px;

  color: #bdb2bb;

  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.service-icon {
  width: 54px;
  height: 54px;

  display: inline-flex;

  margin-bottom: 48px;

  color: var(--brand-magenta);
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  position: relative;
  z-index: 1;

  max-width: 220px;

  color: var(--ink);

  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.service-card p {
  position: relative;
  z-index: 1;

  margin-top: 13px;

  color: var(--ink-soft);

  font-size: 0.9rem;
}

.card-tag {
  position: relative;
  z-index: 1;

  width: fit-content;

  margin-top: auto;
  padding-top: 22px;

  color: var(--brand-deep);

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ==========================================================
   Process
========================================================== */

.process-section {
  position: relative;

  overflow: hidden;

  padding: 110px 0;

  background: var(--brand-gradient);
  color: var(--white);
}

.process-section::before {
  content: "";

  position: absolute;
  top: -210px;
  right: -110px;

  width: 590px;
  height: 590px;

  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.process-section::after {
  content: "";

  position: absolute;
  right: 15%;
  bottom: -380px;

  width: 700px;
  height: 700px;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
}

.process-layout {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 110px;
}

.process-intro h2 {
  max-width: 550px;
}

.process-intro h2 span {
  display: block;

  color: var(--black);
}

.process-intro > p:not(.eyebrow) {
  max-width: 440px;

  margin-top: 24px;

  color: #ffe5f1;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-top: 30px;

  color: var(--white);

  font-weight: 800;
  text-decoration-thickness: 2px;
}

.process-list {
  display: grid;

  margin: 0;
  padding: 0;

  border-top: 1px solid rgba(255, 255, 255, 0.48);

  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 25px;

  padding: 27px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.process-number {
  color: #ffcae2;

  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 900;
}

.process-list h3 {
  color: var(--white);

  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.process-list p {
  max-width: 520px;

  margin-top: 7px;

  color: #ffe4f0;

  font-size: 0.91rem;
}

/* ==========================================================
   Fleet
========================================================== */

.fleet-section {
  background:
    radial-gradient(
      circle at 100% 15%,
      rgba(234, 42, 134, 0.08),
      transparent 27%
    ),
    var(--paper-2);
}

.fleet-showcase {
  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(0, 1.3fr);
  align-items: stretch;

  border-radius: var(--radius-lg);

  background: var(--black);

  box-shadow: var(--shadow-card);
}

.fleet-copy {
  position: relative;
  z-index: 2;

  padding: 48px;

  color: var(--white);
}

.fleet-kicker {
  color: #ff80b9;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fleet-capacity {
  display: flex;
  align-items: flex-end;
  gap: 10px;

  margin: 21px 0 28px;
}

.fleet-capacity strong {
  color: var(--white);

  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  line-height: 0.75;
}

.fleet-capacity span {
  padding-bottom: 6px;

  color: #ff72b1;

  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-copy h3 {
  color: var(--white);

  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.fleet-copy p {
  max-width: 390px;

  margin-top: 13px;

  color: #cfc5ce;

  font-size: 0.9rem;
}

.fleet-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 28px;
}

.fleet-tags span {
  padding: 7px 10px;

  border: 1px solid #7e747f;
  border-radius: 999px;

  color: #eee6ec;

  font-size: 0.68rem;
  font-weight: 700;
}

.fleet-art {
  position: relative;

  min-height: 430px;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    radial-gradient(
      circle at 60% 50%,
      rgba(234, 42, 134, 0.28),
      transparent 34%
    ),
    linear-gradient(145deg, #1b1119 0%, #0d0b0f 100%);
}

.fleet-art::before {
  content: "";

  position: absolute;
  right: 0;
  bottom: 18%;
  left: 0;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(234, 42, 134, 0.8),
    transparent
  );
}

.fleet-art svg {
  position: relative;
  z-index: 2;

  width: 92%;
  max-width: 650px;

  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.5));

  transform: translateY(8px);
}

.fleet-orbit {
  position: absolute;

  border: 1px solid rgba(234, 42, 134, 0.26);
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
}

.orbit-two {
  width: 620px;
  height: 620px;

  border-color: rgba(255, 255, 255, 0.09);
}

.fleet-art-label {
  position: absolute;
  z-index: 3;
  right: 28px;
  bottom: 25px;

  padding: 8px 12px;

  border: 1px solid #9c3973;
  border-radius: 999px;

  background: rgba(9, 8, 11, 0.72);
  color: #ff8fc2;

  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
}

.fleet-note {
  max-width: 700px;

  margin-top: 22px;

  color: var(--ink-muted);

  font-size: 0.85rem;
}

/* ==========================================================
   Pricing
========================================================== */

.pricing-section {
  position: relative;

  overflow: hidden;

  background: var(--brand-plum-dark);
  color: var(--white);
}

.pricing-section::before {
  content: "";

  position: absolute;
  top: -310px;
  right: -280px;

  width: 760px;
  height: 760px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.pricing-heading {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;

  margin-bottom: 26px;
}

.pricing-heading h2 {
  max-width: 760px;

  color: var(--white);
}

.pricing-heading h2 span {
  display: block;

  color: #ff79b5;
}

.price-burst {
  width: 166px;
  height: 166px;

  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  border: 2px solid #ff76b4;
  border-radius: 50%;

  background: var(--brand-gradient);
  color: var(--white);

  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.24);

  transform: rotate(7deg);
}

.price-burst span,
.price-burst small {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-burst strong {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.95;
}

.pricing-intro {
  position: relative;
  z-index: 1;

  max-width: 620px;

  margin-bottom: 36px;

  color: #ded1dc;
}

.pricing-table-shell {
  position: relative;
  z-index: 1;

  overflow-x: auto;

  border: 2px solid #8e7185;
  border-radius: var(--radius);

  background: var(--white);

  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.pricing-table {
  width: 100%;
  min-width: 700px;

  border-collapse: collapse;

  color: var(--ink);
}

.pricing-table caption {
  padding: 17px 22px;

  color: #675d67;

  font-size: 0.78rem;
  text-align: left;
}

.pricing-table th,
.pricing-table td {
  padding: 20px 22px;

  border-top: 1px solid #d8cfd7;

  text-align: left;
}

.pricing-table thead th {
  background: #f4e8f0;
  color: var(--brand-deep);

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.pricing-table tbody th {
  color: var(--ink);

  font-size: 0.93rem;
  font-weight: 800;
}

.pricing-table tbody tr:nth-child(even) {
  background: #fbf7fa;
}

.pricing-table td {
  color: var(--brand-deep);

  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
}

.pricing-disclaimer {
  position: relative;
  z-index: 1;

  max-width: 760px;

  margin-top: 20px;

  color: #d2c4cf;

  font-size: 0.79rem;
}

/* ==========================================================
   Reviews
========================================================== */

.reviews-section {
  background: var(--paper);
}

.review-panel {
  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;

  padding: 46px;

  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);

  background:
    linear-gradient(130deg, rgba(234, 42, 134, 0.07), transparent 42%),
    var(--white);

  box-shadow: var(--shadow-soft);
}

.review-mark {
  color: var(--brand-magenta);

  font-family: Georgia, serif;
  font-size: 7rem;
  line-height: 0.65;
}

.review-copy h2 {
  font-size: clamp(2.7rem, 4.6vw, 4.4rem);
}

.review-copy > p:last-child {
  max-width: 650px;

  margin-top: 14px;

  color: var(--ink-soft);
}

.review-badge {
  width: 150px;
  height: 150px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--black);
  color: var(--white);

  transform: rotate(-6deg);
}

.review-badge span,
.review-badge small {
  color: #ff89be;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-badge strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

/* ==========================================================
   FAQ
========================================================== */

.faq-section {
  background: var(--black);
  color: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 40px);

  align-self: start;
}

.faq-heading h2 {
  color: var(--white);
}

.faq-heading h2 span {
  display: block;

  color: #ff5ea8;
}

.faq-heading > p:last-child {
  max-width: 360px;

  margin-top: 23px;

  color: #c8bec6;
}

.accordion {
  border-top: 1px solid #716773;
}

.accordion-item {
  border-bottom: 1px solid #716773;
}

.accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  padding: 26px 0;

  color: var(--white);

  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;

  cursor: pointer;
}

.accordion-item summary::after {
  content: "+";

  width: 38px;
  height: 38px;

  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 2px solid #bd3d7f;
  border-radius: 50%;

  color: #ff70b1;

  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 500;
}

.accordion-item[open] summary::after {
  content: "−";

  background: var(--brand-magenta);
  color: var(--white);
}

.accordion-item p {
  max-width: 680px;

  padding: 0 65px 27px 0;

  color: #c8bec6;
}

/* ==========================================================
   Contact / booking
========================================================== */

.contact-section {
  position: relative;

  overflow: hidden;

  padding: 120px 0;

  background:
    radial-gradient(
      circle at 16% 22%,
      rgba(234, 42, 134, 0.27),
      transparent 28%
    ),
    linear-gradient(135deg, #341028 0%, #180d17 52%, #09080b 100%);

  color: var(--white);
}

.contact-section::after {
  content: "YYZ";

  position: absolute;
  right: -1vw;
  bottom: -80px;

  color: rgba(255, 255, 255, 0.035);

  font-family: var(--font-display);
  font-size: clamp(14rem, 34vw, 34rem);
  font-weight: 900;
  line-height: 0.75;

  pointer-events: none;
}

.contact-layout {
  position: relative;
  z-index: 1;

  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(60px, 9vw, 120px);
}

.contact-copy h2 {
  max-width: 560px;

  color: var(--white);
}

.contact-copy h2 span {
  display: block;

  color: #ff68ad;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 520px;

  margin-top: 25px;

  color: #d9ccd6;
}

.contact-direct {
  display: grid;
  gap: 12px;

  max-width: 470px;

  margin-top: 34px;
}

.contact-direct > a {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 15px 17px;

  border: 1px solid #877783;
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.055);

  color: var(--white);

  text-decoration: none;

  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);

  transition:
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    background 0.2s var(--ease);
}

.contact-direct > a:hover {
  border-color: #ff75b5;
  background: rgba(234, 42, 134, 0.1);

  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;

  flex: 0 0 auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: var(--brand-gradient);
  color: var(--white);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-direct small,
.contact-direct strong {
  display: block;
}

.contact-direct small {
  color: #c5b9c3;

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-direct strong {
  margin-top: 1px;

  font-size: 0.96rem;
}

.social-links {
  display: grid;
  gap: 8px;

  max-width: 470px;

  margin: 30px 0 0;
  padding: 0;

  list-style: none;
}

.social-links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;

  padding: 10px 0;

  border-bottom: 1px solid #726571;

  color: var(--white);

  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.social-links a span {
  color: #d4c4d0;

  font-weight: 500;
}

.service-area {
  max-width: 470px;

  margin-top: 28px;
}

.service-area small {
  color: #ff83bb;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-area p {
  margin-top: 5px;

  color: #d8cbd5;

  font-size: 0.84rem;
}

.booking-shell {
  min-width: 0;

  overflow: hidden;

  border: 1px solid #b7a9b4;
  border-radius: 26px;

  background: var(--white);
  color: var(--ink);

  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
}

.booking-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 18px 25px;

  border-bottom: 1px solid #d8ced6;

  background: #f8f2f6;

  color: var(--ink);

  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: var(--brand-deep);

  font-size: 0.64rem;
}

.booking-status > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--brand-magenta);

  box-shadow: 0 0 0 4px rgba(194, 27, 114, 0.11);
}

.booking-form,
.booking-result {
  padding: 32px;
}

.booking-result {
  border-top: 1px solid #d7ccd5;

  background: #f9f5f8;
}

.form-intro {
  margin-bottom: 25px;

  color: #665d66;

  font-size: 0.85rem;
}

.form-row {
  margin-bottom: 16px;
}

.form-row-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-row label {
  display: block;

  margin-bottom: 7px;

  color: #403740;

  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-row input,
.booking-message {
  width: 100%;

  padding: 13px 14px;

  border: 2px solid #777078;
  border-radius: 11px;

  background: var(--white);
  color: var(--ink);

  font-family: var(--font-body);
  font-size: 0.94rem;
}

.form-row input {
  min-height: 49px;
}

.form-row input::placeholder {
  color: #756c75;
  opacity: 1;
}

.form-row input:user-invalid {
  border-color: var(--danger);
}

.booking-message {
  min-height: 220px;

  display: block;

  margin: 17px 0;

  resize: vertical;

  background: var(--white);
}

.form-note {
  min-height: 1.45em;

  margin-top: 11px;

  color: var(--brand-deep);

  font-size: 0.78rem;
  font-weight: 600;
}

.result-kicker {
  color: var(--brand-deep);

  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-result h3 {
  margin-top: 6px;

  color: var(--ink);

  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-result > p {
  margin-top: 8px;

  color: var(--ink-soft);

  font-size: 0.86rem;
}

.booking-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================
   Footer
========================================================== */

.site-footer {
  padding: 70px 0 25px;

  background: var(--black);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.65fr 0.8fr;
  gap: 60px;

  padding-bottom: 55px;
}

.footer-brand {
  max-width: 420px;
}

.footer-logo {
  display: inline-block;

  border-radius: 10px;
}

.footer-logo-shell {
  width: 190px;
  height: 72px;

  border-radius: 10px;
}

.footer-logo-shell img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}

.footer-brand p {
  max-width: 380px;

  margin-top: 20px;

  color: #bdb3bc;

  font-size: 0.86rem;
}

.footer-nav,
.footer-contact {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 9px;
}

.footer-nav strong,
.footer-contact > strong {
  margin-bottom: 7px;

  color: #ff79b5;

  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-nav a,
.footer-contact a {
  color: #d6cdd5;

  font-size: 0.86rem;

  text-decoration-color: #766d77;
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: #ff84bb;
}

.footer-contact .footer-phone {
  color: var(--white);

  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;

  padding-top: 24px;

  border-top: 1px solid #5d555f;
}

.footer-bottom p {
  color: #958c96;

  font-size: 0.72rem;
}

/* ==========================================================
   Mobile CTA
========================================================== */

.mobile-cta {
  display: none;
}

/* ==========================================================
   Reveal animation
========================================================== */

.reveal-item {
  opacity: 0;
  transform: translateY(22px);

  transition:
    opacity 0.62s var(--ease),
    transform 0.62s var(--ease);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: none;
}

/* Explicitly outrank .reveal-item.is-visible so hover transforms
   cannot be neutralized by a same-specificity source-order tie. */

.service-card.reveal-item:hover {
  transform: translateY(-7px);
}

/* ==========================================================
   Responsive — tablet/navigation
========================================================== */

@media (max-width: 1080px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.75fr);
    gap: 50px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-trust li {
    max-width: 350px;
  }

  .process-layout {
    gap: 70px;
  }

  .contact-layout {
    gap: 60px;
  }
}

/* ==========================================================
   Mobile navigation breakpoint
========================================================== */

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 16px);
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom, 0px));
  }

  .wrap {
    padding-inline: 22px;
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand-image-shell {
    width: 154px;
    height: 56px;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;

    width: 100%;
    max-height: calc(100dvh - var(--header-height));

    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;

    padding: 16px 22px 22px;

    border-top: 1px solid #d7ced6;
    border-bottom: 2px solid var(--brand-magenta);

    background: rgba(255, 255, 255, 0.985);

    box-shadow: 0 24px 50px rgba(30, 11, 26, 0.18);

    -webkit-overflow-scrolling: touch;
  }

  .js .nav-panel[hidden] {
    display: none !important;
  }

  .main-nav {
    display: grid;
    gap: 0;
  }

  .main-nav a {
    min-height: 48px;

    display: flex;
    align-items: center;

    padding: 10px 2px;

    border-bottom: 1px solid #d7cfd6;

    color: var(--ink);

    font-size: 0.95rem;
  }

  .main-nav a::after {
    display: none;
  }

  .header-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;

    margin-top: 16px;
  }

  .header-cta .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;

    padding: 136px 0 82px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-board {
    max-width: 620px;

    transform: none;
  }

  .process-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-heading {
    position: static;
  }

  .fleet-showcase {
    grid-template-columns: 1fr;
  }

  .fleet-art {
    min-height: 360px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .review-panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .review-badge {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .site-footer {
    padding-bottom: calc(115px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-cta {
    position: fixed;
    z-index: 80;
    right: 17px;
    bottom: calc(17px + env(safe-area-inset-bottom, 0px));

    min-height: 58px;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 19px;

    border: 2px solid #ff6caf;
    border-radius: 999px;

    background: var(--brand-gradient);
    color: var(--white);

    box-shadow: 0 15px 38px rgba(79, 13, 57, 0.4);

    text-decoration: none;

    transition:
      opacity 0.2s var(--ease),
      transform 0.2s var(--ease);
  }

  .mobile-cta small,
  .mobile-cta strong {
    display: block;
  }

  .mobile-cta small {
    opacity: 0.82;

    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-cta strong {
    margin-top: 2px;

    font-size: 0.86rem;
    line-height: 1;
  }

  body.menu-open .mobile-cta {
    opacity: 0;
    pointer-events: none;

    transform: translateY(12px);
  }
}

/* ==========================================================
   Smaller mobile
========================================================== */

@media (max-width: 640px) {
  .wrap {
    padding-inline: 19px;
  }

  .section {
    padding: 82px 0;
  }

  h1 {
    font-size: clamp(3.65rem, 17.5vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero {
    padding-top: 124px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    margin-top: 38px;
  }

  .hero-board {
    padding: 22px;
  }

  .board-top strong {
    font-size: 3.3rem;
  }

  .board-fare {
    padding: 19px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 330px;
  }

  .process-section {
    padding: 82px 0;
  }

  .process-list li {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 15px;
  }

  .process-number {
    font-size: 1.7rem;
  }

  .fleet-copy {
    padding: 35px 24px;
  }

  .fleet-capacity strong {
    font-size: 6rem;
  }

  .fleet-art {
    min-height: 285px;
  }

  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-burst {
    width: 132px;
    height: 132px;
  }

  .price-burst strong {
    font-size: 2.8rem;
  }

  .pricing-table {
    min-width: 610px;
  }

  .review-panel {
    grid-template-columns: 1fr;
    gap: 25px;

    padding: 32px 24px;
  }

  .review-mark {
    font-size: 5rem;
  }

  .review-badge {
    grid-column: auto;

    width: 130px;
    height: 130px;
  }

  .accordion-item summary {
    gap: 17px;

    font-size: 1.4rem;
  }

  .accordion-item p {
    padding-right: 0;
  }

  .contact-section {
    padding: 82px 0;
  }

  .contact-layout {
    gap: 45px;
  }

  .social-links a {
    flex-direction: column;
    gap: 2px;
  }

  .booking-form,
  .booking-result {
    padding: 25px 20px;
  }

  .form-row-split {
    grid-template-columns: 1fr;
  }

  .booking-topline {
    padding-inline: 20px;
  }

  .booking-result-actions {
    flex-direction: column;
  }

  .booking-result-actions .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-contact {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .brand-image-shell {
    width: 138px;
    height: 50px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .header-cta {
    grid-template-columns: 1fr;
  }

  .hero-board {
    border-radius: 23px;
  }

  .board-status {
    display: none;
  }

  .board-areas {
    gap: 6px;
  }

  .fleet-art-label {
    right: 18px;
    bottom: 17px;
  }

  .mobile-cta {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  }
}

/* ==========================================================
   Reduced motion
========================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .route-line {
    animation: none !important;
  }

  .reveal-item {
    opacity: 1;
    transform: none;
  }

  .service-card.reveal-item:hover {
    transform: none;
  }
}
