/* FSA Site Template -- Mobile-First Dark Theme */
:root {
  --bg: #0f0f0f;
  --bg-card: #141414;
  --bg-card2: #1a1a1a;
  --border: #252525;
  --text: #f0ebe3;
  --text-dim: #b8a998;
  --text-sub: #8a7d6e;
  --gold: #c9a84c;
  --gold2: #dbb960;
  --gold-glow: 0 0 20px rgba(201,168,76,0.3);
  --gold-glow-strong: 0 0 32px rgba(201,168,76,0.5);
  --radius: 10px;
  --radius-lg: 16px;
  --tap: 48px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 72px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; -webkit-tap-highlight-color: transparent; }
p { margin-bottom: 1rem; color: var(--text-dim); }
p:last-child { margin-bottom: 0; }
h1,h2,h3,h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(15,15,15,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.nav-inner {
  padding: 0 1.25rem; height: 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { color: var(--text); font-weight: 800; font-size: 15px; }
.rating-bar {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 6px 1.25rem; background: var(--bg-card); border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.rating-stars { color: var(--gold); font-size: 13px; letter-spacing: 1px; }
.rating-score { font-weight: 700; color: var(--text); }
.rating-count { color: var(--text-sub); text-decoration: underline; text-underline-offset: 2px; }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  width: var(--tap); height: var(--tap); justify-content: center; align-items: center;
  background: none; border: none; cursor: pointer; padding: 12px 8px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 1px; transition: 0.25s; }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-links {
  display: none; position: absolute; top: 56px; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 0.75rem;
}
.nav-links.open { display: flex; }
.nav-links a {
  color: var(--text-dim); font-size: 15px; font-weight: 600;
  padding: 0.75rem 1rem; border-radius: 8px; min-height: var(--tap);
  display: flex; align-items: center;
}
.nav-links a:active { background: var(--bg-card); color: var(--text); }
.nav-phone {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: #000 !important; font-weight: 700;
  margin: 0.5rem; border-radius: var(--radius); justify-content: center;
  box-shadow: var(--gold-glow);
}

/* ── BOTTOM BAR ── */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  background: rgba(15,15,15,0.97); border-top: 1px solid var(--border);
  padding: 10px 1rem; padding-bottom: calc(10px + env(safe-area-inset-bottom,0px));
  display: flex; gap: 10px; backdrop-filter: blur(12px);
}
.bottom-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  min-height: var(--tap); border-radius: var(--radius);
  font-size: 15px; font-weight: 700;
}
.bar-call { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #000; box-shadow: var(--gold-glow); }
.bar-quote { background: transparent; color: var(--text); border: 1.5px solid var(--border); }

/* ── BUTTONS ── */
.btn {
  display: flex; align-items: center; justify-content: center;
  min-height: var(--tap); padding: 0.85rem 1.75rem; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; cursor: pointer; border: 2px solid transparent;
  transition: all 0.2s; font-family: inherit;
}
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #000; box-shadow: var(--gold-glow); border: none; }
.btn-gold:active { box-shadow: var(--gold-glow-strong); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:active { border-color: var(--gold); color: var(--gold); }
.btn-lg { min-height: 52px; font-size: 16px; }
.btn-sm { min-height: 40px; font-size: 13px; padding: 0.5rem 1rem; }
.btn-full { width: 100%; }

.link-arrow { color: var(--gold); font-weight: 600; font-size: 14px; padding: 8px 0; display: inline-block; }
.link-arrow::after { content: " ->"; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(1.1) contrast(1.1) saturate(1.15); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.30) 80%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 1.25rem 3rem; width: 100%;
}
.hero h1 { font-size: clamp(28px, 8vw, 36px); margin-bottom: 0.75rem; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.hero-sub { font-size: 16px; color: #ddd; margin-bottom: 1.5rem; line-height: 1.5; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.hero-ctas { display: flex; flex-direction: column; gap: 10px; }

/* ── PAGE HERO ── */
.page-hero { background: var(--bg-card); padding: 3rem 1.25rem 2rem; }
.page-hero-sm { padding: 2.5rem 1.25rem 1.5rem; }
.page-hero h1 { font-size: clamp(24px, 6vw, 32px); margin-bottom: 0.5rem; }
.page-hero p { color: var(--text-dim); font-size: 15px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--bg-card); border-bottom: 1px solid var(--border); }
.trust-inner {
  display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 1rem 1.25rem; gap: 0; min-width: max-content;
}
.trust-inner::-webkit-scrollbar { display: none; }
.badge { text-align: center; padding: 0 1.25rem; flex-shrink: 0; border-right: 1px solid var(--border); }
.badge:last-child { border-right: none; }
.badge strong { display: block; color: var(--gold); font-size: 16px; font-weight: 800; }
.badge span { font-size: 10px; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── SECTIONS ── */
.section { padding: 3.5rem 1.25rem; }
.section-dark { background: var(--bg-card); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section h2 { font-size: clamp(22px, 5vw, 30px); margin-bottom: 1rem; }

/* ── TWO COL (stacked on mobile) ── */
.two-col { display: flex; flex-direction: column; gap: 1.5rem; }
.col-text p { color: var(--text-dim); line-height: 1.7; font-size: 15px; }
.col-img img { border-radius: var(--radius-lg); width: 100%; }

.img-placeholder {
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); min-height: 200px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-sub); font-size: 13px;
}

/* ── SERVICE CARDS -- full-width image overlay on mobile ── */
.service-grid {
  display: flex; flex-direction: column; gap: 1rem;
}
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  min-height: 240px; display: flex; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--border);
}
.service-card-img {
  position: absolute; top: 50%; left: 50%;
  width: auto; height: auto;
  min-width: 200%; min-height: 200%;
  object-fit: cover; z-index: 0;
  transform: translate(-50%, -50%) rotate(90deg);
  filter: contrast(1.08) saturate(1.15) brightness(1.05);
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 50%, transparent 75%);
  z-index: 1; pointer-events: none;
}
.service-card h3 {
  position: relative; z-index: 2;
  color: #fff; font-size: 1.15rem; padding: 0 1.1rem 0.15rem;
}
.service-card p {
  position: relative; z-index: 2;
  color: rgba(255,255,255,0.85); font-size: 0.9rem; padding: 0 1.1rem 0.5rem;
}
.service-card .link-arrow {
  position: relative; z-index: 2;
  padding: 0 1.1rem 1rem; color: var(--gold);
}

