/* ═══════════════════════════════════════════════════════════════
   HFG Commercials — Main Stylesheet v1.2
   Brand: Navy #1E3458 | Dark Navy #192B49 | Red #E40045 | Light #F8F7F7
   Fonts: Poppins (body + eyebrows + headings) | Ambiguity Normate Inline (hero badge accent only)
   NOTE: Download ambiguity-normate-inline.ttf into assets/fonts/ before deployment
═══════════════════════════════════════════════════════════════ */

/* ── 0. Fonts ─────────────────────────────────────────────── */
/*
 * ACTION REQUIRED before go-live:
 * Download ambiguity-normate-inline.ttf and save it to:
 *   wp-content/themes/hfg-commercials/assets/fonts/ambiguity-normate-inline.ttf
 * The remote staging URL below will break on production and should NOT be deployed.
 */
@font-face {
  font-family: 'Ambiguity';
  src: url('../fonts/ambiguity-normate-inline.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── 1. CSS Custom Properties ─────────────────────────────── */
:root {
  --clr-navy:       #1E3458;
  --clr-navy-dark:  #192B49;
  --clr-red:        #E40045;
  --clr-red-dark:   #C0003B;
  --clr-light:      #F8F7F7;
  --clr-white:      #FFFFFF;
  --clr-text:       #1A1A1A;
  --clr-text-muted: #5A6475;
  --clr-border:     #E2E5EB;

  --font-body:   'Poppins', sans-serif;
  --font-accent: 'Ambiguity', 'Poppins', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.13);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16);

  --header-h: 92px;
  --topbar-h: 36px;

  --container-max: 1220px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);

  --section-py: clamp(4rem, 7vw, 6rem);

  /* Spacing scale — 4px base */
  --space-1:   4px;
  --space-2:   8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
}

/* ── 2. Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-white);
  padding-top: calc(var(--topbar-h) + var(--header-h));
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
address { font-style: normal; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--clr-red); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius-sm); z-index: 9999;
}
.skip-link:focus { top: 1rem; }

/* ── 3. Typography ────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--clr-navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* Eyebrow label — uses the client's brand accent font */
.eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-red);
  display: block;
  margin-bottom: .75rem;
}
.eyebrow--light { color: rgba(255,255,255,.7); }

/* ── 4. Layout helpers ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-py); }
.section--sm { padding-block: calc(var(--section-py) * 0.5); }
.section--light  { background: var(--clr-light); }
.section--navy {
  background-color: var(--clr-navy);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 55%);
  background-size: 22px 22px, 100% 100%;
  color: var(--clr-white);
}
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--clr-white); }
.section--dark {
  background-color: var(--clr-navy-dark);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 55%);
  background-size: 22px 22px, 100% 100%;
  color: var(--clr-white);
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--clr-white); }
.section--red    { background: var(--clr-red); color: var(--clr-white); }

/* Section header with optional red accent underline */
.section__header { margin-bottom: 3rem; }
.section__header--centre { text-align: center; }
.section__header--split {
  display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.section__heading {
  margin-bottom: .6rem;
  position: relative;
  padding-bottom: 1.1rem;
}
.section__heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 44px; height: 3px;
  background: var(--clr-red);
  border-radius: 2px;
}
.section__header--centre .section__heading::after {
  left: 50%; transform: translateX(-50%);
}
.section__subheading {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  max-width: 640px;
}
.section__header--centre .section__subheading { margin-inline: auto; }
.section__view-all {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600; color: var(--clr-red);
  transition: gap .2s;
  white-space: nowrap;
}
.section__view-all:hover { gap: .7rem; }

/* ── 5. Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.75rem;
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background .22s, color .22s, border-color .22s, transform .15s, box-shadow .22s;
  cursor: pointer; text-decoration: none;
  white-space: nowrap; line-height: 1;
}
.btn:hover  { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); box-shadow: none; }

.btn--primary { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }
.btn--primary:hover { background: var(--clr-red-dark); border-color: var(--clr-red-dark); }

.btn--secondary { background: var(--clr-navy); color: #fff; border-color: var(--clr-navy); }
.btn--secondary:hover { background: var(--clr-navy-dark); border-color: var(--clr-navy-dark); }

.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

.btn--outline-dark { background: transparent; color: var(--clr-navy); border-color: var(--clr-navy); }
.btn--outline-dark:hover { background: var(--clr-navy); color: #fff; }

.btn--lg    { padding: 1rem 2.25rem; font-size: 1rem; }
.btn--sm    { padding: .55rem 1.1rem; font-size: .82rem; }
.btn--block { width: 100%; justify-content: center; }

/* CF7 submit button inherits btn--primary style */
.wpcf7-submit, .btn-primary input[type="submit"] {
  display: inline-flex; align-items: center;
  padding: .8rem 1.75rem;
  background: var(--clr-red); color: #fff;
  border: 2px solid var(--clr-red); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer;
  transition: background .22s, transform .15s;
  width: 100%;
}
.wpcf7-submit:hover { background: var(--clr-red-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.18); }

/* ── 6. Header ────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  box-shadow: 0 2px 24px rgba(25,43,73,.18);
}
.site-header.is-scrolled { box-shadow: 0 4px 32px rgba(25,43,73,.28); }

/* Topbar */
.header__topbar { background: var(--clr-red); height: var(--topbar-h); }
.header__topbar-inner {
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.header__topbar-text {
  color: rgba(255,255,255,.9); font-size: .75rem; letter-spacing: .04em;
}
.header__topbar-contact { display: flex; gap: 1.5rem; }
.header__topbar-link {
  display: inline-flex; align-items: center; gap: .4rem;
  color: #fff; font-size: .78rem; font-weight: 500;
  transition: color .2s;
}
.header__topbar-link:hover { color: rgba(255,255,255,.8); }

/* Main bar */
.header__main {
  background: var(--clr-navy);
  height: var(--header-h);
  border-bottom: 3px solid var(--clr-red);
}
.header__main-inner {
  display: flex; align-items: center; gap: 2rem; height: 100%;
}

/* Logo */
.header__logo { flex-shrink: 0; display: flex; align-items: center; }
.header__logo img { height: 52px; width: auto; }
/* WP outputs the_custom_logo() as <a class="custom-logo-link"> — keep as direct flex child.
   The outer .header__logo is now a <div> to avoid invalid nested <a> tags. */
.custom-logo-link { display: flex; align-items: center; }
.custom-logo { height: 40px !important; width: auto !important; }
/* Text-fallback logo link (used when no custom logo is uploaded) */
.header__logo-link { display: flex; align-items: center; text-decoration: none; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1; }
.header__logo-hfg {
  font-size: 1.7rem; font-weight: 800; color: #fff; letter-spacing: .06em;
}
.header__logo-commercials {
  font-size: .5rem; font-weight: 600; color: rgba(255,255,255,.6);
  letter-spacing: .3em; text-transform: uppercase; margin-top: 3px;
}

/* Nav */
.nav { flex: 1; }
.nav__list { display: flex; align-items: center; gap: .15rem; }
.nav__item { position: relative; }
.nav__link {
  display: block; padding: .5rem .8rem;
  color: rgba(255,255,255,.8); font-size: .8rem; font-weight: 300;
  text-transform: uppercase; letter-spacing: .1em;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav__link:hover,
.nav__item.current-menu-item > .nav__link,
.nav__item.current-menu-ancestor > .nav__link { color: #fff; background: rgba(255,255,255,.08); }
.nav__item.current-menu-item > .nav__link { color: var(--clr-red); background: rgba(228,0,69,.1); }
.nav__dropdown-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; margin-left: -4px;
  color: rgba(255,255,255,.6); border-radius: var(--radius-sm);
  transition: transform .2s, color .2s;
}
.nav__item.is-open > .nav__dropdown-toggle { transform: rotate(180deg); color: #fff; }

.nav__dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 230px;
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border-top: 3px solid var(--clr-red);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .2s, visibility .2s, transform .22s;
  z-index: 100; overflow: hidden;
}
.nav__item.is-open > .nav__dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__dropdown .nav__item { border-bottom: 1px solid var(--clr-border); }
.nav__dropdown .nav__item:last-child { border-bottom: none; }
.nav__dropdown .nav__link {
  color: var(--clr-text); padding: .7rem 1.1rem; border-radius: 0;
  font-size: .875rem;
}
.nav__dropdown .nav__link:hover { color: var(--clr-red); background: var(--clr-light); }

/* Header CTA */
.header__cta { display: flex; align-items: center; gap: .75rem; flex-shrink: 0; margin-left: auto; }

/* Bookings button — compact, uppercase, consistent weight */
.header__cta .btn {
  font-size: .8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: .6rem 1.25rem;
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; padding: 0;
}
.nav__hamburger span {
  display: block; width: 100%; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ── 6b. Brands Strip ────────────────────────────────────── */
.brands-strip {
  background: var(--clr-navy-dark);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 1rem 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0;
}
.brands-strip__label {
  white-space: nowrap;
  font-size: .68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(255,255,255,.35);
  padding: 0 1.5rem 0 var(--container-pad);
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 1.5rem;
}
.brands-strip__track {
  flex: 1;
  overflow: hidden;
}
.brands-strip__list {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: brands-scroll 28s linear infinite;
}
.brands-strip__list:hover { animation-play-state: paused; }
.brands-strip__item {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  padding: .3rem .85rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 2px;
  transition: color .2s, border-color .2s, background .2s;
  cursor: default;
}
.brands-strip__item:hover {
  color: #fff;
  border-color: var(--clr-red);
  background: rgba(228,0,69,.08);
}
@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .brands-strip__list { animation: none; }
}

/* ── 7. Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h) - var(--header-h));
  background: var(--clr-navy-dark) center/cover no-repeat;
  display: flex; align-items: center;
}
/* PLACEHOLDER — replace by uploading hero_bg_image via WP Admin → Edit Page */
.hero:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80&auto=format&fit=crop');
}
.hero__overlay {
  position: absolute; inset: 0;
  /* Reduced opacity so the background image reads on lower-brightness screens */
  background: linear-gradient(110deg, rgba(25,43,73,.82) 40%, rgba(25,43,73,.48) 100%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  padding-block: 5rem;
  /* Full container width — the background image fills the right side */
}
/* Hero content — single column, text constrained to ~55% width so the
   background image shows through on the right side */
.hero__content {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 640px;
}
/* Dual CTA row */
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .25rem;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-accent);
  font-size: .7rem; letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,180,200,.9);
  background: rgba(228,0,69,.18);
  border: 1px solid rgba(228,0,69,.35);
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--clr-red); flex-shrink: 0; }

