:root {
  --black: #080808;
  --charcoal: #151515;
  --surface: #202020;
  --yellow: #ffd400;
  --yellow-deep: #f1c800;
  --orange: #ef8a1f;
  --white: #ffffff;
  --off-white: #f4f1e9;
  --grey: #a8a8a8;
  --line: rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(0,0,0,.24);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--black);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -100px;
  z-index: 9999;
  background: var(--yellow);
  padding: 12px 18px;
  font-weight: 800;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(8,8,8,.94);
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { width: 98px; flex: 0 0 auto; }
.brand img { filter: drop-shadow(0 8px 12px rgba(0,0,0,.35)); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.main-nav a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 3px;
  background: var(--yellow);
  transition: right .2s ease;
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after { right: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 2px solid var(--yellow);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255,212,0,.26);
}
.button-small { min-height: 46px; padding-inline: 20px; font-size: .82rem; }
.button-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.button-ghost:hover { border-color: var(--white); box-shadow: none; }
.button-dark { background: var(--black); color: var(--white); border-color: var(--black); }

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 0;
  background: transparent;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  padding: 150px 0 110px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
}
.hero-image, .hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-image {
  z-index: -3;
  background:
    url("../images/hero-car.png") center 58% / cover no-repeat;
  transform: scale(1.02);
}
.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0,0,0,.93) 0%, rgba(0,0,0,.78) 42%, rgba(0,0,0,.28) 74%, rgba(0,0,0,.52) 100%),
    linear-gradient(0deg, rgba(0,0,0,.78) 0%, transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
.eyebrow, .mini-label {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1, h2 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: .98;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}
.hero h1 span { color: var(--yellow); }
.hero-copy {
  max-width: 660px;
  margin: 26px 0 30px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.84);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 999px;
}
.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 8px;
  border-radius: 99px;
  background: var(--yellow);
  transform: translateX(-50%);
  animation: scrollCue 1.7s infinite;
}
@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

