/* ============================================
   STR Relocations — Design tokens
   ============================================ */
:root {
  --ink: #1A1613;
  --ink-soft: #2B2521;
  --orange: #E4622B;
  --orange-deep: #B94A1D;
  --orange-light: #FBE6DA;
  --cream: #F7F3EC;
  --paper: #FFFFFF;
  --grey: #6B6459;
  --grey-light: #C9C2B8;
  --line: #E7E0D4;

  --font-display: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 6px;
  --shadow: 0 12px 30px rgba(26, 22, 19, 0.14);
  --shadow-soft: 0 4px 14px rgba(26, 22, 19, 0.08);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.1rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 4.4vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.4rem); text-transform: none; font-family: var(--font-body); font-weight: 700; }

p { color: var(--grey); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-deep);
}
.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 2px; }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-soft); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}
.btn-ghost:hover { border-color: #fff; }
.btn-block { width: 100%; }

/* ============================================
   Header
   ============================================ */
.header-topbar {
  background: #0F0D0B;
  border-bottom: 1px solid rgba(228, 98, 43, 0.18);
  overflow: hidden;
}
.topbar-marquee {
  overflow: hidden;
  white-space: nowrap;
}
.topbar-track {
  display: inline-flex;
  align-items: center;
  animation: topbar-scroll 28s linear infinite;
  will-change: transform;
}
.topbar-item {
  position: relative;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.58);
  white-space: nowrap;
  padding: 9px 24px;
}
.topbar-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}
@keyframes topbar-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .topbar-marquee { overflow: visible; white-space: normal; }
  .topbar-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4px 0;
  }
  .topbar-item[aria-hidden="true"] { display: none; }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(160deg, #1E1915 0%, #171310 55%, #14110E 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.site-header::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 35%, var(--orange) 65%, transparent);
  opacity: 0.85;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
}
.header-inner .logo { grid-column: 1; }
.header-inner .nav-desktop { grid-column: 2; justify-self: center; }
.header-inner .header-actions { grid-column: 3; }
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
}
.logo-img {
  height: 34px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}

@media (min-width: 480px) {
  .logo { margin-left: 10px; }
  .logo-img { height: 44px; }
}
@media (min-width: 900px) {
  .logo { margin-left: 18px; }
}

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 30px; list-style: none; }
.nav-desktop a {
  position: relative;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.82;
  padding: 4px 0;
  transition: opacity 0.15s ease;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.nav-desktop a:hover { opacity: 1; }
.nav-desktop a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 6px;
}
.header-actions .btn-primary {
  padding: 9px 14px;
  font-size: 0.82rem;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: 0 4px 14px rgba(228, 98, 43, 0.35);
}
.header-actions .btn-primary:hover {
  box-shadow: 0 6px 18px rgba(228, 98, 43, 0.45);
}
@media (min-width: 480px) {
  .header-actions { margin-right: 10px; }
  .header-actions .btn-primary { padding: 11px 20px; font-size: 0.9rem; }
}
@media (min-width: 900px) {
  .header-actions { margin-right: 18px; }
}
.nav-toggle {
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  background: var(--ink-soft);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; padding: 8px 0; }
.nav-mobile a {
  display: block;
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-mobile .mobile-cta { padding: 16px 20px; }

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 40px 0 56px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(228, 98, 43, 0.35), transparent 45%),
    repeating-linear-gradient(120deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 34px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 32px;
}
.hero-copy .eyebrow { color: var(--orange); }
.hero-copy .eyebrow::before { background: var(--orange); }
.hero-copy h1 {
  margin-top: 14px;
  color: #fff;
}
.hero-copy h1 span { color: var(--orange); }
.hero-copy p.lead {
  margin-top: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 46ch;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 26px;
}
.hero-trust li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-trust li::before {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Quote card */
.quote-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px;
  border-top: 5px solid var(--orange);
}
.quote-card-head { margin-bottom: 16px; }
.quote-card-head .eyebrow { color: var(--orange-deep); }
.quote-card-head h2 {
  font-size: 1.35rem;
  margin-top: 6px;
}
.quote-card-head p {
  margin-top: 6px;
  font-size: 0.88rem;
}