.hero__subheading {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.9);
  margin-bottom: 1rem;
}

.hero__heading {
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  color: #fff; margin-bottom: 1.25rem; line-height: 1.1;
  letter-spacing: -.02em;
}
.hero__heading em { font-style: normal; color: var(--clr-red); }

.hero__body {
  color: rgba(255,255,255,.78); font-size: 1.05rem;
  margin-bottom: 2.25rem; max-width: 500px; line-height: 1.7;
}

/* Hero form card styles retained for any future use */
.hero__form-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl);
  border-top: 4px solid var(--clr-red);
}
.hero__form-heading {
  font-size: 1.15rem; color: var(--clr-navy); margin-bottom: .3rem;
}
.hero__form-subheading {
  color: var(--clr-text-muted); font-size: .82rem; margin-bottom: 1.5rem;
}

/* ── 8. Why Choose HFG ────────────────────────────────────── */
.why-choose {
  background: var(--clr-white);
  padding-block: var(--section-py);
}

/* Header */
.why-choose__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
/* Centre the red underline when heading is in a centred header */
.why-choose__header .section__heading::after {
  left: 50%;
  transform: translateX(-50%);
}
.why-choose__intro {
  color: var(--clr-text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* 4-column feature card grid */
.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}
.why-choose-card {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.75rem;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  border-top: 3px solid transparent;
  background: var(--clr-white);
  box-shadow: 0 2px 12px rgba(30,52,88,.07);
  transition: box-shadow .25s, transform .25s, border-color .25s, border-top-color .25s;
}
.why-choose-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--clr-border);
  border-top-color: var(--clr-red);
}
.why-choose-card__icon {
  width: 54px; height: 54px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(220,38,38,.08);
  color: var(--clr-red);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.why-choose-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .6rem;
}
.why-choose-card__body {
  font-size: .875rem;
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

/* Red stat strip */
.why-choose__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--clr-red);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.why-choose__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .5rem 2.5rem;
  flex: 1;
  min-width: 140px;
}
.why-choose__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -.02em;
}
.why-choose__stat-number small {
  font-size: 1.2rem;
  font-weight: 800;
}
.why-choose__stat-label {
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .08em;
  text-align: center;
}
.why-choose__stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-choose__grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose__stat-divider:nth-child(4) { display: none; } /* hide middle divider at 2-up */
}
@media (max-width: 768px) {
  .why-choose__grid { grid-template-columns: 1fr; }
  /* Switch stat strip to a true 2×2 grid so all cells are exactly equal width */
  .why-choose__stat-divider { display: none; }
  .why-choose__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    gap: 1px; /* 1px gap shows container background as a dividing line */
    background: rgba(255,255,255,.2); /* divider line colour */
    overflow: hidden; /* keeps border-radius clipping */
  }
  .why-choose__stat {
    background: var(--clr-red);
    padding: 1.5rem 1rem;
    min-width: 0;
    border-bottom: none;
    flex: none;
  }
  /* Reduce font floor so longer values like "Somerset" don't overpower */
  .why-choose__stat-number { font-size: 1.65rem; }
}

/* ── 9. Booking Section ───────────────────────────────────── */
.booking-section {
  background-color: var(--clr-navy-dark);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 55%);
  background-size: 22px 22px, 100% 100%;
  padding-block: var(--section-py);
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,.9); /* set base text colour for all children on this dark section */
}

/* Subtle red radial glow — top-right background accent */
.booking-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(220,38,38,.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.booking-section .container { position: relative; z-index: 1; }

/* ── Section header — copy left, phone right ── */
.booking-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.booking-section__header-copy { flex: 1; min-width: 280px; }
.booking-section__heading {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: .5rem;
}
.booking-section__intro {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ── How it works — 3 steps ── */
.booking-steps {
  display: grid;
  grid-template-columns: 1fr 64px 1fr 64px 1fr;
  align-items: center;
  margin-bottom: 3.5rem;
  padding: 2rem 2.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
}
.booking-step {
  display: flex;
  align-items: center;
  justify-content: center; /* centre circle+text within the grid column */
  gap: 1rem;
}
.booking-step__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--clr-red);
  background: rgba(220,38,38,.1);
  color: var(--clr-red);
  font-size: 1rem; font-weight: 800;
  letter-spacing: .02em;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.booking-step__content {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.booking-step__title {
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  display: block;
}
.booking-step__desc {
  color: rgba(255,255,255,.5);
  font-size: .8rem;
}
/* Connector sits in a fixed 64px grid column — genuinely centred between steps */
.booking-step__connector {
  width: 64px;
  height: 100%;
  align-self: stretch;   /* fill the full grid-row height so centering works */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
/* Horizontal line spanning full connector column */
.booking-step__connector::before {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgba(255,255,255,.2), rgba(255,255,255,.07));
}
/* Arrowhead at right edge of connector */
.booking-step__connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(255,255,255,.2);
}

/* Aside / body grid removed — form is now full-width */

/* Phone block */
/* ── Booking contact card ── */
.booking-section .booking-contact-card,
.booking-section .booking-contact-card:link,
.booking-section .booking-contact-card:visited {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.1rem 1.35rem;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.22);
  border-left: 3px solid var(--clr-red);
  border-radius: var(--radius-md);
  text-decoration: none;
  /* High-specificity white — overrides any plugin a { color } rule */
  color: rgba(255,255,255,.9) !important;
  transition: background .2s, border-color .2s;
  min-width: 190px;
}
.booking-section .booking-contact-card:hover,
.booking-section .booking-contact-card:focus {
  background: rgba(255,255,255,.16);
  border-left-color: var(--clr-red);
  color: #fff !important;
}
.booking-contact-card__icon {
  color: var(--clr-red) !important;
  flex-shrink: 0;
  margin-top: 2px;
}
.booking-contact-card__body {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.booking-contact-card__label {
  color: rgba(255,255,255,.6) !important;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.booking-contact-card__value {
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}
.booking-contact-card__note {
  color: rgba(255,255,255,.55) !important;
  font-size: .72rem;
  line-height: 1.4;
}

/* ── Booking form card — full-width dark glass ── */
.booking-form-card {
  background: rgba(8,16,36,.82);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
  width: 100%;
}
.booking-form-card__header {
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.booking-form-card__heading {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: .2rem;
}
.booking-form-card__sub {
  color: rgba(255,255,255,.65);
  font-size: .82rem;
  margin: 0;
}
.booking-form {
  padding: 1.75rem 2rem 2rem;
}

/* Form inputs inside dark card — keep inputs light for usability */
.booking-form .wpcf7-form label {
  color: rgba(255,255,255,.75);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .01em;
}
.booking-form .wpcf7-form input[type="text"],
.booking-form .wpcf7-form input[type="email"],
.booking-form .wpcf7-form input[type="tel"],
.booking-form .wpcf7-form input[type="date"],
.booking-form .wpcf7-form select,
.booking-form .wpcf7-form textarea {
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--clr-navy);
  border-radius: var(--radius-sm);
}
.booking-form .wpcf7-form input[type="text"]:focus,
.booking-form .wpcf7-form input[type="email"]:focus,
.booking-form .wpcf7-form input[type="tel"]:focus,
.booking-form .wpcf7-form input[type="date"]:focus,
.booking-form .wpcf7-form select:focus,
.booking-form .wpcf7-form textarea:focus {
  background: #fff;
  border-color: var(--clr-red);
  box-shadow: 0 0 0 3px rgba(220,38,38,.15);
  outline: none;
}

/* ── Booking Responsive ── */
@media (max-width: 768px) {
  .booking-section__header { align-items: flex-start; flex-direction: column; }
  .booking-contact-card { width: 100%; }
  .booking-steps {
    grid-template-columns: 1fr; /* stack vertically on mobile */
    padding: 1.5rem;
    gap: 0;
  }
  .booking-step {
    justify-content: flex-start; /* left-align on mobile */
  }
  .booking-step__connector {
    width: 24px; height: 28px;
    margin: 0 0 0 24px; /* indent to align with circle centre */
    justify-content: center;
    align-items: center;
  }
  .booking-step__connector::before {
    width: 2px; height: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,.2), rgba(255,255,255,.07));
  }
  .booking-step__connector::after {
    top: auto;
    bottom: -4px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-left-color: transparent;
    border-top-color: rgba(255,255,255,.2);
  }
  .booking-form-card__header { padding: 1.25rem 1.25rem 1rem; }
  .booking-form { padding: 1.25rem; }
}

/* ── 9. About Teaser ──────────────────────────────────────── */
/* (was section 8 — renumbered to make room for booking section) */
.about-teaser__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-teaser__body { color: var(--clr-text-muted); margin-bottom: 1.75rem; line-height: 1.75; }
.about-teaser__credentials { display: flex; flex-direction: column; gap: .85rem; margin-bottom: 2.25rem; }
.credential {
  display: flex; align-items: center; gap: .85rem;
  font-size: .9rem; font-weight: 600; color: var(--clr-navy);
  padding: .6rem .85rem;
  background: var(--clr-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-red);
}
.credential__icon { color: var(--clr-red); flex-shrink: 0; }
.about-teaser__image-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.about-teaser__image { width: 100%; height: 440px; object-fit: cover; }
.about-teaser__image-placeholder {
  width: 100%; height: 440px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; padding: 2rem;
  background: var(--clr-light); color: var(--clr-text-muted); font-size: .85rem;
  border-radius: var(--radius-xl);
  border: 2px dashed var(--clr-border);
}
/* Red accent corner block */
.about-teaser__image-wrap::before {
  content: '';
  position: absolute; bottom: -12px; right: -12px;
  width: 80px; height: 80px;
  background: var(--clr-red);
  border-radius: var(--radius-md);
  z-index: -1;
}