.trust-strip { background: var(--yellow); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-grid > div {
  min-height: 124px;
  padding: 26px 30px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid rgba(0,0,0,.15);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong {
  display: block;
  margin: 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 1.65rem;
  line-height: 1;
  text-transform: uppercase;
}
.trust-grid span {
  display: block;
  margin: 0;
  font-size: .9rem;
  line-height: 1.35;
}

.section { padding: 110px 0; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
h2 {
  margin: 0 0 22px;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
}
h3 { line-height: 1.2; }
.lead { font-size: 1.25rem; font-weight: 700; }
.about-card blockquote {
  margin: 30px 0 0;
  padding: 22px 0 22px 24px;
  border-left: 5px solid var(--yellow);
  font-weight: 800;
  font-size: 1.08rem;
}

.brand-panel {
  min-height: 500px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.brand-panel::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -80px;
  border: 35px solid var(--yellow);
  transform: rotate(45deg);
  opacity: .12;
}
.brand-panel img { width: 220px; filter: drop-shadow(0 16px 25px rgba(0,0,0,.5)); }
.brand-panel h3 { font-family: "Archivo Black"; text-transform: uppercase; font-size: 2rem; max-width: 400px; }
.brand-panel p { color: rgba(255,255,255,.72); max-width: 480px; }

.dark-section { background: var(--black); color: var(--white); }
.section-heading { max-width: 850px; margin-bottom: 50px; }
.section-heading.centred { margin-inline: auto; text-align: center; }
.section-heading p { max-width: 720px; margin-inline: auto; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(255,212,0,.65); }
.feature-number { color: var(--yellow); font-family: "Archivo Black"; }
.feature-card h3 { margin: 62px 0 14px; font-size: 1.6rem; }
.feature-card p { color: rgba(255,255,255,.7); }

.car-section { background: var(--off-white); }
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li { margin: 12px 0; padding-left: 28px; position: relative; font-weight: 700; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}
.car-photo {
  margin: 0;
  padding: 14px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.car-photo img { border-radius: calc(var(--radius) - 8px); }
.car-photo figcaption { padding: 14px 8px 6px; font-size: .86rem; color: #666; }

.prices { background: var(--yellow); }
.pricing-grid {
  max-width: 920px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.price-card {
  position: relative;
  padding: 44px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.price-card.featured { background: var(--black); color: var(--white); }
.price-label { margin: 0; text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.price { margin: 14px 0 0; font-family: "Archivo Black"; font-size: 5rem; line-height: 1; }
.price span { font-size: 2.2rem; vertical-align: top; }
.duration { margin-top: 8px; font-weight: 800; }
.price-card .button { margin-top: 18px; width: 100%; }
.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
}
.price-note { text-align: center; margin: 28px auto 0; max-width: 720px; font-weight: 700; }

.theory-section { background: #ece7dc; }
.theory-visual {
  min-height: 500px;
  position: relative;
}
.paper {
  position: absolute;
  width: 70%;
  min-height: 210px;
  padding: 34px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.paper span { color: var(--orange); font-weight: 900; text-transform: uppercase; }
.paper strong { margin-top: 40px; font-size: 1.45rem; }
.paper i {
  margin-top: auto;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-style: normal;
  font-size: 1.5rem;
  font-weight: 900;
}
.paper-one { left: 0; top: 10px; transform: rotate(-8deg); }
.paper-two { right: 0; top: 130px; transform: rotate(6deg); }
.paper-three { left: 16%; bottom: 0; transform: rotate(-1deg); background: var(--black); color: var(--white); }

.areas { background: var(--black); color: var(--white); }
.area-list {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.area-list span {
  padding: 16px 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.05rem;
}
.area-list span:hover { background: var(--yellow); color: var(--black); }

.contact { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-copy { position: sticky; top: 130px; }
.contact-links { display: grid; gap: 12px; margin-top: 34px; }
.contact-links a {
  padding: 18px 20px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: var(--white);
  transition: transform .2s ease, border-color .2s ease;
}
.contact-links a:hover { transform: translateX(4px); border-color: var(--orange); }
.contact-links small { display: block; color: #777; }
.contact-links strong { overflow-wrap: anywhere; }

.contact-form {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-top: 0; font-size: 1.8rem; }
.contact-form label { display: block; margin: 18px 0 7px; font-weight: 800; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  background: var(--surface);
  color: var(--white);
  padding: 14px 15px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(255,212,0,.3);
  border-color: var(--yellow);
}
.contact-form .button { width: 100%; margin-top: 22px; }
.form-note { font-size: .78rem; color: rgba(255,255,255,.58); }

.site-footer { padding: 70px 0 24px; background: #050505; color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 50px;
}
.footer-logo { width: 140px; margin-bottom: 16px; }
.site-footer h3 { color: var(--yellow); }
.site-footer a { display: block; color: rgba(255,255,255,.74); margin: 7px 0; }
.site-footer p { color: rgba(255,255,255,.64); }
.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: .86rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #071b0f;
  font-weight: 900;
  box-shadow: 0 14px 35px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .main-nav, .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .main-nav.open {
    position: absolute;
    inset: 92px 20px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(8,8,8,.98);
    box-shadow: var(--shadow);
  }
  .main-nav.open a { padding: 13px 8px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 46px; }
  .contact-copy { position: static; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid > div:nth-child(2) { border-right: 0; }
  .trust-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.15); }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 78px; }
  .brand { width: 78px; }
  .main-nav.open { inset: 78px 14px auto; }
  .hero { min-height: 720px; padding: 125px 0 82px; }
  .hero-image { background-position: 64% center; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0,0,0,.94) 0%, rgba(0,0,0,.66) 62%, rgba(0,0,0,.45) 100%);
  }
  .hero h1 { font-size: clamp(3.2rem, 15vw, 5rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .scroll-cue { display: none; }

  .section { padding: 78px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid rgba(0,0,0,.15); min-height: 96px; }
  .trust-grid > div:last-child { border-bottom: 0; }

  .card-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: auto; }
  .feature-card h3 { margin-top: 36px; }
  .brand-panel { min-height: 430px; padding: 30px; }
  .price-card { padding: 32px 26px; }
  .theory-visual { min-height: 430px; }
  .paper { width: 80%; min-height: 175px; padding: 24px; }
  .paper strong { margin-top: 24px; }
  .paper-three { left: 8%; }
  .contact-form { padding: 28px 22px; }
  .footer-bottom { flex-direction: column; }
  .whatsapp-float span { font-size: .84rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}


.pj-portrait{
width:240px;
height:240px;
border-radius:50%;
object-fit:cover;
border:6px solid var(--yellow);
margin-bottom:2rem;
box-shadow:0 20px 40px rgba(0,0,0,.35);
}

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


/* PJ Promise */
.promise-section {
  padding: 96px 0;
  background:
    linear-gradient(120deg, rgba(255,212,0,.97), rgba(239,138,31,.95)),
    var(--yellow);
  overflow: hidden;
}
.promise-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 80px;
  align-items: center;
}
.promise-section .mini-label { color: var(--black); }
.promise-section h2 {
  margin: 0;
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}
.promise-section h2 span {
  color: var(--white);
  text-shadow: 4px 4px 0 var(--black);
}
.promise-copy {
  padding: 34px;
  border: 2px solid rgba(0,0,0,.18);
  border-radius: var(--radius);
  background: rgba(255,255,255,.22);
  backdrop-filter: blur(10px);
}
.promise-copy > p {
  margin-top: 0;
  font-size: 1.15rem;
  font-weight: 700;
}
.promise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}
.promise-list li {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  font-weight: 800;
}
.promise-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--yellow);
}

/* Wall of Fame */
.success-section {
  background: #f7f3e9;
}
.pass-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pass-card {
  position: relative;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: var(--black);
  box-shadow: 0 16px 35px rgba(0,0,0,.13);
  cursor: zoom-in;
}
.pass-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.pass-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 50px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--white);
  background: linear-gradient(transparent, rgba(0,0,0,.88));
  transform: translateY(16px);
  opacity: .88;
  transition: transform .3s ease, opacity .3s ease;
}
.pass-overlay strong {
  font-size: 1rem;
}
.pass-overlay small {
  color: var(--yellow);
  font-weight: 800;
}
.pass-card:hover img,
.pass-card:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.08);
}
.pass-card:hover .pass-overlay,
.pass-card:focus-visible .pass-overlay {
  transform: translateY(0);
  opacity: 1;
}
.gallery-extra {
  display: none;
}
.pass-gallery.show-all .gallery-extra {
  display: block;
}
.gallery-actions {
  margin-top: 34px;
  text-align: center;
}
.gallery-actions p {
  max-width: 760px;
  margin: 16px auto 0;
  color: #686868;
  font-size: .82rem;
}
.lightbox {
  width: min(92vw, 900px);
  max-height: 92vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 20px;
  background: transparent;
}
.lightbox::backdrop {
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(7px);
}
.lightbox img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  background: var(--black);
  box-shadow: 0 25px 80px rgba(0,0,0,.55);
}
.lightbox-close {
  position: absolute;
  right: -14px;
  top: -18px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .promise-inner { grid-template-columns: 1fr; gap: 36px; }
  .pass-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .promise-section { padding: 72px 0; }
  .promise-copy { padding: 24px; }
  .promise-list { grid-template-columns: 1fr; }
  .pass-gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pass-card, .pass-card img { min-height: 260px; }
  .lightbox-close { right: 2px; top: -54px; }
}

