/* ============================================================
   PenPenGo — Advanced brand design system
   Evolution of the bold-yellow identity: layered depth,
   refined rhythm, glass surfaces, and richer motion.
   All original class hooks preserved. Fully responsive.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand */
  --yellow: #fdc801;
  --yellow-deep: #e6b400;
  --yellow-bright: #ffe45e;
  --yellow-soft: #fff6d6;
  --yellow-tint: #fffbea;
  --yellow-glow: rgba(253, 200, 1, 0.35);

  /* Ink */
  --black: #0d0d0d;
  --ink: #1a1a1a;
  --ink-800: #2a2a2a;
  --muted: #5c5c5c;
  --muted-soft: #7a7a7a;
  --line: #ececec;
  --line-strong: #d8d8d8;
  --white: #ffffff;
  --surface: #fafafa;
  --surface-2: #f4f4f2;

  /* Shape */
  --radius-xs: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;
  --max: 1160px;
  --max-wide: 1320px;
  --nav-h: 4.75rem;
  --nav-h-scrolled: 4rem;

  /* Type */
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Outfit', sans-serif;

  /* Depth — layered, soft, natural */
  --shadow-xs: 0 1px 2px rgba(13, 13, 13, 0.06);
  --shadow-sm: 0 4px 14px rgba(13, 13, 13, 0.06);
  --shadow-md: 0 12px 30px rgba(13, 13, 13, 0.09);
  --shadow-lg: 0 26px 60px rgba(13, 13, 13, 0.12);
  --shadow-glow: 0 20px 55px rgba(253, 200, 1, 0.28);
  /* Signature offset — the brand motif, kept but refined */
  --offset: 5px 5px 0 var(--black);
  --offset-sm: 3px 3px 0 var(--black);
  --offset-yellow: 8px 8px 0 var(--yellow);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --space-section: clamp(3.5rem, 7vw, 6.5rem);
  --space-gutter: clamp(1.1rem, 3.5vw, 1.75rem);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.68;
  font-size: clamp(1rem, 0.96rem + 0.24vw, 1.075rem);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}

.container {
  width: min(100% - (var(--space-gutter) * 2), var(--max));
  margin-inline: auto;
}

/* ============================================================
   Scroll progress bar + back-to-top (injected by JS)
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--yellow-deep), var(--yellow), var(--yellow-bright));
  box-shadow: 0 0 12px var(--yellow-glow);
  transition: width 0.1s linear;
  pointer-events: none;
}

.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 1050;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), background 0.2s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.to-top:hover {
  background: var(--yellow);
  color: var(--black);
}

.to-top svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* ============================================================
   Atmosphere
   ============================================================ */
.bg-mesh {
  position: relative;
  background:
    radial-gradient(ellipse 80% 55% at 8% -5%, var(--yellow-glow), transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 8%, rgba(253, 200, 1, 0.2), transparent 52%),
    radial-gradient(ellipse 40% 40% at 50% 120%, rgba(253, 200, 1, 0.12), transparent 60%),
    linear-gradient(180deg, #fffef8 0%, var(--white) 42%, var(--surface) 100%);
}

.road-pattern {
  position: relative;
  background-image:
    linear-gradient(90deg, transparent 0%, transparent 48%, rgba(13, 13, 13, 0.05) 49%, rgba(13, 13, 13, 0.05) 51%, transparent 52%),
    repeating-linear-gradient(105deg, transparent, transparent 28px, rgba(253, 200, 1, 0.06) 28px, rgba(253, 200, 1, 0.06) 30px);
}

/* ============================================================
   Header — glass, refined, shrinks on scroll
   ============================================================ */
.site-header {
  z-index: 1030;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(253, 200, 1, 0.55);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 30px rgba(13, 13, 13, 0.08);
  border-bottom-color: var(--yellow);
}

.site-header .navbar {
  padding-top: 0;
  padding-bottom: 0;
  min-height: var(--nav-h);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - (var(--space-gutter) * 2), var(--max));
  margin-inline: auto;
  min-height: var(--nav-h);
  transition: min-height 0.3s var(--ease);
}

