:root {
    --green: #3d6b45;
    --green-light: #eef4ef;
    --green-mid: #c8deca;
    --tan: #f5f0e8;
    --tan-dark: #e8dfc8;
    --brown: #5c4a32;
    --text: #2e2a24;
    --text-soft: #5a5248;
    --white: #fdfcf9;
    --border: #d8d0c0;
    /* Single consistent content width used everywhere */
    --max-w: 1180px;
    --pad-x: 2.5rem;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 17px;
    color: var(--text);
    background: var(--white);
    line-height: 1.75;
  }

  h1, h2, h3 { font-family: 'Lora', serif; line-height: 1.3; }
  p + p { margin-top: 0.9rem; }

  a { color: var(--green); text-decoration: none; }
  a:hover { text-decoration: underline; }

  /* NAV */
  nav {
    background: var(--white);
    border-bottom: 2px solid var(--tan-dark);
    padding: 0 var(--pad-x);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
  }
  .nav-logo {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    line-height: 1.2;
    text-decoration: none;
  }
  .nav-logo:hover { text-decoration: none; }
  .nav-logo span { display: block; font-size: 0.75rem; font-weight: 400; color: var(--text-soft); font-family: 'Source Sans 3', sans-serif; }
  .nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
  }
  .nav-links a {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--green); text-decoration: none; }
  .nav-links .nav-cta {
    background: var(--green);
    color: white !important;
    padding: 0.45rem 1.1rem;
    border-radius: 4px;
  }
  .nav-links .nav-cta:hover { background: var(--brown); }

  /* HERO */
  .hero {
    background: var(--tan);
    border-bottom: 2px solid var(--tan-dark);
    padding: 1.75rem var(--pad-x) 1.5rem;
  }
  .hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .hero-tag {
    display: inline-block;
    background: var(--green-mid);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1.1rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--brown);
    margin-bottom: 1rem;
    max-width: 700px;
  }
  .hero p {
    font-size: 1.1rem;
    color: var(--text-soft);
    max-width: 580px;
    margin-bottom: 1.75rem;
    line-height: 1.7;
  }
  .hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

  .btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: background 0.15s;
    text-decoration: none;
  }
  .btn-primary { background: var(--green); color: white; }
  .btn-primary:hover { background: #2e5236; text-decoration: none; color: white; }
  .btn-secondary { background: white; color: var(--green); border: 2px solid var(--green); }
  .btn-secondary:hover { background: var(--green-light); text-decoration: none; }

  /* CONTENT AREA — single consistent wrapper used on every page */
  .content {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem var(--pad-x) 4rem;
  }
  .content-wide {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3rem var(--pad-x) 4rem;
  }
  /* Ensure panels are block-level */
  .page-panel { display: none; }
  .page-panel[style*="block"], .page-panel:target { display: block !important; }

  /* SECTION HEADINGS */
  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green);
    margin-bottom: 0.4rem;
  }
  h2.section-title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    color: var(--brown);
    margin-bottom: 1rem;
  }

  /* DIVIDER */
  .divider { border: none; border-top: 2px solid var(--tan-dark); margin: 3rem 0; }

  /* SERVICE AREA CARDS */
  .area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.1rem;
    margin-top: 1.5rem;
  }
  .area-card {
    background: var(--tan);
    border: 1.5px solid var(--tan-dark);
    border-radius: 8px;
    padding: 1.5rem 1.25rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    text-decoration: none;
    color: inherit;
    display: block;
  }
  .area-card:hover { border-color: var(--green); box-shadow: 0 3px 12px rgba(61,107,69,0.1); text-decoration: none; }
  .area-card h3 { font-size: 1.05rem; color: var(--brown); margin-bottom: 0.5rem; }
  .area-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.6; }
  .area-card .card-link { font-size: 0.87rem; color: var(--green); font-weight: 600; margin-top: 0.75rem; display: block; }

  /* WHY LIST */
  .why-list { list-style: none; margin-top: 1rem; }
  .why-list li {
    padding: 0.8rem 0 0.8rem 1.6rem;
    border-bottom: 1px solid var(--border);
    position: relative;
    font-size: 0.97rem;
    color: var(--text-soft);
  }
  .why-list li:last-child { border-bottom: none; }
  .why-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 600;
  }

  /* FAQ */
  .faq-item { border-bottom: 1.5px solid var(--border); padding: 1.1rem 0; }
  .faq-q {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: var(--brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
  }
  .faq-q:hover { color: var(--green); }
  .faq-toggle { font-size: 1.2rem; flex-shrink: 0; color: var(--green); transition: transform 0.2s; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); }
  .faq-a {
    display: none;
    font-size: 0.93rem;
    color: var(--text-soft);
    padding-top: 0.75rem;
    line-height: 1.75;
  }
  .faq-item.open .faq-a { display: block; }

  /* CONTACT FORM */
  .contact-form {
    background: var(--tan);
    border: 1.5px solid var(--tan-dark);
    border-radius: 8px;
    padding: 2rem 2rem;
    margin-top: 1.5rem;
  }
  .form-row { margin-bottom: 1.1rem; }
  .form-row label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.35rem;
  }
  .form-row input,
  .form-row select,
  .form-row textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: 'Source Sans 3', sans-serif;
    background: white;
    color: var(--text);
    transition: border-color 0.15s;
  }
  .form-row input:focus,
  .form-row select:focus,
  .form-row textarea:focus { outline: none; border-color: var(--green); }
  .form-row textarea { min-height: 120px; resize: vertical; }
  .form-success {
    display: none;
    background: var(--green-light);
    border: 1.5px solid var(--green-mid);
    border-radius: 6px;
    padding: 1.25rem;
    text-align: center;
    color: var(--green);
    font-weight: 600;
    margin-top: 1rem;
  }

  /* CALLOUT BOX */
  .callout {
    background: var(--green-light);
    border-left: 4px solid var(--green);
    border-radius: 0 6px 6px 0;
    padding: 1.1rem 1.4rem;
    margin: 1.75rem 0;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
  }
  .callout strong { color: var(--green); }

  /* TRUST BAR */
  .trust-bar {
    background: var(--green);
    color: white;
    padding: 1rem var(--pad-x);
    font-size: 0.9rem;
  }
  .trust-bar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }
  .trust-item { display: flex; align-items: center; gap: 0.45rem; }
  .trust-item span:first-child { font-size: 1.1rem; }

  /* FOOTER */
  footer {
    background: var(--brown);
    color: #c8b898;
    padding: 3rem var(--pad-x) 2rem;
    font-size: 0.88rem;
    margin-top: 3rem;
  }
  .footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-inner > div { flex: 0 1 auto; min-width: 140px; }
  footer h4 { color: #ede0c8; font-family: 'Lora', serif; margin-bottom: 0.8rem; font-size: 0.95rem; }
  footer a { color: #c8b898; }
  footer a:hover { color: white; }
  footer ul { list-style: none; }
  footer ul li { margin-bottom: 0.4rem; }
  .footer-copy {
    max-width: var(--max-w);
    margin: 2rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.8rem;
    text-align: center;
    color: #a08060;
  }

  /* PAGE HERO — suburb pages */
  .page-hero {
    background: var(--tan);
    border-bottom: 2px solid var(--tan-dark);
    padding: 2rem var(--pad-x) 1.75rem;
  }
  .page-hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .page-hero h1 { font-size: clamp(1.5rem, 3.5vw, 2.1rem); color: var(--brown); margin-bottom: 0.6rem; }
  .page-hero p { color: var(--text-soft); font-size: 1rem; max-width: 640px; line-height: 1.7; }

  /* BREADCRUMB */
  .breadcrumb { font-size: 0.8rem; color: var(--text-soft); margin-bottom: 0.8rem; }
  .breadcrumb a { color: var(--green); }

  /* INFO TABLE */
  .info-table { width: 100%; border-collapse: collapse; margin-top: 1.1rem; font-size: 0.92rem; }
  .info-table th {
    text-align: left;
    padding: 0.65rem 1rem;
    background: var(--tan);
    color: var(--brown);
    font-weight: 600;
    border: 1px solid var(--border);
    font-family: 'Lora', serif;
  }
  .info-table td { padding: 0.6rem 1rem; border: 1px solid var(--border); color: var(--text-soft); }
  .info-table tr:nth-child(even) td { background: var(--tan); }

  /* SUBURB TAGS */
  .suburb-tag-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.9rem; }
  .suburb-tag {
    background: var(--tan);
    border: 1.5px solid var(--tan-dark);
    border-radius: 4px;
    padding: 0.35rem 0.85rem;
    font-size: 0.87rem;
    color: var(--text);
    font-weight: 500;
  }

  /* PEST DETAIL ITEMS */
  .pest-detail-item {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 1.4rem 1.5rem 1.25rem;
    margin-bottom: 1.1rem;
    background: var(--white);
  }
  .pest-detail-header { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.55rem; }
  .pest-detail-icon { font-size: 1.4rem; }
  .pest-detail-item h3 { font-family: 'Lora', serif; font-size: 1.1rem; color: var(--brown); margin: 0; }
  .pest-detail-item p { font-size: 0.94rem; color: var(--text-soft); line-height: 1.75; }

  /* contact cols */
  .contact-info-block { margin-bottom: 2rem; }

  /* Responsive */
  @media (max-width: 700px) {
    :root { --pad-x: 1.1rem; }
    .nav-links { gap: 0.75rem; }
    .hero { padding: 1.25rem var(--pad-x) 1rem; }
    .content, .content-wide { padding: 2rem var(--pad-x); }
    .contact-form { padding: 1.25rem 1rem; }
    .footer-inner { flex-direction: column; gap: 1.5rem; }

    .area-grid { grid-template-columns: 1fr; }
  }

  /* area-card as link */
  a.area-card { display: block; text-decoration: none; color: inherit; }
  a.area-card:hover { text-decoration: none; }

  /* SERVICE AREA SECTION */
  .service-area-section {
    background: var(--tan);
    border-top: 2px solid var(--tan-dark);
    padding: 3rem var(--pad-x) 3rem;
  }
  .service-area-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }
  .service-area-section .section-label { margin-bottom: 0.4rem; }
  .service-area-section h2 {
    font-family: 'Lora', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    color: var(--brown);
    margin-bottom: 1rem;
  }
  .service-area-section p {
    color: var(--text-soft);
    font-size: 0.97rem;
    line-height: 1.75;
    max-width: 700px;
    margin-bottom: 1.5rem;
  }
  .suburb-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
  }
  .suburb-strip span {
    background: var(--white);
    border: 1.5px solid var(--tan-dark);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    font-size: 0.87rem;
    font-weight: 500;
    color: var(--text);
  }
  .map-embed {
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--tan-dark);
    line-height: 0;
  }
  .map-embed iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
  }
  @media (max-width: 700px) {
    .map-embed iframe { height: 260px; }
    .service-area-section { padding: 2rem var(--pad-x); }
  }

  .suburb-strip-link {
    background: var(--white);
    border: 1.5px solid var(--green-mid);
    border-radius: 4px;
    padding: 0.35rem 0.9rem;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--green);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
  }
  .suburb-strip-link:hover {
    background: var(--green-light);
    border-color: var(--green);
    text-decoration: none;
  }