/* ==========================================================================
   Pickwell Auto Centre Ltd — Design System
   Brand: blue & yellow only (no red)
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700&family=Barlow:wght@300;400;500;600;700&display=swap");

/* --------------------------------------------------------------------------
   CSS variables
   -------------------------------------------------------------------------- */
:root {
  --brand-blue: #1e4392;
  --brand-yellow: #ffd426;
  --brand-dark: #1e4392;
  --brand-mid: #1e4392;

  --bg-white: #ffffff;
  --bg-light: #f0f4f9;
  --bg-blue-light: #e8f0fb;
  --bg-dark: #1e4392;
  --bg-hero: #1e4392;

  --text-dark: #1e4392;
  --text-body: #2a3a50;
  --text-muted: #5a6a7e;
  --text-white: #ffffff;

  --accent: #ffd426;
  --accent-dark: #e6bc00;
  --accent-light: rgba(255, 212, 38, 0.12);
  --border: #dde5f0;

  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;

  --nav-height: 64px;
  --nav-float-height: 64px;
  --ticker-height: 36px;
  --header-stack-height: calc(var(--nav-float-height) + var(--ticker-height));
  --section-pad: clamp(72px, 9vw, 120px);
  --container-max: 1160px;
  --container-pad: clamp(16px, 4vw, 28px);

  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 12px;
  --transition: 0.25s ease;

  --shadow-sm: 0 2px 12px rgba(30, 67, 146, 0.06);
  --shadow-md: 0 8px 28px rgba(30, 67, 146, 0.1);
  --shadow-lg: 0 16px 48px rgba(30, 67, 146, 0.14);

  --hero-overlay: rgba(30, 67, 146, 0.72);
  --hero-panel-clip: polygon(0 0, 58% 0, 42% 100%, 0 100%);
  --page-hero-clip: polygon(0 0, 58% 0, 42% 100%, 0 100%);

  --marquee-distance: 0px;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img,
svg,
video,
iframe {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-dark);
}

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

:focus-visible {
  outline: 2px solid var(--brand-yellow);
  outline-offset: 2px;
}

::selection {
  background: var(--accent-light);
  color: var(--text-dark);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

h4 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.prose {
  font-weight: 300;
  color: var(--text-body);
  max-width: 65ch;
}

.prose--narrow {
  max-width: 72ch;
  margin-inline: auto;
  text-align: center;
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.hero h1,
.page-hero h1,
.cta-band h2 {
  color: var(--text-white);
}

.section--white h2,
.section--light h2,
.section-header h2 {
  color: var(--brand-blue);
}

.section--dark h2,
.section--dark .section-header h2 {
  color: var(--text-white);
}

/* Heading line animation (hero & page hero) */
.hero h1,
.page-hero h1 {
  animation: fade-slide-up 0.8s ease both;
}

.hero .section-label,
.page-hero .section-label {
  animation: fade-slide-up 0.6s ease both;
}

.hero p,
.page-hero__copy > p {
  animation: fade-slide-up 0.9s ease 0.1s both;
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Layout utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-pad);
}

.section--white {
  background: var(--bg-white);
}

.section--light {
  background: var(--bg-light);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-white);
}

.section--dark p,
.section--dark .prose {
  color: rgba(255, 255, 255, 0.88);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.map-wrap--bordered iframe {
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius);
}

.trust-bar-section.section--compact {
  padding-block: 64px;
}

.section--compact {
  padding-block: clamp(48px, 6vw, 72px);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.section-header h2 {
  margin-top: 0.35rem;
}

.section-header > p,
.section-header .lead {
  margin-top: 0.75rem;
  color: var(--text-muted);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.6;
}

.lead--narrow {
  max-width: 560px;
  margin-inline: auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.section--dark .section-label,
.hero .section-label,
.page-hero .section-label,
.cta-band .section-label {
  color: var(--brand-yellow);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
  padding: 0.75rem 1.25rem;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: calc(var(--nav-float-height) + 0.5rem);
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand-yellow);
  color: var(--brand-dark);
  border-color: var(--brand-yellow);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(30, 67, 146, 0.18);
}

.btn--primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255, 212, 38, 0.45);
}