/* ── 9. Services Section — image-forward cards ────────────── */
.services-section {
  background-color: var(--clr-navy-dark);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 55%);
  background-size: 22px 22px, 100% 100%;
  padding-block: var(--section-py);
}
/* Heading colour overrides for dark background */
.services-section .section__heading { color: #fff; }
.services-section .section__heading::after { background: var(--clr-red); }

/* Grid: 3 columns, responsive */
.services-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card wrapper — relative + overflow:hidden clips the zooming bg */
.service-card {
  position: relative;
  border-radius: var(--radius-lg, 14px);
  overflow: hidden;
  min-height: clamp(300px, 28vw, 400px);
  cursor: pointer;
}

/* Red accent bar — slides in from left on hover (CSS, not GSAP) */
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--clr-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
}
.service-card:hover::before { transform: scaleX(1); }

/* Background image layer — CSS handles blur on hover; GSAP handles scale */
.service-card__bg {
  position: absolute; inset: 0;
  background: var(--clr-navy) center/cover no-repeat;
  will-change: transform, filter;
  transform-origin: center center;
  filter: blur(0px);
  transition: filter 0.45s ease;
}
.service-card:hover .service-card__bg {
  filter: blur(5px);
}

/* Gradient overlay — covers lower 60% strongly so title + desc always readable */
.service-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(25,43,73,.98) 0%,
    rgba(25,43,73,.88) 40%,
    rgba(25,43,73,.45) 65%,
    rgba(25,43,73,.15) 100%
  );
  z-index: 1;
}

/* Content block pinned to the bottom — flex column grows upward as content expands */
.service-card__content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.75rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* Title — always visible, ordered second so description appears above it on hover */
.service-card__title {
  order: 2;
  margin: 0 0 .75rem;
}

/* Stretched link — covers the whole card for accessibility */
.service-card__link {
  font-size: 1.1rem; font-weight: 700;
  color: #fff; text-decoration: none;
  display: block; line-height: 1.3;
}
.service-card__link::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
}

/* Description — hidden by default, slides in above the title on hover.
   max-height transition lets the container grow upward (anchored to bottom: 0)
   which naturally pushes the title up. */
.service-card__desc {
  order: 1;
  color: rgba(255,255,255,.85); font-size: .875rem; line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-bottom: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-bottom 0.35s ease;
}
.service-card:hover .service-card__desc {
  max-height: 140px;
  opacity: 1;
  margin-bottom: .75rem;
}

/* CTA — always visible, ordered last (bottom of stack) */
.service-card__cta {
  order: 3;
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--clr-red); font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em;
}
.service-card__cta svg { transition: transform .2s; }
.service-card:hover .service-card__cta svg { transform: translateX(3px); }

/* Touch / mobile: description always visible */
@media (hover: none) {
  .service-card__desc {
    max-height: 140px !important;
    opacity: 1 !important;
    margin-bottom: .75rem !important;
  }
}

/* PLACEHOLDER fallbacks — replace by adding featured images to each service post in WP Admin */
.service-card__bg:not([style*="background-image"]) {
  background-color: #0a1428;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.services-section__grid .service-card:nth-child(1) .service-card__bg:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=900&q=80&auto=format&fit=crop');
}
.services-section__grid .service-card:nth-child(2) .service-card__bg:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1625047509253-2d8e63e61aba?w=900&q=80&auto=format&fit=crop');
}
.services-section__grid .service-card:nth-child(3) .service-card__bg:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1504222490345-c075b7b4f38a?w=900&q=80&auto=format&fit=crop');
}
.services-section__grid .service-card:nth-child(4) .service-card__bg:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1580273916550-e323be2ae537?w=900&q=80&auto=format&fit=crop');
}
.services-section__grid .service-card:nth-child(5) .service-card__bg:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1621905251918-48416bd8575a?w=900&q=80&auto=format&fit=crop');
}
.services-section__grid .service-card:nth-child(6) .service-card__bg:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1545558014-8692077e9b5c?w=900&q=80&auto=format&fit=crop');
}

/* If the last card sits alone in its row (3n+1 position, not position 1)
   — span it full-width as a banner so there's no awkward empty space */
.services-section__grid .service-card:last-child:nth-child(3n+1):not(:first-child) {
  grid-column: 1 / -1;
  min-height: 240px;
}

/* Footer CTA */
.services-section__footer { text-align: center; margin-top: 3rem; }
.services-section__empty  { color: rgba(255,255,255,.6); }

/* White outline button — for use on dark/navy/image backgrounds */
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

/* ── 10. Extended Hours — parallax background ─────────────── */
.extended-hours {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding-block: var(--section-py);
  /* Fallback colour shown before image loads or if no image is set */
  background-color: #0a1428;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  /* Fixed attachment creates the parallax illusion */
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
}

/* PLACEHOLDER — replace by uploading hours_bg_image via WP Admin → Edit Page */
.extended-hours:not([style*="background-image"]) {
  background-image: url('https://images.unsplash.com/photo-1487754180451-c456f719a1fc?w=1600&q=80&auto=format&fit=crop');
}

/* iOS & touch: fixed attachment not supported — graceful fallback to scroll */
@media (hover: none), (max-width: 768px) {
  .extended-hours { background-attachment: scroll; }
}

/* Overlay: dark-left → lighter-right so image shows through the glass card */
.extended-hours__overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(
    110deg,
    rgba(8,18,38,.93)  0%,
    rgba(8,18,38,.88)  45%,
    rgba(8,18,38,.65)  100%
  );
}

/* Inner grid */
.extended-hours__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: center;
  width: 100%;
}

/* ── Left content ── */
/* Evening badge pill */
.extended-hours__badge {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(220,38,38,.15);
  border: 1px solid rgba(220,38,38,.35);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.extended-hours__badge svg { color: var(--clr-red); flex-shrink: 0; }

.extended-hours__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: .6rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
.extended-hours__subheading {
  color: var(--clr-red);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: .01em;
}
.extended-hours__body {
  color: rgba(255,255,255,.72);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 500px;
}

/* Actions row: CTA button + phone link */
.extended-hours__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.extended-hours__phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}
.extended-hours__phone-link:hover { color: #fff; }
.extended-hours__phone-link svg { color: var(--clr-red); flex-shrink: 0; }

/* ── Right: glass hours card ── */
.hours-card {
  background: rgba(8,18,38,.7);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 3px solid var(--clr-red);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.hours-card__header {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hours-card__icon { color: var(--clr-red); flex-shrink: 0; }
.hours-card__title {
  color: rgba(255,255,255,.9);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0;
}
.hours-card__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hours-card__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .875rem;
}
.hours-card__list li:last-child { border-bottom: none; }
.hours-card__list li span:first-child { color: rgba(255,255,255,.75); }
.hours-card__list li span:last-child {
  color: #fff;
  font-weight: 600;
}
.hours-card__evening {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}
.hours-card__evening svg { color: var(--clr-red); flex-shrink: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .extended-hours__inner { grid-template-columns: 1fr; gap: 3rem; }
  .extended-hours { min-height: auto; }
}

/* ── 11. Process Steps ────────────────────────────────────── */
.process { background: var(--clr-light); }
.process__steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem; position: relative;
  counter-reset: process-step;
}
/* Horizontal connector line */
.process__steps::before {
  content: '';
  position: absolute;
  top: 36px; left: calc(10% + 20px); right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--clr-red), var(--clr-navy));
  opacity: .25;
  z-index: 0;
}
.process__step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; position: relative; z-index: 1;
}
.process__step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--clr-navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; position: relative;
  box-shadow: 0 8px 24px rgba(30,52,88,.25);
  transition: background .25s, transform .25s;
}
.process__step-number span {
  font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1;
}
/* Active/first step in red */
.process__step:first-child .process__step-number { background: var(--clr-red); }
.process__step:first-child .process__step-number { box-shadow: 0 8px 24px rgba(228,0,69,.3); }
.process__step-title {
  font-size: .95rem; font-weight: 700; color: var(--clr-navy); margin-bottom: .5rem;
}
.process__step-body { font-size: .82rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ── 12. Testimonials ────────────────────────────────────── */
.testimonials { background: var(--clr-white); }

/* Header row: copy left, badge right */
.testimonials__header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.testimonials__header-copy { flex: 1; min-width: 280px; }
.testimonials__subheading {
  color: var(--clr-text-muted); font-size: .95rem;
  margin-top: .75rem; max-width: 520px;
}

/* Google-style badge */
.testimonials__badge {
  background: var(--clr-bg); border: 1px solid var(--clr-border);
  border-radius: var(--radius-md); padding: 1.25rem 1.5rem;
  text-align: center; min-width: 180px; flex-shrink: 0;
}
.testimonials__badge-stars {
  display: flex; gap: .25rem; justify-content: center;
  color: #f5a623; margin-bottom: .5rem;
}
.testimonials__badge-count {
  font-size: .8rem; color: var(--clr-text-muted);
  line-height: 1.4; margin-bottom: .4rem;
}
.testimonials__badge-count strong { color: var(--clr-navy); font-size: 1rem; }
.testimonials__badge-source {
  font-size: .75rem; color: var(--clr-text-muted);
  font-weight: 600; text-decoration: none; letter-spacing: .02em;
}
.testimonials__badge-source:hover { color: var(--clr-red); }

/* Card grid */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Individual card */
.testimonial-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  position: relative;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--clr-red);
}