@media (max-width: 430px) {
  .pass-gallery { grid-template-columns: 1fr; }
  .pass-card, .pass-card img { min-height: 390px; }
}


/* Version 4 refinements */
.hero-zoom {
  animation: heroZoom 16s ease-out both;
  transform-origin: center center;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1.015); }
}

.stats-grid .counter {
  display: inline;
}
.stats-grid strong {
  white-space: nowrap;
}

/* Journey timeline */
.journey-section {
  background: var(--white);
}
.journey-timeline {
  position: relative;
  max-width: 980px;
  margin: 58px auto 0;
  padding: 0;
  list-style: none;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  left: 41px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(var(--yellow), var(--orange));
}
.journey-step {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  align-items: start;
  margin: 0 0 24px;
  padding: 24px 30px 24px 0;
  border-radius: 18px;
  transition: transform .25s ease, background .25s ease;
}
.journey-step:hover {
  transform: translateX(7px);
  background: #faf7ef;
}
.journey-number {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--yellow);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.15rem;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
}
.journey-step h3 {
  margin: 8px 0 7px;
  font-size: 1.4rem;
}
.journey-step p {
  margin: 0;
  color: #5e5e5e;
}

/* FAQ */
.faq-section {
  background: #ece7dc;
}
.faq-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.faq-layout .section-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}
.faq-list {
  display: grid;
  gap: 13px;
}
.faq-item {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
}
.faq-item summary {
  position: relative;
  padding: 22px 58px 22px 22px;
  cursor: pointer;
  list-style: none;
  font-weight: 850;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 1.35rem;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "–";
}
.faq-item p {
  margin: 0;
  padding: 0 22px 23px;
  color: #595959;
}

/* Active navigation */
.main-nav a.active::after {
  right: 0;
}
.main-nav a.active {
  color: var(--yellow);
}

@media (max-width: 980px) {
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-layout .section-heading { position: static; }
}

@media (max-width: 720px) {
  .journey-timeline::before { left: 31px; }
  .journey-step {
    grid-template-columns: 64px 1fr;
    gap: 17px;
    padding-right: 0;
  }
  .journey-number {
    width: 64px;
    height: 64px;
    border-width: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-zoom { animation: none; }
}


/* Version 5: improved lesson-car crop */
.car-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.car-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 46%;
}

/* Test preparation */
.test-prep-section {
  background: var(--black);
  color: var(--white);
}
.test-prep-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.test-prep-copy p,
.test-prep-copy .check-list {
  color: rgba(255,255,255,.78);
}
.test-prep-copy .check-list li::before {
  color: var(--yellow);
}
.test-prep-visual {
  display: grid;
  gap: 16px;
}
.route-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.route-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.55rem;
}
.route-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--yellow);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.route-card strong {
  font-size: 1.08rem;
}

/* More compact Wall of Fame */
.pass-gallery {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.pass-card {
  min-height: 245px;
  border-radius: 15px;
}
.pass-card img {
  min-height: 245px;
}
.pass-overlay {
  padding: 38px 13px 13px;
}
.pass-overlay strong {
  font-size: .86rem;
}

/* Interactive local coverage map */
.map-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 58px;
  align-items: center;
}
.map-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 22px;
}
.map-button {
  padding: 12px 17px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-weight: 850;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.map-button:hover,
.map-button.active {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
}
.map-detail {
  min-height: 118px;
  padding: 20px;
  border-left: 4px solid var(--yellow);
  background: rgba(255,255,255,.06);
}
.map-detail strong {
  display: block;
  color: var(--yellow);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}
.map-detail span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,.7);
}
.local-map {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,212,0,.12), transparent 32%),
    rgba(255,255,255,.04);
}
.local-map svg {
  width: 100%;
  display: block;
}
.map-road {
  fill: none;
  stroke: rgba(255,255,255,.16);
  stroke-width: 13;
  stroke-linecap: round;
}
.road-two { stroke-width: 8; }
.road-three { stroke-width: 6; }
.map-marker {
  cursor: pointer;
  transition: transform .25s ease;
}
.map-marker circle {
  fill: #2a2a2a;
  stroke: rgba(255,255,255,.35);
  stroke-width: 3;
  transition: fill .2s ease, stroke .2s ease, r .2s ease;
}
.map-marker text {
  fill: var(--white);
  text-anchor: middle;
  font-family: "Archivo Black", sans-serif;
  font-size: 17px;
  pointer-events: none;
}
.map-marker:hover circle,
.map-marker.active circle {
  fill: var(--yellow);
  stroke: var(--white);
  r: 30;
}
.map-marker:hover text,
.map-marker.active text {
  fill: var(--black);
}
.map-note {
  display: block;
  text-align: center;
  color: rgba(255,255,255,.48);
  font-size: .75rem;
}

@media (max-width: 1100px) {
  .pass-gallery { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 980px) {
  .test-prep-grid,
  .map-layout { grid-template-columns: 1fr; }
  .pass-gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .pass-gallery { grid-template-columns: repeat(2, 1fr); }
  .pass-card,
  .pass-card img { min-height: 220px; }
  .local-map { padding: 10px; }
}
@media (max-width: 430px) {
  .pass-gallery { grid-template-columns: repeat(2, 1fr); }
  .pass-card,
  .pass-card img { min-height: 205px; }
}


/* Version 6 credentials */
.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.credential-grid > div {
  min-height: 150px;
  padding: 25px;
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  column-gap: 15px;
  align-content: center;
  border-right: 1px solid rgba(0,0,0,.15);
}
.credential-grid > div:last-child { border-right: 0; }
.credential-icon {
  grid-row: 1 / 3;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  align-self: center;
  border-radius: 15px;
  background: var(--black);
  color: var(--yellow);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.05rem;
}
.credential-grid strong {
  align-self: end;
  font-size: .98rem;
  line-height: 1.2;
}
.credential-grid > div > span:last-child {
  font-size: .78rem;
  line-height: 1.35;
}

.hero-quickfacts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
}
.hero-quickfacts span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: rgba(0,0,0,.3);
  color: rgba(255,255,255,.9);
  font-size: .82rem;
  font-weight: 800;
}
.hero-quickfacts span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--yellow);
}

