/* ======================================================================
   LOG Removal & Transport — Site stylesheet

   Aesthetic: confident craftsman. Editorial weight, navy authority,
   warm cream surface, single sharp accent that earns its loudness.
   Not corporate. Not playful. Honest, planted, premium-but-approachable.

   Design tokens use --lg- prefix to avoid collisions with the
   contact-form module's --cf- variables.

   Built by Arknet Pty Ltd.
   ====================================================================== */


/* -----------------------------------------------------------------
   Tokens
   ----------------------------------------------------------------- */
:root {
  /* Brand */
  --lg-navy:        #0a1f44;   /* primary / dominant */
  --lg-navy-deep:   #061333;
  --lg-navy-soft:   #1a3163;
  --lg-blue:        #2453c9;   /* mid blue for accents */

  /* Surfaces — neutral off-white + soft gray (replaces former warm cream palette) */
  --lg-cream:       #f5f5f7;   /* off-white surface (was warm cream) */
  --lg-cream-deep:  #e8e8ec;   /* slightly darker gray section */
  --lg-paper:       #ffffff;   /* pure white card surface */
  --lg-white:       #ffffff;

  /* Accent — earns its loudness */
  --lg-rust:        #d4541f;   /* primary CTA — confident, warm, urgent */
  --lg-rust-deep:   #b1421a;
  --lg-rust-soft:   #f1d4c4;

  /* Ink (text) */
  --lg-ink:         #0e1426;
  --lg-ink-soft:    #3a4257;
  --lg-ink-mute:    #6b7488;
  --lg-ink-light:   #9aa3b5;

  /* Borders */
  --lg-line:        #d8d9de;
  --lg-line-strong: #2a3a5c;

  /* Status */
  --lg-success:     #1f6b4f;
  --lg-warning:     #c2761e;

  /* Type */
  --lg-display: 'Archivo', 'Helvetica Neue', system-ui, sans-serif;
  --lg-body:    'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* Geometry */
  --lg-radius-sm:  4px;
  --lg-radius:     8px;
  --lg-radius-lg:  16px;
  --lg-shadow-sm:  0 1px 2px rgba(10, 31, 68, 0.06);
  --lg-shadow:     0 8px 28px -10px rgba(10, 31, 68, 0.18);
  --lg-shadow-lg:  0 22px 60px -20px rgba(10, 31, 68, 0.30);

  /* Container & spacing */
  --lg-container:  1240px;
  --lg-gutter:     clamp(20px, 4vw, 40px);
  --lg-section:    clamp(64px, 9vw, 128px);

  /* Header */
  --lg-header-h:   78px;
}


/* -----------------------------------------------------------------
   Reset / base
   ----------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--lg-header-h);
}

body {
  margin: 0;
  font-family: var(--lg-body);
  font-size: clamp(15px, 1vw + 0.4rem, 17px);
  line-height: 1.6;
  color: var(--lg-ink);
  background: var(--lg-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--lg-navy);
  text-decoration: none;
  transition: color 160ms ease;
}
a:hover { color: var(--lg-rust); }

ul { padding: 0; margin: 0; list-style: none; }

p { margin: 0 0 1em; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lg-display);
  color: var(--lg-navy-deep);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.025em; }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); letter-spacing: -0.015em; }
h4 { font-size: 1.2rem; letter-spacing: -0.01em; }

::selection { background: var(--lg-navy); color: var(--lg-cream); }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lg-navy); color: var(--lg-cream);
  padding: 12px 16px; z-index: 999;
  font-weight: 600;
}
.skip-link:focus { left: 0; }


/* -----------------------------------------------------------------
   Container & generic helpers
   ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--lg-container);
  margin: 0 auto;
  padding: 0 var(--lg-gutter);
}

.eyebrow {
  font-family: var(--lg-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lg-rust);
  margin: 0 0 1.2em;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--lg-rust);
  display: inline-block;
}
.eyebrow--light { color: var(--lg-rust-soft); }
.eyebrow--light::before { background: var(--lg-rust-soft); }


/* -----------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-family: var(--lg-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--lg-radius-sm);
  cursor: pointer;
  text-align: center;
  transition: all 180ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--accent {
  background: var(--lg-rust);
  color: var(--lg-white);
  box-shadow: 0 4px 0 var(--lg-rust-deep);
}
.btn--accent:hover {
  background: var(--lg-rust-deep);
  color: var(--lg-white);
  box-shadow: 0 5px 0 var(--lg-rust-deep);
}

.btn--navy {
  background: var(--lg-navy);
  color: var(--lg-cream);
  box-shadow: 0 4px 0 var(--lg-navy-deep);
}
.btn--navy:hover {
  background: var(--lg-navy-deep);
  color: var(--lg-white);
  box-shadow: 0 5px 0 var(--lg-navy-deep);
}

.btn--ghost-light {
  background: transparent;
  color: var(--lg-navy);
  border-color: var(--lg-navy);
}
.btn--ghost-light:hover {
  background: var(--lg-navy);
  color: var(--lg-cream);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--lg-cream);
  border-color: var(--lg-cream);
}
.btn--ghost-dark:hover {
  background: var(--lg-cream);
  color: var(--lg-navy);
}

.btn--lg { padding: 18px 28px; font-size: 1rem; }


/* -----------------------------------------------------------------
   Header
   ----------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--lg-white);
  border-bottom: 1px solid var(--lg-line);
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--lg-line);
  box-shadow: 0 4px 24px -16px rgba(10, 31, 68, 0.18);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: var(--lg-header-h);
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo {
  height: 44px;
  width: auto;
}

.site-header__nav { flex: 1; }
.site-header__menu {
  display: flex;
  gap: 28px;
  align-items: center;
}
.site-header__menu-link {
  font-family: var(--lg-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lg-navy);
  position: relative;
  padding: 6px 2px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.site-header__menu-link::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--lg-rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}
.site-header__menu-link:hover::after { transform: scaleX(1); }
.site-header__menu-chevron {
  color: var(--lg-rust);
  transition: transform 220ms ease;
  margin-top: 1px;
}

/* Dropdown — desktop hover + focus-within */
.site-header__menu-item--has-dropdown {
  position: relative;
}
.site-header__dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--lg-paper);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  box-shadow: var(--lg-shadow);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms;
  z-index: 100;
}
.site-header__menu-item--has-dropdown:hover .site-header__dropdown,
.site-header__menu-item--has-dropdown:focus-within .site-header__dropdown,
.site-header__menu-item--has-dropdown.is-open .site-header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.site-header__menu-item--has-dropdown:hover .site-header__menu-chevron,
.site-header__menu-item--has-dropdown.is-open .site-header__menu-chevron {
  transform: rotate(180deg);
}
.site-header__dropdown li { margin: 0; }
.site-header__dropdown a {
  display: block;
  padding: 10px 20px;
  font-family: var(--lg-body);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--lg-ink);
  border: 0;
  white-space: nowrap;
  transition: background-color 160ms ease, color 160ms ease;
}
.site-header__dropdown a:hover,
.site-header__dropdown a:focus {
  background: var(--lg-cream);
  color: var(--lg-rust);
}
.site-header__dropdown a::after { display: none; }