/* Decorative quote mark */
.testimonial-card__quote {
  font-family: Georgia, serif;
  font-size: 4.5rem; line-height: 1;
  color: var(--clr-red); opacity: .18;
  position: absolute; top: .75rem; right: 1.25rem;
  pointer-events: none; user-select: none;
}

/* Stars */
.testimonial-card__stars {
  display: flex; gap: .2rem; color: #f5a623;
}

/* Body text */
.testimonial-card__body {
  font-size: .9rem; line-height: 1.7;
  color: var(--clr-text); flex: 1;
}

/* Author row */
.testimonial-card__author {
  display: flex; align-items: center; gap: .85rem;
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
}
.testimonial-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--clr-navy); color: #fff;
  font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; text-transform: uppercase;
}
.testimonial-card__name {
  font-size: .875rem; font-weight: 700; color: var(--clr-navy);
  margin-bottom: .1rem;
}
.testimonial-card__role {
  font-size: .775rem; color: var(--clr-text-muted);
}

/* ── 13. News ─────────────────────────────────────────────── */

/* Reduce gap between heading and cards */
.news-section__header { margin-bottom: 2rem; }

.news-section__grid,
.news-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Card */
.news-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: 0 2px 14px rgba(30,52,88,.07);
  display: flex;
  flex-direction: column;
  transition: box-shadow .28s, transform .28s;
}
.news-card:hover {
  box-shadow: 0 12px 40px rgba(30,52,88,.14);
  transform: translateY(-5px);
}

/* Image wrap — relative so tag badge can sit over it */
.news-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}
.news-card__image-link { display: block; height: 100%; }
.news-card__image {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.news-card:hover .news-card__image { transform: scale(1.06); }

/* Placeholder for posts without a featured image */
.news-card__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--clr-navy-dark) 0%, rgba(30,52,88,.7) 100%);
}

/* Category tag — pill badge over image, bottom-left */
.news-card__tag {
  position: absolute;
  bottom: .875rem; left: .875rem;
  display: inline-flex; align-items: center;
  padding: .28rem .8rem;
  border-radius: 50px;
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  text-decoration: none;
  background: var(--clr-red);
  color: #fff;
  line-height: 1.5;
  z-index: 2;
  transition: opacity .2s;
}
.news-card__tag:hover { opacity: .85; }

/* Tag colour variants by category slug */
.news-card__tag--insights,
.news-card__tag--insight   { background: var(--clr-navy); }
.news-card__tag--tips,
.news-card__tag--tip,
.news-card__tag--guides,
.news-card__tag--guide     { background: #1a6e42; }
.news-card__tag--industry  { background: #5b4299; }

/* Content area */
.news-card__content {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Date — calendar icon + text */
.news-card__date {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; color: var(--clr-text-muted);
  font-weight: 500; letter-spacing: .03em;
  margin-bottom: .65rem;
}
.news-card__date svg { flex-shrink: 0; opacity: .55; }

/* Title */
.news-card__title {
  font-size: 1rem; font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .65rem;
  line-height: 1.4;
}
.news-card__title a { text-decoration: none; color: inherit; transition: color .2s; }
.news-card__title a:hover { color: var(--clr-red); }

/* Excerpt */
.news-card__excerpt {
  font-size: .875rem; color: var(--clr-text-muted);
  line-height: 1.65; flex: 1;
  margin-bottom: 1.25rem;
}

/* Read article link */
.news-card__readmore {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700;
  color: var(--clr-red); text-decoration: none;
  margin-top: auto;
  transition: gap .2s;
}
.news-card__readmore svg { transition: transform .2s; }
.news-card:hover .news-card__readmore { gap: .65rem; }
.news-card:hover .news-card__readmore svg { transform: translateX(3px); }

/* Responsive */
@media (max-width: 1024px) {
  .news-section__grid, .news-archive__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-section__grid, .news-archive__grid { grid-template-columns: 1fr; }
}

/* ── 14. Newsletter ───────────────────────────────────────── */
.newsletter { background: var(--clr-red); }
.newsletter__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding-block: 1rem;
}
.newsletter__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: #fff;
  margin-bottom: .6rem; letter-spacing: -.01em;
}
.newsletter__subheading { color: rgba(255,255,255,.85); line-height: 1.65; }

/* ── 15. MOT Reminder ─────────────────────────────────────── */
.mot-reminder { background: var(--clr-navy); }
.mot-reminder__inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
  padding-block: 1rem;
}
.mot-reminder__icon { color: var(--clr-red); margin-bottom: 1.25rem; }
.mot-reminder__heading {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem); color: #fff; margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.mot-reminder__body { color: rgba(255,255,255,.75); line-height: 1.75; }