/* Service list (landing page) */
/* ── REVIEW SUMMARY + CARDS ── */
.review-summary {
  display: flex; align-items: center; gap: 1rem;
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem; margin-bottom: 1.5rem;
}
.review-score {
  font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1;
}
.review-stars-lg { color: var(--gold); font-size: 20px; letter-spacing: 3px; margin-bottom: 0.25rem; }
.review-summary-detail p { font-size: 13px; color: var(--text-sub); }
.review-list { display: flex; flex-direction: column; gap: 1rem; }
.review-card {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: #fff;
}
.review-meta { flex: 1; }
.review-meta strong { font-size: 14px; display: block; }
.review-location { font-size: 12px; color: var(--text-sub); }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; flex-shrink: 0; }
.review-text { font-size: 14px; line-height: 1.6; color: var(--text); margin-bottom: 0.75rem; }
.review-source { font-size: 11px; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.05em; }

/* ── REVIEW CAROUSEL (homepage) ── */
.review-carousel {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem;
  scrollbar-width: none; margin-bottom: 1rem;
}
.review-carousel::-webkit-scrollbar { display: none; }
.review-slide {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1rem; min-width: 260px; max-width: 280px; flex-shrink: 0;
  scroll-snap-align: start;
}
.review-slide .review-avatar { width: 32px; height: 32px; font-size: 13px; }
.review-slide .review-meta strong { font-size: 12px; }
.review-slide .review-location { font-size: 11px; }
.review-slide .review-stars { font-size: 11px; }
.review-slide .review-text { font-size: 13px; line-height: 1.5; margin-bottom: 0.5rem; }
.review-slide .review-source { font-size: 10px; }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--bg-card2); border-radius: var(--radius-lg); padding: 1.25rem;
  border: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 14px; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.6; margin-bottom: 0.75rem; font-style: italic; }