.site-header__menu-cta { display: none; }

.site-header__cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.site-header__phone span { font-variant-numeric: tabular-nums; }
.site-header__phone, .site-header__quote { flex-shrink: 0; }

.site-header__toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 12px 9px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  flex-shrink: 0;
}
.site-header__toggle span {
  display: block;
  height: 2.5px;
  width: 26px;
  background: var(--lg-navy);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 200ms ease;
  transform-origin: center;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.site-header__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.site-header__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}


/* -----------------------------------------------------------------
   Hero
   ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--lg-navy-deep);
  color: var(--lg-cream);
  overflow: hidden;
  padding: clamp(72px, 10vw, 140px) 0 clamp(80px, 12vw, 160px);
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.32;
  filter: contrast(1.05) saturate(0.85);
}

/* Gradient + grain on top of video for legibility + texture */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(160deg,
      rgba(6, 19, 51, 0.92) 0%,
      rgba(6, 19, 51, 0.78) 45%,
      rgba(6, 19, 51, 0.65) 100%),
    radial-gradient(circle at 90% 10%, rgba(36, 83, 201, 0.35), transparent 60%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero__lead { max-width: 720px; }

.hero__headline {
  color: var(--lg-cream);
  font-size: clamp(2.6rem, 6.4vw, 5.4rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
}
.hero__headline em {
  font-style: normal;
  color: var(--lg-rust);
  position: relative;
  display: inline-block;
}
.hero__headline em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: rgba(212, 84, 31, 0.22);
  z-index: -1;
}

.hero__sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: rgba(245, 245, 247, 0.85);
  max-width: 580px;
  line-height: 1.55;
  margin: 0 0 36px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 245, 247, 0.18);
}
.hero__trust-stars {
  color: #fbbf24;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
}
.hero__trust-text {
  font-size: 0.9rem;
  color: rgba(245, 245, 247, 0.7);
  font-weight: 500;
}
.hero__trust-text strong { color: var(--lg-cream); font-weight: 700; }

/* Right-side price card */
.hero__price-card {
  background: var(--lg-cream);
  color: var(--lg-ink);
  padding: 32px 32px 28px;
  border-radius: var(--lg-radius-lg);
  border: 2px solid var(--lg-rust);
  box-shadow: var(--lg-shadow-lg), 0 0 0 6px rgba(212, 84, 31, 0.15);
  position: relative;
  transform: rotate(-1deg);
}
.hero__price-card::before {
  content: 'Indicative starting price';
  position: absolute;
  top: -14px;
  left: 24px;
  background: var(--lg-rust);
  color: var(--lg-white);
  font-family: var(--lg-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.hero__price-tiers {
  display: grid;
  gap: 14px;
  margin: 8px 0 20px;
}
.hero__price-tier {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--lg-line);
}
.hero__price-tier:last-child { border-bottom: 0; }
.hero__price-tier-label {
  font-family: var(--lg-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lg-navy-deep);
}
.hero__price-tier-note {
  display: block;
  font-family: var(--lg-body);
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--lg-ink-soft);
  margin-top: 3px;
}
.hero__price-tier-value {
  font-family: var(--lg-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--lg-rust);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.hero__price-tier-value-from {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--lg-ink-mute);
  margin-right: 4px;
}
.hero__price-fine {
  font-size: 0.78rem;
  color: var(--lg-ink-mute);
  line-height: 1.5;
  margin: 14px 0 0;
}


/* -----------------------------------------------------------------
   Sections - generic
   ----------------------------------------------------------------- */
section {
  padding: var(--lg-section) 0;
}

.section-head {
  max-width: 720px;
  margin: 0 auto clamp(40px, 6vw, 80px);
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head__title { margin: 0 0 16px; }
.section-head__sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--lg-ink-soft);
  margin: 0;
}


/* -----------------------------------------------------------------
   Pillars (3-column "what makes us different")
   ----------------------------------------------------------------- */
.pillars { background: var(--lg-cream); }

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(20px, 3vw, 36px);
}

.pillar {
  background: var(--lg-paper);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--lg-shadow);
}
.pillar__num {
  font-family: var(--lg-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lg-rust);
  margin-bottom: 18px;
}
.pillar__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
  color: var(--lg-navy);
}
.pillar__title {
  margin: 0 0 12px;
  font-size: 1.4rem;
}
.pillar__body {
  color: var(--lg-ink-soft);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}


/* -----------------------------------------------------------------
   Services strip (4 services, photo + label)
   ----------------------------------------------------------------- */