.is-scrolled .header-bar {
  min-height: var(--nav-h-scrolled);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
  min-height: 44px;
  transition: transform 0.3s var(--ease);
}

.logo-link:hover {
  transform: translateY(-1px);
}

.logo-mark {
  width: 2.55rem;
  height: 2.55rem;
  object-fit: contain;
  transition: transform 0.4s var(--ease-spring);
}

.logo-link:hover .logo-mark {
  transform: rotate(-6deg) scale(1.05);
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--black);
}

.logo-word span {
  color: var(--yellow-deep);
  display: block;
  font-size: 0.95em;
}

.navbar-collapse {
  flex-grow: 0;
}

.nav-list {
  gap: 0.15rem 0.35rem;
}

.nav-list .nav-link {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink) !important;
  position: relative;
  padding: 0.5rem 0.8rem !important;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-list .nav-link:hover {
  color: var(--black) !important;
  background: rgba(253, 200, 1, 0.14);
}

.nav-list .nav-link.active {
  color: var(--black) !important;
}

.nav-list .nav-link.active::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.28rem;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}

.nav-cta {
  flex-shrink: 0;
  margin-left: 0.85rem;
  padding: 0.6rem 1.35rem !important;
  font-size: 0.93rem !important;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  box-shadow: var(--offset-sm);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 var(--black);
}

.nav-toggle {
  width: 46px;
  height: 46px;
  border: 2px solid var(--black);
  background: var(--yellow);
  border-radius: var(--radius-xs);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  box-shadow: var(--offset-sm);
  padding: 0;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}

.nav-toggle:active {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--black);
}

.nav-toggle:hover {
  background: var(--yellow-deep);
}

.nav-toggle[aria-expanded='true'] {
  background: var(--black);
}

.nav-toggle[aria-expanded='true'] span {
  background: var(--yellow);
}

.nav-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.28s var(--ease), opacity 0.2s;
}

.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);
}

/* ============================================================
   Buttons — signature offset + subtle shine
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.25s var(--ease), background 0.2s, border-color 0.2s, box-shadow 0.25s, color 0.2s;
}

/* moving shine */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 0.6s var(--ease);
}

.btn:hover::after {
  transform: translateX(120%);
}

.btn:focus-visible,
.nav-list .nav-link:focus-visible,
.nav-toggle:focus-visible,
.nav-cta:focus-visible {
  outline: 3px solid var(--yellow-deep);
  outline-offset: 3px;
}

.btn-primary {
  --bs-btn-bg: var(--yellow);
  --bs-btn-border-color: var(--black);
  --bs-btn-hover-bg: var(--yellow-deep);
  --bs-btn-hover-border-color: var(--black);
  --bs-btn-active-bg: var(--yellow-deep);
  --bs-btn-active-border-color: var(--black);
  background: linear-gradient(180deg, var(--yellow-bright), var(--yellow));
  color: var(--black);
  border-color: var(--black);
  box-shadow: var(--offset);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(180deg, var(--yellow), var(--yellow-deep));
  color: var(--black);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--black);
}

.btn-primary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--black);
}

.btn-secondary {
  --bs-btn-bg: var(--black);
  --bs-btn-border-color: var(--black);
  --bs-btn-hover-bg: #2a2a2a;
  --bs-btn-hover-border-color: var(--black);
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  box-shadow: 5px 5px 0 var(--yellow);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--ink-800);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
  box-shadow: 7px 7px 0 var(--yellow);
}

.btn-secondary:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--yellow);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--yellow-soft);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

/* ============================================================
   Hero — cinematic, layered, animated
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--yellow);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
  transform: scale(1.05);
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 60% at 20% 100%, rgba(13, 13, 13, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(253, 200, 1, 0.12) 0%, rgba(13, 13, 13, 0.1) 40%, rgba(13, 13, 13, 0.78) 100%);
  pointer-events: none;
}

/* floating decorative glow */
.hero::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  max-width: 620px;
  max-height: 620px;
  z-index: 1;
  background: radial-gradient(circle, rgba(253, 200, 1, 0.45), transparent 65%);
  filter: blur(20px);
  animation: floatGlow 9s var(--ease) infinite;
  pointer-events: none;
}