/* How PJ teaches */
.teaching-section {
  background: #ece7dc;
}
.teaching-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 70px;
  align-items: center;
}
.teaching-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-top: 30px;
}
.teaching-points article {
  padding: 18px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(0,0,0,.06);
}
.teaching-points strong,
.teaching-points span {
  display: block;
}
.teaching-points strong {
  margin-bottom: 4px;
}
.teaching-points span {
  color: #6b6b6b;
  font-size: .87rem;
}
.teaching-visual {
  display: grid;
  gap: 17px;
}
.manual-card {
  position: relative;
  min-height: 420px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(255,212,0,.13) 44% 58%, transparent 58%),
    var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}
.manual-badge {
  position: absolute;
  top: 32px;
  left: 32px;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border: 7px solid var(--white);
  background: #d71920;
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: 3.4rem;
  line-height: 1;
}
.manual-card small {
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.manual-card h3 {
  max-width: 450px;
  margin: 10px 0;
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}
.manual-card p {
  color: rgba(255,255,255,.7);
}
.pickup-card {
  padding: 23px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 16px;
  align-items: center;
  border-radius: 18px;
  background: var(--yellow);
}
.pickup-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--black);
  color: var(--yellow);
  font-size: 1.8rem;
}
.pickup-card small,
.pickup-card strong {
  display: block;
}
.pickup-card small {
  text-transform: uppercase;
  font-weight: 900;
}

/* First lesson */
.first-lesson-section {
  background: var(--white);
}
.first-lesson-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.first-lesson-flow::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 8%;
  right: 8%;
  height: 4px;
  background: var(--yellow);
}
.first-step {
  position: relative;
  z-index: 1;
  padding: 0 15px 22px;
  text-align: center;
}
.first-step > span {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border: 7px solid var(--white);
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  font-family: "Archivo Black", sans-serif;
  box-shadow: 0 10px 25px rgba(0,0,0,.13);
}
.first-step h3 {
  font-size: 1.05rem;
}
.first-step p {
  color: #666;
  font-size: .86rem;
}

/* Real Leaflet map */
#coverage-map {
  width: 100%;
  min-height: 560px;
  border-radius: 23px;
  overflow: hidden;
  background: #d9d4c9;
}
.leaflet-map-wrap {
  padding: 12px;
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.leaflet-container {
  font-family: "Inter", sans-serif;
}
.leaflet-popup-content-wrapper {
  border-radius: 14px;
}
.leaflet-popup-content strong {
  display: block;
  margin-bottom: 4px;
}
.coverage-note {
  margin-top: 19px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}
.map-key {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 13px 8px 2px;
  color: #555;
  font-size: .78rem;
}
.map-key span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.key-area,
.key-centre {
  display: inline-block;
}
.key-area {
  width: 19px;
  height: 19px;
  border: 2px solid #e0a900;
  border-radius: 50%;
  background: rgba(255,212,0,.32);
}
.key-centre {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 0 0 3px var(--yellow);
}

@media (max-width: 1100px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: .82rem; }
  .credential-grid { grid-template-columns: repeat(2, 1fr); }
  .credential-grid > div:nth-child(2) { border-right: 0; }
  .credential-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,.15); }
  .first-lesson-flow { grid-template-columns: repeat(3, 1fr); }
  .first-lesson-flow::before { display: none; }
}
@media (max-width: 980px) {
  .teaching-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .credential-grid { grid-template-columns: 1fr; }
  .credential-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.15);
  }
  .credential-grid > div:last-child { border-bottom: 0; }
  .teaching-points { grid-template-columns: 1fr; }
  .first-lesson-flow { grid-template-columns: 1fr; }
  .first-step {
    display: grid;
    grid-template-columns: 64px 1fr;
    column-gap: 16px;
    text-align: left;
  }
  .first-step > span {
    grid-row: 1 / 3;
    width: 64px;
    height: 64px;
    margin: 0;
  }
  .first-step h3 { margin-top: 5px; }
  .first-step p { margin-top: 0; }
  #coverage-map { min-height: 470px; }
}