.services {
  background: var(--lg-navy);
  color: var(--lg-cream);
}
.services h2 { color: var(--lg-cream); }
.services .section-head__sub { color: rgba(245, 245, 247, 0.7); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 4px;
  background: var(--lg-navy-deep);
  padding: 4px;
  border-radius: var(--lg-radius);
}

.service-card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--lg-navy-deep);
  border-radius: var(--lg-radius-sm);
  aspect-ratio: 4 / 5;
  color: var(--lg-cream);
  transition: transform 320ms ease;
}
.service-card:hover { transform: scale(1.01); color: var(--lg-cream); }

.service-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) saturate(0.9);
  transition: filter 280ms ease, transform 600ms ease;
}
.service-card:hover .service-card__img {
  filter: brightness(0.55) saturate(1);
  transform: scale(1.04);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(6, 19, 51, 0.85) 100%);
}

.service-card__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__num {
  font-family: var(--lg-display);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--lg-rust);
}
.service-card__title {
  font-family: var(--lg-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--lg-cream);
  margin: 0;
  letter-spacing: -0.015em;
}
.service-card__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(245, 245, 247, 0.12);
  border: 1px solid rgba(245, 245, 247, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 240ms ease, transform 240ms ease;
}
.service-card:hover .service-card__arrow {
  background: var(--lg-rust);
  border-color: var(--lg-rust);
  transform: rotate(-45deg);
}
.service-card__arrow svg { color: var(--lg-cream); }


/* -----------------------------------------------------------------
   Video showcase ("see us in action")
   ----------------------------------------------------------------- */
.showcase {
  background: var(--lg-cream);
}
.showcase__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.showcase__video {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--lg-radius);
  overflow: hidden;
  box-shadow: var(--lg-shadow);
  background: var(--lg-navy-deep);
}
.showcase__video video {
  width: 100%; height: 100%;
  object-fit: cover;
}


/* -----------------------------------------------------------------
   Testimonials
   ----------------------------------------------------------------- */
.testimonials {
  background: var(--lg-cream-deep);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: var(--lg-paper);
  padding: 32px 28px;
  border-radius: var(--lg-radius);
  border: 1px solid var(--lg-line);
  position: relative;
  display: flex;
  flex-direction: column;
}
.testimonial__quote-mark {
  font-family: var(--lg-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--lg-rust);
  line-height: 0.6;
  margin-bottom: 12px;
  opacity: 0.85;
}
.testimonial__body {
  color: var(--lg-ink);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 20px;
  flex: 1;
}
.testimonial__author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--lg-line);
}
.testimonial__name {
  font-family: var(--lg-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--lg-navy-deep);
}
.testimonial__source {
  font-size: 0.78rem;
  color: var(--lg-ink-mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}


/* -----------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------- */
.faq { background: var(--lg-cream); }

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq__item {
  background: var(--lg-paper);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  overflow: hidden;
  transition: border-color 200ms ease;
}
.faq__item[open] {
  border-color: var(--lg-navy);
}

.faq__question {
  font-family: var(--lg-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lg-navy-deep);
  padding: 22px 60px 22px 28px;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '';
  position: absolute;
  right: 26px; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 14px;
  border-right: 2.5px solid var(--lg-navy);
  border-bottom: 2.5px solid var(--lg-navy);
  transform-origin: center;
  transform: translateY(-65%) rotate(45deg);
  transition: transform 240ms ease;
}
.faq__item[open] .faq__question::after {
  transform: translateY(-30%) rotate(-135deg);
}

.faq__answer {
  padding: 0 28px 24px;
  color: var(--lg-ink-soft);
  line-height: 1.7;
}
.faq__answer p { margin: 0 0 0.8em; }
.faq__answer p:last-child { margin: 0; }


/* -----------------------------------------------------------------
   Footer
   ----------------------------------------------------------------- */
.site-footer {
  background: var(--lg-navy-deep);
  color: rgba(245, 245, 247, 0.78);
  padding: clamp(56px, 7vw, 96px) 0 32px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lg-rust) 0%, var(--lg-rust) 30%, var(--lg-navy-soft) 30%, var(--lg-navy-soft) 100%);
}

.site-footer__cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: clamp(40px, 5vw, 64px);
  margin-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid rgba(245, 245, 247, 0.12);
}
.site-footer__cta-headline {
  color: var(--lg-cream);
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}
.site-footer__cta-sub {
  margin: 0;
  color: rgba(245, 245, 247, 0.7);
  max-width: 560px;
}
.site-footer__cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.site-footer__cta .eyebrow { color: var(--lg-rust); }
.site-footer__cta .eyebrow::before { background: var(--lg-rust); }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: clamp(20px, 3vw, 48px);
}
.site-footer__col h3 {
  color: var(--lg-cream);
  font-family: var(--lg-display);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 18px;
  font-weight: 700;
}
.site-footer__col ul li {
  margin-bottom: 10px;
}
.site-footer__col a {
  color: rgba(245, 245, 247, 0.78);
  font-size: 0.95rem;
}
.site-footer__col a:hover { color: var(--lg-cream); }

.site-footer__col--brand img {
  margin-bottom: 16px;
  opacity: 0.95;
}
.site-footer__about {
  color: rgba(245, 245, 247, 0.7);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 360px;
}

.site-footer__address {
  font-style: normal;
  color: rgba(245, 245, 247, 0.78);
  font-size: 0.95rem;
  line-height: 1.7;
}
.site-footer__phone {
  font-family: var(--lg-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--lg-cream) !important;
}

