/* ==========================================================================
   Fox Bus — Design System "Midnight Command"
   Navy #0B1629 · Amber #F59E0B · White. Sora (display) + Manrope (body).
   Feeling: precise, calm, capable, human, trustworthy.
   ========================================================================== */

:root {
	/* Brand */
	--navy:        #0B1629;
	--navy-700:    #132339;
	--navy-600:    #1c3350;
	--amber:       #F59E0B;
	--amber-600:   #d98704;
	--amber-050:   #fff7e9;
	--white:       #ffffff;

	/* Ink & surfaces */
	--ink:         #0B1629;
	--ink-70:      #3a4657;
	--ink-55:      #5a6577;
	--line:        #e5e9f0;
	--line-strong: #d3d9e3;
	--surface:     #ffffff;
	--surface-2:   #f6f8fb;
	--surface-3:   #eef2f7;

	/* State */
	--focus:       #2563eb;
	--error:       #b42318;
	--error-bg:    #fef3f2;
	--success:     #067647;
	--success-bg:  #ecfdf3;

	/* Type */
	--font-display: 'Sora', system-ui, -apple-system, 'Segoe UI', sans-serif;
	--font-body:    'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;

	/* Spacing (8px system) */
	--sp-1: 0.5rem;  --sp-2: 1rem;   --sp-3: 1.5rem;  --sp-4: 2rem;
	--sp-5: 2.5rem;  --sp-6: 3rem;   --sp-8: 4rem;    --sp-10: 5rem;
	--sp-12: 6rem;   --sp-15: 7.5rem;

	/* Radii / shadow */
	--r-sm: 8px;  --r: 14px;  --r-lg: 20px;  --r-pill: 999px;
	--shadow-sm: 0 1px 2px rgba(11,22,41,.06), 0 1px 3px rgba(11,22,41,.08);
	--shadow:    0 10px 30px rgba(11,22,41,.10);
	--shadow-lg: 0 24px 60px rgba(11,22,41,.18);

	--container: 1280px;
	--container-narrow: 780px;
	--header-h: 76px;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
/* Guard against any full-bleed element causing horizontal scroll on mobile
   (~90% of traffic). `clip` (not `hidden`) keeps the sticky header working. */
body { overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1.0625rem;      /* 17px base */
	line-height: 1.65;
	color: var(--ink);
	background: var(--surface);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.1; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1rem; }
a { color: var(--amber-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy); }

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(3.5rem, 8vw, 7.5rem); }
.section--center { text-align: center; }
/* Explicit background rhythm (reliable across browsers). Dark sections
   (safety, final-cta) set their own background further down. */
.services, .process, .inclusions, .areas, .cases { background: var(--surface-2); }
.section--surface { background: var(--surface-2); }
/* About page */
.about-prose { max-width: 68ch; }
.about-prose p { margin: 0 0 1.1rem; color: var(--ink-70); font-size: 1.05rem; line-height: 1.7; }
.about-prose p:last-child { margin-bottom: 0; }
.section__head--left { text-align: left; align-items: flex-start; margin-inline: 0; }
.related-services__arw { flex: 0 0 auto; display: inline-flex; color: var(--amber-600); }
.related-services__arw svg { width: 18px; height: 18px; }
/* About hero + media splits */
.about-hero .hero__inner { grid-template-columns: 1fr; }
.about-hero .hero__title { max-width: 24ch; }
.about-media { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-media__img { border-radius: var(--r-lg); min-height: 380px; background-size: cover; background-position: center; box-shadow: var(--shadow-lg); }
.about-media--rev .about-media__img { order: 2; }
.about-media__body .fxh-eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700; color: var(--amber-600); }
.about-media__body .fxh-eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--amber); }
.about-media__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.08; letter-spacing: -.02em; color: var(--navy); margin: .75rem 0 1rem; text-wrap: balance; }
.about-media__links { margin-top: 1.5rem; grid-template-columns: 1fr 1fr; }
@media (max-width: 860px) {
	.about-media { grid-template-columns: 1fr; gap: 1.75rem; }
	.about-media--rev .about-media__img { order: 0; }
	.about-media__links { grid-template-columns: 1fr; }
}
/* Credentials card */
.about-creds__card { display: flex; align-items: center; gap: 1rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.25rem 1.5rem; }
.about-creds__ico { flex: 0 0 auto; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--navy); color: var(--amber); }
.about-creds__ico svg { width: 22px; height: 22px; }
.about-creds__title { font-family: var(--font-display); font-weight: 700; color: var(--navy); margin: 0 0 .15rem; }
.about-creds__meta { margin: 0; color: var(--ink-70); font-size: .95rem; font-variant-numeric: tabular-nums; }
.about-creds__dot { color: var(--line-strong); }
/* Contact list in the About CTA */
.about-contact { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: .7rem; }
.about-contact li { display: flex; align-items: center; gap: .65rem; color: rgba(255,255,255,.9); }
.about-contact a { color: #fff; text-decoration: none; font-weight: 600; }
.about-contact a:hover { color: var(--amber); }
.about-contact__ico { display: inline-flex; color: var(--amber); }
.about-contact__ico svg { width: 18px; height: 18px; }
.final-cta__actions--stacked { flex-direction: column; align-items: stretch; }
.recommender, .reviews, .pricing, .team, .faq { background: var(--surface); }
.section__head { max-width: 720px; margin: 0 auto clamp(2rem, 4vw, 3.5rem); text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.4vw, 2.9rem); letter-spacing: -0.01em; }
.section__intro { font-size: 1.125rem; color: var(--ink-70); margin: 0; }

/* --------------------------------------------------------------------------
   Accessibility
   -------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; word-wrap: normal !important;
}
.skip-link {
	position: fixed; top: -100px; left: 8px; z-index: 2000;
	background: var(--navy); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) var(--r-sm);
	font-weight: 600; text-decoration: none;
}
.skip-link:focus { top: 0; color: #fff; }

:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 3px solid var(--focus);
	outline-offset: 2px;
	border-radius: 3px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------------------------
   Buttons — one dominant action (amber). Every state defined.
   -------------------------------------------------------------------------- */
.btn {
	--btn-h: 52px;
	display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
	min-height: var(--btn-h);
	padding: 0 1.6rem;
	font-family: var(--font-display); font-size: 1rem; font-weight: 700; letter-spacing: .01em;
	border: 2px solid transparent; border-radius: var(--r-sm);
	text-decoration: none; cursor: pointer; white-space: nowrap;
	transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
}
.btn:active { transform: translateY(1px); }
.btn__icon { display: inline-flex; }
.btn--sm { --btn-h: 44px; font-size: .95rem; padding: 0 1.1rem; }
.btn--lg { --btn-h: 58px; font-size: 1.05rem; padding: 0 2rem; }
.btn--block { display: flex; width: 100%; }

.btn--amber { background: var(--amber); color: var(--navy); }
.btn--amber:hover { background: var(--amber-600); color: var(--navy); }
.btn--amber:disabled, .btn--amber[aria-disabled="true"] { background: #f0d49a; color: #7a6a45; cursor: not-allowed; }

.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--surface-3); color: var(--navy); border-color: var(--navy); }

/* Soft amber glow that gently breathes around the primary quote CTA. Kept simple
   on purpose: a plain box-shadow, universally supported, with nothing that can
   misrender. Speeds up on hover; off for reduced-motion. */
@keyframes fx-quote-glow {
	0%, 100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
	50%      { box-shadow: 0 0 16px 2px rgba(245, 158, 11, .55); }
}
.btn--quote { animation: fx-quote-glow 2.8s ease-in-out infinite; }
.btn--quote:hover { animation-duration: 1.4s; }
@media (prefers-reduced-motion: reduce) { .btn--quote { animation: none; } }

.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-700); color: #fff; }

.btn.is-loading { position: relative; color: transparent !important; }
.btn.is-loading::after {
	content: ""; position: absolute; width: 18px; height: 18px; border-radius: 50%;
	border: 2px solid currentColor; border-top-color: transparent; animation: fb-spin .7s linear infinite;
	color: var(--navy);
}
@keyframes fb-spin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Utility bar
   -------------------------------------------------------------------------- */
.utility-bar { background: var(--navy); color: rgba(255,255,255,.85); font-size: .875rem; }
.utility-bar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; }
.utility-bar__left, .utility-bar__right { margin: 0; display: flex; align-items: center; gap: 1.25rem; }
.utility-bar__urgent { color: rgba(255,255,255,.75); }
.utility-bar__hours { color: rgba(255,255,255,.6); }
.utility-bar__phone { color: #fff; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: .4rem; }
.utility-bar__phone:hover { color: var(--amber); }
.utility-bar__phone .foxbus-phone__icon { color: var(--amber); display: inline-flex; }
@media (max-width: 700px) {
	.utility-bar__left { display: none; }
	.utility-bar__right { width: 100%; justify-content: center; }
	.utility-bar__hours { display: none; }
}

/* --------------------------------------------------------------------------
   Header + primary nav
   -------------------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 900; background: #fff; border-bottom: 1px solid var(--line); transition: box-shadow .2s ease, min-height .2s ease; }
.site-header.is-stuck { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: var(--header-h); }
.site-header__brand { flex: 0 0 auto; }
.site-title { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--navy); text-decoration: none; letter-spacing: -.01em; }
.custom-logo { max-height: 48px; width: auto; }

.primary-nav { margin-left: auto; }
.primary-nav__menu { display: flex; align-items: center; gap: .25rem; list-style: none; margin: 0; padding: 0; }
.primary-nav__menu > li { position: relative; }
.menu-link { display: inline-flex; align-items: center; gap: .3rem; padding: .6rem .85rem; color: var(--ink); font-weight: 600; text-decoration: none; border-radius: var(--r-sm); font-size: .98rem; }
.menu-link:hover { color: var(--navy); background: var(--surface-3); }
.menu-item-has-children > .menu-link--top { padding-right: .35rem; }

.submenu-toggle { display: inline-grid; place-items: center; width: 30px; height: 30px; margin-left: -.2rem; background: transparent; border: 0; cursor: pointer; color: var(--ink-55); border-radius: 6px; }
.submenu-toggle:hover { background: var(--surface-3); }
.submenu-toggle__chev { width: 8px; height: 8px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translate(-1px,-1px); transition: transform .2s ease; }
.submenu-toggle[aria-expanded="true"] .submenu-toggle__chev { transform: rotate(-135deg); }

/* Mega/dropdown submenu */
.primary-nav .sub-menu {
	position: absolute; top: calc(100% + 8px); left: 0; min-width: 260px;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-lg);
	list-style: none; margin: 0; padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.primary-nav .menu-item-has-children:hover > .sub-menu,
.primary-nav .menu-item-has-children:focus-within > .sub-menu,
.primary-nav .menu-item-has-children.is-open > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu .menu-link { display: block; padding: .55rem .75rem; font-weight: 500; }

.site-header__actions { display: flex; align-items: center; gap: .75rem; flex: 0 0 auto; }
.site-header__phone { display: inline-flex; align-items: center; gap: .4rem; color: var(--navy); font-weight: 700; text-decoration: none; }
.site-header__phone:hover { color: var(--amber-600); }
.site-header__phone .foxbus-phone__icon { color: var(--amber); }

.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; background: var(--surface-3); border: 0; border-radius: var(--r-sm); color: var(--navy); cursor: pointer; }
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: inline-flex; }

/* Mobile nav */
.mobile-nav { position: fixed; inset: 0; z-index: 950; background: rgba(11,22,41,.5); }
.mobile-nav[hidden] { display: none; }
.mobile-nav__panel { position: absolute; top: 0; right: 0; height: 100%; width: min(88vw, 400px); background: #fff; padding: 0 1.25rem 2rem; overflow-y: auto; box-shadow: var(--shadow-lg); }
/* Panel header: brand logo (left) + close button (right). */
.mobile-nav__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; position: sticky; top: 0; background: #fff; padding: .85rem 0 .9rem; margin-bottom: .75rem; border-bottom: 1px solid var(--line); z-index: 1; }
.mobile-nav__logo { display: inline-flex; align-items: center; }
.mobile-nav__logo img, .mobile-nav__head .custom-logo { height: 34px; width: auto; display: block; }
.mobile-nav__logo--text { font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; color: var(--navy); text-decoration: none; }
.mobile-nav__close { flex: 0 0 auto; display: inline-grid; place-items: center; width: 44px; height: 44px; margin-right: -.35rem; border: 0; border-radius: var(--r-sm); background: var(--surface-3); color: var(--navy); cursor: pointer; }
.mobile-nav__close:hover { background: var(--surface-2); color: var(--amber-600); }
.mobile-nav__close svg { width: 20px; height: 20px; }
.mobile-nav__menu { list-style: none; margin: 0 0 1.5rem; padding: 0; }
.mobile-nav__menu li { border-bottom: 1px solid var(--line); }
.mobile-nav__menu .menu-link { padding: .9rem .25rem; font-size: 1.1rem; }
.mobile-nav__menu .sub-menu { list-style: none; margin: 0 0 .5rem .5rem; padding: 0; }
.mobile-nav__menu .sub-menu .menu-link { font-size: 1rem; color: var(--ink-70); }
.mobile-nav__menu .submenu-toggle { float: right; }
.mobile-nav__menu .sub-menu { display: none; }
.mobile-nav__menu .is-open > .sub-menu { display: block; }
.mobile-nav__cta { display: grid; gap: .75rem; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { background: var(--navy); color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -160px; right: -140px; width: 620px; height: 620px; background: radial-gradient(circle, rgba(245,158,11,.14), transparent 68%); pointer-events: none; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--amber), transparent); }
.hero__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: start; padding-block: clamp(3rem, 6vw, 5.5rem); }
.hero__eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .16em; font-size: .8rem; font-weight: 700; color: var(--amber); margin: 0 0 1rem; display: inline-flex; align-items: center; gap: .6rem; }
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--amber); }
.hero__title { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; letter-spacing: -.015em; margin: 0 0 1rem; max-width: 12ch; }
.hero__sub { color: rgba(255,255,255,.72); font-size: 1.18rem; max-width: 46ch; margin: 0 0 1.75rem; }
.hero__proof { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: .6rem; }
.hero__proof li { display: flex; align-items: center; gap: .6rem; color: rgba(255,255,255,.9); font-weight: 500; }
.hero__proof-icon { display: inline-flex; color: var(--amber); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: .85rem; }
.hero__ctas .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero__ctas .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }
.hero__ctas .foxbus-phone__icon { color: var(--amber); }
.hero__trust { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
/* Hero at-a-glance stats (moved inside the hero, right under the CTAs). */
.hero__stats { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; margin: 1.9rem 0 0; padding-top: 1.6rem; border-top: 1px solid rgba(255,255,255,.12); }
.hero__stats .hero__stat { display: flex; flex-direction: column; gap: .15rem; margin: 0; }
.hero__stats .hero__stat + .hero__stat { padding-left: 1.6rem; border-left: 1px solid rgba(255,255,255,.12); }
.hero__stat-n { font-family: var(--font-display); font-weight: 800; font-size: 1.55rem; line-height: 1; color: #fff; margin: 0; }
.hero__stat-n .star { color: var(--amber); }
.hero__stat-l { font-size: .78rem; color: rgba(255,255,255,.6); margin: 0; }
.hero__owned { display: inline-flex; align-items: center; gap: .5rem; margin: 1.1rem 0 0; font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: rgba(255,255,255,.9); }
.hero__owned-ico { display: inline-flex; color: var(--amber); }
.hero__owned-ico svg { width: 17px; height: 17px; }
@media (max-width: 560px) {
	.hero__stats { gap: 1rem 1.2rem; }
	.hero__stats .hero__stat + .hero__stat { padding-left: 1.2rem; }
	.hero__stat-n { font-size: 1.35rem; }
}

.trust-strip__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; }
.trust-strip__item { display: flex; flex-direction: column; }
.trust-strip__value { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--amber); line-height: 1; }
.trust-strip__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.6); margin-top: .3rem; }
.trust-strip__link { color: inherit; text-decoration: none; }
.trust-strip__link:hover .trust-strip__label { color: #fff; }

.hero__form { position: relative; z-index: 2; }

/* Trust band (light, after hero) */
.trust-band { background: var(--surface-3); border-bottom: 1px solid var(--line); }
.trust-band .container { padding-block: 1.25rem; }
.trust-band .trust-strip__value { color: var(--navy); }
.trust-band .trust-strip__label { color: var(--ink-55); }
.trust-band .trust-strip__link { color: var(--ink); }

/* --------------------------------------------------------------------------
   Cards / grids shared
   -------------------------------------------------------------------------- */
.services__grid, .cases__grid, .safety__grid, .team__grid, .reviews__grid { display: grid; gap: 1.5rem; }
.services__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.safety__grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cases__grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.team__grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.service-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem; display: flex; flex-direction: column; transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease; }
.service-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-2px); }
.service-card__title { font-size: 1.3rem; margin-bottom: .5rem; }
.service-card__lead { color: var(--ink-70); margin-bottom: 1rem; }
.service-card__facts { list-style: none; margin: 0 0 1.25rem; padding: 0; display: grid; gap: .5rem; }
.service-card__facts li { display: flex; gap: .5rem; font-size: .95rem; color: var(--ink-70); }
.service-card__facts svg { color: var(--amber-600); flex: 0 0 auto; margin-top: 2px; }
.service-card__link { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-family: var(--font-display); font-weight: 700; color: var(--navy); text-decoration: none; }
.service-card__link:hover { color: var(--amber-600); }
.service-card__link svg { transition: transform .15s ease; }
.service-card__link:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Recommender
   -------------------------------------------------------------------------- */
