/* ===========================================================
   East Coast Passive Pty Ltd — Sydney Passive Fire Protection
   Shared stylesheet for all pages.
   =========================================================== */

:root {
  --orange: #E87722;
  --orange-dark: #C45F11;
  --blue: #2B6CB0;
  --blue-dark: #1E4A8C;
  --navy: #0F1E3C;
  --charcoal: #1A1D24;
  --grey-900: #2B2F38;
  --grey-700: #4A4F5A;
  --grey-500: #8A8F9B;
  --grey-200: #E5E7EB;
  --grey-100: #F4F5F7;
  --white: #FFFFFF;
  --max-width: 1200px;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(15, 30, 60, 0.08);
  --shadow-md: 0 4px 16px rgba(15, 30, 60, 0.10);
  --shadow-lg: 0 12px 40px rgba(15, 30, 60, 0.14);
  --transition: 0.2s ease;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::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);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-dark); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
p  { margin-bottom: 1rem; color: var(--grey-700); }
p.lead { font-size: 1.15rem; color: var(--grey-900); }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--grey-100); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.85); }
.text-center { text-align: center; }
.eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 1rem;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-brand img { height: 100px; width: auto; }
@media (max-width: 600px) { .nav-brand img { height: 76px; } }
.nav-brand-text { display: none; font-weight: 800; color: var(--navy); font-size: 1rem; line-height: 1.1; }
.nav-brand-text small { display: block; font-weight: 500; color: var(--grey-700); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: none; gap: 1.5rem; align-items: center; }
.nav-links a {
  color: var(--grey-900);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--orange); color: var(--white); }
.nav-cta svg { width: 16px; height: 16px; }

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 0.75rem 0;
  color: var(--grey-900);
  font-weight: 600;
  border-bottom: 1px solid var(--grey-200);
}
.nav-mobile a:last-child { border-bottom: 0; }

@media (min-width: 820px) {
  .nav-brand-text { display: block; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 5rem 0 5.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, #17264a 60%, #1e3060 100%);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(232, 119, 34, 0.28), transparent 55%),
              radial-gradient(circle at 10% 90%, rgba(43, 108, 176, 0.28), transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 900px) { .hero-split { grid-template-columns: 1.1fr 1fr; gap: 3rem; } }
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero p.lead { color: rgba(255, 255, 255, 0.9); max-width: 640px; margin-bottom: 2rem; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-actions .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero-actions .btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.hero-logo {
  padding: 1rem 0;
  text-align: center;
}
.hero-logo img {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 899px) {
  .hero-logo { padding: 2rem 1.5rem; max-width: 420px; margin: 0 auto; }
  .hero-logo img { max-width: 320px; }
}

.page-hero {
  padding: 3.5rem 0 3rem;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 720px; margin: 0 auto; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--white);
  border-top: 4px solid var(--orange);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  text-align: center;
}
.trust-item { font-size: 0.9rem; color: var(--grey-700); font-weight: 600; }
.trust-item strong { display: block; color: var(--navy); font-size: 1.15rem; margin-bottom: 0.15rem; }
@media (min-width: 720px) { .trust-bar-inner { grid-template-columns: repeat(4, 1fr); } }

/* ---------- Service grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .service-grid { grid-template-columns: repeat(4, 1fr); } }

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.service-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1rem;
}
.service-card .icon svg { width: 24px; height: 24px; }
.service-card h3 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card p { font-size: 0.95rem; color: var(--grey-700); margin-bottom: 0; }

/* ---------- Feature columns ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
@media (min-width: 820px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  text-align: left;
}
.feature .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.feature h3 { color: var(--navy); margin-bottom: 0.5rem; }

/* ---------- Two column ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }

/* ---------- Service detail (services page) ---------- */
.service-detail {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--grey-200);
}
.service-detail:last-of-type { border-bottom: 0; }
.service-detail h2 { color: var(--navy); }
.service-detail .detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 820px) { .service-detail .detail-inner { grid-template-columns: 160px 1fr; gap: 2.5rem; } }
.service-detail .service-visual {
  width: 100%;
  max-width: 160px;
  height: 160px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.service-detail .service-visual svg { width: 72px; height: 72px; }
.service-detail ul {
  margin: 0.75rem 0 1rem 0;
  padding-left: 0;
}
.service-detail ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--grey-700);
}
.service-detail ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}
.service-detail .service-photo {
  margin: 0 0 1.25rem 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--grey-100);
  box-shadow: 0 6px 22px rgba(15, 30, 60, 0.12);
}
.service-detail .service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.service-detail .service-photo figcaption {
  padding: 0.6rem 0.9rem;
  font-size: 0.8rem;
  color: var(--grey-700);
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}
.service-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 720px) {
  .service-split { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
.service-detail .service-photo-side {
  float: none;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
@media (min-width: 900px) {
  .service-detail .service-photo {
    float: right;
    width: 42%;
    max-width: 420px;
    margin: 0 0 1rem 1.75rem;
  }
}

/* ---------- Work gallery (home + feature sections) ---------- */
.work-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 600px) { .work-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .work-gallery { grid-template-columns: repeat(3, 1fr); } }
.work-gallery figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  box-shadow: 0 4px 16px rgba(15, 30, 60, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.work-gallery figure:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 30, 60, 0.15);
}
.work-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.work-gallery figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--grey-700);
  line-height: 1.4;
}
.work-gallery figcaption strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 0.15rem;
}
.work-gallery-tight {
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.work-gallery-tight img { aspect-ratio: 1 / 1; }
.work-gallery-pair {
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 720px) { .work-gallery-pair { grid-template-columns: repeat(2, 1fr); } }
.work-gallery-pair img { aspect-ratio: 4 / 3; }

/* ---------- Featured lead service card (home page) ---------- */
.lead-service-card {
  display: block;
  position: relative;
  margin: 2.5rem 0 1rem;
  padding: 2rem 2rem 2rem;
  background: linear-gradient(135deg, var(--navy) 0%, #1c2e58 100%);
  color: var(--white);
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid var(--orange);
  box-shadow: 0 12px 32px rgba(15, 30, 60, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
.lead-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15, 30, 60, 0.28);
}
.lead-service-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.lead-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 720px) { .lead-service-grid { grid-template-columns: 1fr; gap: 2rem; } }
.lead-service-icon {
  width: 80px;
  height: 80px;
  background: rgba(232, 119, 34, 0.18);
  color: var(--orange);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lead-service-icon svg { width: 44px; height: 44px; }
.lead-service-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin: 0 0 0.6rem;
  line-height: 1.2;
}
.lead-service-card > .lead-service-grid > div > p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.lead-service-pillars {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}
@media (min-width: 720px) { .lead-service-pillars { grid-template-columns: repeat(2, 1fr); } }
.lead-service-pillars li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.5;
}
.lead-service-pillars li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
}
.lead-service-pillars strong {
  color: var(--white);
  font-weight: 600;
}
.lead-service-cta {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ---------- FPAS headline block (top of "What we do" section, light bg) ---------- */
.fpas-headline-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 2.5rem;
}
.fpas-headline-block .eyebrow {
  display: block;
  margin-bottom: 0.6rem;
}
.fpas-headline-block h2 {
  margin: 0 0 1.5rem;
  color: var(--navy);
  font-size: 1.85rem;
  line-height: 1.2;
}
@media (min-width: 720px) {
  .fpas-headline-block h2 { font-size: 2.1rem; }
}
.fpas-headline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.65rem;
  text-align: left;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 720px) {
  .fpas-headline-list { grid-template-columns: repeat(2, 1fr); gap: 0.7rem 1.75rem; }
}
.fpas-headline-list li {
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 2rem;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  background: #fff7f0;
  border: 1px solid rgba(232, 119, 34, 0.25);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
}
.fpas-headline-list li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 0.75rem;
  width: 16px;
  height: 16px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}