.site-footer__bottom {
  margin-top: clamp(40px, 5vw, 60px);
  padding-top: 24px;
  border-top: 1px solid rgba(245, 245, 247, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(245, 245, 247, 0.55);
}
.site-footer__bottom p { margin: 0; }


/* -----------------------------------------------------------------
   Responsive
   ----------------------------------------------------------------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__price-card { transform: none; max-width: 480px; }
  .showcase__inner { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__col--brand { grid-column: 1 / -1; }
  .site-footer__cta { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header__nav,
  .site-header__phone { display: none; }
  .site-header__cta { gap: 8px; }
  .site-header__quote { padding: 12px 18px; font-size: 0.9rem; }
  .site-header__toggle { display: flex; }
  .site-header__menu {
    position: fixed;
    inset: var(--lg-header-h) 0 0 0;
    background: var(--lg-white);
    flex-direction: column;
    padding: 32px var(--lg-gutter);
    gap: 0;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 320ms ease;
    overflow-y: auto;
  }
  .site-header__menu.is-open { transform: translateX(0); }
  .site-header__menu-link {
    padding: 16px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid var(--lg-line);
    width: 100%;
    justify-content: space-between;
  }
  .site-header__menu-cta { display: block; padding-top: 24px; border-bottom: 0; }
  .site-header__menu-cta a {
    padding: 18px 24px;
    font-size: 1rem;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
  }
  .site-header__menu-cta a::after { display: none; }
  .site-header__nav { display: block; flex: 0; }

  /* Mobile dropdown — inline expandable instead of popover */
  .site-header__menu-item--has-dropdown { position: static; }
  .site-header__dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    background: var(--lg-cream);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0 calc(-1 * var(--lg-gutter));
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease, visibility 280ms;
  }
  .site-header__menu-item--has-dropdown.is-open .site-header__dropdown {
    visibility: visible;
    pointer-events: auto;
    max-height: 500px;
    transform: none;
  }
  .site-header__dropdown a {
    padding: 14px var(--lg-gutter);
    font-family: var(--lg-display);
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  }
  .site-header__dropdown li:last-child a { border-bottom: 0; }

  .hero { padding: 56px 0 80px; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; }
}

/* Reduced motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__video { display: none; }
}


/* -----------------------------------------------------------------
   Reveal-on-scroll animations
   ----------------------------------------------------------------- */
@keyframes lg-rise-in {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
}
.reveal.is-visible {
  animation: lg-rise-in 700ms cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.reveal[data-delay="1"].is-visible { animation-delay: 80ms; }
.reveal[data-delay="2"].is-visible { animation-delay: 160ms; }
.reveal[data-delay="3"].is-visible { animation-delay: 240ms; }
.reveal[data-delay="4"].is-visible { animation-delay: 320ms; }


/* =====================================================================
   PAGE-LEVEL COMPONENTS (used by quote, contact, services, pricing, about, reviews)
   ===================================================================== */

/* Visually hidden but accessible */
.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;
}


/* -----------------------------------------------------------------
   Page hero (used on subpages)
   ----------------------------------------------------------------- */
.page-hero {
  background: var(--lg-navy-deep);
  color: var(--lg-cream);
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(212, 84, 31, 0.18), transparent 55%),
              radial-gradient(circle at 10% 100%, rgba(36, 83, 201, 0.22), transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  max-width: 880px;
}
.page-hero__inner--narrow { max-width: 720px; }

.page-hero--centered .page-hero__inner {
  margin: 0 auto;
  text-align: center;
}

.page-hero__title {
  color: var(--lg-cream);
  font-size: clamp(2.2rem, 5vw, 4rem);
  margin: 0 0 24px;
}

.page-hero__sub {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: rgba(245, 245, 247, 0.85);
  line-height: 1.6;
  margin: 0 0 32px;
  max-width: 680px;
}
.page-hero--centered .page-hero__sub { margin-left: auto; margin-right: auto; }

.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.page-hero--centered .page-hero__actions { justify-content: center; }

.page-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 22px;
  background: rgba(245, 245, 247, 0.08);
  border: 1px solid rgba(245, 245, 247, 0.18);
  border-radius: 999px;
  font-size: 0.95rem;
  color: rgba(245, 245, 247, 0.9);
  margin-top: 24px;
}
.page-hero__stars { color: #fbbf24; letter-spacing: 0.06em; }


/* -----------------------------------------------------------------
   Two-column form layout (quote, contact)
   ----------------------------------------------------------------- */
.page-form { background: var(--lg-cream); padding-top: clamp(56px, 7vw, 96px); }

.page-form__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.page-form__form {
  background: var(--lg-paper);
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--lg-radius);
  border: 1px solid var(--lg-line);
  box-shadow: var(--lg-shadow-sm);
}

.page-form__side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.side-card {
  background: var(--lg-paper);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  padding: 28px;
}
.side-card .eyebrow { margin-bottom: 16px; }

.side-card__steps {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  counter-reset: steps;
}
.side-card__steps li {
  position: relative;
  padding: 14px 0 14px 44px;
  border-bottom: 1px dashed var(--lg-line);
  font-size: 0.95rem;
  line-height: 1.55;
  counter-increment: steps;
}
.side-card__steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.side-card__steps li::before {
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 14px;
  width: 30px; height: 30px;
  background: var(--lg-navy);
  color: var(--lg-cream);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--lg-display);
  font-weight: 700;
  font-size: 0.85rem;
}
.side-card__steps li strong { color: var(--lg-navy-deep); display: block; margin-bottom: 2px; font-family: var(--lg-display); }

.side-card--call {
  background: var(--lg-navy-deep);
  color: var(--lg-cream);
  border-color: var(--lg-navy-deep);
}
.side-card--call h3, .side-card--call p { color: var(--lg-cream); }
.side-card--call .eyebrow { color: var(--lg-rust-soft); }
.side-card--call .eyebrow::before { background: var(--lg-rust-soft); }
.side-card--call .btn { width: 100%; margin-top: 14px; }