.testimonial-card cite { font-size: 13px; color: var(--text-dim); font-style: normal; font-weight: 600; }

/* ── SUBURB LINKS ── */

/* ── CTA BLOCK ── */
.section-cta { background: var(--bg-card); text-align: center; padding: 3.5rem 1.25rem; display: none; }
@media (min-width: 768px) { .section-cta { display: block; } }
.section-cta h2 { color: var(--text); }
.section-cta p { color: var(--text-dim); margin-bottom: 1.25rem; font-size: 16px; }
.cta-block { max-width: 500px; margin: 0 auto; }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }

/* ── PULL QUOTE ── */
.pull-quote { max-width: 600px; margin: 0 auto; padding: 2rem 0; text-align: center; }
.pull-quote p { font-size: 20px; font-style: italic; color: var(--text); line-height: 1.4; margin-bottom: 0.75rem; }
.pull-quote cite { color: var(--text-dim); font-size: 14px; font-style: normal; }

/* ── VALUE PROPS ── */
.value-props { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.value-prop { padding: 1.25rem; background: var(--bg-card2); border-radius: var(--radius-lg); border: 1px solid var(--border); }
.value-prop h3 { font-size: 17px; margin-bottom: 0.4rem; }
.value-prop p { font-size: 14px; color: var(--text-dim); line-height: 1.6; }

/* ── CHECK LIST ── */
.check-list { list-style: none; }
.check-list li {
  padding: 0.75rem 0 0.75rem 2rem; position: relative;
  color: var(--text-dim); font-size: 15px; line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 1rem;
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold); opacity: 0.5;
}

/* ── GALLERY -- single column on mobile ── */
.gallery-category { margin-bottom: 2rem; }
/* Portrait slideshow */
.portrait-slideshow {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  gap: 10px; padding-bottom: 0.5rem; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.portrait-slideshow::-webkit-scrollbar { display: none; }
.slide {
  flex-shrink: 0; width: 260px; scroll-snap-align: center;
}
.slide img {
  width: 100%; height: 390px; object-fit: cover; border-radius: var(--radius-lg);
  filter: contrast(1.08) saturate(1.15) brightness(1.05);
}

.gallery-category h3 { font-size: 16px; color: var(--text-dim); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.gallery-item { border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item img { width: 100%; height: 160px; object-fit: cover; filter: contrast(1.08) saturate(1.15) brightness(1.05); }

/* ── CONTACT ── */
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-block h3 { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-sub); margin-bottom: 2px; }
.contact-block a, .contact-block p { font-size: 16px; color: var(--text); }
.contact-phone { font-size: 28px !important; font-weight: 800; color: var(--gold) !important; }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-sub); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--bg-card2);
  font-family: inherit; font-size: 16px; color: var(--text);
  outline: none; min-height: var(--tap);
  -webkit-appearance: none; appearance: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-file { padding: 10px; font-size: 14px; }
.form-hint { font-size: 12px; color: var(--text-sub); margin-top: 4px; }
.contact-hours { font-size: 13px; color: var(--text-sub); margin-top: 0.25rem; }

/* ── FAQ ── */
.faq-list h2 { margin-top: 2rem; font-size: 20px; }
.faq-list h2:first-child { margin-top: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
  padding: 1rem 2rem 1rem 0; font-size: 16px; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none; min-height: var(--tap);
  display: flex; align-items: center; position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; font-size: 22px; color: var(--gold); }
