/* ============================================================
   Westside Fences & Powder Coating — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --black:      #0B0B0B;
  --charcoal:   #1A1A1A;
  --dark-grey:  #333333;
  --mid-grey:   #666666;
  --light-grey: #F5F5F5;
  --border:     #D9D9D9;
  --white:      #FFFFFF;
  --red:        #D71920;
  --red-dark:   #B01218;

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Inter', sans-serif;

  --header-h: 68px;   /* mobile */
  --radius:   4px;
  --shadow:   0 2px 12px rgba(0,0,0,.10);
  --transition: .22s ease;
}
/* Desktop: taller header to fit big logo */
@media(min-width:768px){
  :root { --header-h: 200px; }
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--dark-grey);
  background: var(--white);
  line-height: 1.65;
  padding-bottom: 64px; /* mobile bottom bar space */
}
@media(min-width:768px){ body { padding-bottom: 0; } }

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Typography ── */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Layout helpers ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.site-header .container {
  max-width: none;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.section    { padding: 72px 0; }
.section--grey   { background: var(--light-grey); }
.section--dark   { background: var(--charcoal); color: var(--white); }
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }
.section--dark p  { color: rgba(255,255,255,.80); }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.section-header p { color: var(--mid-grey); font-size: 1.05rem; margin-top: .5rem; }
.section--dark .section-header p { color: rgba(255,255,255,.70); }

.red-line {
  display: block; width: 48px; height: 4px;
  background: var(--red); margin: 12px auto 0;
}
.red-line--left { margin-left: 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700;
  font-size: .9rem; letter-spacing: .04em; text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--red   { background: var(--red); color: var(--white); border-color: var(--red); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn--outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline:hover { background: var(--white); color: var(--black); }
.btn--outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline-dark:hover { background: var(--black); color: var(--white); }
.btn--lg { padding: 17px 36px; font-size: 1rem; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,.4);
  height: var(--header-h);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px; padding: 12px 0;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0; text-decoration: none;
}

/* ── Real logo image ── */
.site-logo-img {
  /* Mobile: compact */
  height: 48px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
  background: var(--white);
  border-radius: 5px;
  padding: 4px 8px;
  color: transparent;   /* hide alt text on broken image */
  font-size: 0;
  flex-shrink: 0;
}
/* Desktop: 4× bigger */
@media(min-width:768px){
  .site-logo-img {
    height: 180px;
    max-width: 240px;
    width: auto;
    padding: 10px 20px;
    border-radius: 8px;
  }
}
.site-logo-img--footer {
  height: 64px;
  max-width: 280px;
  padding: 6px 14px;
}
@media(min-width:768px){
  .site-logo-img--footer {
    height: 96px;
    max-width: none;
    padding: 8px 20px;
  }
}

/* ── Fallback text logo (shown if image file is missing) ── */
.logo-fallback {
  display: flex; align-items: center; gap: 10px;
}
.logo-mark {
  width: 44px; height: 44px;
  background: var(--red); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child {
  font-family: var(--font-heading); font-weight: 900;
  font-size: .95rem; color: var(--white); line-height: 1;
  letter-spacing: .02em; text-transform: uppercase;
}
.logo-text span:last-child {
  font-size: .7rem; color: var(--red); font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}

/* desktop nav */
.site-nav { display: none; }
@media(min-width:960px){
  .site-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; min-width: 0; }
  .site-nav a {
    color: rgba(255,255,255,.80); font-size: .78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: .04em;
    padding: 8px 8px; border-radius: 3px; white-space: nowrap;
    transition: color var(--transition), background var(--transition);
  }
  .site-nav a:hover, .site-nav a.active { color: var(--white); }
  .site-nav a.active { border-bottom: 2px solid var(--red); }
}
@media(min-width:1100px){
  .site-nav { gap: 4px; }
  .site-nav a { font-size: .82rem; padding: 8px 10px; }
}
.header-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0; min-width: 0;
}
.header-phone {
  display: none; color: var(--white); font-weight: 700;
  font-size: .82rem; letter-spacing: .02em; white-space: nowrap;
}
.header-phone span { color: var(--red); margin-right: 4px; }
@media(min-width:1060px){ .header-phone { display: block; } }

/* hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(min-width:960px){ .hamburger { display: none; } }

/* mobile nav drawer */
.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0;
  background: var(--charcoal); z-index: 850; overflow-y: auto;
  padding: 16px 20px 100px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,.85); font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav .btn { margin-top: 20px; justify-content: center; }

/* ── Mobile Bottom Bar ── */
.mobile-bar {
  display: flex; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 800; height: 64px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; font-size: .68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--white); background: var(--charcoal);
  transition: background var(--transition);
}
.mobile-bar a:nth-child(2) { background: var(--red); }
.mobile-bar a:hover { background: var(--dark-grey); }
.mobile-bar a:nth-child(2):hover { background: var(--red-dark); }
.mobile-bar svg { width: 20px; height: 20px; fill: var(--white); }
@media(min-width:768px){ .mobile-bar { display: none; } }

/* ── Hero ── */
.hero {
  position: relative; min-height: 560px;
  display: flex; align-items: center;
  background: var(--charcoal);
  overflow: hidden;
}
.hero--tall { min-height: 680px; }
@media(min-width:768px){ .hero { min-height: 680px; } }

.hero-bg {
  position: absolute; inset: 0;
  background: var(--black);
}

/* ── Hero video background ── */
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .55;      /* dim so text stays readable over the footage */
}

.hero-bg-image {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35;
}
.hero-overlay {
  position: absolute; inset: 0;
  /* stronger gradient on left so headline always reads clean */
  background: linear-gradient(
    to right,
    rgba(0,0,0,.80) 0%,
    rgba(0,0,0,.55) 55%,
    rgba(0,0,0,.20) 100%
  );
}
.hero-content { position: relative; z-index: 2; padding: 60px 0; }
.hero-badge {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: .72rem; font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 2px; margin-bottom: 18px;
}
.hero h1 { color: var(--white); max-width: 660px; margin-bottom: 20px; }
.hero h1 span { color: var(--red); }
.hero-sub {
  color: rgba(255,255,255,.80); font-size: 1.05rem; max-width: 520px; margin-bottom: 32px;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.65); font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em;
}
.hero-trust span { color: rgba(255,255,255,.25); }
.hero-phone {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
}
.hero-phone a {
  color: var(--white); font-family: var(--font-heading); font-weight: 800;
  font-size: 1.3rem; letter-spacing: .02em;
}
.hero-phone a:hover { color: var(--red); }
.hero-phone-label { font-size: .78rem; color: rgba(255,255,255,.55); }

/* ── Service Cards Grid ── */
.services-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media(min-width:580px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .services-grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card__icon {
  width: 52px; height: 52px; border-radius: 3px;
  background: var(--light-grey);
  display: flex; align-items: center; justify-content: center;
}
.service-card__icon svg { width: 26px; height: 26px; fill: var(--red); }
.service-card h3 { margin: 0; }
.service-card p  { color: var(--mid-grey); font-size: .92rem; flex: 1; margin: 0; }
.service-card .link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red); font-weight: 700; font-size: .83rem;
  text-transform: uppercase; letter-spacing: .05em; margin-top: 4px;
}
.service-card .link-arrow:hover { gap: 10px; }

/* ── Why Choose Us ── */
.why-grid {
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media(min-width:580px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .why-grid { grid-template-columns: repeat(3,1fr); } }

.why-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--radius); padding: 24px;
}
.why-icon { flex-shrink: 0; }
.why-icon svg { width: 28px; height: 28px; fill: var(--red); }
.why-card h4 { margin-bottom: 6px; }
.why-card p  { color: var(--mid-grey); font-size: .9rem; margin: 0; }

/* ── Gallery Grid ── */
.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media(min-width:580px){ .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media(min-width:900px){ .gallery-grid { grid-template-columns: repeat(4,1fr); } }

.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: var(--dark-grey); aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: var(--white); padding: 20px 12px 10px;
  font-size: .78rem; font-weight: 600;
  opacity: 1;                          /* always visible */
  transition: background var(--transition);
}
.gallery-item:hover .gallery-item__caption {
  background: linear-gradient(transparent, rgba(215,25,32,.85));  /* goes red on hover */
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1A1A1A 0%, #2a2a2a 100%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  padding: 14px; gap: 4px; position: relative; overflow: hidden;
}
.gallery-placeholder::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    45deg, transparent 0, transparent 8px,
    rgba(255,255,255,.03) 8px, rgba(255,255,255,.03) 9px
  );
}
.gallery-placeholder::after {
  content: '📷';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-60%);
  font-size: 2rem; opacity: .18;
}
.gallery-placeholder svg { display: none; }
.gallery-placeholder strong {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 700;
  color: var(--white); position: relative; z-index: 1;
  text-shadow: 0 1px 3px rgba(0,0,0,.6);
}
.gallery-placeholder span {
  font-size: .72rem; color: rgba(255,255,255,.55);
  position: relative; z-index: 1;
}
.gallery-placeholder .ph-tag {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: var(--white);
  font-size: .65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; padding: 3px 8px; border-radius: 2px;
  z-index: 1;
}

