:root {
  --black: #0a0a0a;
  --charcoal: #111111;
  --dark: #1a1a1a;
  --mid: #2a2a2a;
  --red: #2B7FD4;
  --red-bright: #4a9ae8;
  --red-deep: #1a5fa0;
  --cream: #f5f0e8;
  --white: #ffffff;
  --grey-light: #e8e4dc;
  --grey-mid: #999;
  --grey-text: #ccc;
  --yellow: #F5C842;
  --blue: #2B7FD4;
  --blue-deep: #1a5fa0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--black);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 8px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.announcement-bar a { color: var(--yellow); text-decoration: none; }

/* ── HEADER ── */
header {
  background: var(--black);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--red);
}
.header-logo { height: 52px; display: flex; align-items: center; }
.header-logo img {
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
/* Fix for anchor wrapping logo */
.header-logo a {
  display: flex;
  height: 100%;
  align-items: center;
}
.header-contact { display: flex; gap: 24px; align-items: center; }
.header-contact a { color: var(--grey-text); text-decoration: none; font-size: 0.88rem; font-weight: 400; }
.header-contact a:hover { color: white; }
.header-contact .phone {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0.04em;
}
.btn-book-header {
  background: var(--red);
  color: white !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
}
.btn-book-header:hover { background: var(--red-deep) !important; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--red);
  color: white;
  padding: 16px 36px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.btn-primary:hover { background: var(--red-deep); }
.btn-secondary {
  background: transparent;
  color: white;
  padding: 15px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.btn-secondary:hover { border-color: white; color: white; }
.btn-secondary-dark {
  background: transparent;
  color: var(--black);
  padding: 15px 32px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--black);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  border-radius: 2px;
}
.btn-secondary-dark:hover { background: var(--black); color: white; border-color: var(--black); }

/* ── HERO (HOME) ── */
.hero {
  background: var(--black);
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(43,127,212,0.03) 40px, rgba(43,127,212,0.03) 41px);
  pointer-events: none;
}
.hero-left { padding: 80px 60px 80px 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--red); }
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.92;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.hero h1 .accent { color: var(--red); }
.hero h1 .underline-red { position: relative; display: inline-block; }
.hero h1 .underline-red::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 4px; background: var(--red); }
.hero-sub { font-size: 1.05rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.65; max-width: 440px; margin: 28px 0 40px; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-stats { display: flex; gap: 40px; margin-top: 48px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat .num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--yellow); line-height: 1; }
.hero-stat .label { font-size: 0.8rem; font-weight: 400; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.12em; margin-top: 4px; }
.hero-right { position: relative; background: var(--dark); overflow: hidden; }
.hero-right::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 60px; background: linear-gradient(to right, var(--black), transparent); z-index: 2; }
.hero-gear-svg { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 520px; height: 520px; opacity: 0.06; }
.hero-card-stack { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 60px 50px 60px 80px; gap: 12px; z-index: 3; }
.hero-service-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-left: 3px solid var(--red); padding: 14px 20px; border-radius: 2px; display: flex; align-items: center; gap: 14px; }
.hero-service-card:hover { background: rgba(255,255,255,0.07); border-left-color: var(--yellow); }
.service-icon { width: 38px; height: 38px; background: rgba(43,127,212,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.service-card-text .title { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.05em; }
.service-card-text .desc { font-size: 0.8rem; color: var(--grey-mid); margin-top: 2px; }

/* ── PHOTO BANNER (shared) ── */
.photo-banner { width: 100%; height: 600px; position: relative; overflow: hidden; background: var(--dark); }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.photo-banner-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 40px; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%); display: flex; align-items: center; gap: 12px; }
.photo-banner-caption .cap-line { width: 24px; height: 2px; background: var(--red); flex-shrink: 0; }
.photo-banner-caption span { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.6); }

/* ── SUBURBS STRIP ── */
.suburbs-strip { background: var(--red); padding: 14px 40px; overflow: hidden; }
.suburbs-inner { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.suburbs-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.7); flex-shrink: 0; margin-right: 20px; }
.suburbs-list { display: flex; flex-wrap: wrap; gap: 0; }
.suburb-item { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; color: white; letter-spacing: 0.08em; text-transform: uppercase; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.3); text-decoration: none; }
.suburb-item:last-child { border-right: none; }