.faq-item[open] summary::after { content: "-"; }
.faq-item p { padding: 0 0 1rem; color: var(--text-dim); line-height: 1.7; font-size: 15px; }

/* ── PRODUCT CARDS ── */
.product-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.product-card { background: var(--bg-card2); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border); }
.product-card h3 { font-size: 20px; margin-bottom: 0.5rem; }
.product-card p { color: var(--text-dim); margin-bottom: 1rem; font-size: 14px; }
.brand-logos { margin-top: 1.25rem; text-align: center; color: var(--text-dim); font-size: 14px; }

/* ── CARE ── */
.care-content h2 { margin-top: 2rem; font-size: 20px; }
.care-content h2:first-child { margin-top: 0; }
.care-content p { color: var(--text-dim); margin-bottom: 1rem; line-height: 1.7; font-size: 15px; }

/* ── TIMBER SPECIES ── */
.species-list { display: flex; flex-direction: column; gap: 1rem; }
.species-card {
  background: var(--bg-card2); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border);
}
.species-hero-img { width: 100%; height: 220px; object-fit: cover; }
.species-thumbs {
  display: flex; gap: 4px; padding: 4px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.species-thumbs img { width: 56px; height: 56px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.species-card-body { padding: 1.25rem; }
.species-card-body h3 { font-size: 19px; margin-bottom: 0.4rem; }
.species-card-body > p { font-size: 14px; color: var(--text-dim); line-height: 1.6; margin-bottom: 1rem; }
.species-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.spec { background: var(--bg-card); border-radius: 8px; padding: 10px; border: 1px solid var(--border); }
.spec strong { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); margin-bottom: 2px; }
.spec span { font-size: 12px; color: var(--text-dim); line-height: 1.3; }

/* ── BLOG ── */
.blog-grid { display: flex; flex-direction: column; gap: 1rem; }
.blog-card {
  display: block; background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.25rem; text-decoration: none; color: inherit;
}
.blog-card:active { border-color: var(--gold); }
.blog-card h3 { font-size: 17px; margin-bottom: 0.5rem; line-height: 1.3; }
.blog-card p { font-size: 14px; color: var(--text-sub); line-height: 1.5; margin-bottom: 0.5rem; }
.blog-category {
  display: inline-block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--gold); margin-bottom: 0.5rem;
}
.blog-date { font-size: 12px; color: var(--text-sub); }
.blog-meta { font-size: 13px; color: var(--text-sub); margin-top: 0.25rem; }
.prose table { width: 100%; font-size: 13px; color: var(--text-sub); }
.prose th { color: var(--text-dim); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.prose strong { color: var(--text); }

/* ── SCROLL HINT ── */
.scroll-hint { text-align: right; font-size: 11px; color: var(--text-sub); margin-bottom: 0.5rem; }

/* ── FEATURE TILES (timber species, care) ── */
/* ── COMPARE PAGE (water vs solvent) ── */
.compare-cards { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.compare-card {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.compare-card h2 { font-size: 20px; margin-bottom: 0.5rem; }
.compare-look { font-size: 14px; color: var(--gold); font-style: italic; margin-bottom: 1rem; }
.compare-card .check-list { margin-bottom: 1rem; }
.compare-card .check-list li { font-size: 14px; color: var(--text-sub); padding: 4px 0 4px 20px; position: relative; }
.compare-card .check-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); opacity: 0.6; }
.compare-best { font-size: 13px; color: var(--text-sub); line-height: 1.6; padding: 1rem; background: rgba(201,168,76,0.06); border-radius: var(--radius); margin-bottom: 1rem; }
.compare-best strong { color: var(--text); }
.compare-spec { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.compare-spec div { display: flex; justify-content: space-between; font-size: 13px; padding: 6px 0; border-bottom: 1px solid var(--border); }
.compare-spec strong { color: var(--text-dim); }
.compare-spec span { color: var(--text-sub); }
.compare-note { background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.compare-note h3 { font-size: 16px; margin-bottom: 0.5rem; }
.compare-note p { font-size: 14px; color: var(--text-sub); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-steps { display: flex; flex-direction: column; gap: 1rem; }
.process-card {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.25rem;
}
.process-card h3 { font-size: 18px; margin-bottom: 0.5rem; color: var(--gold); }
.process-card p { font-size: 15px; color: var(--text); line-height: 1.7; }

/* ── PROSE (privacy, blog) ── */
.prose h2 { font-size: 18px; margin: 1.5rem 0 0.5rem; }
.prose p { font-size: 14px; color: var(--text-sub); line-height: 1.7; margin-bottom: 1rem; }
.prose a { color: var(--gold); }
.prose em { color: var(--text-sub); font-size: 12px; }

/* ── SUBURB PAGE EXTRAS ── */
.suburb-hero-img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 1.5rem; filter: contrast(1.08) saturate(1.15) brightness(1.05); }
.service-hero-img { width: 100%; height: 240px; object-fit: cover; border-radius: var(--radius-lg); filter: contrast(1.08) saturate(1.15) brightness(1.05); }
.species-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 0.75rem 0 1.5rem; }
.species-tag {
  padding: 5px 12px; border-radius: 20px; font-size: 12px; font-weight: 500;
  border: 1px solid var(--border); color: var(--gold); background: rgba(201,168,76,0.08);
}
.finish-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 0.75rem 0; }
.finish-option {
  background: var(--bg-card2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem;
}
.finish-option h4 { font-size: 14px; margin-bottom: 0.4rem; color: var(--gold); }
.finish-option p { font-size: 13px; color: var(--text-sub); line-height: 1.5; }
.finish-note { font-size: 13px; color: var(--text-sub); font-style: italic; margin-bottom: 1.5rem; }
.why-choose { display: flex; flex-direction: column; gap: 0.75rem; margin: 0.75rem 0 1.5rem; }
.why-item { padding-left: 1rem; border-left: 2px solid var(--gold); }
.why-item strong { font-size: 14px; display: block; margin-bottom: 0.2rem; }
.why-item p { font-size: 13px; color: var(--text-sub); }
.nearby-suburbs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 0.5rem; }
.nearby-suburbs a {
  padding: 5px 12px; border-radius: 20px; font-size: 12px;
  border: 1px solid var(--border); color: var(--text-dim);
}
.nearby-suburbs a:active { border-color: var(--gold); color: var(--gold); }

/* ── AREAS INDEX (accordion) ── */
.region-group { border: 1px solid var(--border); border-radius: 10px; margin-bottom: 0.75rem; overflow: hidden; }
.region-group summary {
  padding: 1rem 1.25rem; font-size: 16px; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-card); list-style: none; -webkit-user-select: none; user-select: none;
}
.region-group summary::-webkit-details-marker { display: none; }
.region-group summary::before {
  content: "+"; font-size: 20px; font-weight: 400; color: var(--gold);
  width: 28px; height: 28px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 6px; margin-right: 0.75rem; flex-shrink: 0;
}
.region-group[open] summary::before { content: "-"; }
.region-group[open] summary { border-bottom: 1px solid var(--border); }
.region-count { font-size: 12px; font-weight: 400; color: var(--text-sub); margin-left: auto; }
.region-suburbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 1rem 1.25rem; }
.region-suburbs a {
  padding: 6px 14px; border-radius: 20px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); color: var(--text-dim); background: transparent;
  min-height: 36px; display: inline-flex; align-items: center;
}
.region-suburbs a:active { border-color: var(--gold); color: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: var(--bg-card); color: var(--text); padding: 1.5rem 1.25rem 1.25rem; border-top: 1px solid var(--border); }
.footer-inner { display: flex; flex-direction: column; gap: 1.25rem; }
.footer-col h4 { font-size: 12px; font-weight: 700; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); }
.footer-col p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.footer-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 0.75rem; }
.footer-col li { margin-bottom: 0.2rem; }
.footer-col a { color: var(--text-dim); font-size: 13px; min-height: 32px; display: inline-flex; align-items: center; }
.footer-phone { margin-top: 0.5rem; }
.footer-phone a { font-size: 18px !important; font-weight: 700; color: var(--gold) !important; }
.footer-bottom { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--border); text-align: center; }
.footer-bottom p { font-size: 11px; color: var(--text-sub); margin-bottom: 4px; }
.footer-network a { color: var(--text-sub); }

