/* T-Squared focused landing-page styles
   Used by /garden-clean-ups, /lawn-mowing, etc.
   Brand-matched to the main homepage but lean. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #faf9f5;
  color: #1d2418;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #3d664e; text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid #3d664e; outline-offset: 3px; border-radius: 6px; }

/* CSS variables match the homepage exactly so the navbar reads as part of the same site. */
:root {
  --bg:         #fbfaf9;
  --card:       #ffffff;
  --muted:      #eef0f1;
  --fg:         #1d2630;
  --muted-fg:   #67737e;
  --primary:    #c9af8e;
  --primary-lt: #dbc8ae;
  --accent:     #3d664e;
  --accent-lt:  #447e5c;
  --border:     #d5d9dd;
  --bg-soft:    #f0eee5;
  --line:       #e3decf;
}

/* ─────────────────────────────────────────────────────
   NAVIGATION — pixel-matched to the homepage nav.
   Source-of-truth: t-squared-website-official.html
   Keep these rules in sync if the homepage nav changes.
   ───────────────────────────────────────────────────── */

#site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px 0 28px;
  background: rgba(255, 255, 255, 0.40);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  box-shadow: 0 2px 14px rgba(15, 22, 28, 0.06);
  pointer-events: auto;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
#site-nav.nav-hidden { transform: translateY(-110%); }

/* Brand mark — wordmark on home, T² mark on every other page */
.nav-brand {
  display: inline-flex; align-items: center; gap: 0.34em;
  background: none; border: none; padding: 0; cursor: pointer;
  font-family: inherit;
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
  font-weight: 900;
  letter-spacing: -0.025em; white-space: nowrap;
  flex-shrink: 0; line-height: 1; -webkit-tap-highlight-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--fg);
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-brand .brand-logo-img,
.nav-brand .brand-logo-full,
.nav-brand .brand-logo-mark {
  display: inline-block;
  height: clamp(38px, 4.2vw, 52px);
  width: auto;
  object-fit: contain;
}
.nav-brand .brand-logo-full { display: none; }
.nav-brand .brand-logo-mark { display: none; }
body[data-page="home"] .nav-brand .brand-logo-full { display: inline-block; }
body[data-page="home"] .nav-brand .brand-logo-mark { display: none; }
body:not([data-page="home"]) .nav-brand .brand-logo-full { display: none; }
body:not([data-page="home"]) .nav-brand .brand-logo-mark { display: inline-block; }
.nav-brand:hover { opacity: 0.86; transform: translateY(-1px); text-decoration: none; }
.nav-brand:focus-visible { outline: 2px solid var(--primary); outline-offset: 4px; border-radius: 4px; }