.side-card__phone-display {
  font-family: var(--lg-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--lg-cream) !important;
  margin: 4px 0 12px;
  letter-spacing: -0.01em;
}

.side-card--trust { background: var(--lg-cream-deep); }
.side-card__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.side-card__rating strong { font-family: var(--lg-display); font-size: 1.1rem; color: var(--lg-navy-deep); }

.side-card__bullets {
  list-style: none;
  padding: 0; margin: 0;
}
.side-card__bullets li {
  position: relative;
  padding: 6px 0 6px 26px;
  font-size: 0.92rem;
}
.side-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 14px; height: 14px;
  border-right: 2.5px solid var(--lg-success);
  border-bottom: 2.5px solid var(--lg-success);
  transform: rotate(45deg);
  transform-origin: center;
  width: 5px;
  height: 9px;
  top: 9px;
  left: 4px;
}

.side-card__address {
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--lg-ink-soft);
}
.side-card__address strong {
  font-family: var(--lg-display);
  color: var(--lg-navy-deep);
  font-size: 1rem;
}
.side-card__service-areas {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px dashed var(--lg-line);
  font-size: 0.9rem;
  color: var(--lg-ink-soft);
}


/* -----------------------------------------------------------------
   Anchor jump nav (services page)
   ----------------------------------------------------------------- */
.anchor-nav {
  background: var(--lg-cream);
  border-bottom: 1px solid var(--lg-line);
  position: sticky;
  top: var(--lg-header-h);
  z-index: 50;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.anchor-nav ul {
  display: flex;
  gap: 6px;
  padding: 12px 0;
  white-space: nowrap;
}
.anchor-nav a {
  display: inline-block;
  padding: 8px 18px;
  font-family: var(--lg-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--lg-ink-soft);
  border-radius: 999px;
  transition: all 200ms ease;
}
.anchor-nav a:hover {
  background: var(--lg-navy);
  color: var(--lg-cream);
}


/* -----------------------------------------------------------------
   Service blocks (alternating image/content rows on services page)
   ----------------------------------------------------------------- */
.service-block { background: var(--lg-cream); }
.service-block--alt { background: var(--lg-paper); }

.service-block__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.service-block__inner--reverse .service-block__image { order: -1; }

.service-block__content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin: 0 0 20px;
}
.service-block__content p {
  color: var(--lg-ink-soft);
  font-size: 1.02rem;
  line-height: 1.65;
}

.service-block__list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 10px;
}
.service-block__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  color: var(--lg-ink);
  line-height: 1.55;
}
.service-block__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  background: var(--lg-rust);
  clip-path: polygon(0 50%, 35% 100%, 100% 0, 100% 25%, 35% 75%, 5% 50%);
}

.service-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--lg-radius);
  aspect-ratio: 5 / 4;
  box-shadow: var(--lg-shadow);
}


/* -----------------------------------------------------------------
   Pricing page tiers
   ----------------------------------------------------------------- */
.pricing-tiers {
  background: var(--lg-cream);
  padding-top: clamp(56px, 7vw, 96px);
}

.pricing-tiers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.pricing-tier {
  background: var(--lg-paper);
  padding: 36px 32px;
  border-radius: var(--lg-radius);
  border: 1px solid var(--lg-line);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, border-color 240ms ease, box-shadow 280ms ease;
}
.pricing-tier:hover {
  transform: translateY(-6px);
  border-color: var(--lg-navy);
  box-shadow: var(--lg-shadow);
}

/* Highlight the middle tier as a recommended option */
.pricing-tier:nth-child(2) {
  border-color: var(--lg-rust);
  background: var(--lg-white);
}
.pricing-tier:nth-child(2)::before {
  content: 'Most popular';
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--lg-rust);
  color: var(--lg-white);
  font-family: var(--lg-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}

.pricing-tier__num {
  font-family: var(--lg-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--lg-rust);
  margin-bottom: 18px;
}
.pricing-tier__label {
  font-size: 1.6rem;
  margin: 0 0 8px;
}
.pricing-tier__note {
  color: var(--lg-ink-soft);
  font-size: 0.94rem;
  margin: 0 0 24px;
  min-height: 3em;
}

.pricing-tier__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--lg-line);
}
.pricing-tier__from {
  font-family: var(--lg-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lg-ink-mute);
}
.pricing-tier__amount {
  font-family: var(--lg-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--lg-navy-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-tier__includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.pricing-tier__includes li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  color: var(--lg-ink-soft);
  line-height: 1.55;
}
.pricing-tier__includes li::before {
  content: '';
  position: absolute;
  left: 4px; top: 6px;
  width: 6px; height: 11px;
  border-right: 2.5px solid var(--lg-success);
  border-bottom: 2.5px solid var(--lg-success);
  transform: rotate(45deg);
}

.pricing-tier .btn { width: 100%; }

.pricing-tiers__fine {
  text-align: center;
  margin: 32px auto 0;
  font-size: 0.88rem;
  color: var(--lg-ink-mute);
  max-width: 720px;
  font-style: italic;
}


/* -----------------------------------------------------------------
   Pricing explain (3-up icon grid)
   ----------------------------------------------------------------- */
.pricing-explain { background: var(--lg-paper); }

.pricing-explain__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(24px, 4vw, 48px);
  margin-top: 32px;
}