/* Version 7: polished header and equal-width navigation */
.site-header .nav-wrap {
  min-height: 96px;
}
.main-nav {
  margin-left: auto;
  margin-right: auto;
}
.nav-links {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(92px, 1fr);
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-links a {
  min-height: 42px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  white-space: nowrap;
}
.nav-links a::after {
  display: none;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.active {
  background: rgba(255,255,255,.09);
  color: var(--yellow);
}
.nav-cta {
  min-width: 128px;
}
.brand {
  width: 92px;
}
.site-header.scrolled .brand {
  width: 82px;
}

/* Denser Wall of Fame */
.pass-gallery {
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.pass-card,
.pass-card img {
  min-height: 190px;
}
.pass-card {
  border-radius: 13px;
}
.pass-overlay {
  padding: 30px 10px 10px;
}
.pass-overlay strong {
  font-size: .76rem;
}
.pass-overlay small {
  font-size: .68rem;
}

/* Custom interactive coverage map */
.custom-map-section {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,212,0,.08), transparent 28%),
    var(--black);
  color: var(--white);
}
.custom-map-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 58px;
  align-items: center;
}
.coverage-board {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,.025), rgba(255,255,255,.025)),
    #121212;
  box-shadow: 0 28px 70px rgba(0,0,0,.35);
}
.map-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 44px 44px;
}
.map-road {
  position: absolute;
  height: 18px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #383838 0 38px, #ffd400 38px 52px, #383838 52px 90px);
  box-shadow: 0 0 0 7px rgba(255,255,255,.035);
}
.map-road-a {
  width: 72%;
  left: 8%;
  top: 38%;
  transform: rotate(-14deg);
}
.map-road-b {
  width: 68%;
  right: 4%;
  top: 60%;
  transform: rotate(22deg);
}
.map-road-c {
  width: 56%;
  left: 16%;
  bottom: 17%;
  transform: rotate(-28deg);
}
.coverage-pin {
  position: absolute;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.coverage-pin span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 4px solid rgba(255,255,255,.65);
  border-radius: 50% 50% 50% 12px;
  background: #232323;
  color: var(--white);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.25rem;
  transform: rotate(-45deg);
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.coverage-pin span::first-letter {
  transform: rotate(45deg);
}
.coverage-pin span {
  text-indent: 0;
}
.coverage-pin span::after {
  content: attr(data-label);
}
.coverage-pin small {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  font-weight: 800;
}
.coverage-pin:hover span,
.coverage-pin:focus-visible span,
.coverage-pin.active span {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 0 10px rgba(255,212,0,.12), 0 0 28px rgba(255,212,0,.48);
  transform: rotate(-45deg) scale(1.08);
}
.coverage-pin:hover small,
.coverage-pin.active small {
  color: var(--yellow);
}
.pin-arnold { top: 9%; left: 58%; }
.pin-sherwood { top: 43%; left: 34%; }
.pin-gedling { right: 9%; bottom: 17%; }
.pin-mapperley { right: 28%; top: 39%; }
.pin-top-valley { top: 18%; left: 13%; }

.map-centre-badge {
  position: absolute;
  left: 50%;
  top: 52%;
  z-index: 3;
  width: 148px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.95);
  color: var(--black);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 40px rgba(0,0,0,.3);
  text-align: center;
}
.map-centre-badge img {
  width: 84px;
  margin: 0 auto 7px;
}
.map-centre-badge span {
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.map-car-track {
  position: absolute;
  left: 7%;
  right: 7%;
  bottom: 9%;
  height: 42px;
  overflow: hidden;
  border-bottom: 2px dashed rgba(255,255,255,.35);
}
.mini-car {
  position: absolute;
  left: -10%;
  bottom: 4px;
  font-size: 2rem;
  animation: driveAcross 14s linear infinite;
  filter: saturate(1.4);
}
@keyframes driveAcross {
  from { transform: translateX(0); }
  to { transform: translateX(780px); }
}
.map-note {
  position: absolute;
  right: 18px;
  bottom: 14px;
  color: rgba(255,255,255,.42);
  font-size: .72rem;
}

/* Road divider motif */
.road-divider {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: #191919;
  overflow: hidden;
}
.road-divider span {
  width: 110px;
  height: 6px;
  border-radius: 999px;
  background: var(--yellow);
  transform: skewX(-18deg);
  opacity: .82;
}

/* Small hover polish */
.feature-card,
.price-card,
.route-card,
.first-step,
.teaching-points article,
.contact-links a,
.faq-item {
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease;
}
.price-card:hover,
.route-card:hover,
.teaching-points article:hover,
.faq-item:hover {
  transform: translateY(-4px);
}
.first-step:hover {
  transform: translateY(-3px);
}
.button {
  position: relative;
  overflow: hidden;
}
.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 25%, rgba(255,255,255,.42) 50%, transparent 75%);
  transform: translateX(-120%);
  transition: transform .45s ease;
}
.button:hover::before {
  transform: translateX(120%);
}

@media (max-width: 1240px) {
  .nav-links {
    grid-auto-columns: minmax(78px, 1fr);
  }
  .nav-links a {
    padding-inline: 8px;
    font-size: .77rem;
  }
  .pass-gallery {
    grid-template-columns: repeat(6, 1fr);
  }
}
@media (max-width: 1080px) {
  .pass-gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 980px) {
  .main-nav.open .nav-links {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .main-nav.open .nav-links a {
    min-height: 46px;
    background: rgba(255,255,255,.04);
  }
  .custom-map-layout {
    grid-template-columns: 1fr;
  }
  .pass-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 720px) {
  .pass-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .pass-card,
  .pass-card img {
    min-height: 170px;
  }
  .coverage-board {
    min-height: 500px;
  }
  .coverage-pin span {
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 500px) {
  .main-nav.open .nav-links {
    grid-template-columns: 1fr;
  }
  .pass-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-board {
    min-height: 460px;
  }
  .pin-arnold { top: 8%; left: 54%; }
  .pin-sherwood { top: 42%; left: 29%; }
  .pin-gedling { right: 5%; bottom: 18%; }
  .pin-mapperley { right: 21%; top: 38%; }
  .pin-top-valley { top: 16%; left: 7%; }
  .map-centre-badge {
    width: 124px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .mini-car {
    animation: none;
    left: 46%;
  }
}


/* Version 8 repair: stable navigation */
.site-header .nav-wrap {
  min-height: 88px;
  gap: 24px;
}
.brand {
  width: 86px;
}
.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.main-nav a {
  min-height: auto;
  padding: 10px 0;
  display: inline-block;
  border-radius: 0;
  white-space: nowrap;
  text-align: center;
  background: transparent;
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
}
.main-nav a::after {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 2px;
  height: 3px;
  background: var(--yellow);
  transition: right .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  background: transparent;
  color: var(--white);
}
.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.active::after {
  right: 0;
}
.nav-cta {
  min-width: 118px;
  flex: 0 0 auto;
}

/* Disable obsolete custom map styles */
.coverage-board,
.map-grid,
.map-road,
.coverage-pin,
.map-centre-badge,
.map-car-track,
.mini-car,
.map-note {
  display: none !important;
}

/* Clean coverage section */
.coverage-section {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,212,0,.09), transparent 32%),
    var(--black);
  color: var(--white);
}
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}
.coverage-card {
  min-height: 250px;
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  text-align: center;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.coverage-card:hover {
  transform: translateY(-5px);
  border-color: var(--yellow);
  background: linear-gradient(145deg, rgba(255,212,0,.12), rgba(255,255,255,.025));
}
.coverage-letter {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  font-family: "Archivo Black", sans-serif;
  font-size: 1.5rem;
}
.coverage-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}
.coverage-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
  font-size: .9rem;
}
.coverage-summary {
  max-width: 780px;
  margin: 28px auto 0;
  padding: 18px 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  text-align: center;
}
.coverage-summary strong {
  font-weight: 900;
}
.coverage-summary span {
  font-weight: 650;
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 16px;
  }
  .main-nav a {
    font-size: .82rem;
  }
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .main-nav.open {
    position: absolute;
    inset: 88px 20px auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border-radius: 18px;
    background: rgba(8,8,8,.98);
    box-shadow: var(--shadow);
  }
  .main-nav.open a {
    width: 100%;
    min-height: 46px;
    padding: 12px 10px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: transparent;
  }
  .main-nav.open a::after {
    display: none;
  }
  .main-nav.open a:hover,
  .main-nav.open a:focus-visible,
  .main-nav.open a.active {
    background: rgba(255,255,255,.07);
    color: var(--yellow);
  }
}

