/* ==================================================================
   WATTLE PLUMBING & GAS — Fable Build
   Aesthetic: Australian Heritage "Trade Certificate"
   Fraunces (display) + Karla (body) | Forest green ink on parchment
   ================================================================== */

/* Fonts are loaded via <link> in each page head (avoids the render-blocking @import chain). */

:root {
  --gold:        #C8961A;
  --gold-bright: #E8B820;
  --gold-light:  #FFD000;
  --green:       #1A3A1E;
  --green-dark:  #0F2211;
  --green-deep:  #0A180B;
  --green-mid:   #2A5A30;
  --brown:       #7B4A1E;
  --brown-line:  rgba(123, 74, 30, 0.25);
  --cream:       #F5F0E8;
  --cream-dark:  #EDE5D5;
  --parchment:   #FAF6EE;
  --ink:         #1A1510;
  --body:        #3A2E22;
  --muted:       #6A5A48;
  --white:       #FFFFFF;
  --shadow-green: rgba(15, 34, 17, 0.35);
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Karla', sans-serif;
  font-size: 1.02rem;
  color: var(--body);
  background: var(--parchment);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Fraunces', serif;
  color: var(--green);
  line-height: 1.12;
  letter-spacing: -0.015em;
  font-weight: 700;
}
h1 em, h2 em { font-style: italic; color: var(--gold); font-weight: 600; }
p { line-height: 1.75; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }
a:focus-visible, button:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--gold-bright); outline-offset: 3px; border-radius: 2px;
}
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--gold-light); color: var(--green-dark); }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Grain overlay for parchment sections ---- */
.grain { position: relative; }
.grain::before {
  content: ''; position: absolute; inset: 0;
  background-image: var(--grain); pointer-events: none; z-index: 0;
}
.grain > * { position: relative; z-index: 1; }

/* ==================================================================
   TOP LICENCE BAR
   ================================================================== */
.top-bar {
  background: var(--green-deep);
  color: var(--cream);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.4rem 1.25rem;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--gold-bright); }
.top-bar .lic { opacity: 0.75; font-weight: 500; letter-spacing: 0.06em; }
.pulse-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold-light); margin-right: 7px;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.45); opacity: 0.55; }
}

/* ==================================================================
   HEADERS — full nav (site) + slim (landing)
   ================================================================== */
.site-header, .landing-header {
  background: var(--parchment);
  border-bottom: 3px double var(--gold);
  padding: 0.7rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  position: sticky; top: 0; z-index: 900;
  box-shadow: 0 3px 20px rgba(26, 58, 30, 0.10);
}
.header-logo img { height: 80px; width: auto; }
.landing-header .header-logo img { height: 74px; }

.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav-links > li > a {
  color: var(--green); font-weight: 700; font-size: 0.92rem;
  letter-spacing: 0.03em; padding: 0.4rem 0; position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 100%;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform 0.22s ease;
}
.nav-links > li > a:hover::after, .nav-links > li > a:focus-visible::after { transform: scaleX(1); }

.nav-drop { position: relative; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 0.6rem); left: 50%; transform: translate(-50%, 6px);
  background: var(--parchment); border: 1px solid var(--brown-line);
  border-top: 3px solid var(--gold);
  min-width: 230px; padding: 0.5rem 0; list-style: none;
  box-shadow: 0 14px 40px rgba(15, 34, 17, 0.18);
  opacity: 0; visibility: hidden; transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
.nav-drop-menu a {
  display: block; padding: 0.5rem 1.2rem; color: var(--body);
  font-size: 0.9rem; font-weight: 500;
}
.nav-drop-menu a:hover { background: var(--cream-dark); color: var(--green); }

.header-phone {
  display: flex; align-items: center; gap: 0.65rem; text-align: right;
}
.header-phone .phone-label {
  font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted); font-weight: 800;
}
.header-phone .phone-number {
  font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 900;
  color: var(--green); white-space: nowrap;
}
.header-phone .phone-number:hover { color: var(--green-mid); }