/* ── SECTION LABEL & TITLE (shared) ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
h2.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

/* ── PROBLEM SECTION ── */
.problem-section { background: var(--charcoal); padding: 100px 80px; }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1200px; margin: 0 auto; }
.problem-left h2 { color: white; margin-bottom: 20px; }
.problem-left p { color: rgba(255,255,255,0.6); font-size: 1.05rem; font-weight: 300; line-height: 1.7; }
.problem-left p + p { margin-top: 16px; }
.problem-cards { display: grid; gap: 12px; }
.problem-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.07); padding: 24px 28px; border-radius: 2px; display: flex; gap: 20px; align-items: flex-start; }
.problem-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; flex-shrink: 0; opacity: 0.4; }
.problem-body h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.problem-body p { font-size: 0.88rem; color: var(--grey-mid); line-height: 1.55; }

/* ── SERVICES SECTION (homepage) ── */
.services-section { background: var(--cream); padding: 100px 80px; }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.services-header h2 { color: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; background: var(--black); border: 2px solid var(--black); }
.service-tile { background: var(--cream); padding: 40px 36px; cursor: default; }
.service-tile:hover { background: var(--grey-light); }
.service-tile .t-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.service-tile h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); margin-bottom: 10px; }
.service-tile p { font-size: 0.9rem; font-weight: 400; color: #555; line-height: 1.6; }
.service-tile .tag { margin-top: 14px; display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); border: 1px solid var(--red); padding: 3px 10px; border-radius: 1px; }

/* ── OFFER SECTION ── */
.offer-section { background: var(--red); padding: 80px; text-align: center; }
.offer-section .offer-inner { max-width: 700px; margin: 0 auto; }
.offer-section h2 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 16px; }
.offer-price { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(4rem, 8vw, 7rem); font-weight: 900; color: var(--yellow); line-height: 1; letter-spacing: -0.02em; margin: 10px 0; }
.offer-price sub { font-size: 0.4em; font-weight: 600; vertical-align: baseline; opacity: 0.7; }
.offer-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; font-weight: 300; max-width: 520px; margin: 16px auto 36px; line-height: 1.65; }
.btn-offer { background: var(--black); color: white; padding: 18px 48px; font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; text-decoration: none; display: inline-block; border-radius: 2px; }
.btn-offer:hover { background: var(--charcoal); }

/* ── FREE INSPECTION ── */
.inspection-section { background: var(--black); padding: 100px 80px; }
.inspection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.inspection-left h2 { color: white; margin-bottom: 20px; }
.inspection-left p { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 300; line-height: 1.7; margin-bottom: 32px; }
.checklist { list-style: none; display: grid; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: rgba(255,255,255,0.75); font-weight: 400; line-height: 1.5; }
.checklist li::before { content: '✓'; color: var(--red); font-weight: 900; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.inspection-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.inspect-card { background: var(--dark); border: 1px solid rgba(255,255,255,0.07); border-top: 3px solid var(--red); padding: 24px 22px; border-radius: 2px; }
.inspect-card .ic-icon { font-size: 1.6rem; margin-bottom: 12px; }
.inspect-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.inspect-card p { font-size: 0.82rem; color: var(--grey-mid); line-height: 1.5; }

/* ── WHY US ── */
.why-section { background: var(--cream); padding: 100px 80px; }
.why-inner { max-width: 1200px; margin: 0 auto; }
.why-inner > .section-label { margin-bottom: 14px; }
.why-inner > h2 { color: var(--black); margin-bottom: 60px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.why-card { border-top: 3px solid var(--black); padding-top: 24px; }
.why-card .w-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 900; color: var(--red); opacity: 0.2; line-height: 1; margin-bottom: 8px; }
.why-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--black); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: #555; line-height: 1.6; }