@keyframes floatGlow {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.85; }
  50% { transform: translate(-30px, 30px) scale(1.1); opacity: 1; }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  padding: 4.5rem 0 5.5rem;
  color: var(--white);
  max-width: 40rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.1rem, 9.5vw, 5.75rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--yellow);
  text-shadow: 3px 3px 0 rgba(0, 0, 0, 0.9);
  margin-bottom: 0.6rem;
  animation: heroWord 0.9s var(--ease) both;
}

.hero-brand em {
  display: block;
  font-style: normal;
  background: linear-gradient(100deg, var(--yellow) 0%, var(--yellow-bright) 45%, #fff 55%, var(--yellow) 65%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  animation: shine 6s linear infinite;
}

@keyframes shine {
  to { background-position: -220% 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3.2vw, 1.95rem);
  line-height: 1.25;
  margin-bottom: 1.1rem;
  color: var(--white);
  animation: heroWord 0.9s var(--ease) 0.1s both;
}

.hero p {
  font-size: clamp(1rem, 0.97rem + 0.3vw, 1.12rem);
  color: rgba(255, 255, 255, 0.94);
  max-width: 34rem;
  margin-bottom: 1.9rem;
  animation: heroWord 0.9s var(--ease) 0.2s both;
}

.hero .btn-row {
  animation: heroWord 0.9s var(--ease) 0.3s both;
}

.hero .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
}

.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

@keyframes heroWord {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.app-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
  animation: heroWord 0.9s var(--ease) 0.4s both;
}

.app-store-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 9.75rem;
  padding: 0.6rem 1rem;
  background: rgba(13, 13, 13, 0.62);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  color: var(--white);
  line-height: 1.15;
  backdrop-filter: blur(6px);
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.app-store-btn:hover {
  background: rgba(13, 13, 13, 0.85);
  border-color: var(--yellow);
  color: var(--white);
  transform: translateY(-2px);
}

.app-store-label {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.85;
}

.app-store-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
}

/* scroll cue (injected by JS) */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  z-index: 2;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-pill);
  display: grid;
  justify-items: center;
  padding-top: 7px;
}

.scroll-cue::before {
  content: '';
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--yellow);
  animation: cueMove 1.6s var(--ease) infinite;
}

@keyframes cueMove {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ============================================================
   Text utilities
   ============================================================ */
.safety-copy { max-width: 44rem; margin-bottom: 1rem; }
.safety-copy:last-child { margin-bottom: 0; }
.text-block { margin-bottom: 1rem; }
.text-block-sm { margin-bottom: 0.75rem; }
.text-block-lg { margin-bottom: 1.5rem; }
.text-block-xs { margin-bottom: 0.5rem; }

.page-hero-extra {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.1rem;
}

.section-title-wide { max-width: none; }
.section-lead-tight { margin-bottom: 0; }
.operating-model { margin-top: 3rem; }

/* ============================================================
   Reveal animation (staggered via inline delay from JS)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Sections
   ============================================================ */
.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background:
    radial-gradient(ellipse 60% 50% at 100% 0%, rgba(253, 200, 1, 0.25), transparent 55%),
    var(--yellow-soft);
  position: relative;
}

.section-dark {
  background:
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(253, 200, 1, 0.14), transparent 55%),
    var(--black);
  color: var(--white);
  position: relative;
}

.section-dark .muted { color: rgba(255, 255, 255, 0.72); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow-deep);
  margin-bottom: 0.8rem;
}

.section-label::before {
  content: '';
  width: 1.6rem;
  height: 2px;
  background: var(--yellow-deep);
  border-radius: 2px;
}

