@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Work+Sans:wght@400;500;600&display=swap');

:root {
  --accent: #5a9c1f;
  --accent-hover: #4a8218;
  --accent-dark: #1f3a0d;
  --ink: #171a13;
  --muted: #5b6350;
  --line: #e4ecdb;
  --tint: #f5f9ef;
  --serif: 'EB Garamond', 'Georgia', serif;
  --label-tracking: 0.09em;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: #1c1c1a;
  color: var(--ink);
  font-family: 'Work Sans', system-ui, sans-serif;
  line-height: 1.6;
}
/* Dark theme for the main content area, 2026-09-07 — Martyn's call, trying dark grey/white text instead of white/dark text for everything below the hero. Scoped to <main> only (not header/hero/footer, which keep their own existing treatment) by re-declaring the same variable names locally — every rule below that already reads var(--ink)/var(--muted)/var(--tint)/var(--line)/var(--accent-dark) picks up these dark-mode values automatically inside main, with zero other changes needed. */
main {
  --ink: #f2f2ee;
  --muted: #a6a89f;
  --line: #3d3e38;
  --tint: #26261f;
  --accent-dark: #8bc34a;
  background: #1c1c1a;
  color: var(--ink);
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
h1 { font-family: var(--serif); font-weight: 500; margin: 0; }
h2, h3 { font-family: 'Work Sans', system-ui, sans-serif; margin: 0; }
h2 {
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
  font-weight: 600;
}

/* Header / nav */
header {
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
}
header .site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 24px;
}
header .logo img { height: 96px; width: auto; display: block; }

/* Nav dropdown, 2026-09-07 — native <details>/<summary>, same zero-JS pattern as the FAQ accordion */
header .nav-menu { position: relative; }
header .nav-menu summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Work Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
  color: var(--ink);
  padding: 10px 6px;
}
header .nav-menu summary::-webkit-details-marker { display: none; }
header .nav-menu summary::before { content: "\2630"; font-size: 16px; line-height: 1; }
header .nav-menu[open] summary::before { content: "\2715"; font-size: 14px; }
header .nav-menu nav.main-nav {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #e6e6e0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(20,30,10,0.16);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 230px;
  z-index: 80;
  font-size: 15px;
  font-weight: 500;
}
header .nav-menu nav.main-nav a { color: var(--ink); padding: 11px 16px; border-radius: 8px; }
header .nav-menu nav.main-nav a:hover { background: #f2f6ec; }
header .nav-menu nav.main-nav a.cta {
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: var(--label-tracking);
  text-align: center;
}
header .nav-menu nav.main-nav a.cta:hover { background: var(--accent-hover); color: #fff; }

/* Page banner (inner pages) */
.page-banner {
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 48px 24px 56px;
  text-align: left;
}
.page-banner .banner-inner { max-width: 1180px; margin: 0 auto; }
.page-banner h1 { color: #fff; font-size: 44px; font-weight: 500; }
.page-banner p.subtitle { color: #cdeb6b; font-size: 17px; margin: 10px 0 0; font-family: 'Work Sans', sans-serif; }

/* Homepage hero */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--accent) 0%, var(--accent-dark) 100%);
  overflow: hidden;
  padding: 64px 24px 90px;
}
.hero .hero-inner { max-width: 620px; margin: 0 auto; position: relative; }
/* White band between the two hero photos, 2026-09-07 — eyebrow line moved here off the photo overlay */
.hero-eyebrow-band {
  background: #fff;
  padding: 36px 24px;
  text-align: center;
}
.hero-eyebrow-band .eyebrow {
  color: var(--ink);
  font-weight: 600;
  font-size: clamp(18px, 2.4vw, 32px);
  letter-spacing: var(--label-tracking);
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 960px) {
  .hero-eyebrow-band .eyebrow { font-size: clamp(16px, 4vw, 22px); }
  .hero-eyebrow-band { padding: 26px 20px; }
}
.hero h1 { color: #fff; font-size: 50px; line-height: 1.18; font-weight: 500; margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: #cdeb6b; }
.hero p { color: rgba(255,255,255,0.88); font-size: 17px; line-height: 1.6; margin-bottom: 30px; font-family: 'Work Sans', sans-serif; }
.hero .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}
.narrow main, main.narrow { max-width: 860px; }
h1.page-title { color: var(--ink); font-size: 2.1rem; font-weight: 500; margin: 0 0 0.6rem; }
p.subtitle { color: var(--muted); margin-top: 0; }

h2 {
  color: var(--ink);
  font-size: 0.95rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.55); }
