@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Work+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@500&display=swap');

:root {
  --gp-cream: #FAF7EF;
  --gp-cream-deep: #F1EBDA;
  --gp-green: #2E6B3E;
  --gp-green-deep: #1F4A2B;
  --gp-green-soft: #DCE8D0;
  --gp-gold: #E4A83B;
  --gp-terracotta: #D97B3F;
  --gp-terracotta-deep: #B85E2A;
  --gp-ink: #1E2418;
  --gp-ink-soft: #4A5142;
  --gp-line: #DDD5BE;
  --radius-sm: 6px;
  --radius-md: 10px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--gp-cream);
  color: var(--gp-ink);
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--gp-ink);
  line-height: 1.1;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }

.mono {
  font-family: 'IBM Plex Mono', monospace;
}

a { color: inherit; }

.gp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Nav ---------- */

.gp-nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--gp-cream);
  border-bottom: 1px solid var(--gp-line);
}

.gp-nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.gp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.gp-nav-brand img {
  height: 44px;
  width: auto;
}

.gp-nav-brand span {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gp-green-deep);
  display: none;
}

@media (min-width: 640px) {
  .gp-nav-brand span { display: block; }
}

.gp-nav-links {
  list-style: none;
  display: none;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 0.95rem;
}

@media (min-width: 860px) {
  .gp-nav-links { display: flex; }
}

.gp-nav-links a {
  text-decoration: none;
  color: var(--gp-ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.gp-nav-links a:hover,
.gp-nav-links a[aria-current="page"] {
  color: var(--gp-green-deep);
  border-color: var(--gp-gold);
}

.gp-nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--gp-terracotta);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.gp-nav-cta:hover { background: var(--gp-terracotta-deep); }

.gp-nav-toggle {
  display: inline-flex;
  border: none;
  background: none;
  padding: 6px;
  cursor: pointer;
}

@media (min-width: 860px) {
  .gp-nav-toggle { display: none; }
}

.gp-nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 24px 18px;
  border-top: 1px solid var(--gp-line);
}

.gp-nav-mobile.is-open { display: flex; }

.gp-nav-mobile a {
  text-decoration: none;
  color: var(--gp-ink-soft);
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--gp-line);
}

@media (min-width: 860px) {
  .gp-nav-mobile { display: none !important; }
}

/* ---------- Sunburst divider (signature element) ---------- */

.gp-trail {
  height: 14px;
  background-image:
    linear-gradient(90deg, var(--gp-green) 0 6px, transparent 6px 100%),
    linear-gradient(90deg, var(--gp-gold) 0 6px, transparent 6px 100%);
  background-size: 34px 14px, 34px 14px;
  background-position: 0 0, 17px 0;
  background-repeat: repeat-x;
  opacity: 0.9;
}

/* ---------- Hero ---------- */

.gp-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 0%, var(--gp-cream-deep) 0%, var(--gp-cream) 55%);
  padding: 64px 0 56px;
}

.gp-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 880px) {
  .gp-hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.gp-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gp-green-deep);
  background: var(--gp-green-soft);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.gp-hero h1 {
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  max-width: 14ch;
}

.gp-hero p.lead {
  font-size: 1.1rem;
  color: var(--gp-ink-soft);
  max-width: 46ch;
  margin: 14px 0 28px;
}

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

.gp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.12s ease, background 0.15s ease, border-color .15s ease;
}

.gp-btn:hover { transform: translateY(-1px); }

.gp-btn-terracotta { background: var(--gp-terracotta); color: #fff; }
.gp-btn-terracotta:hover { background: var(--gp-terracotta-deep); }

.gp-btn-green { background: var(--gp-green); color: #fff; }
.gp-btn-green:hover { background: var(--gp-green-deep); }

.gp-btn-outline {
  background: transparent;
  border-color: var(--gp-ink);
  color: var(--gp-ink);
}
.gp-btn-outline:hover { border-color: var(--gp-green-deep); color: var(--gp-green-deep); }

.gp-hero-art {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gp-line);
  background: #fff;
}

.gp-hero-art img { display: block; width: 100%; height: auto; }

/* ---------- Sections ---------- */

section.gp-section {
  padding: 64px 0;
}

section.gp-section + section.gp-section {
  border-top: 1px solid var(--gp-line);
}

.gp-section-head {
  max-width: 60ch;
  margin-bottom: 36px;
}

.gp-section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
}

.gp-section-head p {
  color: var(--gp-ink-soft);
  font-size: 1.05rem;
}

/* ---------- Service split grid ---------- */

.gp-service-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 780px) {
  .gp-service-grid { grid-template-columns: 1fr 1fr; }
}

.gp-service-card {
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--gp-line);
  background: #fff;
}

.gp-service-card.lawn {
  background: linear-gradient(165deg, var(--gp-green-soft) 0%, #fff 55%);
  border-color: #C9DDBC;
}

.gp-service-card.dog {
  background: linear-gradient(165deg, #FBE9D6 0%, #fff 55%);
  border-color: #F0D3B0;
}

.gp-service-card .tag {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  display: inline-block;
}

.gp-service-card.lawn .tag { color: var(--gp-green-deep); }
.gp-service-card.dog .tag { color: var(--gp-terracotta-deep); }

.gp-service-card ul {
  padding-left: 1.15em;
  margin: 18px 0;
  color: var(--gp-ink-soft);
}

.gp-service-card li { margin-bottom: 6px; }

/* ---------- Photo gallery ---------- */

.gp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.gp-gallery img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gp-line);
  display: block;
}