/* Pill nav rail — frosted glass */
.nav-pills-wrap {
  display: flex; align-items: center; list-style: none; gap: 2px;
  margin: 0; padding: 4px;
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.pill-link {
  position: relative; overflow: hidden; border-radius: 100px;
  padding: 7px 17px; display: inline-flex; align-items: center;
  cursor: pointer; text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.pill-link:hover { text-decoration: none; }

.pill-hover-bg {
  position: absolute; border-radius: 50%;
  background: var(--accent);
  pointer-events: none; left: 50%;
  transform: translateX(-50%) scale(0);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  width: 180%; padding-top: 180%;
  top: 50%; margin-top: -90%;
}
.pill-link:hover .pill-hover-bg,
.pill-link.active .pill-hover-bg { transform: translateX(-50%) scale(1); }

.pill-cta .pill-hover-bg {
  transform: translateX(-50%) scale(1);
  background: var(--primary);
}
.pill-cta:hover .pill-hover-bg { background: var(--primary-lt); }

.pill-label-stack {
  position: relative; overflow: hidden; height: 1.15em;
  display: flex; align-items: center; z-index: 1;
}
.pill-label,
.pill-label-hover {
  font-family: inherit; font-size: 13px; font-weight: 500;
  letter-spacing: 0.01em; display: block; white-space: nowrap;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.pill-label {
  color: rgba(29, 38, 48, 0.72);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s;
}
.pill-link.active:not(.pill-cta) .pill-label { color: #fff !important; font-weight: 700; }
.pill-label-hover {
  color: #fff; position: absolute; top: 0; left: 0;
  transform: translateY(115%);
}
.pill-link:hover .pill-label       { transform: translateY(-115%); }
.pill-link:hover .pill-label-hover { transform: translateY(0); }
.pill-link.active .pill-label       { transform: translateY(-115%); }
.pill-link.active .pill-label-hover { transform: translateY(0); }
.pill-cta .pill-label,
.pill-cta .pill-label-hover { color: var(--fg) !important; }

/* Mobile hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  padding: 0; border: 0; margin: 0;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  backdrop-filter: blur(12px) saturate(1.15);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: background 0.2s ease;
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Push the page content below the fixed 72px nav */
body { padding-top: 72px; }

/* Mobile nav rules — match the homepage's mobile drawer */
@media (max-width: 880px) {
  body { padding-top: 64px; }

  #site-nav {
    padding: 12px 14px;
    height: 64px;
    min-height: 64px;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px) saturate(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
  }
  .nav-pills-wrap {
    backdrop-filter: blur(10px) saturate(1.08);
    -webkit-backdrop-filter: blur(10px) saturate(1.08);
  }
  .nav-toggle { display: inline-flex; }

  .nav-brand { align-self: center; }
  .nav-brand .brand-logo-img,
  .nav-brand .brand-logo-full,
  .nav-brand .brand-logo-mark { height: 36px; }

  /* Mobile dropdown panel — pill rail collapses into a vertical menu */
  .nav-pills-wrap {
    position: fixed;
    top: 64px; right: 12px; left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
    z-index: 999;
  }
  .nav-pills-wrap.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }
  .nav-pills-wrap > li { width: 100%; list-style: none; }
  .pill-link {
    display: flex;
    width: 100%;
    padding: 14px 18px;
    border-radius: 12px;
    justify-content: flex-start;
  }
  .pill-hover-bg { display: none; }
  .pill-link.active { background: var(--accent); }
  .pill-link.active .pill-label { color: #fff !important; }
  .pill-cta,
  .pill-link.active.pill-cta { background: var(--primary); margin-top: 4px; }
  .pill-cta:hover { background: var(--primary-lt); }
  .pill-link.active.pill-cta .pill-label { color: var(--fg) !important; }
  .pill-label-stack { height: auto; }
  .pill-label { font-size: 15px; font-weight: 600; transform: none !important; }
  .pill-label-hover { display: none; }
}

/* ── hero ──────────────────────────────────────────── */
.lp-hero {
  background: linear-gradient(180deg, #2c4a39 0%, #3d664e 100%);
  color: #faf9f5;
  padding: 96px 20px 80px;
  text-align: center;
}
.lp-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.lp-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c9d4ad;
  margin-bottom: 20px;
}
.lp-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.lp-hero h1 .accent { color: #c9d4ad; }
.lp-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  opacity: 0.92;
  max-width: 640px;
  margin: 0 auto 36px;
}
.lp-hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
}
.btn-primary { background: #faf9f5; color: var(--accent); }
.btn-primary:hover { background: #fff; text-decoration: none; }
.btn-outline { background: transparent; color: #faf9f5; border-color: #faf9f5; }
.btn-outline:hover { background: #faf9f5; color: var(--accent); text-decoration: none; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-lt); text-decoration: none; }

/* ── sections ─────────────────────────────────────── */
.lp-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.lp-section.alt { background: var(--bg-soft); max-width: none; }
.lp-section.alt .lp-section-inner { max-width: 1200px; margin: 0 auto; }
.lp-section h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
.lp-section h2 .accent { color: var(--accent); }
.lp-section p { font-size: 1.05rem; max-width: 70ch; margin: 0 0 1em; }
.lp-section .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* ── two column "alt-row" ──────────────────────────── */
.lp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.lp-row.flip { grid-template-columns: 1fr 1fr; }
.lp-row.flip .lp-row-text { order: 2; }
.lp-row-img {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}
.lp-row-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
  .lp-row, .lp-row.flip { grid-template-columns: 1fr; gap: 32px; }
  .lp-row.flip .lp-row-text { order: 0; }
  .lp-row-img { aspect-ratio: 3 / 2; }
}

/* ── checklist ─────────────────────────────────────── */
.lp-checks { list-style: none; padding: 0; margin: 12px 0 0; }
.lp-checks li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 1rem;
}
.lp-checks li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

/* ── process steps ─────────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}
.lp-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
}
.lp-step-num {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 12px;
}
.lp-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}
.lp-step p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ── suburb chips ──────────────────────────────────── */
.lp-suburbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.lp-suburb {
  display: inline-block;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--fg);
}
.lp-suburb.feature {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}

/* ── FAQ ───────────────────────────────────────────── */
.lp-faq {
  max-width: 820px;
  margin: 36px auto 0;
}
.lp-faq details {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}
.lp-faq details:last-child { border-bottom: 1px solid var(--line); }
.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.15s;
}
.lp-faq details[open] summary::after { transform: rotate(45deg); }
.lp-faq details p { margin: 12px 0 0; font-size: 1rem; color: var(--muted); }

/* ── final CTA ─────────────────────────────────────── */
.lp-cta-band {
  background: linear-gradient(180deg, #3d664e 0%, #2c4a39 100%);
  color: #faf9f5;
  text-align: center;
  padding: 80px 20px;
}
.lp-cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin: 0 0 14px;
  color: #fff;
}
.lp-cta-band p { color: #d8e2c5; margin: 0 auto 28px; max-width: 560px; }
.lp-cta-phone {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #faf9f5 !important;
  text-decoration: none;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
}
.lp-cta-phone:hover { text-decoration: underline; }
.lp-cta-sub { font-size: 0.85rem; color: #c9d4ad; }

/* ── footer ────────────────────────────────────────── */
.lp-footer {
  background: #1d2418;
  color: #d8e2c5;
  padding: 56px 20px 28px;
}
.lp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}
.lp-footer h4 {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #faf9f5;
  margin: 0 0 14px;
}
.lp-footer a { color: #d8e2c5; }
.lp-footer a:hover { color: #fff; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer ul li { padding: 4px 0; font-size: 0.95rem; }
.lp-footer-brand img { height: 32px; width: auto; margin-bottom: 14px; }
.lp-footer-bottom {
  max-width: 1200px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid #2a3325;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: #98a48b;
}
@media (max-width: 720px) {
  .lp-footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ── breadcrumb ────────────────────────────────────── */
.lp-breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.lp-breadcrumb a { color: var(--muted); }
.lp-breadcrumb a:hover { color: var(--accent); }