.btn-outline:hover { border-color: #fff; }
.btn-light { background: #fff; color: var(--accent-dark); }
.btn-light:hover { background: #cdeb6b; color: var(--accent-dark); }

ul.services {
  columns: 2;
  column-gap: 2rem;
  padding-left: 1.1rem;
  margin: 0.8rem 0;
}
ul.services li { break-inside: avoid; margin-bottom: 0.4rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem 1.4rem;
  margin: 1.2rem 0 0;
}
.service-card {
  padding: 0 0 0;
  background: none;
  border: none;
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}
.service-card h3 { margin: 0 0 0.4rem; font-size: 1.1rem; font-family: 'Work Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.service-card h3 a { text-decoration: none; color: var(--ink); }
.service-card h3 a:hover { color: var(--accent); }
.service-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

ul.checklist { padding-left: 1.2rem; }
ul.checklist li { margin-bottom: 0.5rem; display: flex; gap: 10px; align-items: flex-start; }

.suburb-list { color: var(--muted); font-size: 0.95rem; }

.project-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.project-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.project-list li:first-child { border-top: 1px solid var(--line); }
.project-list .project-suburb { font-weight: 600; color: var(--accent-dark); font-family: var(--serif); font-size: 1.1rem; }

.cta {
  margin-top: 2.8rem;
  padding: 2.4rem 1.6rem;
  background: none;
  border-top: 1px solid var(--line);
  border-radius: 0;
  text-align: center;
}
.cta p { font-family: var(--serif); font-size: 1.3rem; margin: 0; }
.cta a.button {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 15px 30px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
  font-family: 'Work Sans', sans-serif;
}
.cta a.button:hover { background: var(--accent-hover); color: #fff; }

.contact {
  margin-top: 2.2rem;
  padding: 1.6rem;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.contact a { text-decoration: none; font-weight: 600; }
.contact a:hover { text-decoration: underline; }

footer {
  background: #16290a;
  padding: 40px 24px;
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 13px;
}
footer a { color: rgba(255,255,255,0.6); }
footer nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-bottom: 18px; font-size: 14px; }
footer nav a { color: rgba(255,255,255,0.72); text-decoration: none; }
footer nav a:hover { color: #fff; }
footer .copyright { font-size: 13px; color: rgba(255,255,255,0.45); }
footer .copyright a { color: rgba(255,255,255,0.6); }
footer .social-links { display: flex; justify-content: center; gap: 18px; margin-bottom: 18px; }
footer .social-links a { color: rgba(255,255,255,0.6); display: inline-flex; }
footer .social-links a:hover { color: #fff; }

/* Mobile */
@media (max-width: 720px) {
  header .site-nav { padding: 14px 20px; }
  .hero { padding: 44px 20px 56px; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .page-banner { padding: 32px 20px 40px; }
  .page-banner h1 { font-size: 28px; }
  main { padding: 32px 20px 48px; }
  .btn, .cta a.button { width: 100%; justify-content: center; }
  .hero .hero-ctas { flex-direction: column; }
  ul.services { columns: 1; }
  .service-grid { gap: 1.4rem; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 28px; }
  header .logo img { height: 40px; }
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 1.2rem 0 0;
}
.trust-strip span { white-space: nowrap; }
.trust-strip .stars { color: var(--accent-dark); font-weight: 600; }

/* Article byline */
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0.6rem 0 1.4rem;
}
.article-byline span + span::before { content: "\00b7"; margin-right: 10px; color: var(--muted); }

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem 1.6rem;
  margin: 1.2rem 0 0;
}
.testimonial {
  margin: 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}
.testimonial p { margin: 0 0 0.7rem; font-family: var(--serif); font-size: 1.08rem; line-height: 1.5; color: var(--ink); }
.testimonial p::before { content: "\201C"; }
.testimonial p::after { content: "\201D"; }
.testimonial cite {
  display: block;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Sticky mobile call bar */
.mobile-callbar { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: 68px; }
  .mobile-callbar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    gap: 10px;
    padding: 10px 14px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    box-shadow: 0 -4px 14px rgba(0,0,0,0.08);
  }
  .mobile-callbar a {
    flex: 1;
    text-align: center;
    padding: 12px 10px;
    border-radius: 999px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 12.5px;
    text-transform: uppercase;
    letter-spacing: var(--label-tracking);
  }
  .mobile-callbar .callbar-quote { background: var(--accent); color: #fff; }
}

/* FAQ accordion */
.faq-list { margin: 0.6rem 0 0; }
.faq-item { border-top: 1px solid var(--line); padding: 1rem 0; }
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-family: 'Work Sans', sans-serif;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 0;
  color: var(--accent);
  font-weight: 600;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin: 0.7rem 0 0; color: var(--muted); }

/* Homepage hero photo */
/* 2026-09-09: text moved back onto the Hero (Aberfoyle Park) photo itself, visible on load with no scroll — 2-second-rule research (key info above the fold) ruled out the 2026-09-07 crossfade, which hid the h1/pitch/CTA behind a full-viewport scroll before they appeared over the McLaren Vale photo. */
.hero.hero-photo {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 64px 24px;
  background:
    linear-gradient(160deg, rgba(20,35,10,0.32) 0%, rgba(10,20,5,0.42) 100%),
    url("/images/hero/hero-evandale-trial.jpg") center 45% / cover;
}
.hero.hero-photo .hero-inner { max-width: 900px; margin: 0 auto; padding: 0 24px 0; width: 100%; }
@media (max-width: 720px) {
  .hero.hero-photo { min-height: auto; padding: 64px 20px 56px; }
}

/* Portfolio grids */
.portfolio-tier-a {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem 1.6rem;
  margin: 1.4rem 0 0;
}
.portfolio-tier-a figure { margin: 0; }
.portfolio-tier-a img { width: 100%; height: 230px; object-fit: cover; border-radius: 4px; display: block; }
.portfolio-tier-a figcaption { margin-top: 0.7rem; font-family: var(--serif); font-size: 1.05rem; color: var(--accent-dark); }

.portfolio-tier-b {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem 1.2rem;
  margin: 1.4rem 0 0;
}
.portfolio-tier-b figure { margin: 0; }
.portfolio-tier-b img { width: 100%; height: 150px; object-fit: cover; border-radius: 4px; display: block; }
.portfolio-tier-b figcaption { margin-top: 0.5rem; font-size: 0.88rem; color: var(--muted); }

.portfolio-tier-c {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
}
.portfolio-tier-c img { width: 110px; height: 90px; object-fit: cover; border-radius: 4px; display: block; }
.portfolio-note { color: var(--muted); font-size: 0.9rem; margin: 0.8rem 0 0; }

/* Before / after gallery */
.before-after-item { margin-top: 2rem; }
.before-after-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--accent-dark);
  margin-bottom: 0.8rem;
}
.before-after-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.before-after-pair figure { margin: 0; }
.before-after-pair img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px; display: block; }
.before-after-pair figcaption {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

/* Service page photo */
.service-photo { margin: 1.8rem 0; }
.service-photo img { width: 100%; max-height: 420px; object-fit: cover; border-radius: 4px; display: block; }
.service-photo figcaption { margin-top: 0.6rem; font-size: 0.88rem; color: var(--muted); }
/* Compact variant — shown near its native size instead of stretched full-width, for a lower-resolution source photo */
.service-photo-compact img { width: auto; max-width: 100%; height: auto; max-height: none; object-fit: initial; margin: 0 auto; }

/* Service page photo grid — photos side by side, filling the row */
.service-photo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem; margin: 1.8rem 0;
}
.service-photo-grid figure { margin: 0; text-align: center; }
.service-photo-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 4px; display: block; }
.service-photo-grid figcaption { margin-top: 0.6rem; font-size: 0.88rem; color: var(--muted); }

@media (max-width: 720px) {
  .before-after-pair { grid-template-columns: 1fr; }
  .portfolio-tier-a img { height: 200px; }
}

/* Landscaping Library — full write-up index cards */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.2rem 1.6rem;
  margin: 1.4rem 0 0;
}
.library-card img {
  width: 100%; height: 220px; object-fit: cover; border-radius: 4px; display: block;
}
.library-card .library-card-placeholder {
  width: 100%; height: 220px; border-radius: 4px;
  background: var(--tint); border: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 0.85rem; text-align: center; padding: 1rem;
}
.library-card h3 {
  margin: 0.9rem 0 0.35rem;
  font-family: var(--serif); font-weight: 500; font-size: 1.25rem;
  text-transform: none; letter-spacing: 0; color: var(--accent-dark);
}
.library-card h3 a { color: inherit; text-decoration: none; }
.library-card h3 a:hover { color: var(--accent); }
.library-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.library-card .library-tag {
  display: inline-block; margin-top: 0.6rem;
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--accent-dark); font-weight: 600;
}
.library-card.coming-soon .library-tag { color: var(--muted); }