.recommender__widget { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 3rem; }
.recommender__controls { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.recommender__widget .field__label { color: rgba(255,255,255,.85); }
.recommender__widget .field__select, .recommender__widget .stepper__input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.recommender__widget .field__select option { color: #111; }
/* The stepper is a white pill by default; on the dark recommender panel that hid
   the (white) number. Make the whole stepper dark-translucent to match the two
   select fields, with a visible white number and white +/- controls. */
.recommender__widget .stepper { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.recommender__widget .stepper__input { background: transparent; }
.recommender__widget .stepper__btn { background: rgba(255,255,255,.14); color: #fff; }
.recommender__widget .stepper__btn:hover { background: rgba(255,255,255,.26); }
.recommender__result { margin-top: 1.5rem; }
.rec-match { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.4); border-radius: var(--r); padding: 1.25rem 1.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.rec-match__label { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); width: 100%; }
.rec-match__name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.rec-match__why { color: rgba(255,255,255,.75); font-size: .95rem; flex: 1 1 240px; }
.rec-match .btn { margin-left: auto; }
.recommender__help { margin: 1.25rem 0 0; color: rgba(255,255,255,.75); font-size: .95rem; }
.recommender__help a { color: var(--amber); }
.recommender__help a:hover, .recommender__help a:focus { color: #fff; }

.recommender__grid-title { text-align: center; font-size: 1.1rem; color: var(--ink-55); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.5rem; }
.recommender__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.vehicle-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem; display: flex; flex-direction: column; }
.vehicle-card.is-match { border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-050); }
.vehicle-card__media { color: var(--navy); margin-bottom: .75rem; }
.vehicle-card__media--photo { border-radius: var(--r-sm); overflow: hidden; aspect-ratio: 3 / 2; background: var(--surface-3); }
.vehicle-card__media--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vehicle-card__title { font-size: 1.15rem; margin-bottom: .25rem; }
.vehicle-card__cap { color: var(--ink-70); margin-bottom: .75rem; }
.vehicle-card__cap strong { color: var(--navy); font-family: var(--font-display); font-size: 1.15rem; }
.vehicle-card__meta { margin: 0 0 1rem; display: grid; gap: .35rem; }
.vehicle-card__meta dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-55); }
.vehicle-card__meta dd { margin: 0 0 .35rem; font-size: .9rem; color: var(--ink-70); }
.vehicle-card__cta { margin-top: auto; font-family: var(--font-display); font-weight: 700; color: var(--navy); text-decoration: none; }
.vehicle-card__cta:hover { color: var(--amber-600); }

/* --------------------------------------------------------------------------
   Fields (shared with plugin form)
   -------------------------------------------------------------------------- */
.field { display: grid; gap: .4rem; }
.field__label { font-weight: 600; font-size: .95rem; }
.field__select, .field__input, .stepper__input {
	width: 100%; min-height: 48px; padding: .65rem .85rem; font: inherit;
	border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); background: #fff; color: var(--ink);
}
.field__select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235a6577' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .85rem center; padding-right: 2.4rem; }
.stepper { display: inline-flex; align-items: stretch; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); overflow: hidden; max-width: 200px; background:#fff; }
.stepper__btn { width: 48px; border: 0; background: var(--surface-3); font-size: 1.4rem; line-height: 1; cursor: pointer; color: var(--navy); }
.stepper__btn:hover { background: var(--line-strong); }
/* The stepper sits on a white track, so the number must be dark — otherwise it
   inherits white from a dark parent card (e.g. the navy planner) and vanishes.
   The recommender's dark-translucent stepper overrides this back to white. */
.stepper__input { color: var(--navy); background: transparent; }
.stepper__input { border: 0; text-align: center; -moz-appearance: textfield; min-height: 46px; }
.stepper__input::-webkit-outer-spin-button, .stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* --------------------------------------------------------------------------
   Process
   -------------------------------------------------------------------------- */
.process__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: step; }
.process__step { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 2rem 1.75rem; position: relative; }
.process__num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--amber); font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem; }
.process__step-title { font-size: 1.2rem; margin-bottom: .5rem; }
.process__step-body { color: var(--ink-70); margin: 0; }
.process__more { text-align: center; margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Safety
   -------------------------------------------------------------------------- */
.safety { background: var(--navy); color: #fff; }
.safety .section__title, .safety .section__intro { color: #fff; }
.safety .section__title { display: inline-flex; align-items: center; gap: .6rem; }
.safety__icon { color: var(--amber); }
.safety-item { background: var(--navy-700); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r); padding: 1.75rem; }
.safety-item__title { color: #fff; font-size: 1.2rem; }
.safety-item__benefit { color: rgba(255,255,255,.75); margin-bottom: .75rem; }
.safety-item__status { color: var(--amber); font-weight: 600; font-size: .95rem; margin: 0 0 .5rem; }
.safety-item__link { color: #fff; font-weight: 600; }
.safety-item__link:hover { color: var(--amber); }
.safety__note { text-align: center; color: rgba(255,255,255,.6); margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Reviews
   -------------------------------------------------------------------------- */
.reviews__aggregate { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: center; gap: .5rem 1rem; margin-bottom: 2rem; }
.reviews__rating { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; color: var(--navy); display: inline-flex; align-items: center; gap: .3rem; }
.reviews__star { color: var(--amber); display: inline-flex; }
.reviews__count { color: var(--ink-70); }
.reviews__source { color: var(--ink-55); font-size: .85rem; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; margin: 0; }
.review-card__stars { color: var(--amber); display: flex; gap: 2px; margin-bottom: .75rem; }
.review-card__text { margin: 0 0 1rem; font-size: 1.02rem; color: var(--ink); }
.review-card__meta { display: flex; justify-content: space-between; gap: .5rem; font-size: .9rem; color: var(--ink-55); }
.review-card__name { font-weight: 600; color: var(--ink); }

/* Reviews: single-row horizontal slider with prev/next arrows. */
.reviews__carousel { position: relative; }
.reviews__track { display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: .25rem .25rem 1rem; margin: 0 -.25rem; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
.reviews__track::-webkit-scrollbar { height: 6px; }
.reviews__track::-webkit-scrollbar-thumb { background: var(--surface-3); border-radius: 6px; }
.reviews__track .review-card { flex: 0 0 clamp(270px, 30%, 350px); scroll-snap-align: start; display: flex; flex-direction: column; }
.reviews__track .review-card__meta { margin-top: auto; padding-top: .75rem; }
.reviews__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--navy); border: 1px solid var(--line); box-shadow: var(--shadow); cursor: pointer; transition: color .15s, border-color .15s, opacity .15s; }
.reviews__nav:hover { color: var(--amber-600); border-color: var(--amber); }
.reviews__nav--prev { left: -12px; }
.reviews__nav--next { right: -12px; }
.reviews__nav[disabled] { opacity: .35; cursor: default; }
.reviews__nav[disabled]:hover { color: var(--navy); border-color: var(--line); }
@media (max-width: 640px) {
	.reviews__track .review-card { flex-basis: 82%; }
	.reviews__nav--prev { left: 2px; }
	.reviews__nav--next { right: 2px; }
}
.reviews__fallback { text-align: center; color: var(--ink-70); }
.reviews__all { text-align: center; margin-top: 2rem; }
.reviews__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; align-items: center; }

/* --------------------------------------------------------------------------
   Inclusions
   -------------------------------------------------------------------------- */
.inclusions__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.inclusions__col { border-radius: var(--r); padding: 2rem; border: 1px solid var(--line); }
.inclusions__col--yes { background: var(--success-bg); border-color: #b6e6cd; }
.inclusions__col--depends { background: var(--surface-2); }
.inclusions__col-title { font-size: 1.15rem; margin-bottom: 1rem; }
.inclusions__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.inclusions__col li { display: flex; gap: .6rem; align-items: flex-start; }
.inclusions__mark { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; display: inline-grid; place-items: center; font-weight: 700; font-size: .8rem; margin-top: 1px; }
.inclusions__mark--yes { background: var(--success); color: #fff; }
.inclusions__mark--depends { background: var(--surface-3); color: var(--ink-55); border: 1px solid var(--line-strong); }
.inclusions__more { text-align: center; margin-top: 1.75rem; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.pricing__factors { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin: 0 0 2rem; }
.pricing__factor { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--r-sm); padding: 1.1rem 1.25rem; }
.pricing__factor dt { font-family: var(--font-display); font-weight: 700; margin-bottom: .25rem; }
.pricing__factor dd { margin: 0; color: var(--ink-70); font-size: .95rem; }
.pricing__ranges { background: var(--amber-050); border: 1px solid #f3dca5; border-radius: var(--r); padding: 1.5rem; margin-bottom: 2rem; }
.pricing__ranges ul { margin: .5rem 0; padding-left: 1.2rem; }
.pricing__ranges-note { color: var(--ink-70); font-size: .9rem; margin: 0; }
.pricing__cta { text-align: center; }

/* --------------------------------------------------------------------------
   Areas
   -------------------------------------------------------------------------- */
.areas__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.areas__col-title { font-size: 1.1rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--amber); display: inline-block; }
.areas__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .4rem; }
.areas__list a { color: var(--ink); text-decoration: none; font-weight: 500; }
.areas__list a:hover { color: var(--amber-600); text-decoration: underline; }
.areas__note { text-align: center; color: var(--ink-55); margin-top: 2rem; font-size: .9rem; }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team-card { text-align: center; }
.team-card__photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid var(--surface-3); }
.team-card__name { font-size: 1.2rem; margin-bottom: .2rem; }
.team-card__role { color: var(--amber-600); font-weight: 600; margin-bottom: .5rem; }
.team-card__bio { color: var(--ink-70); font-size: .95rem; }
.team__placeholder, .safety__note em { color: var(--ink-55); }

/* --------------------------------------------------------------------------
   Cases
   -------------------------------------------------------------------------- */
.case-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.75rem; }
.case-card__need { font-size: 1.25rem; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line); }
.case-card__block { margin-bottom: 1rem; }
.case-card__label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-55); margin-bottom: .25rem; font-weight: 700; }
.case-card__block p { margin: 0; color: var(--ink-70); }
.case-card__block--result p { color: var(--navy); font-weight: 600; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq__list { display: grid; gap: .75rem; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.faq__item[open] { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq__q { cursor: pointer; padding: 1.15rem 1.4rem; font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: ""; flex: 0 0 auto; width: 10px; height: 10px; border-right: 2px solid var(--amber-600); border-bottom: 2px solid var(--amber-600); transform: rotate(45deg); transition: transform .2s ease; }
.faq__item[open] .faq__q::after { transform: rotate(-135deg); }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--ink-70); }
.faq__a p { margin: 0; }

/* FAQ - two-column split: sticky intro (left) + clean divider accordion (right)
   with a circular +/× toggle that fills amber when open. */
.faq--split .faq__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.faq--split .faq__intro { position: sticky; top: calc(var(--header-h) + 1.5rem); }
.faq__eyebrow { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .74rem; font-weight: 700; color: var(--amber-600); margin-bottom: 1rem; }
.faq__eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--amber); }
.faq__title { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: var(--navy); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 1.1rem; text-wrap: balance; }
.faq__help { color: var(--ink-70); font-size: 1rem; margin: 0; }
.faq__help a { color: var(--amber-600); font-weight: 700; text-decoration: none; }
.faq__help a:hover { text-decoration: underline; }
.faq--split .faq__list { display: block; }
.faq--split .faq__item { background: none; border: 0; border-top: 1px solid var(--line); border-radius: 0; overflow: visible; box-shadow: none; }
.faq--split .faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq--split .faq__item[open] { box-shadow: none; border-color: var(--line); }
.faq--split .faq__q { padding: 1.4rem 0; font-size: clamp(1.02rem, 1.5vw, 1.16rem); color: var(--navy); gap: 1.25rem; align-items: center; }
.faq--split .faq__q::after { display: none; }
.faq__toggle { flex: 0 0 auto; position: relative; width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line-strong); transition: background .2s ease, border-color .2s ease, transform .25s ease; }
.faq__toggle::before, .faq__toggle::after { content: ""; position: absolute; top: 50%; left: 50%; background: var(--navy); border-radius: 2px; transition: background .2s ease; }
.faq__toggle::before { width: 12px; height: 2px; margin: -1px 0 0 -6px; }
.faq__toggle::after { width: 2px; height: 12px; margin: -6px 0 0 -1px; }
.faq--split .faq__item[open] .faq__toggle { background: var(--amber); border-color: var(--amber); transform: rotate(45deg); }
.faq--split .faq__item[open] .faq__toggle::before, .faq--split .faq__item[open] .faq__toggle::after { background: var(--navy); }
.faq--split .faq__q:hover .faq__toggle { border-color: var(--amber); }
.faq--split .faq__a { padding: 0 0 1.5rem; max-width: 62ch; }
.faq--split .faq__a p { color: var(--ink-70); line-height: 1.6; margin: 0; }
@media (max-width: 820px) {
	.faq--split .faq__grid { grid-template-columns: 1fr; gap: 1.25rem; }
	.faq--split .faq__intro { position: static; }
}