/* Book Online — high contrast (nav sits on yellow bar) */
.btn--nav-book,
.nav-mobile-book {
  background: var(--brand-blue);
  color: var(--text-white);
  border-color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 0.7rem 1.4rem;
  box-shadow: 0 4px 16px rgba(30, 67, 146, 0.4);
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 1px;
}

.btn--nav-book:hover,
.nav-mobile-book:hover {
  background: #163670;
  border-color: #163670;
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(30, 67, 146, 0.5);
}

.hero .btn--primary,
.page-hero .btn--primary,
.cta-band .btn--primary {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(255, 212, 38, 0.45);
}

.btn--outline-light {
  background: transparent;
  color: var(--text-white);
  border-color: var(--brand-yellow);
}

.btn--outline-light:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark);
}

.btn--outline-blue {
  background: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn--outline-blue:hover {
  background: var(--brand-blue);
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition),
    border-color var(--transition),
    transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

/* Light card: blue top border, yellow on hover */
.card--light,
.card:not(.card--dark):not(.service-card):not(.tier-card):not(.testimonial-card) {
  border-top: 3px solid var(--brand-blue);
}

.card--light:hover,
.card:not(.card--dark):not(.service-card):not(.tier-card):not(.testimonial-card):hover {
  border-top-color: var(--brand-yellow);
}

/* Dark card: translucent white, yellow left border */
.card--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--brand-yellow);
  color: var(--text-white);
  box-shadow: none;
}

.card--dark h3,
.card--dark h4 {
  color: var(--text-white);
}

.card--dark p {
  color: rgba(255, 255, 255, 0.85);
}