/* ── 16. Page Hero ────────────────────────────────────────── */
.page-hero {
  position: relative; padding-block: 5.5rem;
  background: var(--clr-navy) center/cover no-repeat;
  color: #fff;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(25,43,73,.94) 0%, rgba(25,43,73,.72) 100%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__heading { color: #fff; margin-bottom: .5rem; letter-spacing: -.015em; }
.page-hero__subheading { color: rgba(255,255,255,.75); font-size: 1.1rem; }
.page-hero__meta { color: rgba(255,255,255,.55); font-size: .82rem; margin-bottom: .5rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: rgba(255,255,255,.55); margin-bottom: 1rem;
}
.breadcrumb a:hover { color: #fff; }
.breadcrumb span[aria-hidden] { color: rgba(255,255,255,.35); }

/* ── 17. About Page ───────────────────────────────────────── */
.stats-bar { background: var(--clr-red); }
.stats-bar__inner {
  display: flex; justify-content: center; gap: 5rem;
  padding-block: 2rem; flex-wrap: wrap;
}
.stats-bar__item { text-align: center; color: #fff; }
.stats-bar__number {
  display: block; font-size: 2.2rem; font-weight: 800; line-height: 1; margin-bottom: .25rem;
}
.stats-bar__label { font-size: .78rem; opacity: .85; letter-spacing: .06em; text-transform: uppercase; }
.about-page__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.about-page__image-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-page__image { width: 100%; height: 480px; object-fit: cover; }
.credentials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.credential-card {
  background: var(--clr-white); padding: 2.25rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-red);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
  transition: box-shadow .25s, transform .25s;
}
.credential-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,.28); transform: translateY(-3px); }
.credential-card svg { margin-inline: auto; margin-bottom: 1.25rem; color: var(--clr-red); }
.credential-card h3 { font-size: 1rem; color: var(--clr-navy); margin-bottom: .75rem; }
.credential-card p { font-size: .875rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ── 18. CTA Banner ───────────────────────────────────────── */
.cta-banner { background: var(--clr-navy); border-top: 3px solid var(--clr-red); }
.cta-banner__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; padding-block: 3.5rem;
}
.cta-banner__heading { color: #fff; margin-bottom: .5rem; letter-spacing: -.01em; }
.cta-banner__text p { color: rgba(255,255,255,.75); }
.cta-banner__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── 19. Contact Page ─────────────────────────────────────── */
.contact-page__inner { display: grid; grid-template-columns: 1fr 360px; gap: 3.5rem; align-items: start; }
.contact-form-block { margin-bottom: 2.5rem; }
.contact-form-block__heading {
  font-size: 1.15rem; color: var(--clr-navy); margin-bottom: 1.25rem;
  padding-bottom: .85rem; border-bottom: 3px solid var(--clr-red);
}
.contact-detail-list { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-detail-list li { display: flex; gap: .85rem; align-items: flex-start; font-size: .9rem; }
.contact-detail-list svg { color: var(--clr-red); flex-shrink: 0; margin-top: 2px; }
.contact-detail-list a:hover { color: var(--clr-red); }
.map-section { line-height: 0; border-radius: var(--radius-md); overflow: hidden; }

/* ── 20. Single Post / Service ────────────────────────────── */
.service-single__inner,
.single-post__inner { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }

/* ── 21. Sidebar Cards ────────────────────────────────────── */
.sidebar-card {
  background: var(--clr-light); border-radius: var(--radius-md);
  padding: 1.75rem; margin-bottom: 1.75rem;
  border: 1px solid var(--clr-border);
}
.sidebar-card--cta { background: var(--clr-navy); border-color: var(--clr-navy); }
.sidebar-card--cta .sidebar-card__heading,
.sidebar-card--cta p { color: #fff; }
.sidebar-card--cta p { opacity: .8; font-size: .875rem; margin-bottom: 1.25rem; }
.sidebar-card__heading { font-size: 1rem; font-weight: 700; color: var(--clr-navy); margin-bottom: 1.1rem; }
.sidebar-card__note { font-size: .78rem; color: var(--clr-text-muted); margin-top: .85rem; }
.sidebar-service-list, .sidebar-post-list { display: flex; flex-direction: column; }
.sidebar-service-list a,
.sidebar-post-list a {
  font-size: .875rem; color: var(--clr-navy);
  display: flex; justify-content: space-between; align-items: center;
  padding: .6rem 0; border-bottom: 1px solid var(--clr-border);
  transition: color .2s;
}
.sidebar-service-list a:hover,
.sidebar-post-list a:hover { color: var(--clr-red); }
.sidebar-post-list li { display: flex; flex-direction: column; padding: .6rem 0; border-bottom: 1px solid var(--clr-border); }
.sidebar-post-list span { font-size: .75rem; color: var(--clr-text-muted); margin-top: .2rem; }

/* ── 22. Feature List ─────────────────────────────────────── */
.service-single__features { margin-top: 2.5rem; }
.service-single__features-heading { font-size: 1.1rem; color: var(--clr-navy); margin-bottom: 1.5rem; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.feature-list__item { display: flex; align-items: flex-start; gap: .65rem; font-size: .9rem; }
.feature-list__icon { color: var(--clr-red); flex-shrink: 0; margin-top: 2px; }

/* ── 23. Prose ────────────────────────────────────────────── */
.prose h2 { margin-top: 2.25rem; margin-bottom: .85rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .6rem; }
.prose p  { margin-bottom: 1rem; color: var(--clr-text-muted); line-height: 1.75; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: .45rem; color: var(--clr-text-muted); }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose a  { color: var(--clr-red); text-decoration: underline; }
.prose--light p, .prose--light li { color: rgba(255,255,255,.8); }
.prose--light h2, .prose--light h3 { color: #fff; }

/* ── 24. Contact Form 7 Overrides ─────────────────────────── */
.wpcf7-form-control-wrap { display: block; }
.wpcf7-form label { display: block; font-size: .82rem; font-weight: 600; color: var(--clr-navy); margin-bottom: .35rem; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="date"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: .9rem; color: var(--clr-text);
  background: var(--clr-white);
  transition: border-color .2s, box-shadow .2s;
  display: block; margin-bottom: .85rem;
  line-height: 1.5;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--clr-navy);
  box-shadow: 0 0 0 3px rgba(30,52,88,.1);
}
.wpcf7-form textarea { min-height: 100px; resize: vertical; }
.wpcf7-form input[type="submit"] {
  background: var(--clr-red); color: #fff; border: none;
  padding: .85rem 1.75rem; font-weight: 600; font-size: .9rem;
  border-radius: var(--radius-sm); cursor: pointer;
  transition: background .22s, transform .15s; width: 100%;
  font-family: var(--font-body); letter-spacing: .02em;
}
.wpcf7-form input[type="submit"]:hover { background: var(--clr-red-dark); transform: translateY(-1px); }
.wpcf7-not-valid-tip { color: var(--clr-red); font-size: .78rem; margin-top: -.5rem; margin-bottom: .5rem; }
.wpcf7-response-output {
  padding: .85rem 1rem; margin-top: 1rem;
  border-radius: var(--radius-sm); font-size: .875rem; border: none !important;
}
.wpcf7-mail-sent-ok { background: rgba(0,180,80,.1); color: #006030; }
.wpcf7-mail-sent-ng, .wpcf7-aborted { background: rgba(228,0,69,.1); color: var(--clr-red); }

/* Booking form — 2-column row layout */
.cf7-row { margin-bottom: 1.25rem; }
.cf7-row--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
/* Reset input bottom margin inside rows — row handles the gap */
.cf7-row input[type="text"],
.cf7-row input[type="email"],
.cf7-row input[type="tel"],
.cf7-row input[type="date"],
.cf7-row select,
.cf7-row textarea { margin-bottom: 0; }
@media (max-width: 480px) {
  .cf7-row--2col { grid-template-columns: 1fr; }
}

/* Booking form input overrides now live in section 8 (booking-section) styles above */

/* ── Mailchimp consent checkbox (booking form) ── */
.booking-form .wpcf7-acceptance {
  display: block;
  margin: 1.25rem 0 .5rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
}
.booking-form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin: 0;
}
.booking-form .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--clr-red);
  cursor: pointer;
  background: rgba(255,255,255,.9) !important;
  border: none !important;
  border-radius: 3px;
}
.booking-form .wpcf7-acceptance .wpcf7-list-item-label {
  color: rgba(255,255,255,.7);
  font-size: .83rem;
  line-height: 1.55;
  cursor: pointer;
}

/* Hero form (legacy — kept for reference) */
.hero__form .wpcf7-form input[type="text"],
.hero__form .wpcf7-form input[type="email"],
.hero__form .wpcf7-form input[type="tel"],
.hero__form .wpcf7-form input[type="date"],
.hero__form .wpcf7-form select,
.hero__form .wpcf7-form textarea {
  background: var(--clr-light);
  border-color: var(--clr-border);
}
/* Newsletter and MOT use light inputs on coloured backgrounds */
.newsletter__form .wpcf7-form input,
.newsletter__form .wpcf7-form select,
.mot-reminder__form .wpcf7-form input,
.mot-reminder__form .wpcf7-form select,
.mot-reminder__form .wpcf7-form textarea {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.25);
  color: #fff;
}
.newsletter__form .wpcf7-form input::placeholder,
.mot-reminder__form .wpcf7-form input::placeholder { color: rgba(255,255,255,.6); }
.newsletter__form .wpcf7-form label,
.mot-reminder__form .wpcf7-form label { color: rgba(255,255,255,.8); }

/* ── 24b. Back to Top ────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-red);
  color: #fff;
  border: 3px solid var(--clr-navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(228,0,69,.35), 0 2px 8px rgba(0,0,0,.25);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .2s, box-shadow .2s;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--clr-red-dark);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(228,0,69,.45), 0 4px 12px rgba(0,0,0,.3);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--clr-red);
  outline-offset: 4px;
}
.back-to-top:active {
  transform: translateY(-1px);
}
@media (max-width: 480px) {
  .back-to-top { bottom: 1.25rem; right: 1.25rem; width: 44px; height: 44px; }
}

/* ── 25. Footer ───────────────────────────────────────────── */
.site-footer {
  background-color: var(--clr-navy-dark);
  background-image:
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.04) 0%, transparent 55%);
  background-size: 22px 22px, 100% 100%;
  color: rgba(255,255,255,.75);
}
.footer__main { padding-block: 4.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }

/* Give the hours column (last) more room so times don't wrap */
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.8fr 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

/* Logo wrapper */
.footer__logo { display: block; margin-bottom: 0; }

/* Custom logo (WP) and text fallback — uniform gap before tagline */
.footer__logo .custom-logo-link,
.footer__logo .footer__logo-link {
  display: block;
  margin-bottom: 1rem;
}
.footer__logo img { height: 52px; width: auto; display: block; }

.footer__tagline {
  font-size: .875rem; color: rgba(255,255,255,.5);
  line-height: 1.55; margin-bottom: 1.5rem;
  max-width: 280px; margin-top: 0;
}

/* Column headings */
.footer__heading {
  font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.28);
  letter-spacing: .2em; text-transform: uppercase;
  margin-bottom: .9rem; padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* Nav links — match header nav weight and style */
.footer__nav { display: flex; flex-direction: column; gap: .6rem; }
.footer__nav a {
  font-size: .78rem; font-weight: 300;
  text-transform: uppercase; letter-spacing: .1em;
  color: rgba(255,255,255,.5); transition: color .2s, letter-spacing .2s;
}
.footer__nav a:hover { color: #fff; letter-spacing: .13em; }

/* Address */
.footer__address {
  display: flex; flex-direction: column; gap: .55rem;
  font-size: .85rem; color: rgba(255,255,255,.55);
  line-height: 1.6;
}
.footer__address a { transition: color .2s; }
.footer__address a:hover { color: #fff; }

/* Opening hours — day on left, time on right, never wraps */
.footer__hours-note {
  display: flex; align-items: center; gap: .45rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  margin-top: .85rem;
}
.footer__hours-note svg { flex-shrink: 0; opacity: .6; }

.footer__hours { display: flex; flex-direction: column; gap: 0; list-style: none; margin: 0; padding: 0; }
.footer__hours li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  gap: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-block: .65rem;
}
.footer__hours li:last-child { border-bottom: none; padding-bottom: 0; }

/* Day label */
.footer__hours span:first-child {
  font-size: .8rem; font-weight: 400;
  color: rgba(255,255,255,.7);
  white-space: nowrap; flex-shrink: 0;
}
/* Time value — never wraps */
.footer__hours span:last-child {
  font-size: .78rem; font-weight: 300;
  color: rgba(255,255,255,.45);
  white-space: nowrap; text-align: right;
}
.footer__social { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: .25rem; }
.footer__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  transition: background .2s, color .2s;
  border: 1px solid rgba(255,255,255,.1);
}
.footer__social-link:hover { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }
.footer__bottom { padding-block: 1.35rem; }
.footer__bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer__copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer__legal-nav { display: flex; gap: 1.75rem; }
.footer__legal-nav a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color .2s; }
.footer__legal-nav a:hover { color: rgba(255,255,255,.65); }

/* ── 26. Pagination ───────────────────────────────────────── */
.pagination { display: flex; justify-content: center; margin-top: 3.5rem; }
.nav-links { display: flex; gap: .5rem; }
.page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--clr-border); font-size: .875rem; font-weight: 600;
  transition: background .2s, color .2s;
}
.page-numbers.current { background: var(--clr-navy); color: #fff; border-color: var(--clr-navy); }
.page-numbers:hover { background: var(--clr-light); }

/* ── 27. Page Content ─────────────────────────────────────── */
.page-content__inner { max-width: 800px; }

/* ── 28. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__form-wrap { display: none; }
  .hero { min-height: 65vh; }
  .about-teaser__inner,
  .cx-section__inner,
  .about-page__inner,
  .mot-reminder__inner { grid-template-columns: 1fr; }
  .about-teaser__inner { gap: 3rem; } /* reduce gap when stacked */
  /* .extended-hours__inner handled in its own section block above */
  .process__steps { grid-template-columns: 1fr 1fr; }
  .process__steps::before { display: none; }
  /* Footer: about full-width on top, then 4 columns below */
  .footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2.5rem; }
  .footer__col--about { grid-column: 1 / -1; }
  .footer__tagline { max-width: 480px; }
  .contact-page__inner,
  .service-single__inner,
  .single-post__inner { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { grid-template-columns: 1fr 1fr; }
  .about-teaser__image-wrap::before { display: none; }
  .cx-section__image-wrap::after { display: none; }
}

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

