/*
 * GalaxyWeb Template — styles.css
 * ACHROMATIC ONLY. No chromatic hex values.
 * All chromatic colours come from theme.css (generated per-client).
 *
 * Verify: grep -E "#[0-9a-fA-F]{6}" styles.css
 * Every match must have R==G==B (greyscale).
 */

/* ── 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(--color-ink);
  background: var(--color-surface-light);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Custom properties (achromatic defaults — all overridden by theme.css) ── */

:root {
  /* Colour tokens — true greyscale defaults (R==G==B). All overridden by theme.css. */
  --color-brand-primary:   #222222;
  --color-accent:          #6b6b6b;
  --color-accent-hover:    #4b4b4b;
  --color-surface-dark:    #222222;
  --color-surface-darker:  #111111;
  --color-border:          #373737;
  --color-surface-light:   #f9f9f9;
  --color-surface-alt:     #f3f3f3;
  --color-border-light:    #e5e5e5;
  --color-ink:             #111111;
  --color-ink-muted:       #6b6b6b;
  --color-ink-invert:      #f9f9f9;
  --color-ink-invert-muted:#d1d1d1;

  /* Typography — overridden by theme.css with Google Fonts */
  --font-heading: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-body:    'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, Menlo, monospace;

  /* Layout — NOT overridden by theme.css */
  --max-width:    1200px;
  --gutter:       clamp(1rem, 4vw, 2rem);
  --section-pad:  clamp(3rem, 8vw, 6rem);
  --radius-sm:    4px;
  --radius-md:    8px;
  --radius-lg:    16px;
  --shadow-card:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-raised: 0 4px 16px rgba(0,0,0,0.12);
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
}

/* ── Typography scale ─────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }
em { font-style: italic; }

small, .text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* ── Layout utilities ─────────────────────────────────────────────── */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding-top: var(--section-pad); padding-bottom: var(--section-pad); }
.section--alt { background: var(--color-surface-alt); }
.section--dark {
  background: var(--color-surface-dark);
  color: var(--color-ink-invert);
}
.section--darker {
  background: var(--color-surface-darker);
  color: var(--color-ink-invert);
}

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-auto { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-sm { gap: 0.5rem; }
.gap-md { gap: 1rem; }
.gap-lg { gap: 1.5rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-muted { color: var(--color-ink-muted); }
.text-invert { color: var(--color-ink-invert); }
.text-invert-muted { color: var(--color-ink-invert-muted); }

/* ── Skip link ────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--color-surface-dark);
  color: var(--color-ink-invert);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top var(--transition-fast);
}
.skip-link:focus { top: 1rem; outline: 2px solid var(--color-accent); }

/* ── Header ───────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface-dark);
  color: var(--color-ink-invert);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.site-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.site-logo__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-ink-invert);
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }

.site-nav__links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.site-nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-ink-invert-muted);
  transition: color var(--transition-fast);
  white-space: nowrap;
}
.site-nav__links a:hover,
.site-nav__links a[aria-current="page"] {
  color: var(--color-ink-invert);
}
.site-nav__links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: var(--color-accent);
  color: var(--color-ink-invert);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-header-cta:hover { background: var(--color-accent-hover); }
.btn-header-cta:focus-visible { outline: 2px solid var(--color-ink-invert); outline-offset: 2px; }
.btn-header-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  color: var(--color-ink-invert);
  flex-shrink: 0;
}
.hamburger:focus-visible { outline: 2px solid var(--color-accent); }
.hamburger svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--color-surface-darker);
  color: var(--color-ink-invert);
  flex-direction: column;
  padding: 1.5rem var(--gutter);
  overflow-y: auto;
}
.mobile-nav.is-open { display: flex; }

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-nav__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-ink-invert);
}
.mobile-nav__close:focus-visible { outline: 2px solid var(--color-accent); border-radius: var(--radius-sm); }
.mobile-nav__close svg { width: 24px; height: 24px; }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
}
.mobile-nav__links a {
  display: block;
  padding: 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-ink-invert);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__links a:hover { color: var(--color-accent); }

.mobile-nav__cta {
  margin-top: 2rem;
}

/* ── Buttons ──────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  text-align: center;
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--color-accent);
  color: var(--color-ink-invert);
}
.btn-primary:hover { background: var(--color-accent-hover); }

.btn-outline {
  background: transparent;
  color: var(--color-ink-invert);
  border: 2px solid var(--color-ink-invert-muted);
}
.btn-outline:hover { border-color: var(--color-ink-invert); }

.btn-outline--dark {
  background: transparent;
  color: var(--color-ink);
  border: 2px solid var(--color-border-light);
}
.btn-outline--dark:hover { border-color: var(--color-ink); }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Hero ─────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--color-surface-dark);
  color: var(--color-ink-invert);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.30) 100%
  );
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--gutter);
}

.hero__content { padding-right: 2rem; }

.hero__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.hero__headline { margin-bottom: 1.25rem; }
.hero__headline em { font-style: normal; color: var(--color-accent); }

.hero__lead {
  font-size: 1.125rem;
  color: var(--color-ink-invert-muted);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Hero Quote Form ──────────────────────────────────────────────── */

.quote-form {
  background: var(--color-surface-light);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-raised);
  flex-shrink: 0;
}

.quote-form__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--color-ink);
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-ink);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-ink);
  background: #ffffff;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(107,114,128,0.15);
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-group--select { position: relative; }
.form-group--select::after {
  content: '';
  position: absolute;
  right: 0.875rem;
  top: calc(50% + 0.75rem);
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-ink-muted);
  pointer-events: none;
}