.pricing-explain__item h3 {
  font-size: 1.4rem;
  margin: 16px 0 10px;
}
.pricing-explain__item p {
  color: var(--lg-ink-soft);
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.pricing-explain__icon {
  width: 64px; height: 64px;
  background: var(--lg-navy);
  color: var(--lg-cream);
  border-radius: var(--lg-radius);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}


/* -----------------------------------------------------------------
   About page sections
   ----------------------------------------------------------------- */
.story {
  background: var(--lg-cream);
}
.story__inner {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.story__image img {
  width: 100%;
  border-radius: var(--lg-radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--lg-shadow);
}
.story__content p {
  color: var(--lg-ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.values { background: var(--lg-navy); color: var(--lg-cream); }
.values h2, .values .section-head__title { color: var(--lg-cream); }
.values .section-head__sub { color: rgba(245, 245, 247, 0.7); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4px;
  background: var(--lg-navy-deep);
  padding: 4px;
  border-radius: var(--lg-radius);
}

.value {
  background: var(--lg-navy);
  padding: 40px 32px;
  border-radius: var(--lg-radius-sm);
  position: relative;
}
.value__num {
  font-family: var(--lg-display);
  font-size: 4rem;
  font-weight: 900;
  color: var(--lg-rust);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.85;
}
.value h3 {
  color: var(--lg-cream);
  font-size: 1.35rem;
  margin: 0 0 12px;
}
.value p {
  color: rgba(245, 245, 247, 0.75);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

.team-shot { background: var(--lg-cream-deep); }
.team-shot__inner {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.team-shot__image img {
  width: 100%;
  border-radius: var(--lg-radius);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--lg-shadow);
}


/* -----------------------------------------------------------------
   Reviews page
   ----------------------------------------------------------------- */
.testimonials--page { background: var(--lg-cream); }


/* -----------------------------------------------------------------
   Mobile overrides for new components
   ----------------------------------------------------------------- */
@media (max-width: 980px) {
  .page-form__layout { grid-template-columns: 1fr; }
  .service-block__inner,
  .service-block__inner--reverse,
  .story__inner,
  .team-shot__inner { grid-template-columns: 1fr; }
  .service-block__inner--reverse .service-block__image { order: 0; }
}

@media (max-width: 720px) {
  .page-hero { padding: 56px 0 56px; }
  .pricing-tiers__grid { gap: 36px; }
  .pricing-tier:nth-child(2) { margin-top: 8px; }
}


/* -----------------------------------------------------------------
   Form fallback (shown when contact-form/config.php isn't set up yet)
   ----------------------------------------------------------------- */
.form-fallback {
  text-align: center;
  padding: 32px 16px;
}
.form-fallback h3 {
  margin: 12px 0 16px;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}
.form-fallback p {
  color: var(--lg-ink-soft);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PRICING DISPLAY — hourly headline + per-job ranges
   ------------------------------------------------------------
   Built by Arknet Pty Ltd
   ============================================================ */

/* Homepage hero pricing card additions */
.hero__price-heading {
  font-size: 1.05rem;
  color: var(--lg-navy-deep);
  margin: 0 0 14px;
  font-family: var(--font-display, "Archivo", system-ui, sans-serif);
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero__price-headline {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--lg-navy);
  color: #fff;
  border-radius: 6px;
  margin: 0 0 18px;
}
.hero__price-headline-amount {
  font-family: var(--font-display, "Archivo", system-ui, sans-serif);
  font-weight: 800;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.02em;
  flex: 0 0 auto;
}
.hero__price-headline-from {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}
.hero__price-headline-unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero__price-headline-meta {
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.85);
}
.hero__price-headline-meta strong {
  color: #fff;
  font-weight: 700;
}
.hero__price-or {
  font-size: 0.85rem;
  color: var(--lg-navy);
  margin: 0 0 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Pricing-page hourly headline section */
.pricing-hourly {
  padding: 40px 0 0;
}
.pricing-hourly__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  background: var(--lg-navy);
  color: #fff;
  padding: 32px 40px;
  border-radius: 8px;
  flex-wrap: wrap;
}
.pricing-hourly__amount {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex: 0 0 auto;
}
.pricing-hourly__from {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.pricing-hourly__big {
  font-family: var(--font-display, "Archivo", system-ui, sans-serif);
  font-weight: 800;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -0.03em;
}
.pricing-hourly__unit {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.pricing-hourly__body { flex: 1 1 320px; }
.pricing-hourly__body h2 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #fff;
}
.pricing-hourly__body p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 720px) {
  .pricing-hourly__inner { padding: 24px 22px; gap: 18px; }
  .pricing-hourly__big   { font-size: 3rem; }
}

/* Section lede style for the by-the-job intro */
.section-head__lede {
  margin: 8px 0 0;
  font-size: 1rem;
  color: var(--lg-navy-soft, #1a3163);
  max-width: 56ch;
}

/* Tier amount when it's a range (no "from" label) */
.pricing-tier__price .pricing-tier__amount {
  white-space: nowrap;
}

/* ============================================================
   GALLERY — auto-discovered photos in /assets/img/gallery/
   ------------------------------------------------------------
   Built by Arknet Pty Ltd
   ============================================================ */
.gallery {
  padding: 56px 0 96px;
  background: var(--lg-cream, #f5f5f7);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 560px) {
  .gallery__grid { grid-template-columns: 1fr; gap: 12px; }
}
.gallery__item {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #e6e9ef;
  position: relative;
  aspect-ratio: 3 / 2;          /* default landscape ratio */
}
.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 360ms ease;
}
.gallery__item:hover .gallery__img {
  transform: scale(1.03);
}

/* Vary tile size occasionally — feature every 7th tile as 2-wide */
.gallery__grid .gallery__item:nth-child(7n+1) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}
@media (max-width: 900px) {
  .gallery__grid .gallery__item:nth-child(7n+1) {
    grid-column: span 2;
    aspect-ratio: 16 / 10;
  }
}
@media (max-width: 560px) {
  .gallery__grid .gallery__item:nth-child(7n+1) {
    grid-column: span 1;
    aspect-ratio: 3 / 2;
  }
}

.gallery--empty {
  padding: 80px 0 120px;
  text-align: center;
}
.gallery__empty-msg {
  color: var(--lg-navy-soft, #1a3163);
  font-size: 1.05rem;
}

/* Footer credit line (copyright + supplier links) */
.site-footer__credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
}
.site-footer__credit a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: color 200ms;
}
.site-footer__credit a:hover {
  color: var(--lg-rust, #d4541f);
  border-bottom-color: var(--lg-rust, #d4541f);
}


/* -----------------------------------------------------------------
   Contact-form module (auto-mode) — LOG design-system overrides.

   The module ships with minimal inline `<style data-cf-auto-styles>`
   rules at the top of every form. Those use .cf-form selectors with
   specificity (0,2,0). To override cleanly without editing the
   module, we scope every rule with .page-form__form (specificity
   bump to 0,3,0) on the contact / quote pages where the form lives.

   If the form is dropped onto another page later, add
   .page-form__form (or copy these rules under a new wrapper) so the
   styles still apply.
   ----------------------------------------------------------------- */
.page-form__form .cf-form {
  font-family: var(--lg-body);
  color: var(--lg-ink);
  font-size: 1rem;
  line-height: 1.5;
}

/* Each field row — replaces the inline `margin-bottom: 1em` */
.page-form__form .cf-form [data-cf-field] {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

/* Label — replaces the inline `display: block; margin-bottom: .35em`.
   Flex gap handles spacing now, so margin-bottom is zeroed. */
.page-form__form .cf-form [data-cf-field] > label {
  display: block;
  font-family: var(--lg-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--lg-navy);
  margin-bottom: 0;
}
.page-form__form .cf-form [data-cf-field] > label span[aria-hidden="true"] {
  color: var(--lg-rust);
  font-weight: 700;
  margin-left: 2px;
}

/* All text-style controls */
.page-form__form .cf-form input[type="text"],
.page-form__form .cf-form input[type="email"],
.page-form__form .cf-form input[type="tel"],
.page-form__form .cf-form input[type="url"],
.page-form__form .cf-form input[type="number"],
.page-form__form .cf-form input[type="date"],
.page-form__form .cf-form textarea,
.page-form__form .cf-form select {
  font-family: var(--lg-body);
  font-size: 1rem;
  line-height: 1.4;
  color: var(--lg-ink);
  background: var(--lg-paper);
  border: 1.5px solid var(--lg-line);
  border-radius: var(--lg-radius-sm);
  padding: 13px 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  -webkit-appearance: none;
  appearance: none;
}

.page-form__form .cf-form input::placeholder,
.page-form__form .cf-form textarea::placeholder {
  color: var(--lg-ink-light);
  opacity: 1;
}

.page-form__form .cf-form input[type="text"]:hover,
.page-form__form .cf-form input[type="email"]:hover,
.page-form__form .cf-form input[type="tel"]:hover,
.page-form__form .cf-form input[type="url"]:hover,
.page-form__form .cf-form textarea:hover,
.page-form__form .cf-form select:hover {
  border-color: var(--lg-ink-mute);
}

.page-form__form .cf-form input[type="text"]:focus,
.page-form__form .cf-form input[type="email"]:focus,
.page-form__form .cf-form input[type="tel"]:focus,
.page-form__form .cf-form input[type="url"]:focus,
.page-form__form .cf-form input[type="number"]:focus,
.page-form__form .cf-form input[type="date"]:focus,
.page-form__form .cf-form textarea:focus,
.page-form__form .cf-form select:focus {
  outline: none;
  border-color: var(--lg-rust);
  box-shadow: 0 0 0 3px rgba(212, 84, 31, 0.15);
}

.page-form__form .cf-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* Custom select chevron in rust (replaces native triangle) */
.page-form__form .cf-form select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23d4541f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='4 6 8 11 12 6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  cursor: pointer;
}

/* Radios + checkboxes: native control, branded accent */
.page-form__form .cf-form [data-cf-radios] {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}
.page-form__form .cf-form [data-cf-radios] label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-family: var(--lg-body);
  color: var(--lg-ink);
  cursor: pointer;
}
.page-form__form .cf-form input[type="checkbox"],
.page-form__form .cf-form input[type="radio"] {
  accent-color: var(--lg-rust);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* Inline error text under each field — overrides inline #dc2626 */
.page-form__form .cf-form [data-cf-error] {
  color: #b1421a;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 0;
}

/* Invalid state — overrides inline border-color: #dc2626 */
.page-form__form .cf-form [data-cf-invalid] input,
.page-form__form .cf-form [data-cf-invalid] textarea,
.page-form__form .cf-form [data-cf-invalid] select {
  border-color: #b1421a;
  background-color: #fef5f2;
}

/* Submit button — match .btn--accent */
.page-form__form .cf-form [data-cf-actions] {
  margin-top: 28px;
}
.page-form__form .cf-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 28px;
  font-family: var(--lg-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--lg-white);
  background: var(--lg-rust);
  border: 2px solid transparent;
  border-radius: var(--lg-radius-sm);
  box-shadow: 0 4px 0 var(--lg-rust-deep);
  cursor: pointer;
  text-align: center;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}
.page-form__form .cf-form button[type="submit"]:hover:not(:disabled) {
  background: var(--lg-rust-deep);
  transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--lg-rust-deep);
}
.page-form__form .cf-form button[type="submit"]:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 3px 0 var(--lg-rust-deep);
}
.page-form__form .cf-form button[type="submit"]:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: 0 4px 0 var(--lg-rust-deep);
}

/* Turnstile captcha spacing */
.page-form__form .cf-form [data-cf-turnstile] {
  margin: 22px 0 6px;
}

/* Status banners — overrides the bundled green/red */
.page-form__form .cf-form [data-cf-status] {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: var(--lg-radius-sm);
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 500;
}
.page-form__form .cf-form [data-cf-status][data-cf-status-type="success"] {
  background: #e8f5ee;
  color: var(--lg-success);
  border: 1px solid #a7d7bb;
}
.page-form__form .cf-form [data-cf-status][data-cf-status-type="error"] {
  background: #fdecec;
  color: #b1421a;
  border: 1px solid #f1d4c4;
}

/* Mobile spacing tweaks */
@media (max-width: 640px) {
  .page-form__form .cf-form [data-cf-field] {
    margin-bottom: 18px;
  }
  .page-form__form .cf-form button[type="submit"] {
    width: 100%;
    padding: 16px 22px;
  }
}

/* -----------------------------------------------------------------
   Suburb landing pages — featured testimonial & related-areas list.
   Used on /removalists/<suburb> pages. Other sections (.page-hero,
   .service-block, .pricing-tiers, .pillars, .faq) reuse existing
   components.
   ----------------------------------------------------------------- */

/* Featured testimonial — single centered card, larger than grid version */
.suburb-quote {
  background: var(--lg-cream-deep);
}
.suburb-quote .testimonial--feature {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 4.5vw, 56px) clamp(28px, 4vw, 48px);
}
.suburb-quote .testimonial--feature .testimonial__body {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.55;
  color: var(--lg-navy-deep);
}

/* Related service areas — links to other suburb pages */
.suburb-related {
  background: var(--lg-cream);
}
.suburb-related__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.suburb-related__head h2 {
  margin: 12px 0 0;
}
.suburb-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--lg-line);
}
.suburb-related__list li {
  border-bottom: 1px solid var(--lg-line);
}
.suburb-related__list li:nth-child(odd) {
  border-right: 1px solid var(--lg-line);
}
.suburb-related__list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  font-family: var(--lg-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--lg-navy-deep);
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease;
}
.suburb-related__list a:hover {
  background: var(--lg-paper);
  color: var(--lg-rust);
}
.suburb-related__list a span {
  font-weight: 400;
  font-size: 1.1rem;
  transition: transform 200ms ease;
}
.suburb-related__list a:hover span {
  transform: translateX(3px);
}