/* --------------------------------------------------------------------------
   Final CTA
   -------------------------------------------------------------------------- */
.final-cta { background: var(--navy); color: #fff; }
/* Sliding photo background (final CTA): a strip of photos that pans left to
   right in a seamless loop, under a navy overlay that keeps text/form readable. */
.final-cta--media { position: relative; overflow: hidden; }
.final-cta__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.final-cta__bgtrack { display: flex; height: 100%; width: max-content; will-change: transform; animation: fcta-pan 55s linear infinite; }
.final-cta__bgimg { flex: 0 0 clamp(360px, 55vw, 900px); height: 100%; background-size: cover; background-position: center; }
.final-cta__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,22,41,.93), rgba(11,22,41,.78) 52%, rgba(11,22,41,.92)); }
.final-cta--media .final-cta__inner { position: relative; z-index: 1; }
/* Lift any CTA content (centered CTAs on the gallery, terms and safety pages use
   a plain .container) above the injected sliding-photo background, so the heading
   and text are never hidden behind the images. */
.final-cta--media > .container { position: relative; z-index: 1; }
@keyframes fcta-pan { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .final-cta__bgtrack { animation: none; } }
.final-cta__inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.final-cta .section__title, .final-cta .section__intro { color: #fff; }
.final-cta__head, .final-cta__intro { text-align: left; }
.final-cta__intro .section__intro { color: rgba(255,255,255,.75); }
.final-cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.5rem; }
.final-cta__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.final-cta__actions .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #060d18; color: rgba(255,255,255,.72); }
.site-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem; padding-block: clamp(3rem, 6vw, 4.5rem); }
.site-footer__brand { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: #fff; margin-bottom: 1rem; }
.site-footer__address { font-style: normal; display: grid; gap: .4rem; font-size: .95rem; }
.site-footer__legal { color: #fff; font-weight: 600; }
.site-footer__phone, .site-footer__email { color: rgba(255,255,255,.85); text-decoration: none; }
.site-footer__phone:hover, .site-footer__email:hover { color: var(--amber); }
.site-footer__social { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.25rem 0 0; padding: 0; }
.site-footer__social a { color: rgba(255,255,255,.75); text-decoration: none; font-size: .9rem; }
.site-footer__social a:hover { color: var(--amber); }
.site-footer__heading { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.site-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.site-footer__menu a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .95rem; }
.site-footer__menu a:hover { color: #fff; }
.site-footer__empty { color: rgba(255,255,255,.4); font-size: .85rem; }
.site-footer__bar { border-top: 1px solid rgba(255,255,255,.08); }
.site-footer__bar-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.25rem; font-size: .88rem; }
.site-footer__copy { margin: 0; }
.site-footer__legal-menu { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.site-footer__legal-menu a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer__legal-menu a:hover { color: #fff; }


/* --------------------------------------------------------------------------
   Blog / page basics
   -------------------------------------------------------------------------- */
.post-list { display: grid; gap: 2rem; }
.post-card { border-bottom: 1px solid var(--line); padding-bottom: 1.5rem; }
.post-card__title a { color: var(--navy); text-decoration: none; }
.post-card__meta { color: var(--ink-55); font-size: .9rem; margin-bottom: .5rem; }
.entry-content { font-size: 1.08rem; }
.entry-content h2 { margin-top: 2rem; }
.search-form { display: flex; gap: .5rem; flex-wrap: wrap; }
.search-form__input { flex: 1 1 240px; min-height: 48px; padding: .6rem .85rem; border: 1.5px solid var(--line-strong); border-radius: var(--r-sm); }

/* --------------------------------------------------------------------------
   Quote fallback (plugin inactive)
   -------------------------------------------------------------------------- */
.quote-fallback, .callback-fallback { background: #fff; color: var(--ink); border-radius: var(--r-lg); padding: 2rem; box-shadow: var(--shadow-lg); }
.quote-fallback__title { font-size: 1.4rem; }
.callback-fallback { box-shadow: none; border: 1px solid rgba(255,255,255,.15); background: var(--navy-700); color: #fff; }
.callback-fallback__title { color: #fff; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
	.site-footer__col--business { grid-column: 1 / -1; }
	.hero__inner { grid-template-columns: 1fr; }
	.hero__form { order: 3; }
	.final-cta__inner { grid-template-columns: 1fr; }
	.recommender__controls { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
	.primary-nav, .site-header__phone, .site-header__cta { display: none; }
	.nav-toggle { display: inline-flex; }
	.process__steps { grid-template-columns: 1fr; }
	.inclusions__cols { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.recommender__controls { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.section__title { font-size: clamp(1.6rem, 7vw, 2.1rem); }
	.trust-strip__list { gap: 1rem 1.5rem; }
	.rec-match .btn { margin-left: 0; width: 100%; }
}

/* No-JS: reveal submenus inline so nothing is hidden without scripting */
.foxbus-no-js .primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; }
.foxbus-no-js .submenu-toggle, .foxbus-no-js .nav-toggle { display: none; }

/* ==========================================================================
   Service pages
   ========================================================================== */
.breadcrumb { background: var(--surface-2); border-bottom: 1px solid var(--line); }
.breadcrumb__list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: .75rem 0; font-size: .88rem; color: var(--ink-55); }
.breadcrumb__list li { display: flex; align-items: center; gap: .5rem; }
.breadcrumb__list li:not(:last-child)::after { content: "›"; color: var(--line-strong); }
.breadcrumb__list a { color: var(--ink-70); text-decoration: none; }
.breadcrumb__list a:hover { color: var(--amber-600); }
.breadcrumb__list [aria-current="page"] { color: var(--ink); font-weight: 600; }

.service-hero .hero__title { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }

/* Immediate proof strip */
.service-proof { background: var(--surface-3); padding-block: 1.75rem; border-bottom: 1px solid var(--line); }
.service-proof__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }
.service-proof__item { display: flex; flex-direction: column; gap: .3rem; padding-left: .9rem; border-left: 3px solid var(--amber); }
.service-proof__label { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.service-proof__note { font-size: .9rem; color: var(--ink-70); }

/* Fit */
.fit__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.fit__col { border-radius: var(--r); padding: 1.75rem; border: 1px solid var(--line); }
.fit__col--good { background: var(--success-bg); border-color: #b6e6cd; }
.fit__col--talk { background: var(--surface-2); }
.fit__col-title { font-size: 1.15rem; margin-bottom: 1rem; }
.fit__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.fit__col li { display: flex; gap: .55rem; align-items: flex-start; color: var(--ink-70); }
.fit__col--good svg { color: var(--success); flex: 0 0 auto; margin-top: 2px; }
.fit__col--talk li span { flex: 0 0 auto; width: 20px; height: 20px; border-radius: 50%; background: var(--surface-3); color: var(--ink-55); display: inline-grid; place-items: center; font-weight: 700; font-size: .78rem; border: 1px solid var(--line-strong); margin-top: 1px; }
.fit__col--talk li span svg { width: 11px; height: 11px; }

/* Legal / Terms & Conditions page */
.legal { max-width: 780px; }
.legal__head { margin-bottom: 2.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); }
.legal__head h1 { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 5vw, 46px); line-height: 1.05; letter-spacing: -.02em; color: var(--navy); margin: .4rem 0 .35rem; }
.legal__sub { color: var(--ink-70); margin: 0; }
.legal__section { margin: 2rem 0; }
.legal__h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.2; color: var(--navy); margin: 0 0 .9rem; letter-spacing: -.01em; }
.legal__num { color: var(--amber); }
.legal__h3 { font-weight: 700; font-size: 1.05rem; color: var(--navy); margin: 1.4rem 0 .5rem; }
.legal p { color: var(--ink-70); line-height: 1.7; margin: 0 0 1rem; }
.legal__list { margin: 0 0 1rem; padding-left: 1.25rem; display: grid; gap: .5rem; }
.legal__list li { color: var(--ink-70); line-height: 1.6; }
.legal__foot { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.legal__foot p { color: var(--ink-70); line-height: 1.7; margin: 0; }

/* Gallery page */
.gallery__tabs { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin: 0 0 2rem; }
.gallery__tabs[hidden], .gallery__item[hidden], .gallery__empty[hidden] { display: none; }
.gallery__tab { font: inherit; font-weight: 600; font-size: .95rem; color: var(--ink-70); background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: .5rem 1.1rem; cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.gallery__tab:hover { border-color: var(--line-strong); color: var(--navy); }
.gallery__tab.is-active { background: var(--navy); color: #fff; border-color: var(--navy); }
.gallery__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__item { margin: 0; }
.gallery__link { position: relative; display: block; border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: var(--surface-3); cursor: zoom-in; }
.gallery__link img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery__link:hover img, .gallery__link:focus-visible img { transform: scale(1.05); }
.gallery__zoom { position: absolute; right: .6rem; bottom: .6rem; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(11,22,41,.72); color: #fff; opacity: 0; transition: opacity .2s; }
.gallery__zoom svg { width: 16px; height: 16px; }
.gallery__link:hover .gallery__zoom, .gallery__link:focus-visible .gallery__zoom { opacity: 1; }
.gallery__empty { text-align: center; color: var(--ink-55); padding: 2rem 0; }
@media (max-width: 720px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: .6rem; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; gap: .5rem; padding: clamp(1rem, 4vw, 3rem); background: rgba(9,17,29,.93); }
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; max-width: 100%; max-height: 100%; display: flex; align-items: center; }
.lightbox__img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: var(--r); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close, .lightbox__nav { border: 0; background: rgba(255,255,255,.12); color: #fff; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .15s; flex: 0 0 auto; }
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.26); }
.lightbox__close { position: absolute; top: clamp(.8rem, 3vw, 1.5rem); right: clamp(.8rem, 3vw, 1.5rem); width: 44px; height: 44px; }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav { width: 48px; height: 48px; }
.lightbox__nav svg { width: 22px; height: 22px; }
.lightbox__prev svg { transform: scaleX(-1); }
@media (max-width: 720px) { .lightbox__nav { width: 40px; height: 40px; } .lightbox__nav svg { width: 18px; height: 18px; } }
@media (prefers-reduced-motion: reduce) { .gallery__link img { transition: none; } }

/* Problems */
.problems__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.problem-card { background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--amber); border-radius: var(--r); padding: 1.5rem; }
.problem-card__title { font-size: 1.15rem; margin-bottom: .75rem; }
.problem-card__why, .problem-card__needs { margin: 0 0 .6rem; color: var(--ink-70); font-size: .95rem; }
.problem-card__k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-55); font-weight: 700; margin-bottom: .1rem; }

/* Process four-up + provide/does keys */
.process__steps--four { grid-template-columns: repeat(4, 1fr); }
.process__k { display: block; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-55); font-weight: 700; margin-top: .4rem; }
.process__step-body--out { color: var(--navy); font-weight: 600; margin-top: .5rem; }
@media (max-width: 1024px) { .process__steps--four { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .process__steps--four { grid-template-columns: 1fr; } }

/* Vehicle card extras */
.vehicle-card__k { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-55); font-weight: 700; margin: .5rem 0 .25rem; }
.vehicle-card__list { list-style: none; margin: 0 0 .75rem; padding: 0; display: grid; gap: .3rem; }
.vehicle-card__list li { font-size: .9rem; color: var(--ink-70); padding-left: 1rem; position: relative; }
.vehicle-card__list li::before { content: "•"; position: absolute; left: 0; color: var(--amber-600); }
.vehicle-card__note { font-size: .88rem; color: var(--ink-55); font-style: italic; margin: 0 0 1rem; }

/* Logistics list */
.logistics__list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1rem 2rem; }
.logistics__list li { display: flex; gap: .6rem; align-items: flex-start; color: rgba(255,255,255,.85); }
.logistics__check { color: var(--amber); flex: 0 0 auto; margin-top: 2px; }

/* Pricing factor list + compare */
.pricing__factor-list { columns: 2; column-gap: 2.5rem; list-style: none; margin: 0 0 2rem; padding: 0; }
.pricing__factor-list li { break-inside: avoid; padding: .5rem 0 .5rem 1.5rem; position: relative; border-bottom: 1px solid var(--line); color: var(--ink-70); }
.pricing__factor-list li::before { content: ""; position: absolute; left: 0; top: .95rem; width: 8px; height: 8px; border-radius: 2px; background: var(--amber); }
.pricing__compare { background: var(--amber-050); border: 1px solid #f3dca5; border-radius: var(--r); padding: 1.5rem; margin-bottom: 1.5rem; }
.pricing__compare-title { font-size: 1.1rem; margin-bottom: .5rem; }
.pricing__compare-list { margin: .5rem 0 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.pricing__compare-list li { break-inside: avoid; color: var(--ink-70); }
@media (max-width: 640px) { .pricing__factor-list, .pricing__compare-list { columns: 1; } }

/* Inclusions three-up */
.inclusions__cols--three { grid-template-columns: repeat(3, 1fr); }
.inclusions__col--no { background: #fff; }
.inclusions__col--no li::before, .inclusions__col--depends li::before { content: ""; }
@media (max-width: 900px) { .inclusions__cols--three { grid-template-columns: 1fr; } }

/* Compare */
.compare__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-bottom: 1.5rem; }
.compare__opt { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; }
.compare__opt:first-child { border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-050); }
.compare__opt-title { font-size: 1.1rem; margin-bottom: .5rem; }
.compare__opt p { color: var(--ink-70); margin: 0; }
.compare__factors-label { font-weight: 700; margin-bottom: .5rem; }
.compare__factors { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.compare__factors li { background: var(--surface-3); border-radius: var(--r-pill); padding: .3rem .9rem; font-size: .85rem; color: var(--ink-70); }

/* Case study wide */
.case-card--wide { max-width: 780px; margin: 0 auto; }
.case-card__verify { color: var(--ink-55); font-size: .85rem; margin: 1rem 0 0; padding-top: 1rem; border-top: 1px dashed var(--line-strong); }
.cases__cta { text-align: center; margin-top: 2rem; }

/* Planner */
.planner__widget { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); max-width: 900px; margin: 0 auto; }
.planner__controls { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.25rem; }
.planner__widget .field__label { color: rgba(255,255,255,.85); }
.planner__widget .field__select, .planner__widget .stepper__input { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); color: #fff; }
.planner__widget .field__select option { color: #111; }
/* The stepper track must go dark inside the navy planner card, or its white
   number sits on the base white track and disappears (same fix as recommender). */
.planner__widget .stepper { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.planner__widget .stepper__input { background: transparent; }
.planner__widget .stepper__btn { background: rgba(255,255,255,.14); color: #fff; }
.planner__widget .stepper__btn:hover { background: rgba(255,255,255,.26); }
.planner__result { margin-top: 1.5rem; min-height: 2rem; }
.planner__hint { color: rgba(255,255,255,.6); margin: 0; }
.planner__match { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.4); border-radius: var(--r); padding: 1.25rem 1.5rem; }
.planner__k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); margin-bottom: .35rem; }
.planner__match-name { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; }
.planner__match-note { color: rgba(255,255,255,.8); margin: .4rem 0 0; }
.planner__timeline ul { list-style: none; margin: .25rem 0 1rem; padding: 0; display: grid; gap: .4rem; }
.planner__timeline li { color: rgba(255,255,255,.85); padding-left: 1rem; position: relative; }
.planner__timeline li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.planner__timeline strong { color: #fff; }
.planner__q li::before { background: rgba(255,255,255,.4); }
.planner__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; margin: 1.5rem 0 0; }
.planner__help { color: var(--amber); }
/* Keep the link readable on hover: the global a:hover flips colour to navy,
   which made this amber link vanish into the navy planner card. */
.planner__help:hover, .planner__help:focus { color: #fff; }

/* Related */
.related__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.related__col-title { font-size: 1.05rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--amber); display: inline-block; }
.related__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.related__list--links a { color: var(--navy); text-decoration: none; font-weight: 600; display: inline-flex; align-items: center; gap: .35rem; }
.related__list--links a:hover { color: var(--amber-600); }
.related__label { display: block; font-weight: 600; color: var(--ink); }
.related__note { display: block; font-size: .88rem; color: var(--ink-55); }
.related__prompt { margin-top: .75rem; }

/* Field help inside forms */
.fqe-hint--field { margin: .1rem 0 0; font-size: .82rem; color: var(--ink-55); }

/* Service + Location specifics */
.hero__local-link { margin: 1rem 0 0; }
.hero__local-link a { color: var(--amber); font-weight: 600; text-decoration: none; }
.hero__local-link a:hover { color: #fff; text-decoration: underline; }
.service-location .areas__list li span { color: var(--ink-70); }
.routes { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.routes__title { font-size: 1.05rem; margin-bottom: .75rem; }
.routes__list { list-style: none; margin: 0 0 .75rem; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: .5rem; }
.routes__list li { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--r-sm); padding: .6rem .85rem; font-size: .92rem; color: var(--ink-70); }
.routes__note { color: var(--ink-55); font-size: .85rem; margin: 0; }

/* Scenario cards (common local journeys) */
.scenario__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.scenario-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.scenario-card__text { margin: 0; color: var(--ink); font-weight: 500; }
.scenario-card__cta { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-display); font-weight: 700; color: var(--navy); text-decoration: none; }
.scenario-card__cta:hover { color: var(--amber-600); }

/* Service-area check */
.area-check { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; margin-bottom: 2rem; }
.area-check__row { display: flex; gap: .6rem; flex-wrap: wrap; margin-top: .4rem; }
.area-check__row .field__input { flex: 1 1 260px; }
.area-check__result { margin: .85rem 0 0; font-size: .95rem; }
.area-check__result.is-yes { color: var(--success); font-weight: 600; }
.area-check__result.is-maybe { color: var(--ink-70); }

/* Things to confirm */
.confirm__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.confirm__list li { display: flex; gap: .55rem; align-items: flex-start; color: var(--ink-70); }
.confirm__list svg { color: var(--amber-600); flex: 0 0 auto; margin-top: 2px; }

/* Complex-journey escape link */
.fqe-complex { margin: .75rem 0 0; text-align: center; }
.fqe-complex__link { font-size: .9rem; }

/* ==========================================================================
   Fleet system
   ========================================================================== */
.fleet-hero { background: var(--navy); color: #fff; }
.fleet-hero .hero__title, .fleet-hero .hero__eyebrow { color: #fff; }
.fleet-hero .hero__eyebrow { color: var(--amber); }
.fleet-hero .hero__sub { color: rgba(255,255,255,.72); }
.fleet-hero .container { padding-block: clamp(2.5rem, 5vw, 4rem); }
/* Hub hero two-column: keep the content readable-width beside the visual. */
.fleet-hero .hero__inner { align-items: center; }
.fleet-hero .hero__content { min-width: 0; }

/* Hub hero visual (fleet, pricing): a real photo when set, else a branded panel
   so the right column is never an empty box. */
.hero__visual { position: relative; z-index: 1; min-width: 0; align-self: stretch; display: flex; }
.hero__visual-img { width: 100%; height: 100%; min-height: 320px; max-height: 460px; object-fit: cover; border-radius: var(--r-lg); border: 1px solid rgba(255,255,255,.12); box-shadow: var(--shadow-lg); }
.hero__panel { position: relative; width: 100%; display: flex; flex-direction: column; justify-content: center; gap: 1.6rem; padding: clamp(1.75rem, 3vw, 2.75rem); min-height: 340px; background: linear-gradient(160deg, var(--navy-600), rgba(11,22,41,.35)); border: 1px solid rgba(255,255,255,.10); border-radius: var(--r-lg); overflow: hidden; }
.hero__panel::before { content: ""; position: absolute; top: -32%; right: -18%; width: 320px; height: 320px; background: radial-gradient(circle, rgba(245,158,11,.20), transparent 66%); pointer-events: none; }
.hero__panel-icon { position: relative; display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 15px; background: rgba(245,158,11,.14); color: var(--amber); }
.hero__panel-icon svg { width: 28px; height: 28px; }
.hero__panel-label { position: relative; margin: 0; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: 1.05rem; letter-spacing: .01em; }
.hero__panel-stats { position: relative; display: grid; gap: 1.1rem; }
.hero__stat { display: flex; flex-direction: column; gap: .12rem; padding-left: .95rem; border-left: 2px solid var(--amber); }
.hero__stat-big { font-family: var(--font-display); font-weight: 800; font-size: 1.45rem; color: #fff; line-height: 1.1; }
.hero__stat-small { font-size: .9rem; color: rgba(255,255,255,.66); }
@media (max-width: 900px) {
	.fleet-hero .hero__inner { align-items: start; }
	.hero__visual { max-width: 480px; }
	.hero__panel { min-height: 0; }
}

/* Vehicle finder */
.finder { max-width: 780px; margin: 0 auto; background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); }
.finder__count { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0 0 1rem; }
.finder__step[hidden] { display: none; }
.finder__q { color: #fff; font-size: 1.3rem; margin: 0 0 1rem; }
.finder__help { color: rgba(255,255,255,.65); font-size: .9rem; margin: .5rem 0 0; }
.finder .fqe-cards { margin: 0; }
.finder .fqe-cards__opt span { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.85); background: rgba(255,255,255,.04); }
.finder .fqe-cards__opt input:checked + span { border-color: var(--amber); background: rgba(245,158,11,.15); color: #fff; }
.finder .stepper { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.finder .stepper__input { background: transparent; color: #fff; }
.finder__nav { display: flex; gap: .75rem; margin-top: 1.5rem; }
.finder__nav .btn--amber { margin-left: auto; }
.finder__result { margin-top: 1.5rem; }
.finder__result[hidden] { display: none; }

.finder-result { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.4); border-radius: var(--r); padding: 1.5rem; }
.finder-result--complex { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.2); }
.finder-result__label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); margin-bottom: .35rem; }
.finder-result__name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: #fff; }
.finder-result__cap { color: rgba(255,255,255,.8); margin: .4rem 0 .75rem; }
.finder-result__reasons { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .4rem; }
.finder-result__reasons li { color: rgba(255,255,255,.85); padding-left: 1.1rem; position: relative; font-size: .95rem; }
.finder-result__reasons li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.finder-result__alt { background: rgba(255,255,255,.06); border-radius: var(--r-sm); padding: 1rem 1.25rem; margin: 0 0 1rem; }
.finder-result__alt strong { color: #fff; }
.finder-result__alt p { color: rgba(255,255,255,.75); margin: .25rem 0 0; font-size: .92rem; }
.finder-result__note { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0 0 1rem; }
.finder-result__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; }
.finder-result__actions .fqe-link-btn { color: var(--amber); }

/* Fit checker (category / capacity hero) */
.fit-checker { background: #fff; color: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.hero .fit-checker { box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.fit-checker__title { font-size: 1.3rem; color: var(--navy); margin: 0 0 1rem; }
.fit-checker .fqe-cards { margin: 1rem 0 0; }
.fit-result { margin-top: 1.25rem; border-radius: var(--r); padding: 1.1rem 1.25rem; }
.fit-result--yes { background: var(--success-bg); border: 1px solid #b6e6cd; }
.fit-result--space, .fit-result--up { background: var(--amber-050); border: 1px solid #f3dca5; }
.fit-result--review { background: var(--surface-2); border: 1px solid var(--line-strong); }
.fit-result__verdict { font-family: var(--font-display); font-size: 1.05rem; color: var(--navy); }
.fit-result__msg { color: var(--ink-70); margin: .35rem 0 .85rem; font-size: .95rem; }
.fit-result__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* Luggage calculator */
.luggage-calc { background: var(--navy); color: #fff; border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.5rem); }
.luggage-calc__controls { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1.25rem; }
.luggage-calc .field__label { color: rgba(255,255,255,.85); }
.luggage-calc .stepper { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.2); }
.luggage-calc .stepper__input { background: transparent; color: #fff; }
.luggage-calc__result { margin-top: 1.5rem; }
.luggage-calc__note { color: rgba(255,255,255,.6); margin: 1rem 0 0; }

/* Quick fit dl */
.quickfit { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.quickfit dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-55); font-weight: 700; }
.hero .quickfit dt { color: rgba(255,255,255,.6); }
.quickfit dd { margin: .2rem 0 0; color: var(--ink); font-weight: 500; font-size: .95rem; }
.hero .quickfit dd { color: rgba(255,255,255,.9); }

/* Oversized items */
.oversized__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.oversized__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem; }
.oversized__name { font-size: 1.05rem; margin: 0 0 .5rem; }
.oversized__flag { display: inline-block; font-size: .7rem; text-transform: uppercase; letter-spacing: .05em; background: var(--amber-050); color: var(--amber-600); border: 1px solid #f3dca5; border-radius: var(--r-pill); padding: .1rem .55rem; font-weight: 700; vertical-align: middle; }
.oversized__item p { margin: 0 0 .35rem; font-size: .9rem; color: var(--ink-70); }

/* Comfort by length */
.comfort__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.comfort__cell { border-radius: var(--r); padding: 1.25rem; display: flex; flex-direction: column; gap: .5rem; border: 1px solid var(--line); background: #fff; }
.comfort__cell--suitable { background: var(--success-bg); border-color: #b6e6cd; }
.comfort__cell--considerations { background: var(--amber-050); border-color: #f3dca5; }
.comfort__cell--another_fits { background: var(--surface-2); }
.comfort__len { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.comfort__val { font-size: .88rem; color: var(--ink-70); }
@media (max-width: 700px) { .comfort__grid { grid-template-columns: 1fr 1fr; } }

/* Features with availability statuses */
.features__groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.features__group-title { font-size: 1rem; margin-bottom: .75rem; padding-bottom: .5rem; border-bottom: 2px solid var(--amber); display: inline-block; }
.features__list { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.feature { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: .5rem .75rem; border-radius: var(--r-sm); background: #fff; border: 1px solid var(--line); }
.feature__name { font-weight: 500; }
.feature__status { font-size: .78rem; font-weight: 700; padding: .15rem .6rem; border-radius: var(--r-pill); white-space: nowrap; }
.feature--standard .feature__status { background: var(--success-bg); color: var(--success); }
.feature--select .feature__status, .feature--request .feature__status { background: var(--amber-050); color: var(--amber-600); }
.feature--confirm .feature__status { background: var(--surface-3); color: var(--ink-55); }
.feature--not_available { opacity: .6; }
.feature--not_available .feature__status { background: var(--surface-3); color: var(--ink-55); }
.fit__cta { margin-top: 1rem; }

/* ==========================================================================
   Pricing system
   ========================================================================== */
.estimator__result[hidden], .est-result[hidden] { display: none; }
.est-result { background: rgba(245,158,11,.12); border: 1px solid rgba(245,158,11,.4); border-radius: var(--r); padding: 1.5rem; }
.est-result__label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--amber); margin-bottom: .35rem; }
.est-result__range { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: #fff; }
.est-result__note { color: rgba(255,255,255,.8); margin: .5rem 0 1rem; font-size: .95rem; }
.est-result__k { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--amber); margin-bottom: .3rem; }
.est-result__assume, .est-result__vars-wrap { margin: 0 0 1rem; }
.est-result__assume ul, .est-result__vars { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.est-result__assume li, .est-result__vars li { color: rgba(255,255,255,.85); padding-left: 1.1rem; position: relative; font-size: .95rem; }
.est-result__assume li::before, .est-result__vars li::before { content: ""; position: absolute; left: 0; top: .55rem; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.est-result__assume strong { color: #fff; }
.est-result__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: .5rem; }
.est-result__actions .fqe-link-btn { color: var(--amber); }

/* Ranked price factors */
.pricing__factor--ranked { display: flex; gap: 1rem; align-items: flex-start; }
.pricing__rank { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: var(--amber); font-family: var(--font-display); font-weight: 800; display: inline-grid; place-items: center; }
.pricing__provide { margin-top: .4rem !important; font-size: .88rem; color: var(--ink-55) !important; }

/* Quote-comparison + value tools */
.compare-tool { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem; margin-top: 1.5rem; }
.compare-tool__result { margin-top: 1.25rem; }
.compare-tool__result[hidden] { display: none; }
.compare-tool__lead { font-weight: 600; color: var(--ink); }
.compare-tool__qs { list-style: none; margin: .5rem 0 0; padding: 0; display: grid; gap: .5rem; }
.compare-tool__qs li { display: flex; gap: .55rem; align-items: flex-start; color: var(--ink-70); padding-left: 1.1rem; position: relative; }
.compare-tool__qs li::before { content: ""; position: absolute; left: 0; top: .6rem; width: 7px; height: 7px; border-radius: 2px; background: var(--amber); }
.compare-tool__vpp { margin: .5rem 0 0; color: var(--ink); }
.compare-tool__vpp strong { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.vpp-note { color: var(--ink-55); font-size: .85rem; }

/* ==========================================================================
   Safety & Trust system
   ========================================================================== */
.verify-panel { background: #fff; color: var(--ink); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.hero .verify-panel { box-shadow: 0 24px 60px rgba(0,0,0,.35); }
.verify-panel__title { font-size: 1.2rem; color: var(--navy); margin: 0 0 1rem; }
.verify-panel__list { margin: 0; display: grid; gap: .6rem; }
.verify-panel__list > div { display: flex; justify-content: space-between; gap: 1rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.verify-panel__list > div:last-child { border-bottom: 0; padding-bottom: 0; }
.verify-panel__list dt { color: var(--ink-55); font-size: .82rem; margin: 0; }
.verify-panel__list dd { margin: 0; text-align: right; font-weight: 600; color: var(--ink); }
.verify-panel__note { color: var(--ink-55); font-size: .9rem; margin: 0; }

/* Credential card */
.credential { background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--amber); border-radius: var(--r); padding: 1.5rem; max-width: 640px; }
.credential--pending { border-left-color: var(--line-strong); }
.credential__title { font-size: 1.2rem; margin: 0 0 1rem; }
.credential__fields { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.5rem; margin: 0; }
.credential__fields dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-55); font-weight: 700; }
.credential__fields dd { margin: .1rem 0 0; color: var(--ink); font-weight: 500; }
.credential__status { color: var(--success) !important; font-weight: 700; }
.credential__verify { display: inline-flex; margin-top: 1rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.credential__verify:hover { color: var(--amber-600); }
.credential__note { color: var(--ink-55); font-size: .88rem; }
.credential__jurisdiction { margin-top: 1.25rem; color: var(--ink-70); font-size: .95rem; max-width: 640px; }
@media (max-width: 480px) { .credential__fields { grid-template-columns: 1fr; } }

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

/* ==========================================================================
   Blog — the Fox Bus Journal (listing + article)
   ========================================================================== */

.section__eyebrow { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--amber-600); margin: 0 0 .5rem; }
.section__head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; text-align: left; margin-inline: 0; }
.section__head--row .section__title { text-align: left; }

/* --- Listing hero + inline subscribe --- */
.blog-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(2.75rem, 6vw, 5rem); }
.blog-hero__intro .hero__title { max-width: 18ch; }
.blog-hero__intro .hero__sub { max-width: 52ch; margin-bottom: 0; }

.blog-hero--compact { padding-block: clamp(2rem, 4vw, 3.25rem); }
.blog-hero--compact .container { position: relative; z-index: 1; }
.blog-hero--compact .hero__title { max-width: 24ch; margin-bottom: .75rem; }
.blog-hero--compact .hero__sub { margin-bottom: 0; }
.blog-hero--compact .hero__sub p { margin: 0; }

.blog-hero__subscribe,
.subscribe-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2rem); }
.blog-hero__subscribe { position: relative; z-index: 2; }
.subscribe-card__title { color: #fff; font-size: 1.35rem; font-weight: 800; margin: 0 0 .5rem; }
.blog-hero__subscribe .subscribe-card__text { color: rgba(255,255,255,.72); font-size: .98rem; margin: 0 0 1.25rem; }

/* Subscribe form (shared: hero, inline, footer) */
.fqe-subscribe { display: flex; flex-wrap: wrap; gap: .6rem; }
.fqe-subscribe__input { flex: 1 1 12rem; min-width: 0; height: 52px; padding: 0 1rem; border-radius: var(--r-sm); border: 1px solid var(--line-strong); background: #fff; color: var(--ink); font: inherit; }
.fqe-subscribe__input:focus-visible { outline: 3px solid var(--focus); outline-offset: 1px; border-color: var(--focus); }
.fqe-subscribe__btn { flex: 0 0 auto; }
.fqe-subscribe__result { flex: 1 0 100%; margin: .35rem 0 0; font-size: .92rem; min-height: 1.2em; }
.fqe-subscribe__result.is-success { color: #7ee2b8; }
.fqe-subscribe__result.is-error { color: #ffb4ab; }

/* --- Foundational (featured) guides --- */
.blog-featured { background: var(--surface-2); }
.blog-featured__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }

/* --- Post cards --- */
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.blog-card[hidden] { display: none; }
.blog-card__media { display: block; aspect-ratio: 16 / 10; background: var(--surface-3); overflow: hidden; }
.blog-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--line-strong); }
.blog-card__placeholder svg { width: 40px; height: 40px; }
.blog-card__body { display: flex; flex-direction: column; gap: .6rem; padding: clamp(1.1rem, 2vw, 1.5rem); flex: 1 1 auto; }
.blog-card__cat { align-self: flex-start; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 700; color: var(--amber-600); text-decoration: none; }
.blog-card__cat:hover { color: var(--navy); }
.blog-card__title { font-size: 1.22rem; line-height: 1.3; font-weight: 700; margin: 0; }
.blog-card__title a { color: var(--ink); text-decoration: none; }
.blog-card__title a:hover { color: var(--amber-600); }
.blog-card__excerpt { color: var(--ink-70); font-size: .96rem; margin: 0; }
.blog-card__meta { margin: auto 0 0; padding-top: .4rem; color: var(--ink-55); font-size: .84rem; display: flex; align-items: center; gap: .5rem; }
.blog-card__dot { color: var(--line-strong); }
.blog-card--featured .blog-card__title { font-size: 1.4rem; }

/* --- Topic filter --- */
.topic-filter { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: clamp(1.5rem, 3vw, 2.25rem); }
.topic-filter__pill { display: inline-flex; align-items: center; height: 40px; padding: 0 1.1rem; border-radius: var(--r-pill); border: 1px solid var(--line-strong); background: #fff; color: var(--ink-70); font-size: .92rem; font-weight: 600; text-decoration: none; cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.topic-filter__pill:hover { border-color: var(--navy); color: var(--navy); }
.topic-filter__pill.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

/* --- Grid + pagination --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); }
.blog-grid__empty { margin-top: 1.5rem; color: var(--ink-55); }
.blog-pagination { margin-top: clamp(2rem, 4vw, 3rem); }
.blog-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 .75rem; border: 1px solid var(--line-strong); border-radius: var(--r-sm); color: var(--ink-70); text-decoration: none; font-weight: 600; }
.blog-pagination .page-numbers.current { background: var(--navy); border-color: var(--navy); color: #fff; }
.blog-pagination .page-numbers:hover:not(.current) { border-color: var(--navy); color: var(--navy); }
.blog-pagination .nav-links { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }

/* --- Listing bottom CTA --- */
.blog-cta { background: var(--navy); color: #fff; }
.blog-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; }
.blog-cta__title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 .5rem; }
.blog-cta__text { color: rgba(255,255,255,.74); max-width: 52ch; margin: 0; }
.blog-cta__actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.blog-cta__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.blog-cta__actions .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }

/* ==========================================================================
   Article
   ========================================================================== */

.blog-article__hero { background: var(--navy); color: #fff; padding-block: clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.blog-article__hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 3px; background: linear-gradient(90deg, var(--amber), transparent); }
.blog-article__cat { display: inline-block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--amber); text-decoration: none; margin-bottom: 1rem; }
.blog-article__cat:hover { color: #fff; }
.blog-article__title { color: #fff; font-size: clamp(2rem, 4.4vw, 3.2rem); font-weight: 800; letter-spacing: -.015em; line-height: 1.1; margin: 0 0 1rem; }
.blog-article__lead { color: rgba(255,255,255,.8); font-size: 1.2rem; line-height: 1.5; max-width: 60ch; margin: 0 0 1.5rem; }
.blog-article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; color: rgba(255,255,255,.62); font-size: .92rem; }
.blog-article__by { color: rgba(255,255,255,.82); font-weight: 600; }

.blog-article__feature { margin-top: clamp(-2rem, -4vw, -3rem); position: relative; z-index: 2; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.blog-article__feature-img { width: 100%; height: auto; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block; }

.blog-article__layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; padding-block: clamp(2rem, 5vw, 3.5rem); }
.blog-article__main { max-width: 720px; }

/* --- Sticky TOC --- */
.blog-toc { position: sticky; top: calc(var(--header-h) + 1rem); align-self: start; }
.blog-toc[hidden] { display: none; }
.blog-toc__inner { border-left: 2px solid var(--line); padding-left: 1.25rem; }
.blog-toc__heading { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 700; color: var(--ink-55); margin: 0 0 1rem; }
.blog-toc__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .1rem; counter-reset: toc; }
.blog-toc__link { display: block; padding: .4rem 0 .4rem .1rem; color: var(--ink-70); text-decoration: none; font-size: .92rem; line-height: 1.35; border-left: 2px solid transparent; margin-left: -1.35rem; padding-left: 1.25rem; transition: color .15s ease, border-color .15s ease; }
.blog-toc__link:hover { color: var(--navy); }
.blog-toc__link.is-active { color: var(--amber-600); border-color: var(--amber); font-weight: 600; }

/* --- Article content typography --- */
.blog-content { font-size: 1.075rem; line-height: 1.75; color: var(--ink-70); }
.blog-content > h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); font-weight: 800; color: var(--ink); line-height: 1.2; margin: 2.5rem 0 1rem; scroll-margin-top: calc(var(--header-h) + 1.5rem); letter-spacing: -.01em; }
.blog-content > h2:first-child { margin-top: 0; }
.blog-content > h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); margin: 2rem 0 .75rem; }
.blog-content p { margin: 0 0 1.25rem; }
.blog-content a { color: var(--amber-600); text-underline-offset: 2px; }
.blog-content a:hover { color: var(--navy); }
.blog-content ul, .blog-content ol { margin: 0 0 1.5rem; padding-left: 1.3rem; display: flex; flex-direction: column; gap: .6rem; }
.blog-content li { padding-left: .3rem; }
.blog-content ul li::marker { color: var(--amber); }
.blog-content blockquote { margin: 1.75rem 0; padding: 1rem 1.5rem; border-left: 4px solid var(--amber); background: var(--surface-2); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--ink); font-size: 1.1rem; }
.blog-content img { max-width: 100%; height: auto; border-radius: var(--r); }

/* --- FAQ accordion --- */
.blog-faq { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.blog-faq__title { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.8rem); font-weight: 800; color: var(--ink); margin: 0 0 1.25rem; }
.blog-faq__list { display: flex; flex-direction: column; gap: .75rem; }
.blog-faq__item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; }
.blog-faq__q { cursor: pointer; padding: 1.1rem 1.25rem; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.blog-faq__q::-webkit-details-marker { display: none; }
.blog-faq__q::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--amber-600); line-height: 1; flex: 0 0 auto; }
.blog-faq__item[open] .blog-faq__q::after { content: "–"; }
.blog-faq__item[open] .blog-faq__q { border-bottom: 1px solid var(--line); }
.blog-faq__a { padding: 1rem 1.25rem 1.25rem; color: var(--ink-70); line-height: 1.65; }
.blog-faq__a p { margin: 0; }

/* --- Author box --- */
.author-box { display: flex; gap: 1.25rem; align-items: flex-start; margin-top: clamp(2.5rem, 5vw, 3.5rem); padding: clamp(1.25rem, 3vw, 1.75rem); background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); }
.author-box__avatar { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--amber); }
.author-box__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); margin: 0 0 .4rem; }
.author-box__bio { color: var(--ink-70); font-size: .96rem; line-height: 1.6; margin: 0 0 1rem; }
.author-box__cta { margin: 0; }