.section-dark .section-label { color: var(--yellow); }
.section-dark .section-label::before { background: var(--yellow); }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.95rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 0.95rem;
  max-width: 22ch;
}

.section-lead {
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 2.75rem;
  font-size: clamp(1.02rem, 0.99rem + 0.2vw, 1.12rem);
}

.section-dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.muted { color: var(--muted); }

/* ============================================================
   Ride photos — refined masonry strip
   ============================================================ */
.ride-photos {
  padding: 0 0 var(--space-section);
}

.ride-photos .container {
  margin-bottom: 2.25rem;
}

.ride-photos-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  width: min(100% - (var(--space-gutter) * 2), var(--max-wide));
  margin-inline: auto;
}

.ride-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.ride-photo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ride-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.ride-photo:hover img {
  transform: scale(1.08);
}

.ride-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2.75rem 1.15rem 1.1rem;
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.88));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  transition: transform 0.4s var(--ease);
}

.ride-photo:hover figcaption {
  transform: translateY(-3px);
}

.ride-photo:nth-child(2),
.ride-photo:nth-child(4) {
  margin-top: 1.75rem;
}

/* ============================================================
   How it works — journey timeline (alternating "road")
   ============================================================ */
.how-head {
  text-align: center;
  margin-bottom: 3.25rem;
}

.how-head .section-label { justify-content: center; }
.how-head .section-title { margin-inline: auto; }

/* ---- Base = mobile: vertical left-rail timeline ---- */
.journey {
  position: relative;
  max-width: 34rem;
  margin-inline: auto;
  padding: 0.5rem 0 1rem;
}

/* double chevron between steps — default (mobile) points down */
.journey-step:not(:last-child)::before,
.journey-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.8rem;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 3px solid var(--yellow-deep);
  border-bottom: 3px solid var(--yellow-deep);
  border-radius: 0 0 3px 0;
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
  transition: border-color 0.3s var(--ease);
}

/* trailing chevron (higher up) is lighter; leading one is solid */
.journey-step:not(:last-child)::before { top: 3.7rem; opacity: 0.5; }
.journey-step:not(:last-child)::after { top: 4.25rem; }

.journey-step:not(:last-child):hover::before,
.journey-step:not(:last-child):hover::after {
  border-color: var(--black);
}

.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 3.6rem 1fr;
  gap: 0.7rem;
  align-items: start;
  margin-bottom: 1.5rem;
}

.journey-step:last-child { margin-bottom: 3rem; }

.journey-marker {
  position: relative;
  grid-column: 1;
  z-index: 2;
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--yellow-bright), var(--yellow));
  border: 3px solid var(--black);
  border-radius: 50%;
  box-shadow: var(--offset-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--black);
  transition: transform 0.35s var(--ease-spring);
}

/* soft pulse ring around each marker */
.journey-marker::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--yellow-deep);
  opacity: 0;
}

.journey-step:hover .journey-marker {
  transform: scale(1.08) rotate(-6deg);
}

.journey-step:hover .journey-marker::after {
  animation: markerPulse 1.2s var(--ease) infinite;
}

@keyframes markerPulse {
  0% { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.35); }
}

.journey-card {
  position: relative;
  grid-column: 2;
  display: flex;
  gap: 1.05rem;
  align-items: flex-start;
  padding: 1.35rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.journey-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.journey-icon {
  flex-shrink: 0;
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  background: var(--yellow-soft);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  color: var(--black);
  transition: background 0.3s var(--ease), transform 0.35s var(--ease-spring);
}

.journey-card:hover .journey-icon {
  background: var(--yellow);
  transform: rotate(-6deg);
}

.journey-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.journey-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.journey-text p {
  font-size: 0.96rem;
  color: var(--muted);
  margin: 0;
}

/* ---- Web (desktop) = horizontal road with steps in a row ---- */
@media (min-width: 992px) {
  .journey {
    max-width: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    padding: 1.25rem 0 0.5rem;
  }

  /* double chevron points right between steps in horizontal mode */
  .journey-step:not(:last-child)::before,
  .journey-step:not(:last-child)::after {
    top: 2rem;
    left: auto;
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 0 3px 0 0;
    transform: translateY(-50%) rotate(-45deg);
  }

  .journey-step:not(:last-child)::before { right: -0.7rem; opacity: 0.5; }
  .journey-step:not(:last-child)::after { right: -1.15rem; }

  .journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.15rem;
    margin-bottom: 0;
  }

  .journey-marker {
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
  }

  .journey-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 0.85rem;
    padding: 1.65rem 1.35rem 1.5rem;
  }

}