/* Service cards */
.service-card {
  background: var(--brand-mid);
  color: var(--text-white);
  border: none;
  border-radius: var(--radius);
  border-bottom: 3px solid transparent;
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
  transition:
    background var(--transition),
    border-color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.service-card h3 {
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.service-card:hover {
  background: var(--brand-blue);
  border-bottom-color: var(--brand-yellow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-card .link-arrow {
  color: var(--brand-yellow);
}

.service-card .link-arrow:hover {
  color: var(--text-white);
}

/* --------------------------------------------------------------------------
   Grids
   -------------------------------------------------------------------------- */
.card-grid-2 {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: repeat(2, 1fr);
}

.card-grid-3 {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: repeat(3, 1fr);
}

.card-grid-4 {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: repeat(4, 1fr);
}

.card-grid-5 {
  display: grid;
  gap: clamp(16px, 2.5vw, 24px);
  grid-template-columns: repeat(5, 1fr);
}

.feature-row {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

.feature-row--3 {
  grid-template-columns: repeat(3, 1fr);
}

.about-split {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.testimonial-grid {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: repeat(3, 1fr);
}

/* --------------------------------------------------------------------------
   Site header & navigation — full width, fixed top
   -------------------------------------------------------------------------- */
.site-header {
  position: static;
  height: 0;
  overflow: visible;
  z-index: 1000;
  pointer-events: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: none;
  transform: none;
  background: var(--brand-yellow);
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(30, 67, 146, 0.12);
  box-shadow: 0 4px 16px rgba(30, 67, 146, 0.12);
  padding: 0 clamp(16px, 4vw, 28px);
  height: var(--nav-float-height);
  min-height: var(--nav-float-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 1000;
  transition: height 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  pointer-events: auto;
  box-sizing: border-box;
}

.nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav.scrolled {
  height: 56px;
  min-height: 56px;
  --nav-float-height: 56px;
  box-shadow: 0 6px 20px rgba(30, 67, 146, 0.16);
  border-bottom-color: rgba(30, 67, 146, 0.18);
}

.nav.scrolled::after {
  opacity: 1;
}

.ticker-wrap {
  position: fixed;
  top: var(--nav-float-height);
  left: 0;
  right: 0;
  width: 100%;
  background: var(--brand-yellow);
  padding: 9px 0;
  overflow: hidden;
  z-index: 999;
  pointer-events: auto;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  white-space: nowrap;
  padding: 0 48px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.ticker-item::before {
  content: "★";
  margin-right: 12px;
  color: var(--brand-blue);
  font-size: 0.7rem;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.nav-logo {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  flex-shrink: 0;
  height: 100%;
  margin-left: 0;
  margin-right: 0.75rem;
  text-decoration: none;
}

.nav-logo__img {
  display: block;
  height: 100%;
  width: auto;
  max-width: min(260px, 46vw);
  object-fit: contain;
  object-position: left center;
}

.nav-logo__text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1.1;
}

.nav-logo__name {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: transparent;
  user-select: none;
}

.nav-logo__name::before {
  content: "PICKWELL";
  color: var(--brand-blue);
  font-size: 1.05rem;
}

.nav-logo__name::after {
  content: "AUTO CENTRE";
  color: var(--brand-blue);
  font-size: 1.05rem;
  padding-left: 0.55rem;
  margin-left: 0.55rem;
  border-left: 2px solid var(--brand-blue);
}

.nav-logo__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: clamp(0.35rem, 1.2vw, 1rem);
  flex-wrap: nowrap;
}

.nav-menu .nav-link {
  position: relative;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-blue);
  padding: 0.35rem 0.15rem 4px;
  white-space: nowrap;
}

.nav-menu .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-yellow);
  transition: width 0.25s ease;
}

.nav-menu .nav-link:hover::after,
.nav-menu .nav-link.active::after,
.nav-menu .nav-link.is-active::after {
  width: 100%;
}

.nav-ctas {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.btn--nav-phone {
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

.btn--nav-phone::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  flex-shrink: 0;
}


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--brand-blue);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-mobile-phone,
.nav-mobile-book {
  display: none;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav dropdown — More */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-blue);
  padding: 0.35rem 0.15rem;
  background: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown__toggle::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown__toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown__toggle:hover,
.nav-dropdown.is-active .nav-dropdown__toggle,
.nav-dropdown__toggle.is-active {
  color: var(--brand-dark);
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 11rem;
  padding: 0.35rem 0;
  background: var(--text-white);
  border: 1px solid rgba(30, 67, 146, 0.12);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px rgba(30, 67, 146, 0.18);
  z-index: 1001;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}

.nav-dropdown__menu a {
  display: block;
  color: var(--brand-blue);
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  text-align: left;
  white-space: nowrap;
}

.nav-dropdown__menu a::after {
  display: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.is-active {
  color: var(--brand-dark);
  background: rgba(255, 212, 38, 0.35);
}

.nav-dropdown.is-open .nav-dropdown__menu {
  display: block;
}

@media (min-width: 1024px) {
  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.85);
  border-top: 4px solid var(--brand-yellow);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  padding-block: clamp(48px, 6vw, 72px);
}

.footer-col--brand {
  padding-right: 1rem;
}

.footer-logo-link {
  display: inline-block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.footer-logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--brand-yellow);
  letter-spacing: 0.04em;
}

.footer-logo-sub {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--brand-yellow);
  margin-bottom: 0.75rem;
}

.footer-tagline-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 1rem;
}

.footer-heading--spaced {
  margin-top: 1.75rem;
}

.footer-contact li,
.footer-hours-list li,
.footer-nav li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--brand-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
}

.footer-bottom__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-credit a {
  color: var(--brand-yellow);
}

.footer-credit a:hover {
  color: var(--text-white);
}

.footer-dropdown {
  margin-top: 1.25rem;
}

.footer-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  text-align: left;
}

