/* ── FARM PAGE ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Quattrocento', Georgia, serif; background: #1D1D15; color: #DFDACC; overflow-x: clip; }

/* FARM GALLERY — photos left, text right */
.farm-gallery {
  display: flex;
  align-items: flex-start;
  background-color: #1D1D15;
}

/* LEFT: sticky photo column */
.farm-gallery .gallery-photos-col {
  width: 50%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  border-radius: 6px;
}
.farm-gallery .desktopPhoto {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
}

/* RIGHT: scrollable text column */
.farm-gallery .desktopContent { flex: 1; min-width: 0; }
.farm-gallery .desktopContentSection {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 8vw;
}

/* Reveal image — enlarged, centered above heading */
.farm-gallery .reveal {
  margin: 0 auto 32px;
  overflow: hidden;
  width: 260px;
  height: 185px;
  border-radius: 6px;
}
.farm-gallery .reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Title + line — line goes below the heading */
.farm-gallery .gh-wrap {
  margin-bottom: 28px;
}
.farm-gallery .gh-wrap h2 {
  font-family: 'Quattrocento', serif;
  font-size: 52px;
  font-weight: 400;
  color: #A59350;
  line-height: 1.1;
}
.farm-gallery .gh-line {
  width: 100%;
  height: 1px;
  background: #A59350;
  margin-top: 16px;
}
.farm-gallery .desktopContentSection p {
  font-family: 'Quattrocento', serif;
  font-size: 16px;
  line-height: 1.75;
  color: #DFDACC;
  margin-bottom: 14px;
}
.farm-gallery .desktopContentSection p strong { font-weight: 700; color: #fff; }

.mob-photo { display: none; }

@media (max-width: 900px) {
  .farm-gallery { flex-direction: column; }
  .farm-gallery .gallery-photos-col { display: none; }
  .farm-gallery .desktopContentSection { min-height: auto; padding: 40px 6vw 56px; }
  .farm-gallery .gh-wrap h2 { font-size: 36px; }
  .farm-gallery .reveal { display: none; }
  .mob-photo {
    display: block;
    margin: 0 calc(-6vw + 12px) 28px;
  }
  .mob-photo img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 6px;
  }
}

footer { margin-top: 0; }