/* Landscaping Library — case study article pages */
.case-study-meta {
  display: flex; flex-wrap: wrap; gap: 6px 18px;
  color: var(--muted); font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin: 0 0 0.2rem;
}
.case-study-photo { margin: 2.2rem 0; }
.case-study-photo img { width: 100%; height: auto; border-radius: 4px; display: block; }
.case-study-photo figcaption { margin-top: 0.6rem; font-size: 0.88rem; color: var(--muted); }
.case-study-photo-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2.2rem 0;
}
.case-study-photo-pair figure { margin: 0; }
.case-study-photo-pair img { width: 100%; height: auto; border-radius: 4px; display: block; }
.case-study-photo-pair figcaption {
  margin-top: 0.5rem; font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted);
}
.plant-table { margin: 1.5rem 0 2rem; overflow-x: auto; }
.plant-table table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.plant-table th, .plant-table td { padding: 0.5rem 0.8rem; border-bottom: 1px solid var(--line); text-align: left; }
.plant-table th { text-transform: uppercase; font-size: 0.78rem; letter-spacing: 0.06em; color: var(--muted); }
.plant-table tfoot td { border-top: 2px solid var(--line); border-bottom: none; }
.case-study-facts {
  background: var(--tint); border: 1px solid var(--line); border-radius: 8px;
  padding: 1.5rem 1.7rem; margin: 2rem 0;
}
.case-study-facts h2 { margin-top: 0; padding-top: 0; border-top: none; font-size: 0.85rem; }
.case-study-facts ul { margin: 0.7rem 0 0; padding-left: 1.1rem; }
.case-study-facts li { margin-bottom: 0.4rem; color: var(--ink); font-size: 0.92rem; }
.case-study-tip {
  border-left: 3px solid var(--accent); padding: 0.2rem 0 0.2rem 1.1rem;
  margin: 1.8rem 0; color: var(--muted); font-size: 0.95rem;
}
.case-study-tip strong { color: var(--accent-dark); }
.coming-soon-box {
  background: var(--tint); border: 1px dashed var(--line); border-radius: 8px;
  padding: 1.8rem; text-align: center; color: var(--muted); margin: 1.6rem 0 2rem;
}

@media (max-width: 720px) {
  .case-study-photo-pair { grid-template-columns: 1fr; }
  .library-card img, .library-card .library-card-placeholder { height: 190px; }
}