@media (max-width: 720px) {
  .coverage-grid {
    grid-template-columns: 1fr 1fr;
  }
  .coverage-card {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}


/* Version 9: manual card correction */
.manual-card {
  padding-top: 132px;
}
.manual-badge {
  width: 66px;
  height: 66px;
  top: 28px;
  left: 28px;
  border-width: 5px;
  font-size: 2.35rem;
}
.manual-card small {
  position: relative;
  z-index: 1;
}
.manual-card h3 {
  font-size: clamp(1.55rem, 2.6vw, 2rem);
}

/* Version 9: integrated Google coverage map */
.google-map-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,212,0,.08), transparent 30%),
    var(--black);
  color: var(--white);
}
.google-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
}
.google-map-panel {
  min-height: 590px;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,.96);
  border-radius: 24px;
  background: #ddd;
  box-shadow: 0 24px 65px rgba(0,0,0,.34);
}
.google-map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: block;
  border: 0;
}
.coverage-controls {
  padding: 30px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: rgba(255,255,255,.055);
}
.coverage-area-buttons {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.coverage-area-button {
  width: 100%;
  padding: 16px 17px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
  color: var(--white);
  text-align: left;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    background .18s ease;
}
.coverage-area-button:hover,
.coverage-area-button:focus-visible {
  transform: translateX(3px);
  border-color: rgba(255,212,0,.65);
}
.coverage-area-button.active {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--black);
}
.coverage-area-button strong {
  font-size: .98rem;
}
.coverage-area-button span {
  color: rgba(255,255,255,.62);
  font-size: .79rem;
  line-height: 1.4;
}
.coverage-area-button.active span {
  color: rgba(0,0,0,.68);
}
.coverage-pickup-note {
  margin-top: 22px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.coverage-pickup-note strong {
  color: var(--yellow);
  font-size: 1rem;
}
.coverage-pickup-note p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.67);
  font-size: .86rem;
}
.map-disclaimer {
  margin: 16px 0 0;
  color: rgba(255,255,255,.48);
  font-size: .76rem;
  text-align: center;
}

/* Hide obsolete coverage-card layout from earlier versions */
.coverage-grid,
.coverage-summary {
  display: none !important;
}