.footer-dropdown__toggle:hover {
  color: var(--text-white);
}

.footer-dropdown__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
}

.footer-dropdown__icon::before,
.footer-dropdown__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-dropdown__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.footer-dropdown.is-open .footer-dropdown__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.footer-dropdown__panel {
  margin: 0;
  padding: 0.25rem 0 0;
}

.footer-dropdown__panel[hidden] {
  display: none;
}

/* --------------------------------------------------------------------------
   Hero — diagonal split (homepage)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 95vh;
  padding-top: calc(64px + 36px);
  padding-top: var(--header-stack-height);
  display: flex;
  align-items: stretch;
  background: var(--bg-hero);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  clip-path: polygon(42% 0, 100% 0, 100% 100%, 28% 100%);
}

.hero__bg .photo-placeholder,
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 95vh;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    var(--hero-overlay) 0%,
    var(--hero-overlay) 48%,
    rgba(30, 67, 146, 0.35) 72%,
    transparent 100%
  );
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(95vh - var(--header-stack-height));
  padding-block: 2rem 3rem;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  width: 100%;
}

.hero__copy {
  max-width: 640px;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero__copy > p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 212, 38, 0.45);
  color: var(--brand-yellow);
  border-radius: var(--radius-sm);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__panel {
  position: absolute;
  right: 0;
  top: 0;
  width: 42%;
  height: 100%;
  background: var(--brand-blue);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__eyebrow {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-yellow);
  margin-bottom: 1rem;
}

.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(18px);
  animation: heroLineIn 0.6s ease forwards;
}

.hero__line:nth-child(1) { animation-delay: 0.1s; }
.hero__line:nth-child(2) { animation-delay: 0.25s; }
.hero__line:nth-child(3) { animation-delay: 0.4s; }

@keyframes heroLineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.widget-card__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.widget-card__sub {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.widget-card__call {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
  text-align: center;
}

.widget-card__call a {
  color: var(--brand-blue);
  font-weight: 600;
}

.nav-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--brand-blue);
  padding: 0.5rem 0.75rem;
  white-space: nowrap;
}

.nav-phone-link::before {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1-9.39 0-17-7.61-17-17 0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.25.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.nav-phone-link:hover {
  color: var(--brand-dark);
}

.framed-photo__caption {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-white);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

/* Widget card (hero, page hero, widget-panel) */
.hero__widget,
.page-hero__widget,
.widget-panel,
.widget-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 3vw, 28px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 4px solid var(--brand-yellow);
}

.hero__widget-title,
.page-hero__widget-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 1rem;
  text-align: center;
}

.booking-widget-card {
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Page hero — inner pages (58 / 42)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  min-height: clamp(320px, 42vh, 480px);
  padding-top: var(--header-stack-height);
  display: flex;
  align-items: flex-end;
  background: var(--bg-hero);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  clip-path: var(--page-hero-clip);
  transform: scale(1.02);
}

.page-hero__bg .photo-placeholder,
.page-hero__bg img {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 42vh, 480px);
  object-fit: cover;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    var(--hero-overlay) 0%,
    var(--hero-overlay) 55%,
    rgba(30, 67, 146, 0.4) 100%
  );
}

.page-hero > .container,
.page-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-block: 2.5rem;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: end;
}

.page-hero__copy {
  max-width: 640px;
}

.page-hero h1 {
  margin-bottom: 0.75rem;
}

.page-hero__copy > p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.page-hero--booking {
  min-height: 65vh;
  align-items: center;
}

.page-hero--booking .page-hero__bg {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.page-hero--booking .page-hero__overlay {
  background: var(--hero-overlay);
}

.page-hero__copy--centred {
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.booking-widget-card--centred {
  max-width: 800px;
  margin-inline: auto;
  padding: 40px;
  border-top: 4px solid var(--brand-yellow);
  box-shadow: 0 4px 24px rgba(30, 67, 146, 0.1);
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  position: relative;
}

.booking-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 90px;
}

.booking-steps__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--brand-yellow);
  color: var(--brand-blue);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  background: var(--bg-white);
}