.form-submit { width: 100%; margin-top: 0.5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form-success.is-visible { display: block; }
.form-success__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  color: var(--color-accent);
}

/* ── Trust Bar ────────────────────────────────────────────────────── */

.trust-bar {
  background: var(--color-surface-alt);
  border-bottom: 1px solid var(--color-border-light);
  padding: 2rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem;
}

.trust-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

.trust-item__value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.1;
}

.trust-item__value em {
  font-style: normal;
  color: var(--color-accent);
}

.trust-item__tail {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

/* ── Section headings ─────────────────────────────────────────────── */

.section-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-heading { margin-bottom: 1.25rem; }
.section-heading--tight { margin-bottom: 0.5rem; }
.section-intro { font-size: 1.125rem; color: var(--color-ink-muted); max-width: 640px; }
.section-intro--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header { margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-header--center { text-align: center; }

/* ── Service cards ────────────────────────────────────────────────── */

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

.service-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-raised);
}

.service-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-surface-alt);
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.service-card:hover .service-card__image img { transform: scale(1.04); }

.service-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-card__description {
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.service-card__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.service-card__inclusions {
  margin-bottom: 1rem;
  list-style: none;
}
.service-card__inclusions li {
  display: flex;
  align-items: flex-start;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-ink-muted);
  margin-bottom: 0.25rem;
}
.service-card__inclusions li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-accent);
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-accent);
  transition: gap var(--transition-fast);
  margin-top: auto;
}
.service-card__cta:hover { gap: 0.625rem; }
.service-card__cta svg { width: 18px; height: 18px; }

/* ── About teaser ─────────────────────────────────────────────────── */

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-split__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-split__cta { margin-top: 1.5rem; }

/* ── Testimonials ─────────────────────────────────────────────────── */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
}

.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.875rem;
  color: var(--color-accent);
}
.testimonial-card__stars svg { width: 18px; height: 18px; }

.testimonial-card__quote {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-ink);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card__quote::before { content: '\201C'; }
.testimonial-card__quote::after { content: '\201D'; }

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.testimonial-card__name {
  font-weight: 700;
  font-size: 0.9375rem;
}
.testimonial-card__location {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

/* ── Service area map ─────────────────────────────────────────────── */

.service-area { }

.service-area__intro {
  max-width: 600px;
  margin-bottom: 2rem;
}

.service-area__map {
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  margin-bottom: 1.5rem;
  background: var(--color-surface-alt);
}

.suburb-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.suburb-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  color: var(--color-ink);
}

/* ── CTA band ─────────────────────────────────────────────────────── */

.cta-band {
  background: var(--color-brand-primary);
  color: var(--color-ink-invert);
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  text-align: center;
}

.cta-band__headline {
  margin-bottom: 1.5rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── Page hero (inner pages) ──────────────────────────────────────── */

.page-hero {
  background: var(--color-surface-dark);
  color: var(--color-ink-invert);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
}

.page-hero__title { font-size: clamp(2rem, 4vw, 2.75rem); }
.page-hero__subtitle { color: var(--color-ink-invert-muted); margin-top: 0.5rem; font-size: 1.125rem; }

/* ── About page ───────────────────────────────────────────────────── */

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.story-split--reverse { direction: rtl; }
.story-split--reverse > * { direction: ltr; }

.timeline { margin-top: 2rem; }
.timeline-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: start;
}
.timeline-item__year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-accent);
  padding-top: 0.125rem;
}
.timeline-item__event {
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  padding-top: 0.125rem;
  border-left: 2px solid var(--color-border-light);
  padding-left: 1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.value-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--color-accent);
}
.value-card__title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.value-card__body { font-size: 0.9375rem; color: var(--color-ink-muted); }