/* Hamburger (mobile) */
.hamburger {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
}
.hamburger span {
  display: block; width: 26px; height: 3px; background: var(--green);
  margin: 5px 0; border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none; background: var(--parchment);
  border-bottom: 3px double var(--gold);
  padding: 1rem 1.5rem 1.5rem;
  position: sticky; top: 0; z-index: 899;
}
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.6rem 0; color: var(--green); font-weight: 700; }
.mobile-menu details { border-bottom: 1px solid var(--brown-line); padding: 0.3rem 0; }
.mobile-menu summary { font-weight: 800; color: var(--green); cursor: pointer; padding: 0.5rem 0; }
.mobile-menu details a { padding-left: 1rem; font-weight: 500; }

/* ==================================================================
   BUTTONS — heritage press style (hard offset shadow)
   ================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: 'Karla', sans-serif; font-weight: 800; font-size: 0.92rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 0.95rem 1.9rem; border-radius: 3px; border: 2px solid transparent;
  cursor: pointer; transition: transform 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}
.btn-gold {
  background: var(--gold-bright); color: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 4px 4px 0 var(--green-dark);
}
.btn-gold:hover { background: var(--gold-light); color: var(--green-dark); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--green-dark); }
.btn-gold:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--green-dark); }

.btn-outline-cream {
  background: transparent; color: var(--cream); border-color: rgba(245, 240, 232, 0.55);
}
.btn-outline-cream:hover { border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }
.btn-outline-cream:active { transform: translateY(1px); }

.btn-green {
  background: var(--green); color: var(--cream); border-color: var(--green-dark);
  box-shadow: 4px 4px 0 rgba(15, 34, 17, 0.35);
}
.btn-green:hover { background: var(--green-mid); color: var(--cream); transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(15, 34, 17, 0.35); }
.btn-green:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(15, 34, 17, 0.35); }

.btn-block { width: 100%; }

/* ==================================================================
   SECTION FURNITURE
   ================================================================== */
.section { padding: 5rem 0; }
.section-ink { background: var(--green); color: var(--cream); position: relative; overflow: hidden; }
.section-ink h2, .section-ink h3 { color: var(--cream); }
.section-ink p { color: rgba(245, 240, 232, 0.85); }
.section-ink::after {
  content: ''; position: absolute; inset: 0;
  background-image: var(--grain); pointer-events: none; opacity: 0.6;
}
.section-ink > .wrap { position: relative; z-index: 1; }

.eyebrow {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem;
}
.eyebrow::before, .eyebrow.rule-both::after {
  content: ''; height: 1px; width: 44px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.eyebrow.rule-both::after { background: linear-gradient(to left, transparent, var(--gold)); }
.eyebrow.center { justify-content: center; }

.h-xl { font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 900; margin-bottom: 1.1rem; }
.h-lg { font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 900; margin-bottom: 1rem; }

.gold-rule {
  border: 0; height: 4px; width: 90px; margin: 2.4rem auto;
  border-top: 1px solid var(--gold); border-bottom: 1px solid var(--gold);
}

/* ==================================================================
   HERO — split layout with lead form
   ================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--green-dark);
  padding: 4.5rem 0 5rem;
}
.hero-media, .hero-media video, .hero-media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(112deg, rgba(10, 24, 11, 0.94) 0%, rgba(15, 34, 17, 0.82) 45%, rgba(15, 34, 17, 0.55) 100%);
}
.hero-glow {
  position: absolute; top: -25%; right: -12%; width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(232, 184, 32, 0.16) 0%, transparent 68%);
  pointer-events: none;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.5rem; align-items: center;
}
.hero-copy .eyebrow { color: var(--gold-light); }
.hero-copy h1 {
  color: var(--cream); font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.02em; margin-bottom: 1.2rem;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.45);
}
.hero-copy h1 em { color: var(--gold-light); }
.hero-copy .hero-sub {
  color: rgba(245, 240, 232, 0.9); font-size: 1.12rem; max-width: 560px; margin-bottom: 1.8rem;
}
.hero-ticks { list-style: none; margin-bottom: 2rem; }
.hero-ticks li {
  color: rgba(245, 240, 232, 0.92); font-weight: 500; padding: 0.28rem 0;
  display: flex; align-items: baseline; gap: 0.7rem;
}
.hero-ticks li::before {
  content: '✓'; color: var(--gold-light); font-weight: 800; font-size: 1.05rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- Lead form card (corner-tick frame) ---- */
.lead-card {
  background: var(--parchment);
  border: 1px solid var(--brown-line);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.42);
  padding: 2rem 1.9rem 1.9rem;
  position: relative;
}
.lead-card::before, .lead-card::after,
.lead-card .tick-b::before, .lead-card .tick-b::after {
  content: ''; position: absolute; width: 16px; height: 16px;
  border-color: var(--gold); border-style: solid;
}
.lead-card::before { top: 7px; left: 7px; border-width: 2px 0 0 2px; }
.lead-card::after  { top: 7px; right: 7px; border-width: 2px 2px 0 0; }
.lead-card .tick-b::before { bottom: 7px; left: 7px; border-width: 0 0 2px 2px; }
.lead-card .tick-b::after  { bottom: 7px; right: 7px; border-width: 0 2px 2px 0; }
.lead-card h2 {
  font-size: 1.55rem; font-weight: 900; text-align: center; margin-bottom: 0.35rem;
}
.lead-card .lead-sub {
  text-align: center; font-size: 0.86rem; color: var(--muted); margin-bottom: 1.4rem;
}
.lead-card .lead-sub strong { color: var(--green); }