.booking-steps__label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark);
}

@media (min-width: 900px) {
  .booking-steps::before {
    content: "";
    position: absolute;
    top: 22px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 212, 38, 0.45);
    z-index: 0;
  }

  .booking-steps li {
    position: relative;
    z-index: 1;
  }
}

.page-hero--local {
  min-height: clamp(360px, 50vh, 520px);
}

.page-hero--local .hero__actions {
  margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   Trust bar / trust cards
   -------------------------------------------------------------------------- */
.trust-bar,
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

.trust-bar .feature-block,
.trust-cards .feature-block {
  text-align: center;
  padding: clamp(16px, 2vw, 24px);
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand-blue);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trust-bar .feature-block:hover,
.trust-cards .feature-block:hover {
  border-top-color: var(--brand-yellow);
  box-shadow: var(--shadow-sm);
}

/* --------------------------------------------------------------------------
   Feature blocks, icon badges, bullets
   -------------------------------------------------------------------------- */
.feature-block h3 {
  margin: 0.75rem 0 0.5rem;
  color: var(--brand-blue);
}

.section--dark .feature-block h3 {
  color: var(--text-white);
}

.feature-block p {
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.section--dark .feature-block p {
  color: rgba(255, 255, 255, 0.78);
}

.icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--accent-light);
  color: var(--brand-blue);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.icon-badge--lg {
  width: 64px;
  height: 64px;
}

.icon-badge--lg svg {
  width: 32px;
  height: 32px;
}

.icon-card h3 {
  margin: 1rem 0 0.65rem;
}

.bullet-features {
  display: grid;
  gap: clamp(20px, 3vw, 28px);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.bullet-feature {
  padding-left: 1.25rem;
  border-left: 3px solid var(--brand-yellow);
}

.bullet-feature h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.bullet-feature p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 300;
}

.section--light .bullet-feature,
.section--white .bullet-feature {
  border-left-color: var(--brand-blue);
}

.section--light .bullet-feature h3,
.section--white .bullet-feature h3 {
  color: var(--brand-blue);
}

.section--light .bullet-feature p,
.section--white .bullet-feature p {
  color: var(--text-body);
}

.about-split .bullet-feature {
  margin-bottom: 1.25rem;
  border-left-color: var(--brand-yellow);
}

.about-split .bullet-feature h3 {
  color: var(--brand-blue);
}

.check-list {
  margin: 1rem 0 1.25rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  color: var(--text-body);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-blue);
  font-weight: 700;
}

.badge-popular {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--brand-yellow);
  color: var(--brand-dark);
  border-radius: var(--radius-sm);
}

.link-arrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-blue);
}

.link-arrow:hover {
  color: var(--accent-dark);
}