.stats-bar {
  background: var(--color-surface-dark);
  color: var(--color-ink-invert);
  padding: 3rem 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.stat-item__label {
  font-size: 0.9375rem;
  color: var(--color-ink-invert-muted);
}

/* ── Services page ────────────────────────────────────────────────── */

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.process-step {
  text-align: center;
  padding: 1.5rem;
}
.process-step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink-invert);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-step__title { font-weight: 700; margin-bottom: 0.5rem; }
.process-step__body { font-size: 0.9375rem; color: var(--color-ink-muted); }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--color-border-light);
}
.service-block:last-child { border-bottom: none; }
.service-block--reverse .service-block__image { order: 2; }
.service-block--reverse .service-block__content { order: 1; }

.service-block__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.service-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-block__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.service-block__inclusions { margin-bottom: 1.5rem; }
.service-block__inclusions li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.375rem;
  font-size: 0.9375rem;
}
.service-block__inclusions li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--color-accent);
}

/* ── Contact page ─────────────────────────────────────────────────── */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.contact-form-card {
  background: #ffffff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.contact-info-card {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-card h3 { margin-bottom: 1.25rem; }

.contact-info-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-info-item svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-accent);
  margin-top: 2px;
}
.contact-info-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink-muted);
  margin-bottom: 0.125rem;
}
.contact-info-item__value { font-weight: 600; }
.contact-info-item__sub { font-size: 0.875rem; color: var(--color-ink-muted); margin-top: 0.125rem; }

.trading-hours { margin-top: 1.5rem; }
.trading-hours h4 { margin-bottom: 0.75rem; font-size: 0.9375rem; }
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--color-border-light);
}
.hours-row:last-child { border-bottom: none; }
.hours-row__day { color: var(--color-ink-muted); }
.hours-row__time { font-weight: 600; }

/* ── Footer ───────────────────────────────────────────────────────── */

.site-footer {
  background: var(--color-surface-darker);
  color: var(--color-ink-invert);
  padding: 3.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand__logo { margin-bottom: 1rem; }
.footer-brand__logo img { height: 36px; width: auto; }
.footer-brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-ink-invert);
}
.footer-brand__tagline {
  font-size: 0.9375rem;
  color: var(--color-ink-invert-muted);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.footer-brand__blurb {
  font-size: 0.875rem;
  color: var(--color-ink-invert-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.footer-brand__licences {
  list-style: none;
  margin-bottom: 1rem;
}
.footer-brand__licences li {
  font-size: 0.8125rem;
  color: var(--color-ink-invert-muted);
  margin-bottom: 0.25rem;
}
.footer-brand__licences strong { color: var(--color-ink-invert); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--color-border);
  color: var(--color-ink-invert);
  transition: background var(--transition-fast);
}
.footer-social a:hover { background: var(--color-accent); }
.footer-social a:focus-visible { outline: 2px solid var(--color-accent); }
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-ink-invert-muted);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  font-size: 0.9375rem;
  color: var(--color-ink-invert-muted);
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--color-ink-invert); }
.footer-col a:focus-visible { outline: 2px solid var(--color-accent); border-radius: 2px; }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--color-ink-invert-muted);
  margin-bottom: 0.625rem;
}
.footer-contact p svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--color-accent); margin-top: 2px; }
.footer-contact a { color: var(--color-ink-invert-muted); }
.footer-contact a:hover { color: var(--color-ink-invert); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  font-size: 0.8125rem;
  color: var(--color-ink-invert-muted);
}

/* ── Responsive ───────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 3.5rem var(--gutter);
  }
  .hero__overlay {
    background: rgba(0,0,0,0.6);
  }
  .hero__content { padding-right: 0; }
  .quote-form { width: 100%; max-width: 520px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split, .about-split { grid-template-columns: 1fr; }
  .story-split--reverse { direction: ltr; }
  .service-block { grid-template-columns: 1fr; }
  .service-block--reverse .service-block__image { order: 0; }
  .service-block--reverse .service-block__content { order: 0; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav__links, .site-nav .btn-header-cta:not(.hamburger) { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Utility ──────────────────────────────────────────────────────── */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.lqip-wrapper { position: relative; overflow: hidden; }
.lqip-wrapper img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lqip-wrapper .lqip-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(10px);
  transform: scale(1.05);
  transition: opacity 400ms ease;
}
.lqip-wrapper img.is-loaded ~ .lqip-placeholder { opacity: 0; }