/* --- Inline subscribe card (article, light context) --- */
.subscribe-card--inline { background: var(--navy); border-color: var(--navy); margin-top: clamp(2rem, 4vw, 3rem); }
.subscribe-card--inline .subscribe-card__text { color: rgba(255,255,255,.74); font-size: .98rem; margin: 0 0 1.25rem; }

/* --- Related --- */
.blog-related { background: var(--surface-2); }

/* --- Responsive --- */
@media (max-width: 980px) {
	.blog-article__layout { grid-template-columns: 1fr; }
	.blog-toc { position: static; top: auto; margin-bottom: 1.5rem; }
	.blog-toc__inner { border-left: 0; border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.25rem; background: var(--surface-2); }
	.blog-toc__link { margin-left: 0; padding-left: .75rem; }
}
@media (max-width: 860px) {
	.blog-hero__inner { grid-template-columns: 1fr; }
	.blog-featured__grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
	.section__head--row { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
	.blog-featured__grid, .blog-grid { grid-template-columns: 1fr; }
	.blog-cta__inner { flex-direction: column; align-items: flex-start; }
	.fqe-subscribe__btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	.blog-card { transition: none; }
	.blog-card:hover { transform: none; }
}

/* --------------------------------------------------------------------------
   Blog redesign — hero (search + stats), listing grid + sidebar, article
   3-column, TL;DR callout, newsletter band. Extends the base blog styles.
   -------------------------------------------------------------------------- */

/* Listing hero — centered, with search + honest stats */
.blog-hero--home { text-align: center; padding-block: clamp(2.75rem, 6vw, 4.75rem); }
.blog-hero__wrap { position: relative; z-index: 1; max-width: 820px; margin-inline: auto; }
.blog-hero--home .hero__eyebrow { justify-content: center; }
.blog-hero__title { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.06; letter-spacing: -.02em; margin: .5rem 0 1rem; }
.blog-hero__sub { color: rgba(255,255,255,.74); font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.55; max-width: 60ch; margin: 0 auto 1.75rem; }

.blog-search { display: flex; gap: .5rem; max-width: 560px; margin: 0 auto; }
.blog-search__input { flex: 1 1 auto; min-width: 0; height: 54px; padding: 0 1.1rem; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); color: #fff; font: inherit; }
.blog-search__input::placeholder { color: rgba(255,255,255,.55); }
.blog-search__input:focus-visible { outline: 3px solid var(--amber); outline-offset: 1px; border-color: var(--amber); background: rgba(255,255,255,.12); }
.blog-search__btn { flex: 0 0 auto; height: 54px; gap: .5rem; }

.blog-stats { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.5rem, 5vw, 3.5rem); margin: 2.25rem 0 0; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.12); }
.blog-stats__item { text-align: center; }
.blog-stats__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.1rem); color: var(--amber); line-height: 1; margin: 0; }
.blog-stats__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin: .4rem 0 0; }

