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

    :root {
      --green-dark:  #2c4a2e;
      --green-mid:   #4a7c59;
      --green-light: #7aab87;
      --cream:       #f5f0e8;
      --cream-dark:  #e8e0d0;
      --amber:       #c8860a;
      --amber-light: #e8a020;
      --text-dark:   #1a2e1c;
      --text-body:   #3a4e3c;
      --white:       #ffffff;
      --radius:      6px;
      --shadow:      0 4px 24px rgba(44,74,46,0.13);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      color: var(--text-body);
      background: var(--cream);
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--green-dark);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 2.5rem;
      height: 45px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    }

    nav .logo {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.15rem;
      color: var(--cream);
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    nav ul { list-style: none; display: flex; gap: 0.25rem; }

    nav ul a {
      display: block;
      padding: 0.45rem 0.9rem;
      color: var(--cream-dark);
      text-decoration: none;
      font-size: 0.875rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      border-radius: var(--radius);
      transition: background 0.2s, color 0.2s;
    }

    nav ul a:hover { background: var(--green-mid); color: var(--white); }

#home {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 0;
}

/* Background image — KEEP THIS */
#home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/PitchesTop2.jpg') center center / cover no-repeat;
  z-index: 0;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

/* Dark overlay — KEEP THIS */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,38,20,0.50) 0%,
    rgba(28,48,28,0.32) 50%,
    rgba(20,38,20,0.68) 100%
  );
  z-index: 1;
  pointer-events: none;
}

#home > * { position: relative; z-index: 2; }

#home p {
  max-width: 560px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.75);
  animation: fadeUp 0.9s ease 0.15s both;
  font-size: clamp(0.88rem, 2.4vw, 1.05rem);
  line-height: 1.4;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 0;
}
    .btn {
      display: inline-block;
      background: var(--amber);
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.78rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.6rem 1.4rem;
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      margin-top: 1rem;
      transition: all 0.2s ease;
      box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    }

    .btn:hover {
      background: var(--amber-light);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── SECTION SHARED ── */
    /* Fixed: reduced padding from 3.5rem to 2.5rem */
    section { padding: 2.5rem 2rem; }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      color: var(--green-dark);
      text-align: center;
      margin-bottom: 0.4rem;
    }

    .section-rule {
      width: 48px;
      height: 3px;
      background: var(--amber);
      margin: 0 auto 1.5rem;
      border-radius: 2px;
    }

    /* ── ABOUT ── */
    #about { background: var(--white); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      max-width: 1200px;
      margin: 0 auto 2rem;
    }

    @media (max-width: 700px) {
      .services-grid { grid-template-columns: 1fr; }
    }

    .box {
      background: var(--cream);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }

    .box:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 36px rgba(44,74,46,0.18);
    }

    .box img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      display: block;
    }

    @media (min-width: 900px) {
      .box img { height: 220px; }
    }

    /* Fixed: reduced padding and font sizes in box body */
    .box-body { padding: 0.85rem 1.1rem 1.1rem; }

    .box h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.05rem;
      color: var(--green-dark);
      margin-bottom: 0.35rem;
      text-align: center;
    }

    .box p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }

    .site-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.6rem;
    }

    .chip {
      background: var(--white);
      border: 1px solid var(--cream-dark);
      border-radius: 20px;
      padding: 0.2rem 0.6rem;
      font-size: 0.77rem;
      color: var(--text-body);
      white-space: nowrap;
    }

    /* ── NEARBY ── */
    #nearby { max-width: 1200px; margin: 0 auto; }

    #nearby h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem;
      color: var(--green-dark);
      text-align: center;
      margin-bottom: 0.35rem;
    }

    #nearby .section-rule { margin-bottom: 1.4rem; }

    .nearby-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 1rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 900px) {
      .nearby-grid--row {
        grid-template-columns: repeat(6, 1fr);
      }
    }

    .nearby-item {
      background: var(--cream);
      border-left: 4px solid var(--green-light);
      border-radius: var(--radius);
      padding: 0.75rem 1rem;
      box-shadow: 0 2px 10px rgba(44,74,46,0.08);
    }

    .nearby-item h3 {
      font-family: 'Playfair Display', serif;
      font-size: 0.95rem;
      color: var(--green-dark);
      margin-bottom: 0.25rem;
    }

    .nearby-item p { font-size: 0.83rem; line-height: 1.5; }

    .nearby-distance {
      display: inline-block;
      margin-top: 0.35rem;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: var(--amber);
      text-transform: uppercase;
    }

    .map-wrap {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
      margin-top: 0.5rem;
    }

    .map-wrap iframe {
      width: 100%;
      height: 320px;
      border: none;
      display: block;
    }

    /* ── GALLERY ── */
    #gallery { background: var(--green-dark); padding: 2.5rem 2rem; }
    #gallery .section-title { color: var(--cream); margin-bottom: 0.6rem; }
    #gallery .section-rule { margin-top: 0.2rem; margin-bottom: 1.5rem; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    @media (max-width: 640px) {
      .gallery-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 0.75rem;
        padding-bottom: 0.75rem;
        scrollbar-width: thin;
        scrollbar-color: var(--green-mid) transparent;
      }

      .gallery-grid::-webkit-scrollbar { height: 4px; }
      .gallery-grid::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 2px; }

      .gallery-item {
        flex: 0 0 80vw;
        scroll-snap-align: start;
      }
    }

    