/* ── Process Steps ── */
.process-steps {
  display: grid; gap: 0;
  grid-template-columns: 1fr;
  position: relative;
}
@media(min-width:768px){
  .process-steps {
    grid-template-columns: repeat(4,1fr);
  }
}
.step {
  text-align: center; padding: 32px 24px;
  position: relative;
}
@media(min-width:768px){
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 50px; right: -1px;
    width: 2px; height: 40px; background: var(--border);
  }
}
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: var(--font-heading); font-weight: 900; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h4 { margin-bottom: 8px; }
.step p   { color: var(--mid-grey); font-size: .9rem; margin: 0; }

/* ── Suburb Chips ── */
.suburb-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.suburb-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border: 1.5px solid var(--border);
  border-radius: 100px; font-size: .83rem; font-weight: 600;
  color: var(--dark-grey); background: var(--white);
  transition: all var(--transition);
}
.suburb-chip:hover { border-color: var(--red); color: var(--red); background: rgba(215,25,32,.05); }
.suburb-chip svg { width: 13px; height: 13px; fill: var(--red); }

/* ── Reviews ── */
.reviews-grid {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media(min-width:640px){ .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:960px){ .reviews-grid { grid-template-columns: repeat(3,1fr); } }

.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
}
.review-stars { color: #f5a623; font-size: 1.1rem; margin-bottom: 10px; }
.review-text { font-size: .92rem; color: var(--dark-grey); margin-bottom: 14px; font-style: italic; }
.review-author { font-weight: 700; font-size: .88rem; }
.review-service { font-size: .78rem; color: var(--mid-grey); }
.review-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 140px; text-align: center; gap: 8px;
  color: var(--mid-grey); font-size: .88rem; border: 2px dashed var(--border);
  border-radius: var(--radius); padding: 24px;
}

/* ── CTA Banner ── */
.cta-banner { padding: 72px 0; background: var(--charcoal); text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.70); max-width: 560px; margin: 0 auto 32px; }
.cta-banner .btn-group { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ── Page Hero (interior pages) ── */
.page-hero {
  background: var(--charcoal); padding: 60px 0 48px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent 0, transparent 10px,
    rgba(255,255,255,.012) 10px, rgba(255,255,255,.012) 11px
  );
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin-bottom: 24px; }
.page-hero .btn-group { display: flex; flex-wrap: wrap; gap: 12px; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .78rem; color: rgba(255,255,255,.55);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .05em;
}
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: var(--red); }

/* ── Feature List ── */
.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid var(--border);
  font-size: .95rem;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: ''; flex-shrink: 0;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); margin-top: 7px;
}