/* --------------------------------------------------------------------------
   Steps row (dark section, large yellow numbers)
   -------------------------------------------------------------------------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 32px);
}

.step-item {
  text-align: center;
}

.step-item__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-yellow);
  margin-bottom: 0.75rem;
}

.step-item h3 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.step-item p {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 0.9375rem;
}

/* step numbers inside light cards (e.g. MOT page) */
.card .step-item__num,
.feature-block .step-item__num {
  font-size: 2.5rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.card .step-item__num + h3,
.feature-block .step-item__num + h3 {
  color: var(--brand-blue);
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonial-card {
  position: relative;
  padding-top: 2rem;
}

.testimonial-card__quote {
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
}

.testimonial-card__stars {
  color: var(--brand-yellow);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.testimonial-card blockquote p {
  font-style: italic;
  font-weight: 300;
  color: var(--text-body);
  margin-bottom: 1.25rem;
}

.testimonial-card cite {
  display: flex;
  flex-direction: column;
  font-style: normal;
  font-size: 0.875rem;
}

.testimonial-card cite strong {
  color: var(--brand-blue);
  font-weight: 600;
}

.testimonial-card cite span {
  color: var(--text-muted);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   FAQ accordion
   -------------------------------------------------------------------------- */
.faq-list {
  max-width: 800px;
  margin-inline: auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--brand-blue);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent-dark);
}

.faq-question__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--brand-yellow);
  transition: transform var(--transition);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer__inner {
  padding-bottom: 1.15rem;
  font-weight: 300;
  color: var(--text-body);
  line-height: 1.7;
}

.faq-answer__inner a {
  color: var(--brand-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --------------------------------------------------------------------------
   Area pills & maps
   -------------------------------------------------------------------------- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.area-pill {
  display: inline-block;
  padding: 0.45rem 1rem;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bg-white);
  border: 1px solid var(--border);
  color: var(--brand-blue);
  border-radius: 999px;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.area-pill:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--text-white);
}

.map-wrap {
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.map-wrap--visit {
  margin-top: 2rem;
}

/* --------------------------------------------------------------------------
   Contact layouts
   -------------------------------------------------------------------------- */
.contact-layout,
.contact-layout-single {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
}

.page-hero--contact {
  min-height: clamp(280px, 38vh, 420px);
  padding-top: var(--header-stack-height);
  background: var(--bg-hero);
}

.page-hero--contact .hero__actions--centred {
  justify-content: center;
  margin-top: 1.25rem;
}

.contact-page {
  display: flex;
  flex-direction: column;
  gap: clamp(32px, 5vw, 48px);
}

.contact-page__quick {
  margin-bottom: 0;
}

.contact-page__split {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.5fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(24px, 3vw, 36px);
  background: var(--bg-light);
  border-radius: var(--radius);
  border-top: 4px solid var(--brand-yellow);
}

.contact-info-panel__phone {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.contact-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-hours-list li {
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-map-wrap {
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-light);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.contact-section {
  padding-block: clamp(48px, 6vw, 80px);
}

.contact-layout-single {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.contact-detail-block .section-label {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-cta-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-map-sm {
  grid-column: 1 / -1;
  border: 3px solid var(--brand-yellow);
  border-radius: var(--radius);
  overflow: hidden;
}

.contact-map-sm iframe {
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 28px);
}

.contact-cards--2 {
  grid-template-columns: repeat(2, 1fr);
}

.contact-card {
  text-align: center;
}

.contact-card .icon-badge {
  margin-inline: auto;
}

.find-details__phone a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

/* --------------------------------------------------------------------------
   Booking steps
   -------------------------------------------------------------------------- */
.booking-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(12px, 2vw, 20px);
  margin-bottom: 2rem;
  counter-reset: booking;
}

.booking-steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 120px;
  max-width: 160px;
  position: relative;
}

.booking-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: -10px;
  width: 20px;
  height: 2px;
  background: var(--border);
}

.booking-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue);
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
}

.booking-steps__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   Breadcrumb, CTA band, info box
   -------------------------------------------------------------------------- */
.breadcrumb {
  background: var(--bg-blue-light);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
  margin-top: var(--header-stack-height);
}

.breadcrumb + main > .page-hero:first-child,
.breadcrumb + main > section.page-hero:first-child {
  padding-top: 0;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--brand-blue);
}

.breadcrumb a:hover {
  color: var(--accent-dark);
}

.breadcrumb li[aria-current="page"] {
  color: var(--text-muted);
}

.cta-band {
  background: var(--brand-blue);
  color: var(--text-white);
  text-align: center;
}