/* ── WHATSAPP BUTTON ── */
.whatsapp-btn {
  position: fixed; bottom: 80px; right: 16px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3); transition: transform 0.15s;
}
.whatsapp-btn:active { transform: scale(0.92); }

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; bottom: 80px; left: 16px; z-index: 90;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--border); color: var(--text-dim);
  font-size: 18px; cursor: pointer; display: none;
  align-items: center; justify-content: center;
}
.back-to-top.visible { display: flex; }

/* ── LIGHTBOX ── */
.lightbox-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 16px;
}
.lightbox-overlay img { max-width: 100%; max-height: 85vh; border-radius: 8px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 16px; right: 16px;
  width: var(--tap); height: var(--tap);
  background: rgba(255,255,255,0.08); border: none; border-radius: 50%;
  color: #fff; font-size: 24px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================
   DESKTOP (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .bottom-bar { display: none; }
  .nav-inner { max-width: 1200px; margin: 0 auto; height: 64px; }
  .nav-toggle { display: none; }
  .nav-links {
    display: flex !important; position: static; flex-direction: row; border: none;
    gap: 0.25rem; align-items: center; background: transparent; padding: 0; margin-left: auto;
  }
  .nav-links a { padding: 0.45rem 0.85rem; border-radius: 7px; font-size: 13px; border: 1px solid transparent; min-height: auto; }
  .nav-links a:hover { background: var(--bg-card); border-color: var(--border); color: var(--text); }
  .nav-phone { margin: 0; padding: 0.6rem 1.25rem; font-size: 13px; }

  .hero { min-height: 70vh; align-items: center; }
  .hero-content { max-width: 700px; margin: 0 auto; text-align: center; padding: 5rem 1.5rem; }
  .hero h1 { font-size: clamp(36px, 5vw, 52px); }
  .hero-sub { font-size: 18px; }
  .hero-ctas { flex-direction: row; justify-content: center; }

  .page-hero { padding: 5rem 1.5rem 3.5rem; text-align: center; }
  .page-hero h1 { font-size: 38px; }

  .section { padding: 5rem 1.5rem; }
  .section h2 { font-size: 30px; }
  .two-col { flex-direction: row; gap: 3rem; align-items: center; }
  .two-col > * { flex: 1; }

  .service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .service-card { min-height: 280px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item img { height: 240px; }
  .value-props { flex-direction: row; }
  .value-prop { flex: 1; }
  .product-cards { flex-direction: row; }
  .product-card { flex: 1; }
  .cta-actions { flex-direction: row; justify-content: center; }
  .species-card { display: grid; grid-template-columns: 300px 1fr; }
  .species-hero-img { height: 100%; min-height: 260px; }
  .species-specs { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { flex-direction: row; max-width: 1100px; margin: 0 auto; gap: 2rem; }
  .footer-col ul { grid-template-columns: 1fr; }
  .footer-col { flex: 1; }
  .footer-col:first-child { flex: 2; }
  .footer-bottom { max-width: 1100px; margin: 2rem auto 0; display: flex; justify-content: space-between; text-align: left; }
  .scroll-hint { display: none; }
}
@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
}