/* ---------- FPAS Fire Safety Measures block (inside lead service card) ---------- */
.lead-fpas-block {
  margin: 1.5rem 0 1.25rem;
  padding: 1.1rem 1.25rem;
  background: rgba(232, 119, 34, 0.10);
  border: 1px solid rgba(232, 119, 34, 0.35);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
}
.lead-fpas-block h4 {
  margin: 0 0 0.7rem;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.lead-fpas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.4rem;
}
@media (min-width: 720px) {
  .lead-fpas-list { grid-template-columns: repeat(2, 1fr); gap: 0.45rem 1.5rem; }
}
.lead-fpas-list li {
  position: relative;
  padding-left: 1.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
}
.lead-fpas-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 13px;
  height: 13px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}

/* ---------- AFSS inspections callout (sits under lead service card) ---------- */
.afss-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0 0;
  padding: 1.75rem 1.75rem;
  background: #fff7f0;
  border: 1px solid rgba(232, 119, 34, 0.25);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
}
@media (min-width: 720px) {
  .afss-callout { grid-template-columns: 64px 1fr; gap: 1.5rem; align-items: start; }
}
.afss-callout-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 119, 34, 0.14);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.afss-callout-icon svg { width: 30px; height: 30px; }
.afss-callout h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.2rem;
  line-height: 1.25;
}
.afss-callout > div > p {
  margin: 0 0 0.85rem;
  color: var(--grey-700);
  font-size: 0.95rem;
}
.afss-measure-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 720px) {
  .afss-measure-list { grid-template-columns: repeat(2, 1fr); gap: 0.6rem 1.5rem; }
}
.afss-measure-list li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}
.afss-measure-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 14px;
  height: 14px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>") no-repeat center / contain;
}
.work-gallery-tight figcaption {
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--grey-700);
  font-weight: 500;
  text-align: center;
}

/* ---------- Suburb hero photo ---------- */
.suburb-hero-photo {
  margin: 0 0 2.5rem 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 30, 60, 0.18);
  max-height: 420px;
}
.suburb-hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 420px;
}

/* ---------- Contact cards ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 760px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
}
.contact-card .icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.contact-card .icon svg { width: 24px; height: 24px; }
.contact-card h3 { color: var(--navy); font-size: 1.1rem; }
.contact-card a { color: var(--orange); font-weight: 700; font-size: 1.1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255, 255, 255, 0.95); max-width: 640px; margin: 0 auto 1.5rem; font-size: 1.1rem; }
.cta-band .btn {
  background: var(--white);
  color: var(--orange-dark);
  border-color: var(--white);
}
.cta-band .btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---------- Areas served ---------- */
.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  justify-content: center;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  color: var(--grey-900);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 820px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.footer-grid a { color: rgba(255,255,255,0.72); transition: color var(--transition); }
.footer-grid a:hover { color: var(--orange); }
.footer-grid ul li { margin-bottom: 0.5rem; }
.footer-brand img {
  height: 180px;
  width: auto;
  max-width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 819px) {
  .footer-brand { text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; display: block; }
}
.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
}

/* ---------- Utility ---------- */
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