@media (max-width: 768px) {
  :root { --header-h: 64px; --topbar-h: 0px; }
  .header__topbar { display: none; }
  .about-teaser__inner { gap: 2rem; }
  .brands-strip__label { display: none; } /* too cramped on mobile */
  .page-hero { padding-block: 4.5rem; } /* tighten page heroes before 480px rule kicks in */
  /* Inner page heroes — shorter on mobile, no need for tall hero treatment */
  .page-hero--post,
  .page-hero--service-single,
  .page-hero--news,
  .page-hero--careers,
  .page-hero--contact,
  .page-hero--booking { padding-block: 3rem; }
  /* Post page heading — lower the font-size floor for long titles on narrow screens */
  .page-hero__heading { font-size: clamp(1.55rem, 5.5vw, 2.1rem); line-height: 1.2; }
  /* Breadcrumb — allow wrapping and hide the current page title (shown as h1 below) */
  .breadcrumb { flex-wrap: wrap; row-gap: .25rem; }
  .breadcrumb [aria-current="page"] { display: none; }
  .breadcrumb span[aria-hidden]:last-of-type { display: none; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--clr-navy-dark); padding: 1rem;
    box-shadow: var(--shadow-xl);
  }
  .nav.is-open { display: block; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav__link { padding: .8rem .5rem; font-size: .9rem; }
  .nav__dropdown {
    position: static; box-shadow: none; border-radius: 0;
    opacity: 1; visibility: visible; transform: none;
    background: rgba(0,0,0,.15); display: none; border-top: none;
  }
  .nav__item.is-open > .nav__dropdown { display: block; }
  .nav__dropdown .nav__link { color: rgba(255,255,255,.7); }
  .nav__hamburger { display: flex; }
  /* .header__phone removed — phone now only shown in top bar */
  .hero__inner { padding-block: 2.5rem; }
  /* Mobile hero — hide body copy (heading + CTA is enough at small sizes) */
  .hero__body { display: none; }
  /* Tighten the heading floor so it doesn't dominate the small screen */
  .hero__heading { font-size: clamp(1.9rem, 7vw, 2.4rem); margin-bottom: 1rem; }
  .hero__subheading { margin-bottom: .75rem; }
  .process__steps { grid-template-columns: 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; }
  /* Footer: about + services on row 1, contact + hours on row 2 */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__col--about { grid-column: 1 / -1; }
  .footer__tagline { max-width: 100%; }
  .feature-list { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 2.5rem; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
  .header__cta .btn { display: none; }
  .services-section__grid { grid-template-columns: 1fr; }
  .service-card { min-height: 370px; }
  .mot-reminder__inner { gap: 2rem; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__col--about { grid-column: 1; }
  .stats-bar__inner { flex-direction: column; gap: 1.75rem; }
  .about-teaser__inner { gap: 1.5rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .footer__legal-nav { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .credentials__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — added after homepage completion
   ═══════════════════════════════════════════════════════════ */

/* ── Shared page hero modifiers ─────────────────────────── */
.eyebrow--light { color: rgba(255,255,255,.65); }
.page-hero--about,
.page-hero--services,
.page-hero--contact,
.page-hero--news,
.page-hero--post,
.page-hero--careers,
.page-hero--booking,
.page-hero--service-single,
.page-hero--simple { padding-block: 6.5rem; }
.page-hero__inner--post .page-hero__heading { max-width: 760px; }
.post-hero__meta {
  display: flex; align-items: center; gap: .85rem;
  margin-bottom: .85rem;
}
.post-hero__cat {
  background: var(--clr-red); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: .25rem .65rem; border-radius: 3px;
}
.post-hero__date { color: rgba(255,255,255,.6); font-size: .85rem; }

/* ── About page — intro section (parallax background) ──────── */
.about-intro {
  position: relative;
  background: var(--clr-navy) center/cover no-repeat;
  background-attachment: fixed;
}
.about-intro__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,46,.88) 0%, rgba(10,22,46,.72) 100%);
}
.about-intro__inner {
  position: relative; z-index: 1;
}
.about-intro__heading { color: #fff; }
.about-intro__content { display: flex; flex-direction: column; gap: 1.5rem; }
.prose--light p { color: rgba(255,255,255,.82); }
.prose--light strong { color: #fff; }
.about-intro__badges {
  display: flex; flex-wrap: wrap; gap: .65rem;
  padding-top: .5rem;
}
.about-intro__badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-left: 3px solid var(--clr-red);
  color: #fff; font-size: .82rem; font-weight: 600;
  padding: .45rem .85rem; border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
.about-intro__badge svg { color: var(--clr-red); flex-shrink: 0; }

/* ── About values section ─────────────────────────────────── */
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.about-value-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  border-top: 4px solid var(--clr-red);
  padding: 2.25rem 2rem;
  transition: box-shadow .25s, transform .25s;
}
.about-value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.about-value-card__icon {
  width: 52px; height: 52px;
  background: rgba(228,0,69,.08); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--clr-red);
}
.about-value-card__heading { font-size: 1rem; color: var(--clr-navy); margin-bottom: .65rem; }
.about-value-card__text { font-size: .875rem; color: var(--clr-text-muted); line-height: 1.7; }

/* ── Services archive ─────────────────────────────────────── */
.service-trust-strip {
  background: var(--clr-navy);
  border-top: 1px solid rgba(255,255,255,.06);
}
.service-trust-strip__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
  padding-block: 1.25rem;
}
.service-trust-strip__item {
  display: flex; align-items: center; gap: .55rem;
  color: rgba(255,255,255,.75); font-size: .82rem; font-weight: 500;
}
.service-trust-strip__item svg { color: var(--clr-red); flex-shrink: 0; }

.services-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.service-archive-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.service-archive-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.service-archive-card__image-wrap {
  position: relative; height: 220px; overflow: hidden;
  background: var(--clr-navy);
}
.service-archive-card__image {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .45s ease;
}
.service-archive-card:hover .service-archive-card__image { transform: scale(1.04); }
.service-archive-card__image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(25,43,73,.5) 100%);
}
.service-archive-card__placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--clr-navy) 0%, var(--clr-dark-navy) 100%);
  color: rgba(255,255,255,.3);
}
.service-archive-card__content {
  padding: 1.75rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.service-archive-card__title {
  font-size: 1.15rem; color: var(--clr-navy);
  margin-bottom: .6rem;
}
.service-archive-card__desc {
  font-size: .875rem; color: var(--clr-text-muted);
  line-height: 1.65; margin-bottom: 1rem;
}
.service-archive-card__features {
  display: flex; flex-direction: column; gap: .4rem;
  margin-bottom: 1.25rem; padding: 0;
  list-style: none;
}
.service-archive-card__features li {
  display: flex; align-items: flex-start; gap: .45rem;
  font-size: .82rem; color: var(--clr-text-muted);
}
.service-archive-card__features svg { color: var(--clr-red); flex-shrink: 0; margin-top: 2px; }
.service-archive-card__link {
  display: inline-flex; align-items: center; gap: .45rem;
  color: var(--clr-red); font-size: .88rem; font-weight: 700;
  margin-top: auto;
  transition: gap .2s;
}
.service-archive-card__link:hover { gap: .7rem; }
.service-archive-card__link svg { transition: transform .2s; }
.service-archive-card__link:hover svg { transform: translateX(3px); }

/* ── Service action strip (single service page) ──────────── */
.service-action-strip {
  background: var(--clr-light);
  border-bottom: 1px solid var(--clr-border);
}
.service-action-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding-block: 1rem;
}
.service-action-strip__info {
  display: flex; align-items: center; gap: .5rem;
  font-size: .875rem; color: var(--clr-text-muted);
}
.service-action-strip__info svg { color: var(--clr-red); }
.service-action-strip__actions { display: flex; gap: .85rem; flex-wrap: wrap; }

/* Sidebar hours list */
.sidebar-hours-list {
  display: flex; flex-direction: column; gap: .7rem;
  list-style: none; padding: 0;
}
.sidebar-hours-list li {
  display: flex; justify-content: space-between;
  font-size: .875rem; gap: 1rem;
}
.sidebar-hours-list li:not(:last-child) {
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--clr-border);
}
.sidebar-hours-list li span:first-child { color: var(--clr-text-muted); }
.sidebar-hours-list li span:last-child { font-weight: 600; color: var(--clr-navy); }
.sidebar-card--hours { border-top: 4px solid var(--clr-red); }

/* Hours sub-labels (Office / Workshop) */
.sidebar-hours-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin: .9rem 0 .45rem;
}
.sidebar-hours-label:first-of-type { margin-top: 0; }
.sidebar-hours-label--workshop { color: var(--clr-red); }

/* btn--outline-light and btn--sm are defined in the button block above */

/* ── Contact page ─────────────────────────────────────────── */
.contact-quick-strip {
  background: var(--clr-navy);
  border-top: 1px solid rgba(255,255,255,.06);
}
.contact-quick-strip__inner {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0;
}
.contact-quick-strip__item {
  display: flex; align-items: center; gap: .85rem;
  padding: 1.35rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
}
.contact-quick-strip__item:hover { background: rgba(255,255,255,.04); }
.contact-quick-strip__item--no-link { cursor: default; }
.contact-quick-strip__item--no-link:hover { background: transparent; }
.contact-quick-strip__icon {
  width: 40px; height: 40px;
  background: rgba(228,0,69,.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--clr-red); flex-shrink: 0;
}
.contact-quick-strip__label {
  display: block; font-size: .72rem;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  letter-spacing: .07em; font-weight: 500; margin-bottom: .15rem;
}
.contact-quick-strip__value {
  display: block; font-size: .9rem;
  color: #fff; font-weight: 600;
}

