/*
Theme Name: Boom Landscapers
Theme URI: https://publish.njinway.com/
Author: Njinway
Author URI: https://njinway.com/
Description: A conversion-focused one-page WordPress theme for Boom Landscapers, built for landscaping leads, WhatsApp enquiries, and assorted seedlings requests.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: boom-landscapers
Tags: one-page, landing-page, custom-logo, featured-images, landscaping, responsive
*/

:root {
      --green-900: #102d1d;
      --green-800: #17412a;
      --green-700: #235c3b;
      --green-500: #3f8f54;
      --green-100: #eaf4ec;
      --cream: #f8f3e8;
      --sand: #dfc99f;
      --soil: #4b3726;
      --white: #ffffff;
      --ink: #172018;
      --muted: #607064;
      --line: rgba(23, 32, 24, 0.12);
      --shadow: 0 22px 70px rgba(16, 45, 29, 0.16);
      --radius-xl: 28px;
      --radius-lg: 20px;
      --radius-md: 14px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      overflow: hidden;
    }

    .topbar {
      width: min(var(--max), calc(100% - 32px));
      position: fixed;
      top: 16px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 50;
      background: rgba(248, 243, 232, 0.82);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: 999px;
      box-shadow: 0 12px 50px rgba(16, 45, 29, 0.12);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 12px 10px 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--green-900);
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, var(--green-700), var(--green-900));
      color: var(--cream);
      box-shadow: inset 0 -5px 12px rgba(0, 0, 0, 0.22);
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
      font-size: 0.92rem;
      color: var(--green-900);
      font-weight: 700;
    }

    .nav a {
      opacity: 0.82;
    }

    .nav a:hover {
      opacity: 1;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 0;
      border-radius: 999px;
      padding: 13px 20px;
      font-weight: 850;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      font-size: 0.96rem;
    }

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

    .btn-primary {
      background: var(--green-800);
      color: var(--white);
      box-shadow: 0 14px 30px rgba(23, 65, 42, 0.25);
    }

    .btn-primary:hover {
      background: var(--green-900);
    }

    .btn-cream {
      background: var(--cream);
      color: var(--green-900);
    }

    .btn-outline {
      background: transparent;
      color: var(--green-900);
      border: 1px solid rgba(16, 45, 29, 0.22);
    }

    .hero {
      min-height: 100vh;
      padding: 140px 0 70px;
      background:
        linear-gradient(90deg, rgba(16, 45, 29, 0.94) 0%, rgba(16, 45, 29, 0.82) 42%, rgba(16, 45, 29, 0.24) 100%),
        url("https://source.unsplash.com/1800x1200/?landscaping,garden,lawn") center/cover no-repeat;
      color: var(--white);
      position: relative;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -12%;
      bottom: -110px;
      width: 520px;
      height: 520px;
      background: rgba(223, 201, 159, 0.17);
      filter: blur(2px);
      border-radius: 50%;
    }

    .wrap {
      width: min(var(--max), calc(100% - 32px));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
      gap: 44px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(248, 243, 232, 0.16);
      border: 1px solid rgba(248, 243, 232, 0.2);
      color: rgba(255, 255, 255, 0.9);
      font-weight: 800;
      font-size: 0.85rem;
      margin-bottom: 22px;
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 6.8rem);
      line-height: 0.9;
      letter-spacing: -0.07em;
      margin: 0 0 24px;
      max-width: 920px;
    }

    .hero h1 span {
      color: var(--sand);
    }

    .hero-text {
      font-size: clamp(1.07rem, 2vw, 1.35rem);
      color: rgba(255, 255, 255, 0.84);
      max-width: 700px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .hero-note {
      color: rgba(255, 255, 255, 0.78);
      font-weight: 700;
      font-size: 0.92rem;
    }

    .quote-card {
      background: rgba(248, 243, 232, 0.96);
      color: var(--ink);
      border-radius: var(--radius-xl);
      padding: 22px;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255, 255, 255, 0.75);
    }

    .quote-card h2 {
      margin: 0 0 12px;
      letter-spacing: -0.04em;
      line-height: 1.05;
      color: var(--green-900);
      font-size: 1.55rem;
    }

    .lead-form {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    label {
      font-size: 0.82rem;
      color: var(--green-900);
      font-weight: 850;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 13px 14px;
      font: inherit;
      color: var(--ink);
      background: var(--white);
      outline: none;
    }

    textarea {
      min-height: 96px;
      resize: vertical;
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(63, 143, 84, 0.8);
      box-shadow: 0 0 0 4px rgba(63, 143, 84, 0.12);
    }

    .form-small {
      color: var(--muted);
      font-size: 0.83rem;
      margin: 0;
    }

    section {
      padding: 86px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 34px;
      align-items: end;
      margin-bottom: 34px;
    }

    .kicker {
      color: var(--green-700);
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-weight: 950;
      margin-bottom: 10px;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 0.98;
      letter-spacing: -0.06em;
      margin: 0;
      color: var(--green-900);
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 1.06rem;
      max-width: 650px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: -38px;
      position: relative;
      z-index: 5;
    }

    .stat {
      background: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.75);
      border-radius: 20px;
      padding: 20px;
      box-shadow: 0 20px 50px rgba(16, 45, 29, 0.09);
    }

    .stat strong {
      color: var(--green-900);
      font-size: 1.72rem;
      letter-spacing: -0.05em;
      display: block;
      line-height: 1;
    }

    .stat span {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 750;
    }

    .services {
      background: var(--cream);
    }

    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service-card {
      min-height: 320px;
      border-radius: var(--radius-xl);
      padding: 24px;
      background: var(--white);
      box-shadow: 0 20px 60px rgba(16, 45, 29, 0.08);
      border: 1px solid rgba(16, 45, 29, 0.08);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .service-card:nth-child(2) {
      background:
        linear-gradient(rgba(16,45,29,.30), rgba(16,45,29,.84)),
        url("https://source.unsplash.com/900x900/?lawn,mowing,garden") center/cover no-repeat;
      color: var(--white);
    }

    .service-card:nth-child(2) h3,
    .service-card:nth-child(2) p {
      color: var(--white);
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 1.35rem;
      letter-spacing: -0.04em;
      color: var(--green-900);
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
    }

    .icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      background: var(--green-100);
      border-radius: 16px;
      font-size: 1.35rem;
      margin-bottom: 22px;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }

    .tag {
      display: inline-flex;
      padding: 7px 10px;
      border-radius: 999px;
      background: var(--green-100);
      color: var(--green-900);
      font-size: 0.82rem;
      font-weight: 800;
    }

    .seedlings {
      background: var(--green-900);
      color: var(--white);
      position: relative;
    }

    .seedlings h2 {
      color: var(--white);
    }

    .seedlings .section-head p {
      color: rgba(255, 255, 255, 0.76);
    }

    .seed-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 24px;
      align-items: stretch;
    }

    .seed-photo {
      min-height: 520px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(rgba(16,45,29,.05), rgba(16,45,29,.18)),
        url("https://source.unsplash.com/1000x1300/?seedlings,nursery,plants") center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .seed-panel {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: var(--radius-xl);
      padding: 28px;
      display: grid;
      gap: 16px;
      align-content: center;
    }

    .seed-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 15px;
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.08);
    }

    .seed-item b {
      display: block;
      color: var(--sand);
      margin-bottom: 4px;
      font-size: 1.04rem;
    }

    .seed-item p {
      margin: 0;
      color: rgba(255, 255, 255, 0.77);
    }

    .seed-dot {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--sand);
      color: var(--green-900);
      display: grid;
      place-items: center;
      font-weight: 950;
      margin-top: 3px;
    }

    .process {
      background: var(--white);
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .step {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 22px;
      background: #fff;
    }

    .step span {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--green-900);
      color: var(--white);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .step h3 {
      color: var(--green-900);
      margin: 0 0 7px;
      letter-spacing: -0.03em;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
    }

    .gallery {
      padding-bottom: 40px;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      grid-template-rows: 250px 250px;
      gap: 14px;
    }

    .gallery-img {
      border-radius: 24px;
      background-size: cover;
      background-position: center;
      box-shadow: 0 18px 50px rgba(16, 45, 29, 0.09);
      overflow: hidden;
    }

    .gallery-img:first-child {
      grid-row: span 2;
      background-image:
        linear-gradient(rgba(0,0,0,.04), rgba(0,0,0,.10)),
        url("https://source.unsplash.com/1000x1200/?landscape-design,garden-path");
    }

    .gallery-img:nth-child(2) {
      background-image: url("https://source.unsplash.com/900x600/?garden,flowers");
    }

    .gallery-img:nth-child(3) {
      background-image: url("https://source.unsplash.com/900x600/?lawn,home,garden");
    }

    .gallery-img:nth-child(4) {
      background-image: url("https://source.unsplash.com/900x600/?tree,planting,soil");
    }

    .gallery-img:nth-child(5) {
      background-image: url("https://source.unsplash.com/900x600/?plant,nursery,seedlings");
    }

    .cta {
      padding: 70px 0 96px;
    }

    .cta-box {
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(16,45,29,.96), rgba(35,92,59,.92)),
        url("https://source.unsplash.com/1600x900/?green-garden,patio") center/cover no-repeat;
      color: var(--white);
      padding: clamp(30px, 6vw, 62px);
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 28px;
      align-items: center;
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      color: var(--white);
      margin-bottom: 16px;
    }

    .cta-box p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 1.06rem;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer {
      padding: 30px 0 90px;
      color: var(--muted);
      border-top: 1px solid var(--line);
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      align-items: center;
      font-size: 0.93rem;
    }

    .footer b {
      color: var(--green-900);
    }

    .mobile-cta {
      display: none;
      position: fixed;
      left: 12px;
      right: 12px;
      bottom: 12px;
      z-index: 60;
      gap: 10px;
      background: rgba(248, 243, 232, 0.92);
      backdrop-filter: blur(16px);
      padding: 10px;
      border-radius: 999px;
      box-shadow: 0 16px 60px rgba(16, 45, 29, 0.22);
      border: 1px solid rgba(255, 255, 255, 0.72);
    }

    .mobile-cta .btn {
      flex: 1;
      padding: 12px 14px;
      font-size: 0.9rem;
    }

    @media (max-width: 980px) {
      .nav {
        display: none;
      }

      .hero-grid,
      .section-head,
      .seed-grid,
      .cta-box {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 120px;
        background:
          linear-gradient(180deg, rgba(16, 45, 29, 0.96) 0%, rgba(16, 45, 29, 0.78) 65%, rgba(16, 45, 29, 0.34) 100%),
          url("https://source.unsplash.com/1200x1600/?landscaping,garden,lawn") center/cover no-repeat;
      }

      .stats,
      .service-grid,
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .gallery-img:first-child {
        grid-column: span 2;
        min-height: 360px;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 640px) {
      .topbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 8px 9px 8px 12px;
      }

      .topbar .btn {
        padding: 10px 13px;
        font-size: 0.84rem;
      }

      .brand {
        font-size: 0.93rem;
      }

      .brand-mark {
        width: 32px;
        height: 32px;
      }

      .hero {
        min-height: auto;
        padding-bottom: 48px;
      }

      .hero-actions {
        display: grid;
      }

      .stats,
      .service-grid,
      .process-grid,
      .gallery-grid {
        grid-template-columns: 1fr;
      }

      .gallery-img,
      .gallery-img:first-child {
        min-height: 260px;
        grid-column: auto;
        grid-row: auto;
      }

      .seed-photo {
        min-height: 360px;
      }

      section {
        padding: 64px 0;
      }

      .footer-inner {
        display: grid;
      }

      .mobile-cta {
        display: flex;
      }
    }
.admin-bar .topbar {
  top: 48px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.nav .menu,
.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav li {
  margin: 0;
}

@media (max-width: 782px) {
  .admin-bar .topbar {
    top: 56px;
  }
}