/* Mobile — stack the related grid */
@media (max-width: 768px) {
  .suburb-related__inner {
    grid-template-columns: 1fr;
  }
  .suburb-related__list {
    grid-template-columns: 1fr;
  }
  .suburb-related__list li:nth-child(odd) {
    border-right: 0;
  }
}

/* =====================================================================
   Service Areas hub page — area cards
   ===================================================================== */
.area-cards {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--lg-cream);
}
.area-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: clamp(28px, 4vw, 48px);
}
.area-card {
  background: var(--lg-paper);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  display: flex;
  flex-direction: column;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lg-shadow);
  border-color: var(--lg-rust);
}
.area-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.area-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--lg-cream);
}
.area-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms ease;
}
.area-card:hover .area-card__image img {
  transform: scale(1.04);
}
.area-card__body {
  padding: clamp(20px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.area-card__tagline {
  font-family: var(--lg-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lg-rust);
  margin: 0;
  font-weight: 700;
}
.area-card__name {
  font-family: var(--lg-display);
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  color: var(--lg-navy-deep);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.area-card__blurb {
  color: var(--lg-ink);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}
.area-card__cta {
  margin-top: auto;
  padding-top: 12px;
  font-family: var(--lg-display);
  font-weight: 600;
  color: var(--lg-rust);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.area-card__cta span {
  transition: transform 240ms ease;
}
.area-card:hover .area-card__cta span {
  transform: translateX(4px);
}

/* "Suburb not listed?" panel below the cards */
.area-other {
  padding: clamp(48px, 7vw, 96px) 0;
}
.area-other__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--lg-navy-deep);
  color: var(--lg-cream);
  padding: clamp(36px, 5vw, 64px);
  border-radius: var(--lg-radius);
}
.area-other__head h2 {
  color: var(--lg-cream);
  font-family: var(--lg-display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 8px 0 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.area-other__head .eyebrow {
  color: var(--lg-rust);
}
.area-other__head p {
  color: rgba(245, 245, 247, 0.85);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.area-other__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.area-other__actions .btn {
  width: 100%;
  justify-content: center;
}

/* Mobile / tablet stacking */
@media (max-width: 768px) {
  .area-cards__grid { grid-template-columns: 1fr; }
  .area-other__inner { grid-template-columns: 1fr; }
}

/* =====================================================================
   All-in pricing panel — pricing page value statement
   ===================================================================== */
.all-in-panel {
  padding: clamp(48px, 7vw, 96px) 0;
  background: var(--lg-cream);
}
.all-in-panel__inner {
  background: var(--lg-paper);
  border: 1px solid var(--lg-line);
  border-radius: var(--lg-radius);
  padding: clamp(32px, 5vw, 56px);
  box-shadow: 0 4px 18px rgba(10, 31, 68, 0.05);
}
.all-in-panel__head {
  max-width: 760px;
  margin-bottom: clamp(24px, 3vw, 36px);
}
.all-in-panel__head h2 {
  font-family: var(--lg-display);
  color: var(--lg-navy-deep);
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 16px;
}
.all-in-panel__lede {
  color: var(--lg-ink);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}
.all-in-panel__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.all-in-panel__list li {
  position: relative;
  padding-left: 32px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--lg-ink);
}
.all-in-panel__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  background-color: var(--lg-rust);
  -webkit-mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.all-in-panel__list li strong {
  color: var(--lg-navy-deep);
  font-weight: 600;
}
.all-in-panel__foot {
  margin: clamp(24px, 3vw, 36px) 0 0;
  padding-top: clamp(20px, 3vw, 28px);
  border-top: 1px solid var(--lg-line);
  font-size: 0.98rem;
  color: var(--lg-ink);
}
.all-in-panel__foot a {
  color: var(--lg-rust);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.all-in-panel__foot a:hover { text-decoration-thickness: 2px; }

@media (max-width: 720px) {
  .all-in-panel__list { grid-template-columns: 1fr; gap: 12px; }
}