/* Listing layout: main + sidebar */
.blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.blog-layout__main { min-width: 0; }
.blog-layout .blog-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }

/* Topic filter as underline tabs (with counts) */
.topic-filter--tabs { gap: .4rem .6rem; border-bottom: 1px solid var(--line); margin-bottom: clamp(1.5rem, 3vw, 2rem); }
.topic-filter--tabs .topic-filter__pill { height: auto; border: 0; background: none; padding: .55rem .3rem; margin-bottom: -1px; border-bottom: 2px solid transparent; border-radius: 0; color: var(--ink-55); }
.topic-filter--tabs .topic-filter__pill:hover { color: var(--navy); background: none; }
.topic-filter--tabs .topic-filter__pill.is-active { background: none; color: var(--navy); border-bottom-color: var(--amber); }
.topic-filter__count { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 18px; padding: 0 .3rem; margin-left: .35rem; border-radius: var(--r-pill); background: var(--surface-3); color: var(--ink-55); font-size: .68rem; font-weight: 700; vertical-align: middle; }
.topic-filter--tabs .topic-filter__pill.is-active .topic-filter__count { background: var(--amber); color: var(--navy); }

/* Sidebar cards */
.blog-side { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: calc(var(--header-h) + 1rem); }
.side-card { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.5rem; background: #fff; }
.side-card__heading { font-family: var(--font-display); font-size: 1.05rem; font-weight: 800; color: var(--ink); margin: 0 0 1rem; }
.side-card__eyebrow { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--amber); margin: 0 0 .35rem; }
.side-card__title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; color: var(--ink); margin: 0 0 .5rem; line-height: 1.2; }
.side-card__text { font-size: .92rem; line-height: 1.55; color: var(--ink-70); margin: 0 0 1.1rem; }