.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.3s;
  opacity: 0.88;
  image-rendering: high-quality;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      cursor: pointer;
    }

    .gallery-item:hover img { transform: scale(1.06); opacity: 1; }

    .gallery-item .zoom-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      opacity: 0;
      transition: opacity 0.3s, background 0.3s;
    }

    .gallery-item:hover .zoom-icon {
      opacity: 1;
      background: rgba(28,48,28,0.35);
    }

    /* ── LIGHTBOX ── */
    #lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 999;
      background: rgba(10,20,10,0.93);
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      cursor: zoom-out;
    }

    #lightbox.open { display: flex; }

    #lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border-radius: 6px;
      box-shadow: 0 8px 60px rgba(0,0,0,0.6);
      cursor: default;
    }

    #lightbox-close {
      position: fixed;
      top: 1.2rem;
      right: 1.5rem;
      font-size: 2.2rem;
      color: rgba(245,240,232,0.8);
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s;
      z-index: 1000;
      background: none;
      border: none;
    }

    #lightbox-close:hover { color: var(--amber-light); }

    .lb-nav {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(44,74,46,0.55);
      border: none;
      color: white;
      font-size: 2rem;
      padding: 0.6rem 1rem;
      border-radius: 4px;
      cursor: pointer;
      z-index: 1000;
      transition: background 0.2s;
    }

    .lb-nav:hover { background: var(--green-mid); }
    #lb-prev { left: 1rem; }
    #lb-next { right: 1rem; }

    /* ── CONTACT ── */
    /* Fixed: was visually bleeding into gallery; now clearly distinct with own background and padding */
    #contact {
      background: var(--green-dark);
      padding: 3rem 2rem;
      /* Ensure clear visual separation from the gallery above */
      border-top: 4px solid var(--amber);
    }

    #contact .section-title { color: var(--cream); }

    /* Fixed: removed orphaned duplicate property block that was hiding this text */
    #contact .subtitle {
      text-align: center;
      color: rgba(245,240,232,0.88);
      font-weight: 300;
      margin-bottom: 1.75rem;
      font-size: 0.97rem;
      line-height: 1.9;
    }

    .contact-wrap {
      max-width: 600px;
      margin: 0 auto;
      background: var(--white);
      border-radius: 12px;
      padding: 2rem 2.4rem;
      box-shadow: 0 8px 40px rgba(0,0,0,0.25);
    }

    .form-group { margin-bottom: 1.1rem; }

    .form-group label {
      display: block;
      font-weight: 700;
      font-size: 0.8rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--green-dark);
      margin-bottom: 0.35rem;
    }

    .required { color: var(--amber); }
    .optional { color: #999; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.8rem; }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.7rem 0.9rem;
      border: 1.5px solid var(--cream-dark);
      border-radius: var(--radius);
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      color: var(--text-dark);
      background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--green-mid);
      box-shadow: 0 0 0 3px rgba(74,124,89,0.18);
      background: var(--white);
    }

    .form-group textarea { resize: vertical; min-height: 85px; }

    .date-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .date-row .date-field label {
      font-size: 0.76rem;
      text-transform: none;
      letter-spacing: 0;
      font-weight: 400;
      color: #666;
      margin-bottom: 0.25rem;
    }

    @media (max-width: 480px) {
      .date-row { grid-template-columns: 1fr; }
    }

    .form-btn {
      width: 100%;
      background: var(--amber);
      color: var(--white);
      font-family: 'Lato', sans-serif;
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 0.85rem;
      border: none;
      border-radius: var(--radius);
      cursor: pointer;
      margin-top: 0.4rem;
      transition: background 0.2s, transform 0.15s;
    }

    .form-btn:hover { background: var(--amber-light); transform: translateY(-1px); }

    #msg {
      text-align: center;
      margin-top: 1rem;
      font-weight: 700;
      min-height: 1.4em;
      font-size: 0.95rem;
    }

    /* ── REVIEWS ── */
    #reviews { background: var(--cream); padding: 2.5rem 2rem; }

    .reviews-carousel-outer {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 2.5rem;
    }

    .reviews-carousel-track {
      overflow: hidden;
      border-radius: 10px;
    }

    .reviews-carousel {
      display: flex;
      transition: transform 0.35s ease;
      will-change: transform;
    }

    .review-slide {
      flex: 0 0 100%;
      min-width: 0;
      display: flex;
      align-items: center;
      gap: 1.1rem;
      background: var(--white);
      padding: 0.9rem 1.3rem;
      box-sizing: border-box;
      white-space: nowrap;
    }

    .review-slide .rev-avatar {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .review-slide .rev-name {
      font-family: 'Playfair Display', serif;
      font-size: 0.9rem;
      color: var(--green-dark);
      font-weight: 700;
      flex-shrink: 0;
      min-width: 100px;
    }

    .review-slide .rev-stars {
      color: #f4b400;
      font-size: 0.9rem;
      flex-shrink: 0;
      letter-spacing: 1px;
    }

    .review-slide .rev-quote {
      color: var(--text-body);
      font-size: 0.9rem;
      overflow: hidden;
      text-overflow: ellipsis;
      flex: 1;
      white-space: nowrap;
    }

    .review-slide .rev-date {
      flex-shrink: 0;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--amber);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .rev-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--green-dark);
      color: var(--white);
      border: none;
      border-radius: 50%;
      width: 34px;
      height: 34px;
      font-size: 1.2rem;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      z-index: 2;
    }

    .rev-arrow:hover { background: var(--green-mid); }
    .rev-arrow.prev { left: -18px; }
    .rev-arrow.next { right: -18px; }

    .rev-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 0.8rem;
    }

    .rev-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cream-dark);
      border: none;
      cursor: pointer;
      transition: background 0.2s;
    }

    .rev-dot.active { background: var(--amber); }

    .review-source-link {
      display: block;
      text-align: center;
      margin-bottom: 1.1rem;
      font-size: 0.85rem;
      color: var(--text-body);
    }

    .review-source-link a {
      color: var(--amber);
      font-weight: 700;
      text-decoration: none;
    }

    .review-source-link a:hover { text-decoration: underline; }

    .review-rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--white);
      border-radius: 30px;
      padding: 0.35rem 1rem;
      box-shadow: var(--shadow);
      margin: 0 auto 1.25rem;
    }

    .review-rating-badge .stars { color: #f4b400; font-size: 0.95rem; letter-spacing: 2px; }
    .review-rating-badge span { font-size: 0.82rem; color: var(--text-body); font-weight: 700; }

    /* ── FOOTER ── */
    footer {
      background: #1a2e1c;
      color: rgba(245,240,232,0.75);
      text-align: center;
      padding: 1.5rem 1rem;
      font-size: 0.85rem;
      line-height: 2;
    }

    footer a { color: var(--amber-light); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* ── RESPONSIVE ── */
    @media (max-width: 810px) {
      nav { padding: 0 1.2rem; }
      nav .logo { font-size: 0.95rem; }
      nav ul a { padding: 0.4rem 0.55rem; font-size: 0.75rem; }
      section { padding: 2rem 1.2rem; }
      .contact-wrap { padding: 1.6rem 1.3rem; }
      .rev-arrow.prev { left: -12px; }
      .rev-arrow.next { right: -12px; }
    }

    @media (max-width: 520px) {
      nav ul { gap: 0; }
      nav ul a { letter-spacing: 0; font-size: 0.7rem; padding: 0.35rem 0.4rem; }
      .reviews-carousel-outer { padding: 0 1.5rem; }
      .rev-arrow.prev { left: -4px; }
      .rev-arrow.next { right: -4px; }
      /* Hero text stays readable on small phones */
      #home { height: clamp(240px, 55vw, 320px); }
    }