.field { margin-bottom: 0.9rem; }
.field label {
  display: block; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--green); margin-bottom: 0.3rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.78rem 0.9rem;
  border: 1px solid var(--brown-line); border-radius: 3px;
  background: var(--white); color: var(--ink);
  font-family: 'Karla', sans-serif; font-size: 0.98rem;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 150, 26, 0.22);
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

.form-note {
  font-size: 0.76rem; color: var(--muted); text-align: center; margin-top: 0.9rem; line-height: 1.55;
}
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

/* ==================================================================
   TRUST STRIP
   ================================================================== */
.trust-strip {
  background: var(--green-deep); border-top: 1px solid rgba(232, 184, 32, 0.35);
  border-bottom: 1px solid rgba(232, 184, 32, 0.35);
  padding: 1.1rem 1.5rem;
}
.trust-strip .wrap {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem 3rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(245, 240, 232, 0.9); font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.trust-item svg, .trust-item .t-ico { color: var(--gold-light); flex: none; }

/* ==================================================================
   CARDS
   ================================================================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 1.6rem; }
.h-card {
  background: var(--parchment);
  border: 1px solid var(--brown-line);
  border-top: 3px solid var(--gold);
  padding: 1.8rem 1.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column;
}
.h-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(26, 58, 30, 0.16), 0 4px 12px rgba(200, 150, 26, 0.12);
}
.h-card .card-num {
  font-family: 'Fraunces', serif; font-size: 0.85rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.8rem;
}
.h-card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.h-card p { font-size: 0.93rem; color: var(--muted); flex: 1; }
.h-card .card-link {
  margin-top: 1.1rem; font-size: 0.8rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green);
}
.h-card .card-link:hover { color: var(--gold); }

.section-ink .h-card {
  background: rgba(245, 240, 232, 0.06);
  border-color: rgba(232, 184, 32, 0.25); border-top-color: var(--gold);
}
.section-ink .h-card h3 { color: var(--cream); }
.section-ink .h-card p { color: rgba(245, 240, 232, 0.75); }
.section-ink .h-card .card-link { color: var(--gold-light); }

/* ---- Photo cards (real jobs) ---- */
.photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.photo-card {
  position: relative; overflow: hidden; border: 1px solid var(--brown-line);
  aspect-ratio: 4 / 3; background: var(--green-dark);
}
.photo-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-card:hover img { transform: scale(1.05); }
.photo-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(10, 24, 11, 0.92), transparent);
  color: var(--cream); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; padding: 2rem 1rem 0.8rem;
}
.photo-card figcaption span { color: var(--gold-light); }

/* ==================================================================
   CHECKLIST (two-column service inclusions)
   ================================================================== */
.check-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.4rem 2.5rem; list-style: none;
}
.check-cols li {
  padding: 0.55rem 0; border-bottom: 1px dotted var(--brown-line);
  display: flex; gap: 0.8rem; align-items: baseline; font-weight: 500;
}
.check-cols li::before { content: '✓'; color: var(--gold); font-weight: 800; }
.section-ink .check-cols li { border-bottom-color: rgba(232, 184, 32, 0.25); color: rgba(245,240,232,0.9); }
.section-ink .check-cols li::before { color: var(--gold-light); }

