:root {
    --dark-green: #2e6b38;
    --mid-green: #3d8a4a;
    --leaf-green: #5aaa5a;
    --gold: #c9a84c;
    --light-gold: #e8c97a;
    --cream: #f7faf5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #444;
    --text-light: #777;
    --border: #d8e8d8;
  }

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

  body {
    font-family: 'Lato', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(46, 107, 56, 0.97);
    backdrop-filter: blur(6px);
    padding: 0 5%;
    display: flex; align-items: center; justify-content: space-between;
    height: 80px;
    border-bottom: 2px solid var(--gold);
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px; cursor: pointer;
  }
  .nav-logo img {
    height: 62px; width: 62px; object-fit: contain; border-radius: 4px;
  }
  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem; color: var(--white); line-height: 1.2;
    letter-spacing: 0.04em;
  }
  .nav-logo-text span { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; display: block; }
  nav ul {
    list-style: none; display: flex; gap: 8px; align-items: center;
  }
  nav ul li a {
    color: rgba(255,255,255,0.85); text-decoration: none;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    padding: 8px 14px; border-radius: 3px;
    transition: color 0.2s, background 0.2s;
    font-weight: 700;
  }
  nav ul li a:hover, nav ul li a.active { color: var(--gold); }
  nav ul li.cta-nav a {
    background: var(--gold); color: var(--dark-green);
    padding: 9px 20px; border-radius: 3px;
  }
  nav ul li.cta-nav a:hover { background: var(--light-gold); color: var(--dark-green); }

  /* hamburger */
  .hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
  }
  .hamburger span { width: 24px; height: 2px; background: var(--white); transition: all 0.3s; border-radius: 2px; }

  /* ─── PAGES ─── */
  .page { display: none; }
  .page.active { display: block; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(160deg, rgba(20,50,24,0.78) 0%, rgba(20,50,24,0.48) 50%, rgba(20,50,24,0.72) 100%),
      url('images/hero-lawn-mower.jpg') center/cover no-repeat;
    display: flex; align-items: center;
    padding: 72px 5% 0;
  }
  .hero-content { max-width: 680px; }
  .hero-tag {
    display: inline-block;
    background: var(--gold); color: var(--dark-green);
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    font-weight: 700; padding: 6px 16px; margin-bottom: 28px; border-radius: 2px;
  }
  .hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: var(--white); line-height: 1.12; margin-bottom: 22px;
    letter-spacing: -0.01em;
  }
  .hero-content h1 em { color: var(--light-gold); font-style: normal; }
  .hero-content p {
    color: rgba(255,255,255,0.85); font-size: 1.08rem; line-height: 1.7;
    margin-bottom: 38px; max-width: 520px;
  }
  .hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--dark-green);
    padding: 14px 32px; border: none; border-radius: 3px;
    font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: var(--light-gold); transform: translateY(-1px); }
  .btn-outline {
    background: transparent; color: var(--white);
    padding: 14px 32px; border: 2px solid rgba(255,255,255,0.5); border-radius: 3px;
    font-family: 'Lato', sans-serif; font-size: 0.82rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }
  .hero-scroll {
    position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.5); font-size: 0.72rem; letter-spacing: 0.18em;
    text-transform: uppercase; text-align: center;
  }
  .hero-scroll::before {
    content: ''; display: block; width: 1px; height: 40px;
    background: rgba(255,255,255,0.3); margin: 0 auto 10px;
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    background: var(--dark-green);
    padding: 18px 5%;
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 0.08em;
  }
  .trust-item svg { color: var(--gold); flex-shrink: 0; }

  /* ─── SECTIONS ─── */
  section { padding: 90px 5%; }
  .section-label {
    font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold); font-weight: 700; margin-bottom: 12px;
  }
  h2.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--dark-green); line-height: 1.2; margin-bottom: 18px;
  }
  .section-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--leaf-green));
    margin-bottom: 22px; border-radius: 2px;
  }
  .section-sub {
    color: var(--text-mid); font-size: 1rem; line-height: 1.7;
    max-width: 560px; margin-bottom: 50px;
  }

  /* ─── SERVICES ─── */
  .services-section { background: var(--white); }
  .services-header { text-align: center; }
  .services-header .section-divider { margin: 0 auto 22px; }
  .services-header .section-sub { margin: 0 auto 50px; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px; margin: 0 auto;
  }
  .service-card {
    background: var(--cream); border: 1.5px solid var(--border);
    border-radius: 16px; padding: 36px 28px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    cursor: default; position: relative; overflow: hidden;
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-green), var(--leaf-green));
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
    border-radius: 16px 16px 0 0;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(26,58,31,0.13);
    border-color: transparent;
  }
  .service-card:hover::before { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px; background: #e8f5e9;
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.6rem;
  }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; color: var(--dark-green); margin-bottom: 10px; font-weight: 700;
  }
  .service-card p {
    font-size: 0.88rem; color: var(--text-light); line-height: 1.7;
  }

  /* ─── SEASONAL ─── */
  .seasonal-section { background: var(--cream); }
  .seasonal-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px;
  }
  .season-card {
    border-radius: 8px; overflow: hidden; position: relative;
    min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end;
    background: var(--mid-green);
  }
  .season-card-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
  }
  .season-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,58,31,0.9) 0%, transparent 55%);
  }
  .season-card-content { position: relative; padding: 28px 24px; }
  .season-badge {
    display: inline-block; background: var(--gold); color: var(--dark-green);
    font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
    padding: 4px 12px; border-radius: 2px; margin-bottom: 10px;
  }
  .season-card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem; color: var(--white); margin-bottom: 6px;
  }
  .season-card-content p { color: rgba(255,255,255,0.75); font-size: 0.84rem; line-height: 1.5; }

  /* ─── ABOUT ─── */
  .about-section { background: var(--white); }
  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .about-img-wrap { position: relative; }
  .about-img-main {
    width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 8px;
    background: url('images/garden-flowers.jpg') center top/cover;
  }
  .about-img-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--dark-green); color: var(--white);
    padding: 24px 28px; border-radius: 6px;
    text-align: center; border: 3px solid var(--gold);
  }
  .about-img-badge .num {
    font-family: 'Playfair Display', serif; font-size: 2.4rem;
    color: var(--gold); line-height: 1;
  }
  .about-img-badge .label { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.8; }
  .about-text p { color: var(--text-mid); font-size: 0.96rem; line-height: 1.8; margin-bottom: 18px; }
  .about-values {
    display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap;
  }
  .about-value { display: flex; align-items: flex-start; gap: 12px; }
  .about-value-icon {
    width: 36px; height: 36px; background: var(--cream);
    border: 2px solid var(--gold); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0; margin-top: 2px;
  }
  .about-value h4 { font-size: 0.88rem; color: var(--dark-green); margin-bottom: 4px; font-weight: 700; }
  .about-value p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; margin: 0; }

  /* ─── SHOWCASE ─── */
  .showcase-section { background: var(--cream); }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 16px;
  }
  .gallery-item {
    border-radius: 6px; overflow: hidden; position: relative;
    background: var(--mid-green);
  }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-img {
    width: 100%; height: 100%; min-height: 220px;
    background-size: cover; background-position: center;
    transition: transform 0.4s;
    display: block;
  }
  .gallery-item:hover .gallery-img { transform: scale(1.04); }
  .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,58,31,0.7), transparent 60%);
    opacity: 0; transition: opacity 0.3s;
    display: flex; align-items: flex-end; padding: 20px;
  }
  .gallery-item:hover .gallery-overlay { opacity: 1; }
  .gallery-overlay span {
    color: var(--white); font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
  }

  /* ─── CONTACT ─── */
  .contact-section { background: var(--white); }
  .contact-grid {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start;
  }
  .contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--dark-green); margin-bottom: 18px;
  }
  .contact-info p { color: var(--text-mid); line-height: 1.7; margin-bottom: 32px; font-size: 0.96rem; }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px;
  }
  .contact-detail-icon {
    width: 40px; height: 40px; background: var(--dark-green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .contact-detail-icon svg { color: var(--gold); }
  .contact-detail-text strong { display: block; font-size: 0.8rem; color: var(--dark-green); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
  .contact-detail-text span { font-size: 0.93rem; color: var(--text-mid); }
  .contact-detail-text a { color: var(--text-mid); text-decoration: none; }
  .contact-detail-text a:hover { color: var(--dark-green); }

  .contact-form {
    background: var(--cream); border-radius: 8px;
    padding: 44px; border: 1px solid var(--border);
  }
  .contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem; color: var(--dark-green); margin-bottom: 28px;
  }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
  .form-group { display: flex; flex-direction: column; margin-bottom: 16px; }
  .form-group label {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--dark-green); font-weight: 700; margin-bottom: 7px;
  }
  .form-group input, .form-group select, .form-group textarea {
    padding: 12px 14px; border: 1px solid var(--border); border-radius: 4px;
    background: var(--white); font-family: 'Lato', sans-serif;
    font-size: 0.92rem; color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--mid-green); box-shadow: 0 0 0 3px rgba(45,90,52,0.12);
  }
  .form-group textarea { min-height: 120px; resize: vertical; }
  .form-submit { width: 100%; }
  .form-success {
    display: none; background: var(--dark-green); color: var(--white);
    padding: 18px 24px; border-radius: 4px; text-align: center;
    font-size: 0.9rem; margin-top: 16px;
  }
  .form-success span { color: var(--gold); }

  /* ─── TESTIMONIALS ─── */
  .testimonials-section {
    background: var(--dark-green);
    padding: 90px 5%;
  }
  .testimonials-section .section-label { color: var(--leaf-green); }
  .testimonials-header { text-align: center; margin-bottom: 52px; }
  .testimonials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    color: var(--white); line-height: 1.2; margin-bottom: 12px;
  }
  .testimonials-header p { color: rgba(255,255,255,0.65); font-size: 1rem; }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px; max-width: 1100px; margin: 0 auto;
  }
  .review-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px; padding: 32px 28px;
    transition: background 0.3s, transform 0.25s;
  }
  .review-card:hover {
    background: rgba(255,255,255,0.11);
    transform: translateY(-5px);
  }
  .review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 16px; }
  .review-text {
    font-size: 0.93rem; color: rgba(255,255,255,0.82);
    line-height: 1.75; margin-bottom: 22px; font-style: italic;
  }
  .review-author { display: flex; align-items: center; gap: 13px; }
  .review-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--mid-green), var(--leaf-green));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700; color: white; flex-shrink: 0;
  }
  .review-name { font-weight: 700; color: white; font-size: 0.9rem; }
  .review-location { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 2px; }

  /* ─── CTA BAND ─── */
  .cta-band {
    background: var(--dark-green);
    padding: 80px 5%;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: url('images/placeholder-lawn.jpg') center/cover;
    opacity: 0.08;
  }
  .cta-band > * { position: relative; }
  .cta-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white); margin-bottom: 14px;
  }
  .cta-band p { color: rgba(255,255,255,0.75); font-size: 1rem; margin-bottom: 34px; }
  .cta-band .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

  /* ─── FOOTER ─── */
  footer {
    background: #1e4726;
    padding: 60px 5% 30px;
  }
  .footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 60px;
    padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 28px;
  }
  .footer-logo {
    display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  }
  .footer-logo img { height: 52px; border-radius: 4px; }
  .footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; color: var(--white); line-height: 1.2;
  }
  .footer-logo-text span { color: var(--gold); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; display: block; }
  .footer-desc { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
  .footer-col h4 {
    font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 18px; font-weight: 700;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.55); font-size: 0.85rem; text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
    color: rgba(255,255,255,0.3); font-size: 0.78rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; }
  .footer-bottom a:hover { color: var(--gold); }

  /* ─── PAGE HERO (inner pages) ─── */
  .page-hero {
    min-height: 340px; padding: 72px 5% 0;
    display: flex; align-items: flex-end; padding-bottom: 60px;
    position: relative;
  }
  .page-hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(26,58,31,0.9), rgba(26,58,31,0.7));
    z-index: 1;
  }
  .page-hero-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
  }
  .page-hero-content { position: relative; z-index: 2; }
  .page-hero-content .section-label { color: var(--light-gold); }
  .page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-top: 8px;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { animation: fadeUp 0.7s ease both; }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.25s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.55s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 900px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-badge { right: 0; bottom: -16px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-item.wide { grid-column: span 1; }
    .gallery-item.tall { grid-row: span 1; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-grid > :first-child { grid-column: 1 / -1; }
  }
  @media (max-width: 640px) {
    nav ul { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: var(--dark-green); padding: 20px; gap: 4px; }
    nav ul.open { display: flex; }
    .hamburger { display: flex; }
    .hero { min-height: 90vh; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    section { padding: 60px 5%; }
    .trust-bar { gap: 20px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  }