.contact-info-card {
  background: var(--clr-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-border);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.contact-info-card--hours { border-top: 4px solid var(--clr-red); }
.contact-info-card__header {
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--clr-border);
}
.contact-info-card__header h3 {
  font-size: 1rem; font-weight: 700; color: var(--clr-navy); margin: 0;
}
.contact-detail-list { list-style: none; padding: 0; }
.contact-detail-list li {
  display: flex; gap: .85rem; align-items: flex-start;
  padding-bottom: 1.1rem; margin-bottom: 1.1rem;
  border-bottom: 1px solid var(--clr-border);
}
.contact-detail-list li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-detail-list svg { color: var(--clr-red); flex-shrink: 0; margin-top: 2px; }
.contact-detail-list__label {
  display: block; font-size: .72rem;
  color: var(--clr-text-muted); text-transform: uppercase;
  letter-spacing: .07em; font-weight: 500; margin-bottom: .2rem;
}
.contact-detail-list a, .contact-detail-list address {
  font-size: .9rem; color: var(--clr-navy); font-weight: 600;
  font-style: normal; line-height: 1.5;
}
.contact-detail-list a:hover { color: var(--clr-red); }
.contact-info-card__note {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--clr-text-muted); margin-top: 1rem;
}
.contact-info-card__note svg { color: var(--clr-red); flex-shrink: 0; }
.contact-social-links { display: flex; gap: 1rem; flex-wrap: wrap; }
.contact-social-links a {
  font-size: .875rem; font-weight: 600; color: var(--clr-red);
}
.contact-social-links a:hover { text-decoration: underline; }
.map-section { line-height: 0; }

/* ── News page hero — anchored left ─────────────────────── */
.page-hero--news .page-hero__inner { text-align: left; }
.page-hero--news .page-hero__inner::before {
  content: '';
  display: block;
  width: 2.5rem; height: 3px;
  background: var(--clr-red);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

/* ── News archive extra styles ───────────────────────────── */
.news-archive__grid { gap: 2rem; }
.news-archive__header {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--clr-border);
}
.news-archive__header .section__eyebrow { margin-bottom: 0; }
.news-archive__count { font-size: .82rem; color: var(--clr-text-muted); font-weight: 400; }
.no-results-block {
  text-align: center; padding: 4rem 0;
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
.no-results-block p { color: var(--clr-text-muted); font-size: 1.05rem; }
.pagination { margin-top: 3rem; text-align: center; }
.pagination .page-numbers {
  display: inline-flex; align-items: center; gap: .4rem;
  flex-wrap: wrap; justify-content: center;
}
.pagination .page-numbers a,
.pagination .page-numbers span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--clr-navy);
  border: 1px solid var(--clr-border); transition: background .2s, color .2s;
}
.pagination .page-numbers a:hover { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }
.pagination .page-numbers .current { background: var(--clr-red); color: #fff; border-color: var(--clr-red); }
.pagination .page-numbers .dots { border: none; width: auto; }

/* ── Single post ─────────────────────────────────────────── */
.post-footer {
  margin-top: 3rem; padding-top: 1.75rem;
  border-top: 1px solid var(--clr-border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.post-footer__cats {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; font-size: .85rem; color: var(--clr-text-muted);
}
.post-footer__cats a {
  color: var(--clr-red); font-weight: 600;
}
.post-footer__back {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .875rem; color: var(--clr-navy); font-weight: 600;
  transition: gap .2s;
}
.post-footer__back:hover { gap: .7rem; color: var(--clr-red); }

/* ── Inner page responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .about-values__grid { grid-template-columns: repeat(2, 1fr); }
  .services-archive__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-quick-strip__item { padding: 1rem 1.25rem; }
}

@media (max-width: 768px) {
  /* iOS doesn't support background-attachment: fixed — fall back to scroll */
  .about-intro { background-attachment: scroll; }
  .about-values__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .services-archive__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-action-strip__inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .contact-quick-strip__inner { flex-direction: column; gap: 0; }
  .contact-quick-strip__item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .service-trust-strip__inner { gap: 1.25rem; }
  .post-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  /* About gets slightly more breathing room as it has more hero content */
  .page-hero--about,
  .page-hero--services,
  .page-hero--simple { padding-block: 3.5rem; }
  /* Post/inner page heroes — keep compact on very small screens */
  .page-hero--contact,
  .page-hero--news,
  .page-hero--post,
  .page-hero--careers,
  .page-hero--booking,
  .page-hero--service-single { padding-block: 2.5rem; }
  .service-archive-card__image-wrap { height: 180px; }
  .about-intro__badges { flex-direction: column; }
  .service-action-strip__actions { flex-direction: column; width: 100%; }
  .service-action-strip__actions .btn { width: 100%; justify-content: center; }
}

/* ── WordPress admin bar compensation ──────────────────────────────────
   WP adds html { margin-top: 32px } when the admin bar is visible.
   This shifts the body content down 32px from the viewport top.
   The fixed site-header also needs to shift down by the same amount so
   it sits below the admin bar, not behind it.
   Body padding-top does NOT need to change — the html margin-top
   already shifts the body box down, so the body padding keeps the hero
   flush with the bottom of the header automatically.
   ──────────────────────────────────────────────────────────────────── */
.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}


/* ═══════════════════════════════════════════════════════════════════
   BOOKING REQUEST PAGE
   ═══════════════════════════════════════════════════════════════════ */

/* Page layout */
.booking-page__inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

/* ── Form ──────────────────────────────────────────────────────────── */
.booking-form__section {
  border: none;
  padding: 0;
  margin: 0 0 2.5rem;
}

.booking-form__legend {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 1.25rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--clr-border);
  width: 100%;
  display: block;
}

.form-row { display: grid; gap: 1rem; margin-bottom: 1.25rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1.25rem; }
.form-row > .form-group { margin-bottom: 0; } /* reset — row handles spacing */
.form-group--half { max-width: calc(50% - .5rem); }

.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--clr-navy);
}

.form-required { color: var(--clr-red); margin-left: .1rem; }

.form-input {
  border: 1.5px solid var(--clr-border);
  border-radius: 6px;
  padding: .65rem .9rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--clr-text);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}

.form-input:focus {
  outline: none;
  border-color: var(--clr-navy);
  box-shadow: 0 0 0 3px rgba(30,52,88,.1);
}

.form-input--reg {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

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

.form-hint {
  font-size: .78rem;
  color: var(--clr-text-muted);
  margin-top: .1rem;
}

/* Checkboxes */
.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem 1.5rem;
  margin-top: .25rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .875rem;
  cursor: pointer;
  user-select: none;
}

.form-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__mark {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--clr-border);
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .15s, background .15s;
}

.form-checkbox input:checked + .form-checkbox__mark {
  background: var(--clr-navy);
  border-color: var(--clr-navy);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* Submit row */
.booking-form__submit {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.booking-form__submit-note {
  font-size: .82rem;
  color: var(--clr-text-muted);
  margin: 0;
}

.booking-form__submit-note a {
  color: var(--clr-navy);
  font-weight: 600;
}

/* Error message */
.booking-form__error {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  background: #fff2f5;
  border: 1.5px solid #fbb;
  color: #c0003b;
  border-radius: 8px;
  padding: .9rem 1.1rem;
  font-size: .875rem;
  margin-bottom: 1.5rem;
}

/* Success state */
.booking-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--clr-light);
  border-radius: 12px;
  border: 1.5px solid var(--clr-border);
}

.booking-success__icon {
  width: 60px;
  height: 60px;
  background: var(--clr-navy);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.booking-success h2 { margin-bottom: .75rem; }
.booking-success p  { color: var(--clr-text-muted); margin-bottom: 1.5rem; }
.booking-success a:not(.btn) { color: var(--clr-navy); font-weight: 600; }

/* "What happens next" mini list */
.booking-steps-mini {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.booking-steps-mini li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--clr-text);
  line-height: 1.4;
}

.booking-steps-mini li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--clr-navy);
  color: #fff;
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Service page: quote prompt (bottom CTA banner update) ─────────── */
.quote-prompt {
  background: var(--clr-light);
  border-top: 1px solid var(--clr-border);
}

.quote-prompt__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.quote-prompt__heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: .35rem;
}

.quote-prompt__text p {
  color: var(--clr-text-muted);
  font-size: .9rem;
  margin: 0;
}

.quote-prompt__actions {
  display: flex;
  gap: .75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .booking-page__inner { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .form-group--half { max-width: 100%; }
  .form-checkboxes { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .booking-form__submit { flex-direction: column; align-items: flex-start; }
  .quote-prompt__inner { flex-direction: column; align-items: flex-start; }
  .quote-prompt__actions { width: 100%; }
  .quote-prompt__actions .btn { flex: 1; text-align: center; justify-content: center; }
}


/* ==========================================================
   CAREERS PAGE
   ========================================================== */

/* ── Intro section ── */
.careers-intro__inner {
    display: block;
    max-width: 760px;
    margin: 0 auto;
}

.careers-intro__content .prose p {
    color: var(--clr-text-muted, #6B7280);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 1.0625rem;
}

.careers-intro__content .prose strong {
    color: var(--clr-navy);
    font-weight: 600;
}

/* Credential bar — 4-cell bordered strip below prose */
.careers-intro__badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    border: 1px solid #DDE3EF;
    border-radius: 12px;
    overflow: hidden;
}

.careers-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 28px 20px;
    background: #F4F7FD;
    border-right: 1px solid #DDE3EF;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 1.35;
}

.careers-badge:last-child {
    border-right: none;
}

.careers-badge svg {
    flex-shrink: 0;
    color: var(--clr-red);
    width: 28px;
    height: 28px;
    margin-bottom: 4px;
}

/* ── Benefits grid ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.benefit-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 28px 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.benefit-card__icon {
    width: 44px;
    height: 44px;
    background: #FEE9EA;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--clr-red);
    flex-shrink: 0;
}

.benefit-card__icon svg {
    width: 20px;
    height: 20px;
}

.benefit-card__title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-card__body {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.65;
    margin: 0;
}

/* ── Vacancies list ── */
.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    max-width: 860px;
    margin: var(--space-10) auto 0;
}

.vacancy-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    padding: var(--space-6);
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.vacancy-card:hover {
    border-color: var(--clr-navy);
    box-shadow: 0 4px 16px rgba(30, 52, 88, 0.08);
}