.cta-band h2 {
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.info-box {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-top: 4px solid var(--brand-yellow);
  padding: clamp(24px, 3vw, 32px);
  box-shadow: var(--shadow-sm);
}

.info-box h2,
.info-box h3 {
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

/* --------------------------------------------------------------------------
   Mission box, tier cards, visit cards, find grid
   -------------------------------------------------------------------------- */
.mission-box {
  background: var(--brand-blue);
  color: var(--text-white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  border-left: 4px solid var(--brand-yellow);
}

.mission-box h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.mission-box p {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.mission-box--callout {
  box-shadow: var(--shadow-md);
}

.tier-card h3 {
  margin-bottom: 0.5rem;
}

.tier-card p {
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.visit-cards .feature-block.card {
  border-top: 3px solid var(--brand-blue);
}

.find-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 32px);
  margin-top: 2rem;
}

.find-grid__photo {
  grid-row: span 2;
}

.find-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.find-details__block {
  margin-bottom: 1.5rem;
}

.find-details__block .section-label {
  display: block;
  margin-bottom: 0.35rem;
}

/* --------------------------------------------------------------------------
   Image placeholder & framed photo
   -------------------------------------------------------------------------- */
.photo-placeholder {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-blue) 100%);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  width: 100%;
}

.photo-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(245, 197, 24, 0.04) 20px,
    rgba(245, 197, 24, 0.04) 21px
  );
}

.photo-placeholder::after {
  content: "Photo coming soon";
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.photo-placeholder--hero {
  min-height: 95vh;
}

.framed-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}

.framed-photo .photo-placeholder,
.framed-photo img {
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.find-photo img,
.about-split .find-photo img,
.framed-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   Makes pills
   -------------------------------------------------------------------------- */
.makes-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.makes-pills span {
  background: var(--brand-blue);
  color: #fff;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 20px;
}

/* --------------------------------------------------------------------------
   Logo marquee (scrolling brand pills)
   -------------------------------------------------------------------------- */
.makes-marquee-section {
  padding-bottom: var(--section-pad);
  overflow: hidden;
  max-width: 100%;
}

.makes-marquee-section .section-header--tight {
  margin-bottom: 0;
}

.logo-marquee__viewport {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-top: clamp(24px, 4vw, 40px);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.logo-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
  will-change: transform;
}

.logo-marquee__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-inline: 0.5rem;
  list-style: none;
}

.logo-marquee__list li {
  flex-shrink: 0;
}

.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  min-height: 72px;
  padding: 10px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.logo-pill--wide {
  padding-inline: 20px;
}

.logo-pill--wide img {
  max-width: min(260px, 50vw);
}

.logo-pill img {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.logo-pill--wide img {
  height: 56px;
  width: auto;
}

.framed-photo::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: var(--brand-yellow);
  border-radius: var(--radius);
  z-index: 0;
}

/* --------------------------------------------------------------------------
   Brands marquee
   -------------------------------------------------------------------------- */
.brands-marquee {
  background: var(--bg-dark);
  padding-block: clamp(40px, 5vw, 56px);
  overflow: hidden;
}

.brands-marquee__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.brands-marquee__title {
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.brands-marquee__text {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  max-width: 560px;
  margin-inline: auto;
}

.brands-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brands-marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.brands-marquee__list {
  display: flex;
  gap: 2rem;
  padding-inline: 1rem;
}

.brands-marquee__list li {
  flex-shrink: 0;
}

.brands-marquee__list .photo-placeholder {
  width: 120px;
  height: 64px;
  min-height: 64px;
  border-radius: var(--radius-sm);
}

.brands-marquee.section--dark {
  background: var(--brand-dark);
  color: var(--text-white);
}

.brands-marquee.section--dark .brands-marquee__title,
.brands-marquee.section--dark .brands-marquee__text {
  color: var(--text-white);
}

.contact-card {
  border-top: 3px solid var(--brand-blue);
}

.service-tier {
  padding: 0;
  overflow: hidden;
}

.service-tier__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  margin: 0;
}

.service-tier__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.service-tier__body {
  padding: 1.25rem;
}

.service-tier--interim .service-tier__head {
  background: var(--brand-blue);
  color: var(--text-white);
}