/* small phones — stack icon above text inside the card */
@media (max-width: 479px) {
  .journey { max-width: none; }

  .journey-step {
    grid-template-columns: 3.2rem 1fr;
    gap: 0.6rem;
  }

  .journey-marker {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.25rem;
  }

  .journey-step:not(:last-child)::before,
  .journey-step:not(:last-child)::after { left: 1.6rem; }
  .journey-step:not(:last-child)::before { top: 3.3rem; }
  .journey-step:not(:last-child)::after { top: 3.8rem; }

  .journey-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.15rem 1.2rem;
  }
}

/* ============================================================
   Why choose — simple, uniform icon grid
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.1rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.feature-item:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--yellow-soft);
  border-radius: 10px;
  color: var(--yellow-deep);
}

.feature-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.feature-item p {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--ink);
}

/* legacy dot no longer used */
.feature-dot { display: none; }

/* ============================================================
   Service visuals
   ============================================================ */
.services-visual {
  padding-top: 3rem;
}

.services-visual .container {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.service-visual {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.75rem, 4.5vw, 3.5rem);
  align-items: center;
}

.service-visual--flip .service-visual-media { order: 2; }
.service-visual--flip .service-visual-body { order: 1; }

.service-visual-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset-yellow);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.service-visual:hover .service-visual-media {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--yellow);
}

.service-visual-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service-visual:hover .service-visual-media img {
  transform: scale(1.06);
}

.service-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.8rem;
  box-shadow: var(--offset-sm);
}

.service-visual-body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.6vw, 2.35rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 0.9rem;
}

.service-visual-body p {
  color: var(--muted);
  margin-bottom: 1.6rem;
  max-width: 34rem;
  font-size: 1.06rem;
}

.service-driver-media {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset-yellow);
  background: var(--black);
}

.service-driver-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Legacy service list */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--black);
}

.service-row {
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}

.service-row:hover { background: rgba(253, 200, 1, 0.12); }

.service-tag {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--black);
}

.service-tag .badge {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--yellow);
  border: 1px solid var(--black);
  padding: 0.2rem 0.45rem;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.service-row p { color: var(--muted); max-width: 42rem; }

/* ============================================================
   Values — cards
   ============================================================ */
.values {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.25rem;
}

.value-item {
  padding: 1.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.value-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}

.value-item:hover::before { transform: scaleX(1); }

.value-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.value-item h3::before {
  content: '';
  width: 0.7rem;
  height: 0.7rem;
  flex-shrink: 0;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 3px;
  transform: rotate(45deg);
}

.value-item p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ============================================================
   Split layout
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

.split-visual {
  position: relative;
  min-height: 320px;
  aspect-ratio: 4 / 5;
  background: var(--black);
  border: 3px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset-yellow);
  overflow: hidden;
  display: grid;
  place-items: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.split-visual:hover {
  transform: translate(-2px, -2px);
  box-shadow: 12px 12px 0 var(--yellow);
}

.split-visual img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}

.split-visual:hover img { transform: scale(1.04); }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(ellipse 50% 80% at 15% 20%, var(--yellow-bright), transparent 60%),
    linear-gradient(135deg, var(--yellow) 0%, var(--yellow-bright) 50%, var(--yellow) 100%);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-12deg, transparent, transparent 40px, rgba(0, 0, 0, 0.035) 40px, rgba(0, 0, 0, 0.035) 41px);
}

