/*
Theme Name: Fence Fab Warehouse
Theme URI: https://fencefabwarehouse.com.au
Author: VirtualTM
Author URI: https://virtualtm.com.au
Description: Custom WordPress theme for Fence Fab Warehouse — Adelaide's local fencing manufacturer and installer. Built to match the Fence Fab brand guidelines with full SEO optimisation.
Version: 1.0.0
License: Private
License URI: private
Text Domain: fencefab
Tags: business, custom-menu, featured-images, full-width-template, theme-options
*/

/* ============================================================
   FENCE FAB WAREHOUSE — BRAND COLOUR SYSTEM
   Primary Background:  #0D1117  (Forge Black)
   Dark Surfaces:       #141820  (Night Steel)
   Cards & Panels:      #1E2530  (Deep Slate)
   Primary Text:        #C0C8D0  (Steel Silver)
   Accent & CTA:        #E8A020  (Burnished Gold)
   Light Text:          #FFFFFF  (Pure White)
   Muted Text:          #888888
   Typography:          Barlow Condensed (headings) / Barlow (body)
   ============================================================ */

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

:root {
  --forge-black:    #0D1117;
  --night-steel:    #141820;
  --deep-slate:     #1E2530;
  --steel-silver:   #C0C8D0;
  --gold:           #E8A020;
  --gold-hover:     #d4901c;
  --white:          #FFFFFF;
  --muted:          #888888;
  --border:         #1E2530;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', 'Calibri', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--steel-silver);
  background: var(--forge-black);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: var(--gold); transition: color 0.2s; }
a:hover { color: var(--gold-hover); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', 'Arial Black', sans-serif;
  font-weight: 900;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.0;
}

h1 { font-size: clamp(36px, 5vw, 56px); }
h2 { font-size: clamp(28px, 3.5vw, 40px); }
h3 { font-size: clamp(20px, 2.5vw, 28px); }
h4 { font-size: 20px; }

.eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--forge-black);
}
.btn-gold:hover { background: var(--gold-hover); color: var(--forge-black); }

.btn-outline {
  background: transparent;
  color: var(--steel-silver);
  border: 1px solid rgba(192,200,208,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-dark {
  background: var(--forge-black);
  color: var(--white);
}
.btn-dark:hover { background: #0a0d12; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section { padding: 72px 0; }
.section-dark { background: var(--forge-black); }
.section-mid { background: var(--night-steel); border-top: 1px solid var(--border); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); }

/* ============================================================
   NAV
   ============================================================ */
#site-header {
  background: var(--forge-black);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo img { height: 52px; width: auto; }
.nav-logo-fallback {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--steel-silver);
  line-height: 1;
}
.nav-logo-fallback span { color: var(--gold); font-size: 11px; letter-spacing: 3px; display: block; }

#primary-nav ul { display: flex; align-items: center; gap: 24px; list-style: none; }
#primary-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel-silver);
  transition: color 0.2s;
}
#primary-nav a:hover { color: var(--gold); }
#primary-nav .nav-cta {
  background: var(--gold);
  color: var(--forge-black) !important;
  padding: 9px 20px;
  font-weight: 700;
}
#primary-nav .nav-cta:hover { background: var(--gold-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--steel-silver);
  transition: all 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,17,23,0.93) 0%, rgba(13,17,23,0.72) 55%, rgba(13,17,23,0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 40px 64px;
  max-width: 620px;
}

.hero-content h1 { margin-bottom: 18px; }
.hero-content h1 em { color: var(--gold); font-style: normal; }

.hero-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--steel-silver);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 440px;
}

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
}

.trust-item {
  background: var(--night-steel);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg { width: 18px; height: 18px; fill: var(--forge-black); }

.trust-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.trust-body { font-size: 11px; color: var(--muted); line-height: 1.4; }

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-visual {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-left: 3px solid var(--gold);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(13,17,23,0.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.about-visual-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.about-visual-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.service-card {
  background: var(--night-steel);
  padding: 28px 24px;
  position: relative;
  transition: background 0.2s;
}

.service-card:hover { background: #1a2030; }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}

.service-card:hover::after { width: 100%; }

.service-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: var(--deep-slate);
  margin-bottom: 10px;
  line-height: 1;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.service-body { font-size: 13px; color: var(--muted); line-height: 1.5; }

.service-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item:first-child { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,17,23,0.95));
  padding: 24px 16px 14px;
}

.gallery-caption-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-caption-sub { font-size: 11px; color: var(--gold); margin-top: 3px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 48px;
}

.testi-card { background: var(--night-steel); padding: 28px 24px; }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-text { font-size: 14px; color: var(--steel-silver); line-height: 1.6; font-style: italic; margin-bottom: 16px; }
.testi-author { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; color: var(--white); text-transform: uppercase; }
.testi-suburb { font-size: 12px; color: var(--gold); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gold);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 30px;
  color: var(--forge-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-sub { font-size: 14px; color: rgba(13,17,23,0.7); margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--forge-black);
  border-top: 1px solid var(--border);
  padding: 56px 40px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--steel-silver); }

.footer-contact { font-size: 13px; color: var(--muted); line-height: 1.9; }
.footer-contact strong { color: var(--steel-silver); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-copy { font-size: 12px; color: #444; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--night-steel);
  padding: 48px 40px;
  border-bottom: 2px solid var(--gold);
}

.breadcrumb { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { color: var(--gold); }

.page-hero h1 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 12px; }
.page-hero p { font-size: 15px; color: var(--muted); max-width: 540px; line-height: 1.6; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 0;
  background: var(--forge-black);
}

.service-main { padding: 48px 40px; border-right: 1px solid var(--border); }
.service-sidebar { padding: 32px 24px; }

.content-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 32px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.content-p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 12px; }

.benefit-list { list-style: none; }
.benefit-list li {
  font-size: 14px;
  color: var(--steel-silver);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.benefit-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.process-steps { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.process-step { background: var(--night-steel); padding: 16px 20px; display: flex; gap: 20px; }
.step-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 30px; color: var(--gold); line-height: 1; min-width: 28px; }
.step-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: var(--white); text-transform: uppercase; margin-bottom: 4px; }
.step-body { font-size: 13px; color: var(--muted); line-height: 1.5; }

.faq-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); }
.faq-item { background: var(--night-steel); padding: 16px 20px; }
.faq-q { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); text-transform: uppercase; margin-bottom: 6px; }
.faq-a { font-size: 13px; color: var(--muted); line-height: 1.5; }