.quote-form { display: grid; gap: 12px; }
.quote-form .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.quote-form .field-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.field label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 5px;
}
.field input,
.field select {
  width: 100%;
  height: 48px;
  padding: 12px 13px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--ink);
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
/* Calendar icon overlay — iOS Safari renders an empty type=date input
   with no visible text or icon at all, which reads as a broken field.
   An always-on icon fixes that regardless of what the native control
   draws (or doesn't) inside itself. */
.date-field { position: relative; }
.date-field::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  background: var(--grey);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E") center/contain no-repeat;
  pointer-events: none;
}
.date-field input[type="date"] {
  padding-left: 40px;
  -webkit-appearance: none;
  appearance: none;
}
.quote-form .btn-primary { margin-top: 4px; padding: 15px 26px; font-size: 1rem; }
.quote-microcopy {
  text-align: center;
  font-size: 0.76rem;
  color: var(--grey);
  margin-top: 10px;
}
.quote-success {
  display: none;
  text-align: center;
  padding: 30px 10px;
}
.quote-success.show { display: block; }
.quote-success .check {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.quote-success .check::before {
  content: "";
  width: 24px; height: 24px;
  background: var(--orange);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.quote-form.hide { display: none; }

@media (min-width: 640px) {
  .quote-form .field-row-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 980px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
  }
}

/* ============================================
   Sections (shared)
   ============================================ */
.section { padding: 56px 0; }
.section-head { max-width: 640px; margin-bottom: 34px; }
.section-head h2 { margin-top: 10px; }
.section-head p { margin-top: 12px; font-size: 1.02rem; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-ink { background: var(--ink); color: #fff; }
.section-ink p { color: rgba(255,255,255,0.72); }
.section-ink h2 { color: #fff; }

/* Services / house move sizes */
.move-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
.move-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.move-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.move-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: var(--orange-light);
  padding: 4px 9px;
  border-radius: 5px;
  margin-bottom: 12px;
}
.move-card h3 { margin-bottom: 8px; }
.move-card p { font-size: 0.92rem; }

/* Featured card — hierarchy cue for the most-booked move size */
.move-card--featured {
  background: var(--ink);
  border-color: var(--ink);
}
.move-card--featured .tag {
  background: var(--orange);
  color: #fff;
}
.move-card--featured h3 { color: #fff; }
.move-card--featured p { color: rgba(255,255,255,0.68); }
.move-card--featured:hover { box-shadow: 0 12px 28px rgba(26,22,19,0.28); }

@media (min-width: 640px) {
  .move-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .move-grid { grid-template-columns: repeat(4, 1fr); }
  .move-card--featured { transform: translateY(-10px); }
  .move-card--featured:hover { transform: translateY(-13px); }
}

/* How it works — connected timeline (vertical on mobile, horizontal on desktop) */
.timeline {
  position: relative;
  display: grid;
  gap: 30px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 6px;
  bottom: 6px;
  border-left: 2px dashed rgba(255,255,255,0.22);
}
.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-marker {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  flex-shrink: 0;
}
.timeline-content h3 { color: #fff; margin-bottom: 4px; }
.timeline-content p { font-size: 0.92rem; }

@media (min-width: 980px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 0; }
  .timeline::before {
    left: 0; right: 0; top: 21px; bottom: auto;
    border-left: none;
    border-top: 2px dashed rgba(255,255,255,0.22);
  }
  .timeline-step { grid-template-columns: 1fr; justify-items: center; text-align: center; padding: 0 18px; }
  .timeline-step:nth-child(odd) { margin-top: -6px; }
  .timeline-step:nth-child(even) { margin-top: 14px; }
}

/* Rating badge (real, verifiable — matches aggregateRating schema + Facebook reviews) */
.rating-badge {
  display: flex;
  justify-content: center;
}
.rating-badge-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.rating-badge-link:hover { border-color: var(--orange); }
.rating-badge-stars {
  font-size: 1.4rem;
  color: var(--orange);
  letter-spacing: 2px;
}
.rating-badge-text {
  font-size: 0.95rem;
  color: var(--grey);
}

/* Route / areas map (signature element) */
.route-wrap {
  position: relative;
  padding: 20px 0 6px;
}
.route-line-svg { width: 100%; height: auto; display: block; }
.route-stops {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  grid-template-columns: 1fr;
}
.route-stop {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.route-stop:hover,
.route-stop:focus-visible {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 10px 22px rgba(228,98,43,0.16);
}
.route-stop .dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.route-stop span.postcodes {
  display: block;
  font-size: 0.78rem;
  color: var(--grey);
  font-weight: 400;
}
.route-cta {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 6px;
  opacity: 0.85;
}
.route-stop:hover .route-cta { opacity: 1; }
@media (min-width: 780px) {
  .route-stops { grid-template-columns: repeat(5, 1fr); }
  .route-stop { flex-direction: column; align-items: flex-start; text-align: left; }
}

/* Placeholder image blocks (used only where no real photo yet) */
.ph-image {
  background:
    repeating-linear-gradient(45deg, #EBE3D6 0 12px, #E3D9C8 12px 24px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}
.ph-image::after {
  content: attr(data-label);
  background: rgba(26,22,19,0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 6px;
}

/* Real job photo block */
.job-photo {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.job-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.job-photo .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(26,22,19,0.82), transparent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 26px 16px 12px;
}

/* Location page feature photo — contain-fit so portrait shots aren't cropped unrecognisably */
.job-photo--feature {
  background: var(--ink);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.job-photo--feature img {
  object-fit: contain;
  min-height: 320px;
  max-height: 460px;
}
@media (min-width: 780px) {
  .job-photo--feature { min-height: 420px; }
  .job-photo--feature img { min-height: 420px; }
}

/* Homepage gallery */
.gallery-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
.gallery-grid .job-photo { min-height: 260px; }
.gallery-grid .job-photo img { min-height: 260px; }
@media (min-width: 780px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid .job-photo:first-child { grid-column: span 2; }
  .gallery-grid .job-photo:last-child { grid-column: span 3; }
  .gallery-grid .job-photo:last-child img { min-height: 200px; }
}

/* Testimonials */
.testi-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
.testi-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.testi-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.testi-card p.quote { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 14px; }
.testi-name { font-weight: 700; font-size: 0.88rem; }
.testi-loc { font-size: 0.8rem; color: var(--grey); }
.testi-source {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: var(--grey);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
@media (min-width: 640px) {
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .testi-grid { grid-template-columns: repeat(4, 1fr); }
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 6px 0;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 10px; font-size: 0.92rem; }

/* Location page intro */
.loc-hero {
  background: var(--ink);
  color: #fff;
  padding: 44px 0 40px;
  position: relative;
  overflow: hidden;
}
.loc-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(228,98,43,0.32), transparent 45%);
}
.loc-hero-inner { position: relative; }
.loc-hero .eyebrow { color: var(--orange); }
.loc-hero h1 { color: #fff; margin-top: 12px; }
.loc-hero p.lead { color: rgba(255,255,255,0.78); margin-top: 14px; max-width: 60ch; font-size: 1.02rem; }
.loc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.suburb-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
.suburb-chip {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
}
.suburb-chip .name { font-weight: 700; font-size: 0.9rem; }
.suburb-chip .pc { font-size: 0.78rem; color: var(--grey); }
@media (min-width: 640px) { .suburb-grid { grid-template-columns: repeat(4, 1fr); } }

.other-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.other-areas a {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
.other-areas a:hover { border-color: var(--orange); color: var(--orange-deep); }

/* CTA banner */
.cta-banner {
  background: var(--orange);
  color: #fff;
  padding: 46px 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.9); margin-top: 10px; }
.cta-banner .btn-dark { margin-top: 22px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 44px 0 24px;
  font-size: 0.88rem;
}
.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; max-width: 34ch; }
.footer-col h4 {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; display: grid; gap: 8px; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  font-size: 0.78rem;
}
@media (min-width: 780px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* Utility */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.center-head { margin-left: auto; margin-right: auto; text-align: center; }