.vacancy-card__main {
    flex: 1;
    min-width: 0;
}

.vacancy-card__meta {
    display: flex;
    gap: var(--space-2);
    margin-bottom: var(--space-2);
    flex-wrap: wrap;
}

.vacancy-tag {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.vacancy-tag--dept {
    background: #EFF3FA;
    color: var(--clr-navy);
}

.vacancy-tag--type {
    background: #FEF2F2;
    color: var(--clr-red);
}

.vacancy-card__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: var(--space-2);
}

.vacancy-card__details {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--clr-text-muted, #6B7280);
}

.vacancy-card__details span {
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.vacancy-card__excerpt {
    margin-top: var(--space-3);
    font-size: 0.875rem;
    color: var(--clr-text-muted, #6B7280);
    line-height: 1.6;
}

.vacancy-card__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
    flex-shrink: 0;
}

/* ── No vacancies state ── */
.vacancies-empty {
    max-width: 520px;
    margin: var(--space-10) auto 0;
    text-align: center;
}

.vacancies-empty__icon {
    width: 72px;
    height: 72px;
    background: #EFF3FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-5);
    color: var(--clr-navy);
}

.vacancies-empty__heading {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--clr-navy);
    margin-bottom: var(--space-3);
}

.vacancies-empty p {
    color: var(--clr-text-muted, #6B7280);
    line-height: 1.7;
    margin-bottom: var(--space-6);
}

.vacancies-empty__actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

/* ── Values (dark navy bg — slightly darker than cta-banner to separate them visually) ── */
.section--navy {
    background: #192B49;
}

.section__header--light .eyebrow,
.section__header--light .section__heading--light {
    color: #fff;
}

.hfg-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-5);
    margin-top: var(--space-10);
}

.hfg-value {
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: var(--space-6);
}

.hfg-value h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: var(--space-2);
}

.hfg-value p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .hfg-values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .careers-intro__badges {
        grid-template-columns: repeat(2, 1fr);
    }
    .careers-badge:nth-child(2) { border-right: none; }
    .careers-badge:nth-child(1),
    .careers-badge:nth-child(2) { border-bottom: 1px solid #DDE3EF; }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .vacancy-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .vacancy-card__actions {
        flex-direction: row;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .benefits-grid { grid-template-columns: 1fr; }
    .hfg-values-grid { grid-template-columns: 1fr; }
    .vacancies-empty__actions { flex-direction: column; align-items: center; }
}


/* ==========================================================
   ABOUT PAGE — HUNT'S FOOD GROUP SECTION
   ========================================================== */

.about-hunts__header {
    margin-bottom: var(--space-10);
}

.about-hunts__inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-12);
    align-items: start;
}

.about-hunts__content p {
    color: var(--clr-text-muted, #6B7280);
    line-height: 1.75;
    margin-bottom: var(--space-4);
}

.about-hunts__content p strong {
    color: var(--clr-navy);
    font-weight: 600;
}

/* Callout quote block */
.hunts-callout {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-top: var(--space-6);
    padding: 1.5rem 1.75rem;
    background: var(--clr-navy);
    border-radius: var(--radius-md);
}

.hunts-callout svg {
    color: var(--clr-red);
    flex-shrink: 0;
    margin-top: .2rem;
}

.hunts-callout p {
    color: rgba(255,255,255,.92) !important;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.65;
    margin-bottom: 0 !important;
    font-style: italic;
}

.about-hunts__stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    padding-top: var(--space-2);
}

.hunts-stat {
    padding: var(--space-5);
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    border-left: 4px solid var(--clr-red);
}

.hunts-stat__number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--clr-navy);
    line-height: 1.1;
    margin-bottom: var(--space-1);
}

.hunts-stat__label {
    font-size: 0.8125rem;
    color: var(--clr-text-muted, #6B7280);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .about-hunts__inner {
        grid-template-columns: 1fr;
    }
    .about-hunts__stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-3);
    }
}

@media (max-width: 600px) {
    .about-hunts__stats {
        grid-template-columns: 1fr;
    }
}


/* ==========================================================
   PRICING BADGES & INDICATORS
   ========================================================== */

/* ── Homepage service card badge (top-right corner) ── */
.service-card {
    position: relative; /* ensure badge positions relative to card */
}

.service-card__price-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    background: rgba(30, 52, 88, .85);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .7rem;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .02em;
    line-height: 1.4;
    pointer-events: none;
}

.service-card__price-badge strong {
    color: #fff;
    font-weight: 700;
    font-size: .8rem;
}

/* ── Archive service card price (inline with title) ── */
.service-archive-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: var(--space-3, .75rem);
}

.service-archive-card__title {
    flex: 1;
    margin-bottom: 0; /* override existing margin — header handles spacing now */
}

.service-archive-card__price {
    flex-shrink: 0;
    background: #EFF3FA;
    border: 1px solid #DDE3EF;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: .7rem;
    color: var(--clr-text-muted, #6B7280);
    line-height: 1.4;
    white-space: nowrap;
    margin-top: 4px;
}

.service-archive-card__price strong {
    color: var(--clr-navy);
    font-weight: 700;
    font-size: .8rem;
}

/* ── Single service sidebar price tag ── */
.sidebar-price-tag {
    display: flex;
    align-items: baseline;
    gap: .375rem;
    margin-bottom: 1rem;
    padding: .875rem 1.25rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-left: 3px solid var(--clr-red);
    border-radius: 6px;
}

.sidebar-price-tag__label {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: rgba(255, 255, 255, .65);
}

.sidebar-price-tag__amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.sidebar-price-tag__note {
    font-size: .7rem;
    color: rgba(255, 255, 255, .5);
    margin-left: auto;
}


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

.faq-section {
    background: var(--clr-light, #F8F7F7);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-12);
    align-items: start;
    margin-top: var(--space-10);
}

/* ── Accordion ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: var(--radius-md, 10px);
    overflow: hidden;
    border: 1px solid #DDE3EF;
}

.faq-item {
    background: #fff;
    border-bottom: 1px solid #DDE3EF;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    transition: background .15s;
}

.faq-item__trigger:hover {
    background: #F8F7F7;
}

.faq-item.is-open .faq-item__trigger {
    background: #F8F7F7;
    border-bottom: 1px solid #DDE3EF;
}

.faq-item__question {
    font-size: .9375rem;
    font-weight: 600;
    color: var(--clr-navy);
    line-height: 1.4;
}

.faq-item__icon {
    flex-shrink: 0;
    color: var(--clr-red);
    transition: transform .25s ease;
}

.faq-item.is-open .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-item__panel:not([hidden]) {
    /* JS manages max-height; remove hidden immediately on open */
}

.faq-item__answer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid #DDE3EF;
}

.faq-item__answer p {
    font-size: .9rem;
    color: var(--clr-text-muted, #4B5563);
    line-height: 1.75;
    margin: 0;
}

/* ── CTA side panel ── */
.faq-cta-panel {
    position: sticky;
    top: 120px;
}

.faq-cta-panel__inner {
    background: var(--clr-navy);
    border-radius: var(--radius-md, 10px);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.faq-cta-panel__icon {
    width: 56px;
    height: 56px;
    background: rgba(228, 0, 69, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: var(--clr-red);
}

.faq-cta-panel__heading {
    font-size: 1.1875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .625rem;
}

.faq-cta-panel__text {
    font-size: .875rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.faq-cta-panel .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.faq-cta-panel .btn--outline {
    border-color: rgba(255, 255, 255, .35);
    color: rgba(255, 255, 255, .85);
    background: transparent;
}

.faq-cta-panel .btn--outline:hover {
    border-color: rgba(255, 255, 255, .65);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .faq-cta-panel {
        position: static;
    }

    .faq-cta-panel__inner {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .faq-cta-panel__icon {
        margin: 0;
        flex-shrink: 0;
    }

    .faq-cta-panel__text {
        margin-bottom: 0;
        flex: 1;
        min-width: 200px;
    }

    .faq-cta-panel .btn {
        width: auto;
    }
}

@media (max-width: 600px) {
    .faq-item__trigger {
        padding: 1rem 1.25rem;
    }

    .faq-item__answer {
        padding: 1rem 1.25rem;
    }

    .faq-cta-panel__inner {
        flex-direction: column;
        text-align: center;
    }

    .faq-cta-panel__icon {
        margin: 0 auto;
    }

    .faq-cta-panel .btn {
        width: 100%;
    }
}


/* ==========================================================
   STICKY MOBILE CALL BAR
   ========================================================== */

.mobile-call-bar {
    display: none; /* hidden on desktop — shown only on mobile via media query below */
}

@media (max-width: 768px) {
    .mobile-call-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9000;
        background: var(--clr-navy);
        border-top: 2px solid var(--clr-red);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
        height: 58px;
        align-items: stretch;
    }

    .mobile-call-bar__call {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        color: #fff;
        font-size: .875rem;
        font-weight: 600;
        text-decoration: none;
        padding: 0 1rem;
        border-right: 1px solid rgba(255, 255, 255, .15);
        transition: background .2s;
    }

    .mobile-call-bar__call:hover,
    .mobile-call-bar__call:active {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }

    .mobile-call-bar__call svg {
        flex-shrink: 0;
        opacity: .85;
    }

    .mobile-call-bar__book {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem;
        background: var(--clr-red);
        color: #fff;
        font-size: .875rem;
        font-weight: 700;
        text-decoration: none;
        white-space: nowrap;
        transition: background .2s;
        min-width: 140px;
    }

    .mobile-call-bar__book:hover,
    .mobile-call-bar__book:active {
        background: #c9003d;
        color: #fff;
    }

    /* Nudge page content up so the bar doesn't obscure the footer */
    body {
        padding-bottom: 58px;
    }

    /* Ensure back-to-top button sits above the call bar */
    .back-to-top {
        bottom: 74px;
    }
}