.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-top: 16px;
}
.photo-strip-item { aspect-ratio: 4/3; overflow: hidden; }
.photo-strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.photo-strip-item:hover img { transform: scale(1.05); }

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */
.sidebar-card {
  background: var(--night-steel);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 24px;
  margin-bottom: 16px;
}
.sidebar-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 13px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.sidebar-phone { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 26px; color: var(--gold); margin-bottom: 8px; }
.sidebar-body { font-size: 12px; color: var(--muted); line-height: 1.6; }
.sidebar-service-list { list-style: none; }
.sidebar-service-list li { font-size: 13px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
.sidebar-service-list li::before { content: '→ '; color: var(--gold); }
.sidebar-service-list li a { color: var(--muted); }
.sidebar-service-list li:hover a { color: var(--gold); }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filters { display: flex; gap: 8px; flex-wrap: wrap; margin: 32px 0; }
.filter-btn {
  padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: var(--night-steel);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); color: var(--forge-black); border-color: var(--gold); }

.gallery-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}
.gallery-full-item { position: relative; overflow: hidden; cursor: pointer; }
.gallery-full-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-full-item:hover img { transform: scale(1.04); }
.gallery-full-item:nth-child(1),
.gallery-full-item:nth-child(5) { grid-column: span 2; }

/* ============================================================
   QUOTE & CONTACT FORMS
   ============================================================ */
.form-layout { display: grid; grid-template-columns: 1fr 360px; min-height: 600px; }
.form-main { padding: 48px 40px; border-right: 1px solid var(--border); }
.form-side { background: var(--night-steel); padding: 48px 32px; }

.form-group { margin-bottom: 20px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
select,
textarea {
  width: 100%;
  background: var(--night-steel);
  border: 1px solid var(--border);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--steel-silver);
  font-family: 'Barlow', sans-serif;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

input:focus, select:focus, textarea:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 100px; }

.trust-pills { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.trust-pill { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
.trust-pill::before { content: ''; width: 6px; height: 6px; background: var(--gold); flex-shrink: 0; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; }
.about-text { padding: 56px 48px 56px 40px; border-right: 1px solid var(--border); }
.about-photo { position: relative; overflow: hidden; min-height: 380px; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(13,17,23,0.92));
  display: flex; flex-direction: column; justify-content: flex-end; padding: 32px;
}
.about-quote { font-family: 'Barlow Condensed', sans-serif; font-style: italic; font-size: 22px; color: var(--white); line-height: 1.3; margin-bottom: 10px; }
.about-quote-attr { font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.divisions { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); }
.division-card { background: var(--night-steel); padding: 36px 32px; }
.division-card.gold-accent { border-left: 3px solid var(--gold); }
.division-card.silver-accent { border-left: 3px solid var(--steel-silver); }
.division-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 20px; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.division-sub { font-size: 11px; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.division-body { font-size: 14px; color: var(--muted); line-height: 1.6; }

.suburb-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; margin-top: 16px; }
.suburb-tag { font-size: 12px; color: var(--muted); padding: 5px 0; border-bottom: 1px solid var(--border); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; }
.contact-main { padding: 48px 40px; }
.contact-aside { background: var(--night-steel); padding: 48px 32px; border-left: 1px solid var(--border); }

.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.contact-icon { width: 32px; height: 32px; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 14px; height: 14px; fill: var(--forge-black); }
.contact-label { font-size: 10px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-value { font-size: 15px; color: var(--white); font-weight: 500; }

.map-embed { width: 100%; height: 280px; background: var(--deep-slate); border: 1px solid var(--border); margin-top: 24px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image { margin: 24px 0; }
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.wp-caption-text { font-size: 12px; color: var(--muted); margin-top: 6px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-sidebar { border-top: 1px solid var(--border); }
  .form-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 48px 0; }
  .nav-inner { padding: 0 20px; }
  #primary-nav { display: none; }
  #primary-nav.open { display: block; position: absolute; top: 68px; left: 0; right: 0; background: var(--forge-black); border-bottom: 1px solid var(--border); padding: 16px 20px; }
  #primary-nav.open ul { flex-direction: column; gap: 0; }
  #primary-nav.open ul li { border-bottom: 1px solid var(--border); }
  #primary-nav.open ul a { display: block; padding: 12px 0; }
  .nav-hamburger { display: flex; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-item:first-child { grid-column: span 1; }
  .gallery-full { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-item:nth-child(1),
  .gallery-full-item:nth-child(5) { grid-column: span 1; }
  .cta-band { flex-direction: column; text-align: center; padding: 36px 20px; }
  .hero-content { padding: 48px 20px; }
  .page-hero { padding: 36px 20px; }
  .suburb-grid { grid-template-columns: repeat(2, 1fr); }
  .divisions { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .trust-bar { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