/* ── Sub-service cards ── */
.sub-services {
  display: grid; gap: 20px;
  grid-template-columns: 1fr;
}
@media(min-width:580px){ .sub-services { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px){ .sub-services { grid-template-columns: repeat(3,1fr); } }

.sub-card {
  padding: 28px; background: var(--white);
  border: 1px solid var(--border); border-top: 3px solid var(--red);
  border-radius: var(--radius);
}
.sub-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.sub-card p  { color: var(--mid-grey); font-size: .9rem; margin: 0; }

/* ── Two-col layout ── */
.two-col {
  display: grid; gap: 48px; align-items: start;
  grid-template-columns: 1fr;
}
@media(min-width:768px){ .two-col { grid-template-columns: 1fr 1fr; } }
.two-col--60-40 { }
@media(min-width:768px){ .two-col--60-40 { grid-template-columns: 1.4fr 1fr; } }

/* ── Info Box ── */
.info-box {
  background: var(--light-grey); border: 1px solid var(--border);
  border-left: 4px solid var(--red); border-radius: var(--radius);
  padding: 24px 28px;
}
.info-box h4 { margin-bottom: 10px; }
.info-box ul { padding-left: 0; }
.info-box ul li { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 6px; font-size: .9rem; }
.info-box ul li::before { content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; font-family: var(--font-heading); font-weight: 700;
  font-size: 1rem; color: var(--black);
}
.faq-question .faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.faq-question .faq-icon::after { content: '+'; color: var(--white); font-size: 1rem; line-height: 1; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 20px; color: var(--mid-grey); font-size: .95rem; display: none; }
.faq-answer.open { display: block; }

/* ── Forms ── */
.form-wrap {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-weight: 600; font-size: .88rem;
  margin-bottom: 6px; color: var(--dark-grey);
}
.form-group label .req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: var(--font-body); font-size: .95rem; color: var(--dark-grey);
  background: var(--white); transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(215,25,32,.10);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23333'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-row { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media(min-width:560px){ .form-row { grid-template-columns: 1fr 1fr; } }
.form-tip {
  background: #FFF8E1; border: 1px solid #FFE082;
  border-radius: var(--radius); padding: 14px 16px;
  font-size: .88rem; color: #7B5800; margin-bottom: 20px;
}
.form-tip strong { color: #5D4000; }
.file-upload-area {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 24px; text-align: center; cursor: pointer;
  transition: border-color var(--transition);
}
.file-upload-area:hover { border-color: var(--red); }
.file-upload-area svg { width: 32px; height: 32px; fill: var(--mid-grey); margin: 0 auto 8px; }
.file-upload-area p { color: var(--mid-grey); font-size: .88rem; margin: 0; }
.file-upload-area input[type="file"] { display: none; }
.form-success {
  display: none; background: #E8F5E9; border: 1px solid #A5D6A7;
  border-radius: var(--radius); padding: 20px 24px;
  color: #2E7D32; text-align: center; font-weight: 600;
}

/* ── Suburb cards ── */
.suburb-cards {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2,1fr);
}
@media(min-width:580px){ .suburb-cards { grid-template-columns: repeat(3,1fr); } }
@media(min-width:900px){ .suburb-cards { grid-template-columns: repeat(4,1fr); } }

.suburb-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px;
  display: flex; flex-direction: column; gap: 6px;
  transition: all var(--transition);
}
.suburb-card:hover {
  border-color: var(--red); box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.suburb-card h4 { font-size: .95rem; margin: 0; }
.suburb-card p  { color: var(--mid-grey); font-size: .78rem; margin: 0; }
.suburb-card .arrow { color: var(--red); font-size: .78rem; font-weight: 700; }

/* ── Contact grid ── */
.contact-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media(min-width:768px){ .contact-grid { grid-template-columns: 1fr 1.6fr; } }

.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px; background: var(--light-grey); border-radius: var(--radius);
}
.contact-detail svg { width: 22px; height: 22px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.contact-detail h4 { font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.contact-detail p,
.contact-detail a { font-size: .95rem; color: var(--dark-grey); margin: 0; }
.contact-detail a:hover { color: var(--red); }

/* ── Footer ── */
.site-footer { background: var(--black); color: rgba(255,255,255,.70); padding: 64px 0 0; }
.footer-grid {
  display: grid; gap: 40px; margin-bottom: 48px;
  grid-template-columns: 1fr;
}
@media(min-width:580px){ .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:960px){ .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }

.footer-brand p { font-size: .88rem; margin-top: 14px; line-height: 1.6; }
.footer-col h5 {
  color: var(--white); font-family: var(--font-heading); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .10em; margin-bottom: 14px;
  padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { font-size: .85rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--red); }
.footer-col .footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: .85rem; }
.footer-col .footer-contact-item svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-col .footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-col .footer-contact-item a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0; display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: .78rem; color: rgba(255,255,255,.40);
}
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.footer-socials a:hover { background: var(--red); }
.footer-socials svg { width: 16px; height: 16px; fill: var(--white); }

/* ── Gallery filters ── */
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 18px; border: 1.5px solid var(--border);
  border-radius: 100px; background: var(--white);
  font-size: .82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em; color: var(--dark-grey);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--red); border-color: var(--red); color: var(--white); }

/* ── Schema / structured data helper ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── Utility ── */
.text-red  { color: var(--red); }
.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.max-640 { max-width: 640px; }