@media (max-width: 920px) {
  .google-map-layout {
    grid-template-columns: 1fr;
  }
  .google-map-panel {
    min-height: 480px;
  }
  .google-map-panel iframe {
    min-height: 460px;
  }
  .coverage-area-buttons {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .manual-card {
    min-height: 380px;
    padding: 118px 26px 30px;
  }
  .manual-badge {
    width: 60px;
    height: 60px;
    top: 24px;
    left: 24px;
    font-size: 2.05rem;
  }
  .coverage-area-buttons {
    grid-template-columns: 1fr;
  }
  .google-map-panel {
    min-height: 410px;
    border-width: 7px;
  }
  .google-map-panel iframe {
    min-height: 396px;
  }
  .coverage-controls {
    padding: 22px;
  }
}


/* Version 10: static coverage cards beside the Google map */
.coverage-area-buttons,
.coverage-area-button {
  display: none !important;
}
.coverage-area-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.coverage-area-card {
  padding: 16px 17px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
}
.coverage-area-card strong {
  color: var(--yellow);
  font-size: .98rem;
}
.coverage-area-card span {
  color: rgba(255,255,255,.64);
  font-size: .79rem;
  line-height: 1.4;
}
@media (max-width: 920px) {
  .coverage-area-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .coverage-area-list {
    grid-template-columns: 1fr;
  }
}


/* Version 11: approved high-resolution PJ's logo asset */
.brand img,
.footer-logo {
  object-fit: contain;
}
.brand img {
  width: 100%;
  height: auto;
}
.footer-logo {
  height: auto;
}


/* Version 12: client revisions and phone layout repair */
.hero-mobile-photo {
  display: none;
}

.credential-grid strong {
  text-wrap: balance;
}

.final-lesson-note {
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 212, 0, .4);
  border-radius: 16px;
  background: rgba(255, 212, 0, .08);
}
.final-lesson-note strong {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.final-lesson-note p {
  margin: 6px 0 0;
}
.route-icon {
  min-width: 58px;
  padding-inline: 8px;
  font-size: 1rem;
}

.pricing-grid.pricing-grid-four {
  max-width: 1180px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pricing-grid-four .price-card {
  display: flex;
  flex-direction: column;
}
.pricing-grid-four .price-card .button {
  margin-top: auto;
  padding-top: 0;
}
.discount-price {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 18px 0 0;
  font-family: "Archivo Black", sans-serif;
  line-height: 1;
}
.was-price {
  position: relative;
  font-size: 2.2rem;
  color: #777;
}
.was-price::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background: #d92727;
  transform: rotate(-10deg);
}
.now-price {
  font-size: 5rem;
  color: var(--black);
}
.offer-terms {
  margin-top: 4px;
  font-size: .78rem;
  font-weight: 700;
  color: #666;
}
.beginner-offer {
  border: 3px solid var(--orange);
}

.coverage-area-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.coverage-area-card {
  min-height: 56px;
  align-content: center;
}
.coverage-area-card strong {
  line-height: 1.2;
}
.contact-hours {
  padding: 18px 20px;
  border: 1px solid #dedede;
  border-radius: 16px;
  background: var(--white);
}
.contact-hours small {
  display: block;
  color: #777;
}
.contact-hours strong {
  display: block;
}

@media (max-width: 920px) {
  .pricing-grid.pricing-grid-four {
    grid-template-columns: 1fr;
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    display: block;
    padding: 112px 0 0;
    background: var(--black);
    overflow: clip;
  }
  .hero-image {
    display: none;
  }
  .hero-overlay {
    background:
      radial-gradient(circle at 85% 10%, rgba(255, 212, 0, .13), transparent 34%),
      linear-gradient(180deg, #080808 0%, #080808 88%, rgba(8,8,8,.96) 100%);
  }
  .hero-content {
    width: min(calc(100% - 32px), var(--container));
    padding: 0 0 32px;
  }
  .hero .eyebrow {
    margin-bottom: 12px;
  }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.65rem, 12vw, 4rem);
    line-height: 1;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero-copy {
    max-width: 100%;
    margin: 20px 0 24px;
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding-inline: 16px;
    font-size: .78rem;
  }
  .hero-quickfacts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 22px;
  }
  .hero-quickfacts span {
    width: 100%;
  }
  .hero-mobile-photo {
    position: relative;
    z-index: 2;
    display: block;
    width: min(calc(100% - 24px), 520px);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 22px 22px 0 0;
    background: #111;
    box-shadow: 0 -20px 55px rgba(0,0,0,.36);
  }
  .hero-mobile-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  .scroll-cue {
    display: none;
  }
  .credential-grid strong {
    font-size: 1.08rem;
  }
  .coverage-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .hero {
    padding-top: 104px;
  }
  .hero-content {
    width: min(calc(100% - 28px), var(--container));
  }
  .hero h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.35rem);
  }
  .hero-mobile-photo {
    width: calc(100% - 16px);
  }
  .now-price {
    font-size: 4.2rem;
  }
  .coverage-area-list {
    grid-template-columns: 1fr;
  }
}

/* Small final spacing refinements */
section[id] {
  scroll-margin-top: 104px;
}
.beginner-offer {
  padding-top: 68px;
}
@media (max-width: 430px) {
  .beginner-offer {
    padding-top: 72px;
  }
}


/* Version 13: mock tests clearly separated from the final five lessons */
.mock-test-section {
  background: #f3f3f0;
}
.mock-test-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}
.mock-test-copy .lead {
  max-width: 680px;
}
.mock-test-visual {
  display: grid;
  gap: 16px;
}
.mock-test-section .route-card {
  border-color: rgba(0,0,0,.1);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0,0,0,.07);
}
.mock-test-section .route-card small {
  color: #9b6800;
}
@media (max-width: 900px) {
  .mock-test-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}


/* Version 14: focused coverage circle over the embedded Google map */
.coverage-map-frame {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 9px solid rgba(255,255,255,.96);
  border-radius: 24px;
  background: #d7d7d7;
  box-shadow: 0 24px 65px rgba(0,0,0,.34);
  isolation: isolate;
}
.coverage-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 570px;
  display: block;
  border: 0;
  pointer-events: none;
  filter: saturate(.86) contrast(.96);
}
.coverage-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.coverage-zone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(290px, 54%, 380px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 5px solid var(--yellow);
  border-radius: 50%;
  box-shadow:
    0 0 0 3px rgba(0,0,0,.58),
    0 0 0 9999px rgba(0,0,0,.54),
    0 0 35px rgba(255,212,0,.34);
}
.coverage-zone::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(255,255,255,.68);
  border-radius: inherit;
}
.coverage-zone-caption {
  position: absolute;
  left: 50%;
  bottom: 8%;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(0,0,0,.78);
  color: var(--yellow);
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}
.coverage-map-marker {
  --marker-size: 27px;
  position: absolute;
  left: var(--marker-x);
  top: var(--marker-y);
  width: var(--marker-size);
  height: var(--marker-size);
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,.36);
  font-family: "Archivo Black", sans-serif;
  font-size: .54rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.google-map-panel {
  display: none !important;
}