@media (min-width: 640px) {
  .gp-gallery img { height: 160px; }
}

/* ---------- Pricing table ---------- */

.gp-price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 8px;
  font-size: 0.96rem;
}

.gp-price-table th, .gp-price-table td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--gp-line);
}

.gp-price-table th {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gp-ink-soft);
  font-weight: 500;
}

.gp-price-table td.price {
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: var(--gp-terracotta-deep);
}

.gp-price-note {
  font-size: 0.85rem;
  color: var(--gp-ink-soft);
  margin-top: 6px;
}

/* ---------- Why choose us icons ---------- */

.gp-feature-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 700px) {
  .gp-feature-grid { grid-template-columns: repeat(4, 1fr); }
}

.gp-feature {
  text-align: left;
}

.gp-feature .icon {
  width: 40px;
  height: 40px;
  color: var(--gp-green-deep);
  margin-bottom: 12px;
}

.gp-feature h3 { font-size: 1.02rem; margin-bottom: 4px; }
.gp-feature p { color: var(--gp-ink-soft); font-size: 0.92rem; margin: 0; }

/* ---------- Testimonials ---------- */

.gp-testimonial-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 780px) {
  .gp-testimonial-grid { grid-template-columns: repeat(3, 1fr); }
}

.gp-testimonial {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-left: 3px solid var(--gp-gold);
  border-radius: var(--radius-sm);
  padding: 22px;
}

.gp-testimonial p.quote {
  font-size: 0.98rem;
  margin: 0 0 14px;
}

.gp-testimonial .who {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  color: var(--gp-ink-soft);
}

/* ---------- Suburb list ---------- */

.gp-suburb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

@media (min-width: 640px) {
  .gp-suburb-list { grid-template-columns: repeat(3, 1fr); }
}

.gp-suburb-list li {
  padding: 10px 14px;
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
}

/* ---------- FAQ accordion ---------- */

.faq-item {
  border-bottom: 1px solid var(--gp-line);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--gp-ink);
  cursor: pointer;
}

.faq-arrow {
  flex-shrink: 0;
  color: var(--gp-terracotta);
  transition: transform 0.18s ease;
  font-size: 1.1rem;
}

.faq-item.is-open .faq-arrow { transform: rotate(90deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-item.is-open .faq-answer { max-height: 240px; }

.faq-answer p {
  color: var(--gp-ink-soft);
  padding: 0 4px 18px;
  margin: 0;
}

/* ---------- Forms ---------- */

.gp-form-card {
  background: #fff;
  border: 1px solid var(--gp-line);
  border-radius: var(--radius-md);
  padding: 28px;
}

.gp-form-section + .gp-form-section {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--gp-line);
}

.gp-form-section h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: var(--gp-ink-soft);
  margin-bottom: 14px;
}

.gp-form-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 640px) {
  .gp-form-grid { grid-template-columns: 1fr 1fr; }
}

.gp-field { display: flex; flex-direction: column; gap: 6px; }

.gp-field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gp-ink);
}

.gp-field input,
.gp-field select,
.gp-field textarea {
  font: inherit;
  padding: 11px 12px;
  border: 1px solid var(--gp-line);
  border-radius: var(--radius-sm);
  background: var(--gp-cream);
  color: var(--gp-ink);
}

.gp-field input:focus,
.gp-field select:focus,
.gp-field textarea:focus {
  outline: 2px solid var(--gp-green);
  outline-offset: 1px;
  background: #fff;
}

.gp-honeypot { display: none !important; }

.gp-price-preview {
  background: var(--gp-green-soft);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin-top: 18px;
  display: none;
}

.gp-price-preview.is-visible { display: block; }

.gp-price-preview .amount {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gp-green-deep);
}

.gp-submit-btn {
  margin-top: 26px;
  width: 100%;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1.02rem;
}

.gp-form-message {
  margin-top: 14px;
  font-size: 0.92rem;
}

.gp-form-message.success { color: var(--gp-green-deep); }
.gp-form-message.error { color: var(--gp-terracotta-deep); }

.gp-service-toggle {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.gp-service-toggle label {
  border: 1.5px solid var(--gp-line);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
}

.gp-service-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gp-service-toggle input:checked + span {
  color: var(--gp-green-deep);
}

.gp-service-toggle label:has(input:checked) {
  border-color: var(--gp-green);
  background: var(--gp-green-soft);
}

.gp-conditional { display: none; }
.gp-conditional.is-active { display: block; }

/* ---------- Footer ---------- */

footer.gp-footer {
  background: var(--gp-green-deep);
  color: #EFEAD9;
  padding: 48px 0 28px;
}

footer.gp-footer a { text-decoration: none; color: #EFEAD9; }

footer.gp-footer h2, footer.gp-footer h3 {
  color: #fff;
}

.gp-footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 700px) {
  .gp-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

.gp-footer-grid h3 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 500;
  color: #C7D9BE;
  margin-bottom: 12px;
}

.gp-footer-grid ul { list-style: none; padding: 0; margin: 0; }
.gp-footer-grid li { margin-bottom: 6px; font-size: 0.92rem; color: #DCE3D2; }

.gp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 18px;
  font-size: 0.82rem;
  color: #B9C7AF;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}

/* ---------- Utility ---------- */

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