.service-tier--interim .service-tier__head h3 {
  color: var(--text-white);
}

.service-tier--full .service-tier__head {
  background: var(--brand-yellow);
  color: var(--brand-dark);
}

.service-tier--full .service-tier__head h3 {
  color: var(--brand-dark);
}

.service-tier--full .badge-popular {
  position: static;
  margin: 0;
}

.service-tier--major .service-tier__head {
  background: var(--brand-dark);
  color: var(--text-white);
}

.service-tier--major .service-tier__head h3 {
  color: var(--text-white);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--marquee-distance, 50%)));
  }
}

/* --------------------------------------------------------------------------
   Responsive — 1440px nav no wrap, 375px mobile
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  .nav-menu {
    flex-wrap: nowrap;
  }

  .nav-menu .nav-link {
    font-size: 0.8125rem;
  }
}

@media (max-width: 1200px) {
  .card-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-col--services {
    grid-column: span 2;
  }

  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-bar,
  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-stack-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex: none;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem var(--container-pad) 2rem;
    background: var(--brand-yellow);
    border-top: 1px solid rgba(30, 67, 146, 0.12);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu .nav-link {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(30, 67, 146, 0.1);
  }

  .nav-menu .nav-link::after {
    display: none;
  }

  .nav-ctas {
    display: none;
  }

  .nav-mobile-phone,
  .nav-mobile-book {
    display: flex;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  .nav-mobile-book {
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    margin-top: 1.25rem;
    order: 10;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid rgba(30, 67, 146, 0.1);
  }

  .nav-dropdown__menu {
    position: static;
    transform: none;
    display: none;
    min-width: 0;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0.5rem;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    display: block;
  }

  .nav-dropdown__menu a {
    font-size: 1rem;
    padding: 0.75rem 0 0.75rem 1rem;
    border-bottom: 1px solid rgba(30, 67, 146, 0.08);
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a.is-active {
    background: transparent;
    color: var(--brand-dark);
  }

  .nav-mobile-phone {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--brand-blue);
    padding: 0.85rem;
    border: 2px solid var(--brand-blue);
    border-radius: var(--radius-sm);
    text-align: center;
  }

  .hero__layout,
  .page-hero__layout {
    grid-template-columns: 1fr;
  }

  .hero__widget,
  .page-hero__widget {
    max-width: 420px;
  }

  .hero__bg {
    clip-path: polygon(0 35%, 100% 0, 100% 100%, 0 100%);
    opacity: 0.5;
  }

  .page-hero__bg {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.4;
  }

  .card-grid-2,
  .card-grid-3,
  .card-grid-4,
  .feature-row--3,
  .testimonial-grid,
  .contact-cards,
  .about-split,
  .find-grid,
  .contact-layout,
  .contact-page__split {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    min-height: 320px;
  }

  .contact-map-wrap iframe {
    min-height: 320px;
  }

  .find-grid__photo {
    grid-row: auto;
  }
}

@media (max-width: 767px) {
  .card-grid-5 {
    grid-template-columns: 1fr;
  }

  .trust-bar,
  .trust-cards {
    grid-template-columns: 1fr;
  }

  .steps-row {
    grid-template-columns: 1fr;
  }

  .booking-steps li:not(:last-child)::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-col--services {
    grid-column: auto;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: auto;
    padding-block: calc(var(--nav-height) + 1.5rem) 2rem;
  }

  .hero__bg .photo-placeholder--hero {
    min-height: 50vh;
  }
}

@media (max-width: 375px) {
  :root {
    --container-pad: 16px;
  }

  .nav-logo__name::before,
  .nav-logo__name::after {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.8125rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
  }

  h1 {
    font-size: 2rem;
  }

  .area-pills {
    gap: 0.35rem;
  }

  .area-pill {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .brands-marquee__track,
  .logo-marquee__track {
    animation: none;
  }
}