.cta-band .container { position: relative; }

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.95rem, 4.2vw, 2.9rem);
  margin-bottom: 0.7rem;
}

.cta-band p {
  max-width: 34rem;
  margin: 0 auto 1.9rem;
  color: var(--ink);
}

.cta-band .btn-row { justify-content: center; }

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(2.5rem, 5vw, 3.5rem);
  border-bottom: 3px solid var(--yellow);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 0% 40%, var(--yellow-glow), transparent 55%),
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(253, 200, 1, 0.18), transparent 55%),
    var(--white);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.3rem, 5.2vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}

.page-hero p {
  color: var(--muted);
  max-width: 40rem;
  font-size: 1.12rem;
}

/* ============================================================
   Contact
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.contact-meta a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
  transition: color 0.2s;
}

.contact-meta a:hover { color: var(--yellow-deep); }

.enquiry-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.25rem 0 2rem;
}

.enquiry-types span {
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  background: var(--yellow-soft);
  border: 1px solid rgba(13, 13, 13, 0.14);
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.2s var(--ease);
}

.enquiry-types span:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.notice {
  padding: 1.35rem 1.45rem;
  border-left: 4px solid var(--yellow);
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
}

.notice strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.notice p { font-size: 0.95rem; color: var(--muted); }

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  box-shadow: var(--offset-yellow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group .form-control,
.form-group .form-select {
  padding: 0.8rem 0.95rem;
  border: 2px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-group .form-control:focus,
.form-group .form-select:focus {
  outline: none;
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 4px var(--yellow-glow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox-group input {
  margin-top: 0.25rem;
  accent-color: var(--yellow-deep);
  width: 1.15rem;
  height: 1.15rem;
  flex-shrink: 0;
}

.checkbox-group a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: var(--yellow-soft);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  font-weight: 500;
}

.form-success.show {
  display: block;
  animation: heroWord 0.5s var(--ease) both;
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal { padding: clamp(2.75rem, 5vw, 3.5rem) 0 var(--space-section); }

.legal-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border-left: 4px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.legal h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  margin: 2.25rem 0 0.75rem;
}

.legal p,
.legal li {
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.legal ul {
  margin: 0.5rem 0 1rem 1.25rem;
  list-style: disc;
}

.legal li::marker { color: var(--yellow-deep); }

.legal a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 2px solid var(--yellow);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(253, 200, 1, 0.1), transparent 55%),
    var(--black);
  color: rgba(255, 255, 255, 0.85);
  padding: clamp(3rem, 6vw, 4rem) 0 2rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow-deep), var(--yellow), var(--yellow-bright), var(--yellow));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--yellow);
  margin-bottom: 0.65rem;
}

.footer-tagline {
  font-size: 0.95rem;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-tagline em {
  color: var(--yellow);
  font-style: normal;
  font-weight: 600;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.9rem;
  font-size: 1.08rem;
}

.footer-col a {
  display: block;
  width: fit-content;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: color 0.2s, transform 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================================
   Check list
   ============================================================ */
.check-list {
  display: grid;
  gap: 0.8rem;
}

.check-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  font-weight: 500;
}

.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 1.3rem;
  height: 1.3rem;
  margin-top: 0.1rem;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 6px;
  clip-path: polygon(14% 44%, 0 65%, 40% 100%, 100% 18%, 80% 0, 38% 62%);
}

/* ============================================================
   About story
   ============================================================ */
.story-block { max-width: 44rem; }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.mv-item {
  padding: 1.6rem 1.6rem 1.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid var(--yellow);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.mv-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mv-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.55rem;
}

.mv-item p { color: var(--muted); }