.side-card--cta { background: var(--navy); border-color: var(--navy); color: #fff; }
.side-card--cta .side-card__title { color: #fff; }
.side-card--cta .side-card__text { color: rgba(255,255,255,.75); }
.side-card--cta .btn { width: 100%; justify-content: center; }

.side-card--author { text-align: center; }
.author-card__avatar { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--navy); color: var(--amber); margin: 0 0 .75rem; }
.author-card__avatar svg { width: 30px; height: 30px; }
.author-card__name { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: var(--ink); margin: 0; }
.author-card__role { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--amber-600); margin: .25rem 0 .75rem; }
.author-card__bio { font-size: .9rem; line-height: 1.55; color: var(--ink-70); margin: 0 0 1rem; }
.author-card__social { display: flex; justify-content: center; gap: .5rem; }
.author-card__social a { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line-strong); color: var(--ink-70); }
.author-card__social a:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.author-card__social svg { width: 16px; height: 16px; }

.side-card--sub { background: var(--surface-2); }

/* Popular guides list */
.side-pop { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.side-pop__item { display: flex; gap: .85rem; align-items: baseline; }
.side-pop__n { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--amber); flex: 0 0 auto; }
.side-pop__body { display: flex; flex-direction: column; gap: .15rem; }
.side-pop__title { font-weight: 600; font-size: .95rem; line-height: 1.35; color: var(--ink); text-decoration: none; }
.side-pop__title:hover { color: var(--amber-600); }
.side-pop__date { font-size: .78rem; color: var(--ink-55); }

/* Topic tag pills */
.side-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.side-tag { display: inline-flex; align-items: center; height: 32px; padding: 0 .8rem; border-radius: var(--r-pill); background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-70); font-size: .82rem; font-weight: 600; text-decoration: none; }
.side-tag:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Newsletter band */
.blog-news { background: var(--navy); color: #fff; }
.blog-news__inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.blog-news__title { color: #fff; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1.08; margin: 0 0 .6rem; }
.blog-news__text { color: rgba(255,255,255,.72); margin: 0; max-width: 46ch; }
.blog-news__form .fqe-subscribe__input { height: 54px; }

/* Article: centered navy hero + 3-column body + TL;DR */
.blog-article__hero-inner { text-align: center; }
.blog-article__hero-inner .blog-article__title,
.blog-article__hero-inner .blog-article__lead { margin-inline: auto; }
.blog-article__hero-inner .blog-article__meta { justify-content: center; }
.blog-single .blog-article__feature { margin-top: clamp(-2rem, -4vw, -3rem); }

.blog-single .blog-article__layout { grid-template-columns: 230px minmax(0, 1fr) 320px; }
.blog-article__aside { min-width: 0; }

.blog-tldr { border: 1px solid rgba(245,158,11,.35); background: rgba(245,158,11,.08); border-left: 4px solid var(--amber); border-radius: var(--r); padding: 1.1rem 1.4rem; margin: 0 0 2rem; }
.blog-tldr__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; font-weight: 800; color: var(--amber-600); margin: 0 0 .4rem; }
.blog-tldr__text { font-size: 1.05rem; line-height: 1.55; color: var(--ink); margin: 0; }

/* Blog redesign — responsive */
@media (max-width: 1080px) {
	.blog-single .blog-article__layout { grid-template-columns: 220px minmax(0, 1fr); }
	.blog-article__aside { grid-column: 1 / -1; }
	.blog-article__aside .blog-side { position: static; top: auto; display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; }
}
@media (max-width: 900px) {
	.blog-layout { grid-template-columns: 1fr; }
	.blog-side { position: static; top: auto; display: grid; grid-template-columns: repeat(2, 1fr); align-items: start; }
	.blog-news__inner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
	.blog-single .blog-article__layout { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
	.blog-search { flex-direction: column; }
	.blog-search__btn { width: 100%; }
	.blog-side, .blog-article__aside .blog-side { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Article byline (Written by / Reviewed by) - E-E-A-T trust card
   ========================================================================== */

.article-byline { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.75rem; margin: 2.75rem 0 0; padding: 1.5rem 1.75rem; background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-lg); }
.article-byline__party { display: flex; align-items: center; gap: .9rem; }
.article-byline__party + .article-byline__party { border-left: 1px solid var(--line); padding-left: 1.75rem; }
.article-byline__avatar { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; }
.article-byline__avatar--verified { background: var(--success); }
.article-byline__meta { display: grid; gap: .1rem; min-width: 0; }
.article-byline__label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--ink-55); }
.article-byline__name { font-family: var(--font-display); font-weight: 700; color: var(--navy); line-height: 1.25; }
.article-byline__role { font-size: .85rem; color: var(--ink-70); }
.article-byline__role a { color: var(--amber-600); font-weight: 600; text-decoration: none; }
.article-byline__role a:hover { text-decoration: underline; }
@media (max-width: 560px) {
	.article-byline { grid-template-columns: 1fr; gap: 1.25rem; }
	.article-byline__party + .article-byline__party { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 1.25rem; }
}

/* ==========================================================================
   Comments (branded, moderated) - list + form
   ========================================================================== */

.comments-area { max-width: 760px; margin: 0 auto; }
.comments-title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--navy); margin: 0 0 1.5rem; }
.comment-list { list-style: none; margin: 0 0 2.5rem; padding: 0; display: grid; gap: 1.25rem; }
.comment-list .children { list-style: none; margin: 1.25rem 0 0; padding: 0 0 0 1.5rem; border-left: 2px solid var(--line); display: grid; gap: 1.25rem; }
.comment-body { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r); padding: 1.25rem 1.5rem; }
.comment-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.comment-avatar img { border-radius: 50%; display: block; }
.comment-ident { display: grid; gap: .1rem; }
.comment-author { font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.comment-date { font-size: .8rem; color: var(--ink-55); }
.comment-awaiting { font-size: .85rem; color: var(--amber-600); font-weight: 600; margin: 0 0 .6rem; }
.comment-content { color: var(--ink); }
.comment-content p { margin: 0 0 .75rem; }
.comment-content p:last-child { margin-bottom: 0; }
.comment-reply { display: inline-block; margin-top: .75rem; }
.comment-reply a { font-family: var(--font-display); font-weight: 700; font-size: .88rem; color: var(--navy); text-decoration: none; }
.comment-reply a:hover { color: var(--amber-600); }
.comments-closed { color: var(--ink-55); font-style: italic; margin: 0 0 2rem; }
.comment-list .pingback, .comment-list .trackback { font-size: .9rem; color: var(--ink-70); }

/* Respond / form */
.comment-respond { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.5rem, 3vw, 2.25rem); box-shadow: var(--shadow-sm); }
.comment-respond__title { font-family: var(--font-display); font-size: clamp(1.3rem, 2.8vw, 1.6rem); color: var(--navy); margin: 0 0 1.25rem; }
.comment-form__notes { color: var(--ink-70); font-size: .92rem; margin: 0 0 1.25rem; }
.comment-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.25rem; }
.comment-form__notes, .comment-form-comment, .comment-form-cookies-consent, .form-submit, .logged-in-as, .must-log-in { grid-column: 1 / -1; }
.comment-form__field { display: grid; gap: .4rem; margin: 0; }
.comment-form label { font-weight: 600; font-size: .92rem; color: var(--ink); }
.comment-form .req { color: var(--amber-600); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form textarea {
	width: 100%; max-width: 100%; font: inherit; font-size: 1rem; color: var(--navy);
	background: var(--surface-2); border: 1.5px solid var(--line); border-radius: var(--r-sm);
	padding: .7rem .9rem; min-height: 48px;
}
.comment-form textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.comment-form input:focus, .comment-form textarea:focus { outline: 3px solid var(--amber); outline-offset: 2px; border-color: var(--amber); }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: .55rem; }
.comment-form-cookies-consent input { margin-top: .25rem; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--amber); }
.comment-form-cookies-consent label { font-weight: 400; color: var(--ink-70); font-size: .9rem; }
.comment-form__submit { justify-self: start; }
@media (max-width: 560px) {
	.comment-form { grid-template-columns: 1fr; }
	.comment-form__submit { width: 100%; }
}

/* ==========================================================================
   Floating contact dock (chat launcher → WhatsApp / Call / Quote)
   ========================================================================== */

.contact-dock { position: fixed; right: clamp(1rem, 2.5vw, 1.75rem); bottom: clamp(1rem, 2.5vw, 1.75rem); z-index: 940; }

.contact-dock__toggle {
	position: relative;
	display: flex; align-items: center; justify-content: center;
	width: 60px; height: 60px; border-radius: 50%;
	border: none; cursor: pointer;
	background: var(--amber); color: var(--navy);
	box-shadow: var(--shadow-lg);
	transition: transform .18s ease, background .18s ease;
}
.contact-dock__toggle:hover { background: var(--amber-600); transform: translateY(-2px); }
.contact-dock__toggle:active { transform: translateY(0); }
.contact-dock__toggle:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; }
.contact-dock__toggle svg { width: 26px; height: 26px; }
.contact-dock__toggle-icon { display: inline-flex; }
.contact-dock__toggle-icon--close { display: none; }
.contact-dock.is-open .contact-dock__toggle { background: var(--navy); color: #fff; }
.contact-dock.is-open .contact-dock__toggle-icon--open { display: none; }
.contact-dock.is-open .contact-dock__toggle-icon--close { display: inline-flex; }

/* Gentle attention pulse (drops entirely under reduced-motion). */
.contact-dock__toggle::after {
	content: ""; position: absolute; inset: 0; border-radius: 50%;
	box-shadow: 0 0 0 0 rgba(245, 158, 11, .5);
	animation: dockPulse 2.6s ease-out infinite;
}
.contact-dock.is-open .contact-dock__toggle::after { animation: none; }
@keyframes dockPulse {
	0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, .5); }
	70%, 100% { box-shadow: 0 0 0 16px rgba(245, 158, 11, 0); }
}

.contact-dock__panel {
	position: absolute; bottom: calc(100% + 14px); right: 0;
	width: 320px; max-width: calc(100vw - 2rem);
	max-height: calc(100vh - var(--header-h) - 90px); overflow-y: auto;
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
	box-shadow: var(--shadow-lg); padding: 1rem;
	animation: dockIn .18s ease;
}
@keyframes dockIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.contact-dock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: .25rem; }
.contact-dock__title { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; color: var(--ink); margin: 0; }
.contact-dock__close { display: inline-flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: none; background: var(--surface-2); border-radius: 50%; color: var(--ink-70); cursor: pointer; transition: background .15s ease, color .15s ease; }
.contact-dock__close:hover { background: var(--surface-3); color: var(--ink); }
.contact-dock__close:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.contact-dock__intro { color: var(--ink-55); font-size: .9rem; margin: 0 0 .85rem; }

.contact-dock__actions { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .55rem; }
.contact-dock__action { display: flex; align-items: center; gap: .85rem; padding: .7rem .8rem; border: 1px solid var(--line); border-radius: var(--r); text-decoration: none; background: #fff; transition: border-color .15s ease, background .15s ease, transform .15s ease; }
.contact-dock__action:hover { border-color: var(--line-strong); background: var(--surface-2); transform: translateX(2px); }
.contact-dock__action:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; }
.contact-dock__ico { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; }
.contact-dock__action--wa .contact-dock__ico { background: #25d366; color: #fff; }
.contact-dock__action--call .contact-dock__ico { background: var(--navy); color: var(--amber); }
.contact-dock__action--quote .contact-dock__ico { background: var(--amber); color: var(--navy); }
.contact-dock__meta { display: flex; flex-direction: column; min-width: 0; }
.contact-dock__label { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink); line-height: 1.2; }
.contact-dock__sub { color: var(--ink-55); font-size: .84rem; line-height: 1.3; }

/* On phones the chat bubble is the single contact widget; keep it clear of the
   home-indicator safe area. */
@media (max-width: 640px) {
	.contact-dock { right: 1rem; bottom: calc(1rem + env(safe-area-inset-bottom)); }
}
/* Short / landscape-phone viewports: the panel can't fit, defer to other CTAs. */
@media (max-height: 480px) { .contact-dock { display: none; } }
.fb-nav-open .contact-dock,
.fb-form-open .contact-dock { display: none; }
@media print { .contact-dock { display: none; } }

@media (prefers-reduced-motion: reduce) {
	.contact-dock__toggle { transition: none; }
	.contact-dock__toggle:hover { transform: none; }
	.contact-dock__toggle::after { animation: none; }
	.contact-dock__panel { animation: none; }
	.contact-dock__action:hover { transform: none; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */

.contact-hero .hero__inner { align-items: start; }

.contact-methods { list-style: none; margin: 1.75rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.contact-method { display: flex; gap: .9rem; align-items: flex-start; }
.contact-method__ico { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.08); color: var(--amber); }
.contact-method__ico--wa { background: #25d366; color: #fff; }
.contact-method__body { display: flex; flex-direction: column; gap: .12rem; min-width: 0; }
.contact-method__label { font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55); }
.contact-method__value { color: #fff; font-size: 1.08rem; font-weight: 600; text-decoration: none; word-break: break-word; }
a.contact-method__value:hover { color: var(--amber); }
.contact-method__value--static { font-weight: 500; color: rgba(255,255,255,.9); line-height: 1.45; }
.contact-method__link { display: inline-flex; align-items: center; gap: .35rem; margin-top: .4rem; color: var(--amber); font-weight: 600; font-size: .92rem; text-decoration: none; }
.contact-method__link:hover { color: #fff; }
.contact-method__link svg { width: 14px; height: 14px; }

.contact-social { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.12); }
.contact-social__label { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 700; color: rgba(255,255,255,.55); margin-bottom: .65rem; }
.contact-social__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem .6rem; }
.contact-social__list a { color: rgba(255,255,255,.85); text-decoration: none; font-weight: 600; font-size: .9rem; padding: .32rem .8rem; border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-pill); transition: background .15s ease, color .15s ease, border-color .15s ease; }
.contact-social__list a:hover { color: var(--navy); background: #fff; border-color: #fff; }

.contact-location { background: var(--surface-2); }
.contact-map { display: grid; grid-template-columns: 1.6fr 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); align-items: stretch; }
.contact-map__frame { width: 100%; min-height: 360px; height: 100%; border: 0; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); background: var(--surface-3); display: block; }
.contact-map__card { display: flex; flex-direction: column; justify-content: center; gap: 1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.25rem, 3vw, 2rem); }
.contact-map__addr { font-size: 1.15rem; font-weight: 600; color: var(--ink); margin: 0; line-height: 1.5; }
.contact-map__actions { display: flex; flex-wrap: wrap; gap: .6rem; }

@media (max-width: 860px) {
	.contact-map { grid-template-columns: 1fr; }
	.contact-map__frame { min-height: 300px; }
}

/* ==========================================================================
   Header & footer — upgraded
   ========================================================================== */