/* ==================================================================
   PROCESS STEPS
   ================================================================== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 2rem; }
.step { text-align: center; padding: 0 0.5rem; }
.step-num {
  font-family: 'Fraunces', serif; font-size: 3.2rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 0.7rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 0.45rem; }
.step p { font-size: 0.9rem; color: var(--muted); }
.section-ink .step p { color: rgba(245, 240, 232, 0.75); }

/* ==================================================================
   REVIEWS
   ================================================================== */
.review-card {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(232, 184, 32, 0.3);
  border-left: 4px solid var(--gold);
  padding: 1.7rem 1.7rem 1.4rem;
}
.review-card .stars { color: var(--gold-light); letter-spacing: 0.2em; font-size: 1rem; }
.review-card blockquote {
  color: rgba(245, 240, 232, 0.92); margin: 0.8rem 0; font-size: 0.98rem; line-height: 1.7;
}
.review-card cite { color: var(--gold-light); font-style: normal; font-weight: 700; font-size: 0.88rem; }
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

/* Light variant */
.review-card.on-light { background: var(--white); border-color: var(--brown-line); border-left-color: var(--gold); }
.review-card.on-light blockquote { color: var(--body); }
.review-card.on-light cite { color: var(--brown); }
.review-card.on-light .stars { color: var(--gold); }

/* ==================================================================
   FAQ
   ================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--parchment); border: 1px solid var(--brown-line);
  border-left: 3px solid var(--gold); margin-bottom: 0.8rem;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.05rem 1.3rem;
  font-family: 'Fraunces', serif; font-weight: 700; font-size: 1.05rem; color: var(--green);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-family: 'Karla', sans-serif; font-weight: 800;
  color: var(--gold); font-size: 1.3rem; transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.3rem 1.2rem; font-size: 0.95rem; color: var(--muted); }

/* ==================================================================
   LICENCE SEAL / BADGE
   ================================================================== */
.seal {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 130px; height: 130px; border-radius: 50%;
  border: 2px solid var(--gold); outline: 1px solid var(--gold); outline-offset: 4px;
  text-align: center; padding: 0.8rem; flex: none;
  color: var(--cream); background: rgba(232, 184, 32, 0.07);
  transform: rotate(-4deg);
}
.seal .seal-top { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-light); }
.seal .seal-main { font-family: 'Fraunces', serif; font-size: 1.5rem; font-weight: 900; color: var(--cream); line-height: 1.1; }
.seal .seal-sub { font-size: 0.6rem; letter-spacing: 0.1em; color: rgba(245, 240, 232, 0.75); text-transform: uppercase; }

/* ==================================================================
   AREA CHIPS
   ================================================================== */
.area-chips { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.area-chips a {
  border: 1px solid var(--brown-line); border-radius: 3px;
  padding: 0.45rem 1rem; font-size: 0.86rem; font-weight: 700; color: var(--green);
  background: var(--parchment); transition: transform 0.15s ease, background-color 0.15s ease;
}
.area-chips a:hover { background: var(--cream-dark); transform: translateY(-2px); }
.area-chips a.primary { border-color: var(--gold); background: rgba(232, 184, 32, 0.12); }

/* ==================================================================
   CTA BAND
   ================================================================== */
.cta-band {
  background: var(--gold-bright); position: relative; overflow: hidden;
  padding: 3.6rem 1.5rem; text-align: center;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.9;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--green-dark); font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 900; margin-bottom: 0.6rem; }
.cta-band p { color: rgba(15, 34, 17, 0.8); font-weight: 500; margin-bottom: 1.8rem; }
.cta-band .btn-green { border-color: var(--green-deep); }

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer {
  background: var(--green-deep); color: rgba(245, 240, 232, 0.8);
  padding: 3.5rem 1.5rem 6.5rem; font-size: 0.9rem;
  border-top: 3px double var(--gold);
}
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 2.5rem;
}
.site-footer h3, .site-footer h4 {
  color: var(--gold-light); font-size: 0.78rem; font-family: 'Karla', sans-serif;
  font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer li { padding: 0.22rem 0; }
.site-footer a { color: rgba(245, 240, 232, 0.8); }
.site-footer a:hover { color: var(--gold-light); }
.footer-logo img { height: 84px; width: auto; margin-bottom: 1rem; }
.footer-bottom {
  max-width: 1180px; margin: 2.5rem auto 0; padding-top: 1.4rem;
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.78rem; color: rgba(245, 240, 232, 0.55);
}

/* ==================================================================
   STICKY MOBILE CALL BAR
   ================================================================== */
.mobile-cta-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: var(--green-deep); border-top: 2px solid var(--gold);
  padding: 0.65rem 0.9rem; gap: 0.7rem;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}