.ownership {
  margin-top: 2.5rem;
  padding: 1.6rem 1.75rem;
  background:
    radial-gradient(ellipse 60% 100% at 100% 0%, rgba(253, 200, 1, 0.14), transparent 60%),
    var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.ownership strong { color: var(--yellow); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 991.98px) {
  .nav-toggle { display: flex; }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--yellow);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 1.25rem 1.5rem;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
  }

  .navbar-collapse.collapsing,
  .navbar-collapse.show { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch !important;
    gap: 0;
    width: 100%;
    margin: 0 !important;
  }

  .nav-list .nav-link {
    padding: 1rem 0.85rem !important;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    font-size: 1.05rem;
    width: 100%;
  }

  .nav-list .nav-link:hover { background: var(--yellow-soft); }

  .nav-list .nav-link.active::after { display: none !important; }

  .nav-list .nav-link.active {
    color: var(--black) !important;
    background: var(--yellow-soft);
  }

  .nav-cta {
    margin: 1.15rem 0 0;
    width: 100%;
    justify-content: center;
    padding: 0.9rem 1.25rem !important;
    font-size: 1rem !important;
    box-shadow: var(--offset);
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .steps::before { display: none; }

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

  .ride-photos-strip {
    grid-template-columns: 1fr 1fr;
    width: min(100% - (var(--space-gutter) * 2), var(--max-wide));
  }

  .ride-photo:nth-child(2),
  .ride-photo:nth-child(4) { margin-top: 0; }
  .ride-photo:nth-child(odd) { margin-top: 0; }
  .ride-photo:nth-child(even) { margin-top: 1.5rem; }

  .split { grid-template-columns: 1fr; gap: 2rem; }

  .service-visual,
  .service-visual--flip { grid-template-columns: 1fr; gap: 1.5rem; }

  .service-visual--flip .service-visual-media,
  .service-visual--flip .service-visual-body { order: unset; }

  .service-visual-media,
  .service-driver-media {
    aspect-ratio: 16 / 10;
    box-shadow: 6px 6px 0 var(--yellow);
  }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .mission-vision { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .footer-grid > :first-child { grid-column: 1 / -1; }

  .hero-inner {
    max-width: 34rem;
    padding: 3.5rem 0 4.5rem;
  }

  .hero-brand { font-size: clamp(2.7rem, 8vw, 4.25rem); }

  .btn-row { gap: 0.75rem; }

  .btn { padding: 0.85rem 1.35rem; font-size: 0.96rem; }
}

/* Tablet portrait / large phone */
@media (max-width: 767px) {
  .mission-vision,
  .footer-grid,
  .feature-grid { grid-template-columns: 1fr; }

  .footer-grid > :first-child { grid-column: auto; }

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

  .ride-photos-strip {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .ride-photo,
  .ride-photo:nth-child(even),
  .ride-photo:nth-child(odd) {
    margin-top: 0;
    aspect-ratio: 16 / 10;
  }

  .hero { min-height: auto; }

  .hero-bg {
    object-position: 62% 35%;
    transform: scale(1.14);
  }

  .hero-inner {
    padding: 2.75rem 0 3.25rem;
    max-width: none;
  }

  .hero-brand { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .hero h1 { font-size: 1.28rem; }
  .hero p { font-size: 1rem; }

  .scroll-cue { display: none; }

  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }

  .service-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .service-visual-body .btn { width: 100%; }

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

  .page-hero { padding: 2.75rem 0 2rem; }
  .page-hero h1 { font-size: clamp(1.95rem, 8vw, 2.6rem); }

  .section-title { max-width: none; }

  .contact-form { box-shadow: 5px 5px 0 var(--yellow); }

  .cta-band .btn-row { flex-direction: column; align-items: stretch; }
  .cta-band .btn { width: 100%; }

  .split-visual { min-height: 240px; }

  .site-footer { padding: 3rem 0 1.75rem; }

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

/* Small phones */
@media (max-width: 479px) {
  .header-bar { gap: 0.75rem; }
  .logo-word { font-size: 1.08rem; }
  .logo-mark { width: 2.2rem; height: 2.2rem; }

  .hero-inner { padding: 2.25rem 0 2.75rem; }

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

  .enquiry-types span { font-size: 0.8rem; }

  .to-top { width: 2.7rem; height: 2.7rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: scale(1.05) !important; }
}