/* --- Utility bar --- */
.utility-bar { font-size: .84rem; }
.utility-bar__inner { min-height: 42px; padding-block: .3rem; }
.utility-bar__left, .utility-bar__right { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.utility-bar__reviews { display: inline-flex; align-items: center; gap: .4rem; color: #fff; text-decoration: none; font-weight: 600; }
.utility-bar__rating { display: inline-flex; align-items: center; gap: .12rem; font-weight: 800; color: #fff; }
.utility-bar__star { display: inline-flex; color: var(--amber); }
.utility-bar__star svg { width: 14px; height: 14px; }
.utility-bar__reviews-count { color: rgba(255,255,255,.6); font-weight: 500; }
.utility-bar__reviews:hover .utility-bar__reviews-count { color: #fff; }
.utility-bar__tagline { color: rgba(255,255,255,.7); }
.utility-bar__item { display: inline-flex; align-items: center; gap: .4rem; color: rgba(255,255,255,.72); text-decoration: none; }
.utility-bar__item svg { width: 15px; height: 15px; color: var(--amber); opacity: .9; }
.utility-bar__item.utility-bar__phone { color: #fff; font-weight: 700; }
.utility-bar__item.utility-bar__email:hover, .utility-bar__item.utility-bar__phone:hover { color: var(--amber); }
.utility-bar__wa svg { color: #25d366; opacity: 1; width: 18px; height: 18px; }

/* --- Brand --- */
.site-title { display: inline-flex; flex-direction: column; line-height: 1.05; }
.site-title__name { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; color: var(--navy); letter-spacing: -.01em; }
.site-title__tag { font-size: .64rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink-55); font-weight: 700; margin-top: 2px; }

/* --- Nav: active + dropdowns --- */
.primary-nav .menu-link--top { position: relative; }
.primary-nav .current-menu-item > .menu-link,
.primary-nav .current_page_item > .menu-link,
.primary-nav .menu-link[aria-current] { color: var(--navy); }
.primary-nav .current-menu-item > .menu-link--top::after,
.primary-nav .current_page_item > .menu-link--top::after,
.primary-nav .menu-link--top[aria-current]::after { content: ""; position: absolute; left: .7rem; right: .7rem; bottom: 3px; height: 2px; background: var(--amber); border-radius: 2px; }

.primary-nav .sub-menu--mega { width: 560px; max-width: 92vw; display: grid; grid-template-columns: 1fr 1fr; gap: 0 .35rem; padding: .6rem; }
.menu-link__meta { display: block; font-size: .78rem; color: var(--ink-55); font-weight: 400; margin-top: 1px; }
/* "All services" / "View all vehicles": navy for AA contrast; amber tint on hover. */
.primary-nav .sub-menu .menu-link--more,
.mobile-nav__menu .menu-link--more { color: var(--navy); font-weight: 700; }
.primary-nav .sub-menu .menu-link--more:hover { color: var(--navy); background: var(--amber-050); }

/* --- Mobile nav contact block --- */
.mobile-nav__contact { display: grid; gap: .15rem; margin: 1rem 0 1.5rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.mobile-nav__contact-link { display: flex; align-items: center; gap: .65rem; padding: .6rem .25rem; color: var(--ink); font-weight: 700; text-decoration: none; }
.mobile-nav__contact-link:hover { color: var(--amber-600); }
.mobile-nav__contact-link svg { color: var(--amber); width: 20px; height: 20px; }

/* --- Footer conversion band --- */
.footer-cta { background: linear-gradient(180deg, var(--navy-700), var(--navy)); color: #fff; position: relative; overflow: hidden; }
.footer-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 82% -10%, rgba(245,158,11,.14), transparent 55%); pointer-events: none; }
.footer-cta__inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding-block: clamp(2.5rem, 5vw, 3.5rem); }
.footer-cta__title { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin: 0 0 .4rem; }
.footer-cta__sub { color: rgba(255,255,255,.72); margin: 0; max-width: 50ch; }
.footer-cta__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.footer-cta__actions .btn--ghost { color: #fff; border-color: rgba(255,255,255,.3); }
.footer-cta__actions .btn--ghost:hover { background: rgba(255,255,255,.08); border-color: #fff; color: #fff; }
.footer-cta__actions .btn--ghost .foxbus-phone__icon { color: var(--amber); }

/* --- Footer business block --- */
.site-footer__blurb { font-size: .95rem; line-height: 1.6; margin: 0 0 1.5rem; max-width: 38ch; }
.footer-contact { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .8rem; }
.footer-contact__item { display: flex; gap: .7rem; align-items: flex-start; font-size: .95rem; line-height: 1.5; color: rgba(255,255,255,.78); }
.footer-contact__ico { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--amber); }
.footer-contact__ico--wa { background: #25d366; color: #fff; }
.footer-contact__ico svg { width: 17px; height: 17px; }
.footer-contact__value { color: rgba(255,255,255,.85); text-decoration: none; }
.footer-contact__value:hover { color: #fff; }
.footer-contact__link { color: var(--amber); text-decoration: none; font-size: .9rem; }
.footer-contact__link:hover { color: #fff; }

/* --- Footer social icons --- */
.site-footer__social { gap: .6rem; margin-top: 0; }
.site-footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.06); color: rgba(255,255,255,.8); border: 1px solid rgba(255,255,255,.1); transition: background .15s ease, color .15s ease, border-color .15s ease; }
.site-footer__social a:hover { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.site-footer__social svg { width: 19px; height: 19px; }

/* --- Footer trust row --- */
.site-footer__trust { border-top: 1px solid rgba(255,255,255,.08); }
.footer-trust__list { list-style: none; margin: 0; padding: 1.1rem 0; display: flex; flex-wrap: wrap; gap: .6rem 1rem; }
.footer-trust__chip { display: inline-flex; align-items: center; font-size: .82rem; color: rgba(255,255,255,.72); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: var(--r-pill); padding: .35rem .85rem; }

/* --- Responsive overrides (these come after the base @media, so they win) --- */
/* Tighter header spacing buys room so the full nav fits down to the collapse point. */
.site-header__inner { gap: 1rem; }
.primary-nav__menu { gap: .1rem; }
.menu-link--top { padding: .55rem .7rem; }

/* Collapse to the hamburger BEFORE the row can overflow (real Sora/Manrope are
   wider than fallbacks, so we collapse generously). Keeps the Quote CTA visible. */
@media (max-width: 1180px) {
	.primary-nav, .site-header__phone { display: none; }
	.site-header__cta { display: inline-flex; }
	.nav-toggle { display: inline-flex; }
	/* The nav (which carried margin-left:auto) is hidden here, so push the
	   actions — and the hamburger — to the right edge. */
	.site-header__actions { margin-left: auto; }
}
@media (max-width: 1024px) {
	.utility-bar__email { display: none; }
}
@media (max-width: 900px) {
	.footer-cta__inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
	.utility-bar { display: none; }
	.site-header__cta { display: none; }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__col--business { grid-column: 1 / -1; }
	.footer-cta__actions { width: 100%; }
	.footer-cta__actions .btn { flex: 1 1 auto; justify-content: center; }
	/* The persistent bottom action bar already carries the primary Quote CTA,
	   so drop the band's duplicate and lead with click-to-call here. */
	.footer-cta__quote { display: none; }
}
@media (max-width: 460px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Images — hero backdrops + card media
   ========================================================================== */

/* Hero with an uploaded background image: the inline style layers a dark navy
   gradient over the photo so the white copy stays readable. */
.hero--has-image { background-color: var(--navy); }
.hero--has-image::before { opacity: .5; }

/* Service / fleet cards with a Featured Image. */
.service-card--media { padding-top: 0; overflow: hidden; }
.service-card__media { display: block; margin: 0 -1.75rem 1.25rem; aspect-ratio: 16 / 10; background: var(--surface-3); }
.service-card__img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 640px) { .service-card__media { aspect-ratio: 16 / 9; } }

/* ==========================================================================
   HOMEPAGE REDESIGN (fxh-*) — stats, client marquee, photo service cards,
   fleet scroll, "why" split, location cards. On-brand navy/amber; all image
   slots are Customizer-editable. Namespaced to avoid touching shared styles.
   ========================================================================== */
.fxh-eyebrow{font-family:var(--font-body);font-weight:700;font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--amber-600);display:inline-flex;align-items:center;gap:9px}
.fxh-eyebrow::before{content:"";width:26px;height:2px;background:currentColor;display:inline-block}
.fxh-eyebrow--light{color:var(--amber)}
.fxh-head{max-width:720px;margin:0 auto 44px}
.fxh-head--left{margin-left:0}
.fxh-head h2{font-family:var(--font-display);font-weight:800;font-size:clamp(28px,4.4vw,48px);line-height:1.04;letter-spacing:-.02em;margin:.5rem 0 0}
.fxh-head p{font-size:1.05rem;color:var(--ink-70);margin:.75rem 0 0}
.fxh-head.center{text-align:center}
.fxh-head.center .fxh-eyebrow{justify-content:center}

/* Hero chips (added under the hero sub) */
.hero__chips{display:flex;flex-wrap:wrap;gap:9px;margin:0 0 1.5rem}
.hero__chips span{font-size:13px;font-weight:600;color:#e8eef7;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);padding:7px 13px;border-radius:var(--r-pill)}

/* ---- Stat band ---- */
.fxh-stats{background:var(--navy);color:#fff;padding:38px 0;border-top:1px solid rgba(255,255,255,.06)}
.fxh-stats__grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.fxh-stat{position:relative}
.fxh-stat .n{font-family:var(--font-display);font-weight:800;font-size:clamp(30px,4vw,46px);line-height:1;color:#fff}
.fxh-stat .n span{color:var(--amber)}
.fxh-stat .l{font-size:13.5px;color:#9aacc4;margin-top:7px}
.fxh-stat:not(:last-child)::after{content:"";position:absolute;right:-12px;top:12%;height:76%;width:1px;background:rgba(255,255,255,.1)}
@media(max-width:760px){.fxh-stats__grid{grid-template-columns:1fr 1fr;gap:26px}.fxh-stat::after{display:none!important}}

/* ---- Client logo marquee ---- */
.fxh-clients{background:var(--surface);padding:34px 0;border-bottom:1px solid var(--line)}
.fxh-clients__label{text-align:center;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-55);margin:0 0 22px}
.fxh-marquee{overflow:hidden;-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.fxh-marquee__track{display:flex;align-items:center;gap:64px;width:max-content;animation:fxh-scroll 60s linear infinite}
.fxh-marquee:hover .fxh-marquee__track{animation-play-state:paused}
.fxh-marquee__logo{height:44px;display:flex;align-items:center;flex:0 0 auto}
.fxh-marquee__logo img{max-height:44px;width:auto;object-fit:contain;filter:grayscale(1);opacity:.6;transition:filter .3s,opacity .3s}
.fxh-marquee__logo:hover img{filter:grayscale(0);opacity:1}
@keyframes fxh-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(prefers-reduced-motion:reduce){.fxh-marquee__track{animation:none;flex-wrap:wrap;justify-content:center;gap:28px 48px}.fxh-marquee{-webkit-mask-image:none;mask-image:none}}
@media(max-width:600px){.fxh-marquee__track{gap:44px}.fxh-marquee__logo,.fxh-marquee__logo img{height:36px;max-height:36px}}

/* ---- Photo service cards ---- */
.fxh-svc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.fxh-svc{position:relative;background:var(--surface);border:1px solid var(--line);border-radius:var(--r-lg);overflow:hidden;display:flex;flex-direction:column;transition:transform .25s,box-shadow .25s,border-color .25s;text-decoration:none}
.fxh-svc,.fxh-svc *{text-decoration:none}
.fxh-svc:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:transparent}
.fxh-svc__media{height:150px;background:var(--surface-3);position:relative;overflow:hidden;display:block}
.fxh-svc__media img{width:100%;height:100%;object-fit:cover;display:block}
.fxh-svc__media--empty{background:linear-gradient(135deg,var(--navy-700),var(--navy))}
.fxh-svc__tag{position:absolute;top:12px;left:12px;background:var(--navy);color:#fff;font-size:11px;font-weight:700;padding:4px 10px;border-radius:var(--r-pill);letter-spacing:.04em;z-index:1}
.fxh-svc__body{padding:18px 18px 20px;display:flex;flex-direction:column;flex:1}
.fxh-svc__body h3{font-family:var(--font-display);font-weight:700;font-size:19px;color:var(--navy);margin:0}
.fxh-svc__body p{font-size:14px;color:var(--ink-70);margin:7px 0 14px;line-height:1.5;flex:1}
.fxh-svc__go{font-weight:700;font-size:14px;color:var(--amber-600);display:inline-flex;align-items:center;gap:6px;transition:gap .2s}
.fxh-svc:hover .fxh-svc__go{gap:11px}
@media(max-width:1000px){.fxh-svc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:560px){.fxh-svc-grid{grid-template-columns:1fr}}

/* ---- Fleet horizontal scroll ---- */
.fxh-fleet{background:var(--navy);color:#fff}
.fxh-fleet .fxh-head h2{color:#fff}
.fxh-fleet .fxh-head p{color:#9aacc4}
/* Bleed must match the container's responsive padding, else on phones the -28px
   overhang exceeds the ~16px container padding and pushes past the viewport edge. */
.fxh-fleet-scroll{display:flex;gap:18px;overflow-x:auto;padding:6px clamp(1rem,4vw,2.5rem) 22px;margin-inline:calc(-1 * clamp(1rem,4vw,2.5rem));scroll-snap-type:x mandatory}
.fxh-fleet-scroll::-webkit-scrollbar{height:8px}
.fxh-fleet-scroll::-webkit-scrollbar-thumb{background:rgba(255,255,255,.18);border-radius:8px}
.fxh-vcard{flex:0 0 300px;scroll-snap-align:start;background:var(--navy-600);border:1px solid rgba(255,255,255,.08);border-radius:var(--r-lg);overflow:hidden;transition:transform .25s,border-color .25s}
.fxh-vcard:hover{transform:translateY(-6px);border-color:rgba(245,158,11,.5)}
.fxh-vcard__media{height:172px;background:linear-gradient(160deg,var(--navy-600),var(--navy));background-size:cover;background-position:center;position:relative;display:flex;align-items:flex-end;padding:14px}
.fxh-vcard__media img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.fxh-vcard__media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent 40%,rgba(9,17,29,.82))}
.fxh-vcard__seats{position:relative;z-index:1;font-family:var(--font-display);font-weight:800;font-size:38px;color:#fff;line-height:.9}
.fxh-vcard__seats small{display:block;font-family:var(--font-body);font-size:13px;color:var(--amber);font-weight:700;letter-spacing:.04em}
.fxh-vcard__body{padding:16px 18px 20px}
.fxh-vcard__body h3{font-family:var(--font-display);font-weight:700;font-size:18px;color:#fff;margin:0}
.fxh-vcard__body p{font-size:13.5px;color:#9aacc4;margin:8px 0 0;line-height:1.5}
.fxh-fleet__foot{display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;margin-top:6px}
.fxh-fleet__foot p{color:#9aacc4;margin:0;font-size:13.5px}
.fxh-fleet .btn--ghost{color:#fff;border-color:rgba(255,255,255,.28)}
.fxh-fleet .btn--ghost:hover{background:rgba(255,255,255,.08);border-color:#fff;color:#fff}

/* ---- Why split ---- */
.fxh-why-grid{display:grid;grid-template-columns:.95fr 1.05fr;gap:clamp(2rem,5vw,3.5rem);align-items:center}
.fxh-why__media{border-radius:var(--r-lg);min-height:440px;background:var(--surface-3);background-size:cover;background-position:center;position:relative;overflow:hidden;box-shadow:var(--shadow-lg)}
/* Crossfading photo slideshow (delay/duration set inline per slide). */
.fxh-why__slide{position:absolute;inset:0;background-size:cover;background-position:center;opacity:0;animation-name:fxh-why-fade;animation-timing-function:ease-in-out;animation-iteration-count:infinite}
@keyframes fxh-why-fade{0%{opacity:0}4%{opacity:1}27%{opacity:1}31%{opacity:0}100%{opacity:0}}
@media(prefers-reduced-motion:reduce){.fxh-why__slide{animation:none;display:none}}
.fxh-why__badge{position:absolute;left:20px;bottom:20px;z-index:2;display:flex;align-items:center;gap:11px;background:#fff;color:var(--navy);border-radius:var(--r);padding:11px 15px;box-shadow:var(--shadow)}
.fxh-why__badge-ico{flex:0 0 auto;display:inline-grid;place-items:center;width:34px;height:34px;border-radius:9px;background:rgba(245,158,11,.14);color:var(--amber-600)}
.fxh-why__badge-ico svg{width:19px;height:19px}
.fxh-why__badge .n{font-family:var(--font-display);font-weight:800;font-size:16px;line-height:1.1;color:var(--navy)}
.fxh-why__badge .l{font-size:12px;color:var(--ink-55)}
.fxh-why__list{display:grid;gap:13px;margin-top:1.25rem}
.fxh-vitem{display:flex;gap:15px;padding:15px;border:1px solid var(--line);border-radius:var(--r);background:var(--surface-2);transition:transform .2s,border-color .2s}
.fxh-vitem:hover{transform:translateX(4px);border-color:var(--amber)}
.fxh-vitem__ic{flex:0 0 44px;height:44px;border-radius:11px;background:var(--amber-050);color:var(--amber-600);display:flex;align-items:center;justify-content:center}
.fxh-vitem h3{font-family:var(--font-display);font-weight:700;font-size:17px;color:var(--navy);margin:0}
.fxh-vitem p{font-size:14px;color:var(--ink-70);margin:3px 0 0;line-height:1.45}
@media(max-width:900px){.fxh-why-grid{grid-template-columns:1fr;gap:2rem}.fxh-why__media{min-height:280px}}

/* ---- Location cards ---- */
.fxh-loc-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.fxh-loc{position:relative;border-radius:var(--r);overflow:hidden;min-height:148px;background:linear-gradient(160deg,var(--navy-600),var(--navy));color:#fff;padding:20px;display:flex;flex-direction:column;justify-content:flex-end;transition:transform .25s,border-color .25s;border:1px solid var(--line);text-decoration:none}
/* Photo-backed city cards: the inline navy gradient sits over the image. */
.fxh-loc--photo{background-size:cover;background-position:center;background-repeat:no-repeat}
/* Keep the label white on hover: the global a:hover flips link colour to navy,
   which made the inherited-colour city name vanish into the navy card. */
.fxh-loc:hover,.fxh-loc:focus{transform:translateY(-5px);color:#fff;border-color:rgba(245,158,11,.55)}
.fxh-loc:hover .fxh-loc__arw{opacity:1;color:var(--amber)}
.fxh-loc__c{position:relative;z-index:1;font-family:var(--font-display);font-weight:700;font-size:21px;color:#fff}
.fxh-loc__v{position:relative;z-index:1;font-size:12.5px;color:#bcccde;margin-top:2px}
.fxh-loc__arw{position:absolute;top:15px;right:15px;z-index:1;opacity:.7}
.fxh-loc--more{background:var(--surface);color:var(--navy);align-items:center;justify-content:center;text-align:center;border:1.5px dashed var(--line-strong)}
.fxh-loc--more b{font-family:var(--font-display)}
.fxh-loc--more span{color:var(--amber-600);font-weight:700}
@media(max-width:1000px){.fxh-loc-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:520px){.fxh-loc-grid{grid-template-columns:1fr}}

/* ---- Pricing table (real published hourly rates) ---- */
.fxh-pricing{background:var(--surface-2)}
.fxh-price-wrap{overflow-x:auto;border:1px solid var(--line);border-radius:var(--r-lg);background:var(--surface);box-shadow:var(--shadow-sm)}
.fxh-price-table{width:100%;border-collapse:collapse;min-width:520px}
.fxh-price-table th,.fxh-price-table td{text-align:left;padding:15px 20px;border-bottom:1px solid var(--line);font-size:15px}
.fxh-price-table thead th{background:var(--navy);color:#fff;font-family:var(--font-display);font-weight:700;font-size:13.5px;letter-spacing:.02em;border-bottom:0}
.fxh-price-table tbody th{font-weight:700;color:var(--navy);font-family:var(--font-body)}
.fxh-price-table tbody td{color:var(--ink-70)}
.fxh-price-table tbody tr:last-child th,.fxh-price-table tbody tr:last-child td{border-bottom:0}
.fxh-price-table tbody tr:hover{background:var(--surface-2)}
.fxh-price-rate{font-family:var(--font-display);font-weight:800;color:var(--navy);white-space:nowrap}
.fxh-price-rate span{font-family:var(--font-body);font-weight:600;font-size:13px;color:var(--ink-55)}
.fxh-price-foot{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap;margin-top:20px}
.fxh-price-foot p{color:var(--ink-55);font-size:13.5px;margin:0;max-width:660px}
@media(max-width:640px){.fxh-price-foot{flex-direction:column;align-items:flex-start}.fxh-price-foot .btn{width:100%;justify-content:center}}

/* Service / city page photo gallery band (bus + journey photos) */
.fb-gallery__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.fb-gallery__item{margin:0;border-radius:16px;overflow:hidden;aspect-ratio:4 / 3;background:var(--navy-700,#132339);box-shadow:0 14px 34px -20px rgba(11,22,41,.5)}
.fb-gallery__item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}
.fb-gallery__item:hover img{transform:scale(1.05)}
@media(max-width:760px){.fb-gallery__grid{grid-template-columns:repeat(2,1fr);gap:10px}}

/* Brand logo — header (white bar) + footer (navy), native custom logo or the supplied file */
.site-title--logo { display: inline-flex; align-items: center; }
.site-logo { height: clamp(34px, 4vw, 44px); width: auto; display: block; }
.site-header__brand img.custom-logo { height: clamp(34px, 4vw, 44px); width: auto; }
.site-footer__logo { display: inline-block; margin-bottom: 1rem; }
.site-logo--footer { height: 48px; }
.site-footer__col--business img.custom-logo { height: 48px; width: auto; margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Blueprint Phase-A sections — Why Choose + Related Services (service pages),
   Industries + Popular Routes (home), Sydney suburb chips.
   -------------------------------------------------------------------------- */
.why-choose__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.75rem); }
.why-choose__item { display: flex; gap: 1rem; align-items: flex-start; padding: clamp(1.1rem, 2vw, 1.5rem); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); }
.why-choose__icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: var(--amber); }
.why-choose__icon svg { width: 22px; height: 22px; }
.why-choose__title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 0 0 .35rem; }
.why-choose__text { color: var(--ink-70); font-size: .95rem; line-height: 1.55; margin: 0; }
@media (max-width: 720px) { .why-choose__grid { grid-template-columns: 1fr; } }

.related-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .85rem; }
.related-services__card { display: flex; align-items: center; justify-content: space-between; gap: .75rem; padding: 1rem 1.25rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); color: var(--ink); font-weight: 600; text-decoration: none; transition: border-color .15s ease, transform .15s ease, color .15s ease; }
.related-services__card:hover { border-color: var(--navy); transform: translateY(-2px); color: var(--amber-600); }
.related-services__arrow svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .related-services__grid { grid-template-columns: 1fr; } }

/* Homepage: industries + routes cards (fxh namespace) */
.fxh-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem); margin-top: clamp(1.5rem, 3vw, 2.25rem); }
.fxh-card { display: flex; flex-direction: column; gap: .4rem; padding: clamp(1.2rem, 2vw, 1.6rem); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.fxh-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.fxh-card__ic { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 11px; background: var(--surface-2); color: var(--navy); margin-bottom: .3rem; }
.fxh-card__ic svg { width: 22px; height: 22px; }
.fxh-card__t { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--navy); }
.fxh-card__d { color: var(--ink-70); font-size: .93rem; line-height: 1.5; }
.fxh-card__go { margin-top: .35rem; font-weight: 700; font-size: .85rem; color: var(--amber-600); }
.fxh-serve { background: var(--surface-2); }
@media (max-width: 860px) { .fxh-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .fxh-cards { grid-template-columns: 1fr; } }

/* Sydney suburb chips (service-area) */
.fxh-suburbs { margin-top: clamp(1.5rem, 3vw, 2rem); padding-top: 1.25rem; border-top: 1px solid var(--line); }
.fxh-suburbs__label { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--ink-55); margin-bottom: .75rem; }
.fxh-suburbs__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.fxh-suburb { display: inline-flex; align-items: center; height: 34px; padding: 0 .9rem; border-radius: var(--r-pill); background: #fff; border: 1px solid var(--line-strong); color: var(--ink-70); font-size: .85rem; font-weight: 600; text-decoration: none; }
.fxh-suburb:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ==========================================================================
   Service pages — modern redesign to match the homepage (fxh-) design language.
   Scoped to .service / .service-location so no other page type is affected.
   ========================================================================== */

/* Rhythm: generous section padding + alternating light bands for depth */
.service .section, .service-location .section { padding-block: clamp(3rem, 6vw, 5rem); }
.service-location .fit, .service-location .inclusions, .service-location .cases,
.service-location .compare, .service-location .related-services, .service-location .why-choose { background: var(--surface-2); }

/* Section heads: left-aligned, bold display type, amber-dash accent (the fxh signature) */
.service .section__head, .service-location .section__head { text-align: left; max-width: 780px; margin-inline: 0; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem); }
.service .section__title, .service-location .section__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.06; letter-spacing: -.02em; position: relative; padding-top: 1.15rem; }
.service .section__title::before, .service-location .section__title::before { content: ""; position: absolute; top: 0; left: 0; width: 34px; height: 3px; background: var(--amber); border-radius: 3px; }
.service .section__intro, .service-location .section__intro { font-size: 1.05rem; margin-top: .85rem; }
/* Colours are deliberately NOT overridden here: the base already sets navy
   headings on light sections and white headings/intros on the navy sections
   (safety, final-cta). Forcing a colour is what broke the contrast. */

/* Modern card base: rounded, subtle shadow, hover-lift — applied to every card type */
.service-location .vehicle-card, .service-location .scenario-card, .service-location .problem-card,
.service-location .compare__opt, .service-location .inclusions__col, .service-location .why-choose__item,
.service-location .service-proof__item, .service-location .related-services__card {
	background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
	box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-location .vehicle-card:hover, .service-location .scenario-card:hover, .service-location .problem-card:hover,
.service-location .compare__opt:hover, .service-location .why-choose__item:hover, .service-location .related-services__card:hover {
	transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent;
}

/* Proof strip → modern stat-style chips */
.service-location .service-proof__grid { gap: 16px; }
.service-location .service-proof__item { padding: 1.35rem 1.4rem; }
.service-location .service-proof__label { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.service-location .service-proof__note { color: var(--ink-70); }

/* Fit columns → cleaner, softer */
.service-location .fit__col { border-radius: var(--r-lg); padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--shadow-sm); }
.service-location .fit__col-title { font-family: var(--font-display); font-weight: 800; color: var(--navy); }

/* Journey / scenario cards → amber go-link that nudges on hover */
.service-location .scenario-card { padding: clamp(1.3rem, 2.2vw, 1.7rem); display: flex; flex-direction: column; }
.service-location .scenario-card__cta { color: var(--amber-600); font-weight: 700; margin-top: auto; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.service-location .scenario-card:hover .scenario-card__cta { gap: 11px; }

/* Vehicle cards → display headings, amber capacity */
.service-location .vehicle-card { padding: clamp(1.3rem, 2.2vw, 1.7rem); }
.service-location .vehicle-card__title { font-family: var(--font-display); font-weight: 800; color: var(--navy); }
.service-location .vehicle-card__cap strong { color: var(--amber-600); }

/* Problem / why-choose / compare cards → tidy padding + display titles */
.service-location .problem-card, .service-location .compare__opt { padding: clamp(1.3rem, 2.2vw, 1.7rem); }
.service-location .problem-card__title, .service-location .compare__opt-title { font-family: var(--font-display); font-weight: 800; color: var(--navy); }
.service-location .why-choose__icon { border-radius: 13px; }

/* Inclusions columns → card look with a colour-coded top accent */
.service-location .inclusions__col { padding: clamp(1.3rem, 2.2vw, 1.7rem); border-top: 3px solid var(--line); }
.service-location .inclusions__col--yes { border-top-color: var(--success, #16a34a); }
.service-location .inclusions__col--depends { border-top-color: var(--amber); }
.service-location .inclusions__col--no { border-top-color: var(--line-strong); }
.service-location .inclusions__col-title { font-family: var(--font-display); font-weight: 800; color: var(--navy); }

/* Related-services / related-pages link cards → arrow nudge */
.service-location .related-services__card { padding: 1.1rem 1.35rem; box-shadow: none; }
.service-location .related-services__card:hover { transform: translateY(-3px); }
.service-location .related-services__label { font-family: var(--font-display); font-weight: 700; color: var(--navy); }

/* Process steps → numbered chips like the homepage */
.service-location .process__num { background: var(--amber-050); color: var(--amber-600); border-radius: 12px; font-family: var(--font-display); font-weight: 800; }
.service-location .process__step-title { font-family: var(--font-display); font-weight: 800; color: var(--navy); }

/* Suburb / area chips → pill treatment */
.service-location .areas__list li span { transition: color .15s ease; }

/* Case study card → editorial */
.service-location .case-card { border-radius: var(--r-lg); box-shadow: var(--shadow); }

/* Equal-height cards: the grid already stretches cards to the same height, so
   pin the trailing status/link to the BOTTOM. That way cards with different
   amounts of text still line up cleanly instead of looking lopsided. */
.service-location .safety-item, .service-location .problem-card, .service-location .compare__opt,
.service-location .fit__col, .service-location .inclusions__col, .service-location .service-proof__item,
.service-location .vehicle-card, .service-location .scenario-card, .service-location .why-choose__item { display: flex; flex-direction: column; }
.service-location .safety-item__status { margin-top: auto; padding-top: .6rem; }
.service-location .vehicle-card__cta, .service-location .scenario-card__cta { margin-top: auto; }
.service-location .process__step { display: flex; flex-direction: column; }
.service-location .process__step-body--out { margin-top: auto; padding-top: .5rem; }