.mobile-cta-bar .btn { flex: 1; padding: 0.8rem 0.5rem; font-size: 0.82rem; }

/* ==================================================================
   REVEAL ANIMATION
   ================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.2s; }
  .reveal-d3 { transition-delay: 0.3s; }
}

/* ==================================================================
   RESPONSIVE
   ================================================================== */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-copy { text-align: center; }
  .hero-copy .eyebrow { justify-content: center; }
  .hero-copy .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ticks { display: inline-block; text-align: left; }
  .hero-ctas { justify-content: center; }
  .lead-card { max-width: 560px; margin: 0 auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .header-phone .phone-label { display: none; }
  .top-bar { justify-content: center; text-align: center; }
  .top-bar .lic { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 3.4rem 0; }
  .hero { padding: 3rem 0 3.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-cta-bar { display: flex; }
  .header-phone .phone-number { font-size: 1.1rem; }
  .landing-header .header-logo img { height: 56px; }
  .header-logo img { height: 58px; }
}

/* ==================================================================
   BLOG
   ================================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.6rem; }
.blog-card {
  background: var(--parchment); border: 1px solid var(--brown-line);
  border-top: 3px solid var(--gold); display: flex; flex-direction: column;
  color: inherit; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover {
  transform: translateY(-5px); color: inherit;
  box-shadow: 0 18px 44px rgba(26, 58, 30, 0.16), 0 4px 12px rgba(200, 150, 26, 0.12);
}
.blog-card-img {
  height: 170px; display: flex; align-items: center; justify-content: center;
  font-size: 3rem; background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
}
.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-tag {
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.blog-card h2, .blog-card h2, .blog-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.blog-card p { font-size: 0.9rem; color: var(--muted); flex: 1; }
.blog-date { font-size: 0.76rem; color: var(--muted); margin-top: 1rem; letter-spacing: 0.04em; }

/* ---- Article ---- */
.article-hero {
  background: var(--green-dark); position: relative; overflow: hidden;
  padding: 4rem 1.5rem 3.5rem; text-align: center;
}
.article-hero::after { content: ''; position: absolute; inset: 0; background-image: var(--grain); opacity: 0.5; }
.article-hero > * { position: relative; z-index: 1; }
.article-hero h1 {
  color: var(--cream); font-size: clamp(1.9rem, 4.2vw, 2.9rem); font-weight: 900;
  max-width: 860px; margin: 0 auto 0.9rem;
}
.article-hero .article-meta {
  color: rgba(245, 240, 232, 0.7); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.article-body { max-width: 780px; margin: 0 auto; padding: 3.5rem 1.5rem 4rem; }
.article-body h2 {
  font-size: 1.65rem; margin: 2.4rem 0 0.9rem; padding-top: 1.6rem;
  border-top: 3px double var(--gold);
}
.article-body h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.article-body h3 { font-size: 1.2rem; margin: 1.6rem 0 0.5rem; }
.article-body p { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin: 0 0 1.2rem 1.4rem; }
.article-body li { margin-bottom: 0.45rem; }
.article-body a { font-weight: 700; }
.article-body strong { color: var(--green); }
.article-cta {
  background: var(--green); border-left: 4px solid var(--gold);
  padding: 1.6rem 1.7rem; margin: 2.6rem 0 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.article-cta h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 0.3rem; }
.article-cta p { color: rgba(245, 240, 232, 0.8); font-size: 0.9rem; margin: 0; }

/* ==================================================================
   GALLERY
   ================================================================== */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.gallery-grid .photo-card { aspect-ratio: 1 / 1; }

/* ==================================================================
   COVERAGE (Moreton to Noosa suburb list)
   ================================================================== */
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 1.8rem; }
.coverage-col {
  border-top: 3px double var(--gold); padding-top: 1.1rem;
}
.coverage-col h3 { font-size: 1.05rem; margin-bottom: 0.7rem; }
.coverage-col ul { list-style: none; columns: 1; }
.coverage-col li { font-size: 0.88rem; color: var(--muted); padding: 0.16rem 0; font-weight: 500; }
.coverage-col li a { color: var(--green); font-weight: 700; }
.coverage-col li a:hover { color: var(--gold); }