/* Version 14: review-ready learner cards */
.review-section {
  overflow: hidden;
}
.review-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.review-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 20px;
  background: #161616;
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
  outline: none;
}
.review-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  transition: transform .55s ease, filter .55s ease;
}
.review-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.94) 0%,
    rgba(0,0,0,.62) 46%,
    rgba(0,0,0,.08) 78%
  );
  opacity: .25;
  transition: opacity .45s ease;
}
.review-photo-label {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.review-overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 4;
  padding: 72px 24px 24px;
  color: var(--white);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .42s ease, transform .42s ease;
}
.review-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--yellow);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.review-overlay blockquote {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.23rem);
  font-weight: 780;
  line-height: 1.42;
}
.review-overlay small {
  display: block;
  margin-top: 13px;
  color: rgba(255,255,255,.62);
  font-size: .72rem;
}
.review-card.review-in-view::after,
.review-card:hover::after,
.review-card:focus-visible::after {
  opacity: 1;
}
.review-card.review-in-view .review-overlay,
.review-card:hover .review-overlay,
.review-card:focus-visible .review-overlay {
  opacity: 1;
  transform: translateY(0);
}
.review-card.review-in-view img,
.review-card:hover img,
.review-card:focus-visible img {
  transform: scale(1.045);
  filter: brightness(.78);
}
.review-gallery:not(.show-all) .review-card:nth-child(n+4) {
  display: none;
}
.review-gallery.show-all .review-card {
  display: block;
}

@media (max-width: 980px) {
  .coverage-map-frame,
  .coverage-map-frame iframe {
    min-height: 500px;
  }
  .coverage-zone {
    width: min(72%, 360px);
  }
  .review-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-gallery:not(.show-all) .review-card:nth-child(n+3) {
    display: none;
  }
}
@media (max-width: 620px) {
  .coverage-map-frame {
    min-height: 420px;
    border-width: 7px;
  }
  .coverage-map-frame iframe {
    min-height: 420px;
  }
  .coverage-zone {
    width: min(84%, 320px);
    border-width: 4px;
  }
  .coverage-map-marker {
    --marker-size: 24px;
    font-size: .5rem;
  }
  .coverage-zone-caption {
    bottom: 5%;
    font-size: .58rem;
  }
  .review-gallery {
    grid-template-columns: 1fr;
  }
  .review-card,
  .review-card img {
    min-height: 440px;
  }
  .review-gallery:not(.show-all) .review-card:nth-child(n+3) {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .review-overlay,
  .review-card img,
  .review-card::after {
    transition: none;
  }
}


/* Version 15: Netlify enquiry form */
.form-heading p {
  margin: -8px 0 24px;
  color: rgba(255,255,255,.66);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field label {
  display: block;
  margin: 18px 0 7px;
  font-weight: 800;
}
.form-field label span {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  font-weight: 650;
}
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
}
.form-consent {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 11px;
  align-items: start;
  margin-top: 20px !important;
  cursor: pointer;
}
.contact-form .form-consent input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--yellow);
}
.form-consent span {
  color: rgba(255,255,255,.78);
  font-size: .84rem;
  line-height: 1.45;
}
.contact-form button[type="submit"] {
  min-height: 54px;
}
.contact-form button[type="submit"]:focus-visible {
  outline: 4px solid rgba(255,212,0,.36);
  outline-offset: 4px;
}

/* Version 15: form confirmation page */
.thank-you-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 12%, rgba(255,212,0,.16), transparent 28%),
    #080808;
  color: var(--white);
}
.thank-you-main {
  min-height: 100vh;
  padding: 40px 18px;
  display: grid;
  place-items: center;
}
.thank-you-card {
  width: min(100%, 720px);
  padding: clamp(34px, 7vw, 68px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(20,20,20,.94);
  box-shadow: 0 30px 85px rgba(0,0,0,.46);
  text-align: center;
}
.thank-you-logo {
  width: 132px;
  height: auto;
  margin: 0 auto 22px;
}
.thank-you-card h1 {
  margin: 10px auto 18px;
  max-width: 620px;
  font-size: clamp(2.5rem, 8vw, 5.2rem);
}
.thank-you-card > p {
  max-width: 590px;
  margin: 0 auto;
  color: rgba(255,255,255,.72);
  font-size: 1.06rem;
}
.thank-you-actions {
  margin: 30px 0 22px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.thank-you-card small {
  color: rgba(255,255,255,.58);
}
.thank-you-card small a {
  color: var(--yellow);
  font-weight: 850;
}
@media (max-width: 680px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .thank-you-actions {
    flex-direction: column;
  }
  .thank-you-actions .button {
    width: 100%;
  }
}


/* Version 16: restore the car photograph behind the mobile hero shading */
@media (max-width: 720px) {
  .hero {
    position: relative;
    min-height: max(860px, 100svh);
    display: flex;
    align-items: center;
    padding: 112px 0 64px;
    background: #080808;
    overflow: hidden;
  }

  .hero-image {
    display: block;
    background:
      url("../images/hero-car.png") 64% center / cover no-repeat;
    transform: scale(1.015);
  }

  .hero-overlay {
    z-index: -2;
    background:
      linear-gradient(
        180deg,
        rgba(4, 4, 4, .91) 0%,
        rgba(4, 4, 4, .84) 38%,
        rgba(4, 4, 4, .74) 70%,
        rgba(4, 4, 4, .91) 100%
      ),
      linear-gradient(
        90deg,
        rgba(0, 0, 0, .74) 0%,
        rgba(0, 0, 0, .43) 66%,
        rgba(0, 0, 0, .62) 100%
      );
  }

  .hero-content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--container));
    padding: 0;
  }

  .hero-mobile-photo {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero {
    min-height: max(880px, 100svh);
    padding: 104px 0 56px;
  }

  .hero-image {
    background-position: 66% center;
  }

  .hero-content {
    width: min(calc(100% - 28px), var(--container));
  }
}


/* Version 17: match the desktop hero shading on phones */
@media (max-width: 720px) {
  .hero-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(0,0,0,.93) 0%,
        rgba(0,0,0,.78) 42%,
        rgba(0,0,0,.28) 74%,
        rgba(0,0,0,.52) 100%
      ),
      linear-gradient(
        0deg,
        rgba(0,0,0,.78) 0%,
        transparent 45%
      );
  }
}