/* ── AREAS WE SERVICE ── */
.areas-section { background: var(--charcoal); padding: 100px 80px; }
.areas-inner { max-width: 1200px; margin: 0 auto; }
.areas-inner .section-label { color: var(--red); }
.areas-inner .section-label::before { background: var(--red); }
.areas-inner h2 { color: white; margin-bottom: 16px; }
.areas-intro { color: rgba(255,255,255,0.55); font-size: 1rem; font-weight: 300; max-width: 600px; line-height: 1.65; margin-bottom: 48px; }
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); padding: 10px 20px; border-radius: 2px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.95rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; }
.area-pill:hover { background: rgba(43,127,212,0.15); border-color: var(--red); color: white; }
.area-pill.primary-area { background: rgba(43,127,212,0.12); border-color: var(--red); color: white; }

/* ── REVIEWS ── */
.reviews-section { background: var(--cream); padding: 100px 80px; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-inner h2 { color: var(--black); margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card { background: white; padding: 32px; border-radius: 2px; border-top: 3px solid var(--red); box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars span { color: var(--yellow); font-size: 1.1rem; }
.review-text { font-size: 0.92rem; font-style: italic; color: #444; line-height: 1.65; margin-bottom: 20px; }
.review-author { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); }
.review-location { font-size: 0.8rem; color: var(--grey-mid); margin-top: 2px; }

/* ── FAQ (global) ── */
.faq-section { background: var(--black); padding: 100px 80px; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-inner h2 { color: white; margin-bottom: 48px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq-question span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.faq-arrow { color: var(--red); font-size: 1.2rem; flex-shrink: 0; }
.faq-answer {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  padding-bottom: 22px;
  display: none;
  font-weight: 300;
}
.faq-item.open .faq-answer { display: block; }

/* FAQ inside article body (light background) */
.article-body .faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.article-body .faq-question span:first-child {
  color: var(--black);
}
.article-body .faq-answer {
  color: #555;
}
.article-body .faq-question {
  padding: 18px 0;
}

/* ── CONTACT (shared) ── */
.contact-section { background: var(--cream); padding: 100px 80px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-left p { color: #555; font-size: 1rem; font-weight: 300; line-height: 1.7; margin-bottom: 36px; }
.contact-details { display: grid; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon { width: 44px; height: 44px; background: var(--black); color: var(--yellow); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item-body .label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 3px; }
.contact-item-body .value { font-size: 1rem; font-weight: 500; color: var(--black); }
.contact-item-body .value a { color: var(--black); text-decoration: none; }
.contact-item-body .value a:hover { color: var(--red); }
.hours-table { margin-top: 6px; }
.hours-table tr td { font-size: 0.9rem; padding: 2px 0; color: #444; }
.hours-table tr td:first-child { font-weight: 600; padding-right: 20px; color: var(--black); }

/* ── FOOTER ── */
footer { background: var(--charcoal); border-top: 3px solid var(--red); padding: 48px 80px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 24px; }
.footer-logo { height: 36px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-badge { font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.3); }

/* ========== SUB‑PAGES SPECIFIC STYLES ========== */
.article-hero {
  background: var(--black);
  padding: 80px 80px 60px;
}
.article-hero-inner { max-width: 900px; margin: 0 auto; }
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--red); text-decoration: none; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { margin: 0 8px; }
.article-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: var(--red); }
.article-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.article-hero h1 span { color: var(--yellow); }
.article-hero .intro {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 720px;
  margin-bottom: 36px;
}
.article-meta {
  display: flex;
  gap: 24px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.article-meta-item {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.article-meta-item strong { color: rgba(255,255,255,0.7); }

.article-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
}
.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.article-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 80px;
}
.article-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--black);
  margin: 56px 0 16px;
  padding-top: 56px;
  border-top: 3px solid var(--black);
}
.article-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--black);
  margin: 32px 0 10px;
}
.article-body p {
  font-size: 1.05rem;
  font-weight: 300;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}
.article-body strong { font-weight: 600; color: var(--black); }
.article-body ul {
  list-style: none;
  margin: 16px 0 24px;
  display: grid;
  gap: 10px;
}
.article-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}
.article-body ul li::before {
  content: '✓';
  color: var(--red);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

.highlight-box {
  background: var(--black);
  border-left: 4px solid var(--yellow);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 2px;
}
.highlight-box p {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin: 0;
}
.highlight-box strong { color: var(--yellow); font-weight: 700; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--black);
  border: 2px solid var(--black);
  margin: 32px 0;
}
.service-grid .service-tile {
  background: var(--cream);
  padding: 28px 28px;
}
.service-grid .service-tile:hover { background: var(--grey-light); }
.service-grid .service-tile h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 8px;
}
.service-grid .service-tile p { font-size: 0.88rem; color: #555; line-height: 1.6; margin: 0; }
.service-grid .service-tile .t-icon { font-size: 1.6rem; margin-bottom: 10px; display: block; }

.cta-block {
  background: var(--black);
  padding: 48px 48px;
  border-radius: 2px;
  margin: 48px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.cta-block-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.cta-block-text p { font-size: 0.95rem; color: rgba(255,255,255,0.55); font-weight: 300; line-height: 1.6; margin: 0; }
.cta-block-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }

.fact-bar {
  background: var(--charcoal);
  padding: 32px 80px;
  display: flex;
  justify-content: center;
  gap: 60px;
  border-bottom: 2px solid var(--black);
}
.fact-bar-item { text-align: center; }
.fact-bar-item .fact-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}
.fact-bar-item .fact-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ── MOBILE RESPONSIVENESS ── */
@media (max-width: 900px) {
  header { padding: 0 16px; height: 60px; flex-wrap: nowrap; overflow: hidden; }
  .header-logo { height: 34px; flex-shrink: 0; }
  .header-logo img { height: 100%; width: auto; max-width: 100%; max-height: 100%; }
  .header-logo a { display: flex; height: 100%; align-items: center; }
  .header-contact { gap: 10px; flex-shrink: 0; }
  .header-contact .email-link { display: none; }
  .header-contact .phone { font-size: 1rem; white-space: nowrap; }
  .btn-book-header { padding: 8px 14px; font-size: 0.85rem; white-space: nowrap; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 48px 20px; }
  .hero-right { display: none; }
  .photo-banner { height: 280px; }
  .suburbs-strip { padding: 12px 16px; }
  .suburb-item { padding: 0 10px; font-size: 0.85rem; }
  .problem-section, .services-section, .inspection-section, .why-section, .areas-section, .reviews-section, .faq-section, .contact-section { padding: 56px 20px; }
  .offer-section { padding: 56px 20px; }
  footer { padding: 40px 20px 24px; }
  .problem-grid, .inspection-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-section .contact-grid { grid-template-columns: 1fr !important; gap: 40px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .footer-top { flex-direction: column; gap: 20px; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  /* Sub‑pages mobile */
  .article-hero { padding: 48px 20px 40px; }
  .article-image { height: 260px; }
  .article-image-caption { padding: 12px 20px; }
  .article-body { padding: 48px 20px; }
  .service-grid { grid-template-columns: 1fr; }
  .cta-block { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .cta-block-actions { align-items: flex-start; }
  .fact-bar { padding: 24px 20px; gap: 24px; flex-wrap: wrap; justify-content: space-around; }
}
@media (max-width: 600px) {
  .header-logo { height: 30px; }
  .btn-book-header { padding: 7px 12px; font-size: 0.8rem; }
  .hero-left { padding: 40px 16px; }
  .hero h1 { font-size: 2.8rem; }
  .hero-cta-group { flex-direction: column; gap: 10px; }
  .hero-cta-group a { width: 100%; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .inspection-right { grid-template-columns: 1fr; }
  .areas-list { gap: 8px; }
  .area-pill { font-size: 0.85rem; padding: 8px 14px; }
  .suburbs-strip { display: none; }
  .offer-price { font-size: 4rem; }
  .faq-question span:first-child { font-size: 1rem; }
  .contact-item-icon { width: 36px; height: 36px; font-size: 0.9rem; }
  .article-meta { flex-wrap: wrap; gap: 12px; }
}