/* ==============================================================
   SAMJUBA FARM — styles.css
   Mobile-first, responsive. Edit colour tokens below.
   ============================================================== */

:root {
  /* Brand colours */
  --green: #274C24;
  --green-deep: #1b3618;
  --lime: #DCE85C;
  --cream: #F4EFDF;
  --cream-deep: #E7E1CC;
  --ink: #1d201c;
  --muted: #5a6056;
  --white: #ffffff;

  /* Type */
  --font-serif: "Newsreader", "Iowan Old Style", Georgia, serif;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-w: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 32, 18, 0.06), 0 8px 24px rgba(20, 32, 18, 0.06);
  --shadow-md: 0 2px 6px rgba(20, 32, 18, 0.08), 0 18px 40px rgba(20, 32, 18, 0.10);
  --nav-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); text-wrap: pretty; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; text-wrap: pretty; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ============== Reveal-on-scroll animation ============== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms cubic-bezier(.2,.7,.2,1),
    transform 700ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============== Navigation ============== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(244, 239, 223, 0);
  backdrop-filter: blur(0);
  transition: background 300ms ease, backdrop-filter 300ms ease, box-shadow 300ms ease;
}
.nav.is-stuck {
  background: rgba(244, 239, 223, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  box-shadow: 0 1px 0 rgba(39, 76, 36, 0.08);
}
.nav__inner {
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  transition: color 300ms ease;
}
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: inherit;
  white-space: nowrap;
}
.nav__brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 2px;
  white-space: nowrap;
}
.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  /* subtle pop on light cream when nav is stuck */
  transition: filter 300ms ease;
}
.logo-mark { color: var(--green); display: inline-flex; }

/* Hero state: nav text white over photo */
.nav:not(.is-stuck) .nav__brand,
.nav:not(.is-stuck) .nav__brand-sub,
.nav:not(.is-stuck) .nav__links a:not(.nav__cta) {
  color: var(--cream);
}
.nav:not(.is-stuck) .logo-mark { color: var(--lime); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 200ms ease, opacity 200ms ease;
  white-space: nowrap;
}
.nav__links a:hover { opacity: 0.7; }
.nav__cta {
  background: var(--green);
  color: var(--cream) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 200ms ease, transform 200ms ease;
}
.nav__cta:hover { background: var(--green-deep); transform: translateY(-1px); opacity: 1 !important; }

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease, background 200ms ease;
}
.nav:not(.is-stuck) .nav__burger span { background: var(--cream); }
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    transform: translateY(-110%);
    transition: transform 320ms cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 12px 24px rgba(20, 32, 18, 0.08);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(39, 76, 36, 0.08);
    color: var(--ink) !important;
    font-size: 1.05rem;
  }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__cta {
    margin-top: 12px;
    text-align: center;
    color: var(--cream) !important;
    background: var(--green);
    border-bottom: 0 !important;
  }
  /* When mobile menu is open, force nav background */
  .nav.is-menu-open {
    background: var(--cream);
    box-shadow: 0 1px 0 rgba(39, 76, 36, 0.08);
  }
  .nav.is-menu-open .nav__brand,
  .nav.is-menu-open .nav__brand-sub { color: var(--green); }
  .nav.is-menu-open .logo-mark { color: var(--green); }
  .nav.is-menu-open .nav__burger span { background: var(--ink); }
}

/* ============== Buttons ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, box-shadow 200ms ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--lime);
  color: var(--green-deep);
  box-shadow: 0 6px 24px rgba(220, 232, 92, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #e6f072;
  box-shadow: 0 10px 28px rgba(220, 232, 92, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244, 239, 223, 0.6);
}
.btn--ghost:hover {
  background: rgba(244, 239, 223, 0.12);
  border-color: var(--cream);
}
.wa-icon { flex-shrink: 0; }

/* ============== Hero ============== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.05);
  animation: heroKenBurns 18s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 32, 18, 0.55) 0%, rgba(20, 32, 18, 0.35) 40%, rgba(20, 32, 18, 0.75) 100%);
  z-index: -1;
}
.hero__content {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 32px) var(--gutter) 80px;
  text-align: center;
}
.hero__logo { margin: 0 auto 28px; display: flex; justify-content: center; }
.hero__logo-img {
  height: clamp(180px, 28vw, 280px);
  width: auto;
  max-width: 88vw;
  filter: drop-shadow(0 12px 36px rgba(0, 0, 0, 0.3));
}
.hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin: 0 0 16px;
  color: var(--lime);
  opacity: 0.9;
}
.hero__title {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  font-weight: 500;
  margin: 0 0 12px;
  color: var(--cream);
  letter-spacing: -0.015em;
}
.hero__title-hi {
  display: block;
  font-size: 0.42em;
  font-style: italic;
  color: var(--lime);
  margin-top: 4px;
  letter-spacing: 0;
}
.hero__tagline {
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  max-width: 640px;
  margin: 0 auto 8px;
  color: rgba(244, 239, 223, 0.92);
}
.hero__tagline-hi {
  font-size: 0.95rem;
  color: rgba(220, 232, 92, 0.85);
  margin: 0 auto 36px;
  letter-spacing: 0.02em;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1.5px solid rgba(244, 239, 223, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--cream);
  border-radius: 2px;
  animation: scrollHint 1.8s ease-in-out infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 1; }
  60%      { transform: translateY(10px); opacity: 0; }
  61%, 99% { opacity: 0; }
}
@media (max-width: 600px) {
  .hero__scroll { display: none; }
}

/* ============== Section base ============== */
.section {
  padding: clamp(72px, 11vw, 120px) 0;
  background: var(--white);
}
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--green);
  color: var(--cream);
}
.section--dark h2,
.section--dark h3 { color: var(--cream); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  margin: 0 0 14px;
}
.eyebrow--on-dark { color: var(--lime); }

.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head__lede {
  font-size: 1.08rem;
  color: var(--muted);
  margin-top: 18px;
}
.section--dark .section-head__lede { color: rgba(244, 239, 223, 0.75); }

/* ============== About ============== */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 880px) {
  .about { grid-template-columns: 1fr 1.05fr; gap: 80px; }
}
.about__copy h2 { margin-bottom: 20px; }
.about__copy p { color: var(--muted); font-size: 1.06rem; }
.about__copy strong { color: var(--ink); }

.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}
.about__photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.about__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about__photo--tall  { grid-row: span 2; aspect-ratio: 3 / 5; }
.about__photo--wide  { aspect-ratio: 5 / 4; }
.about__photo--small { aspect-ratio: 5 / 4; }

/* ============== Process / pillars ============== */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px)  { .pillars { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .pillars { grid-template-columns: repeat(4, 1fr); } }

.pillar {
  background: rgba(244, 239, 223, 0.06);
  border: 1px solid rgba(244, 239, 223, 0.12);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: background 300ms ease, transform 300ms ease, border-color 300ms ease;
}
.pillar:hover {
  background: rgba(244, 239, 223, 0.10);
  border-color: rgba(220, 232, 92, 0.3);
  transform: translateY(-3px);
}
.pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(220, 232, 92, 0.15);
  color: var(--lime);
  margin-bottom: 18px;
}
.pillar h3 {
  color: var(--cream);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.pillar p {
  color: rgba(244, 239, 223, 0.78);
  font-size: 0.96rem;
  margin: 0;
  line-height: 1.55;
}

/* ============== Products ============== */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.product {
  background: var(--white);
  border: 1px solid rgba(39, 76, 36, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(39, 76, 36, 0.18);
}
.product__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-deep);
}
.product__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.product:hover .product__image img { transform: scale(1.04); }
.product__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  font-weight: 600;
}
.product h3 {
  font-size: 1.3rem;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 2px 0 4px;
}
.product__hi {
  font-size: 0.75em;
  color: var(--muted);
  font-style: italic;
  font-weight: 400;
}
.product p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0 0 10px;
  flex: 1;
}
.product__price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--green);
}

/* ============== Gallery ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 720px)  { .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; } }
.gallery__item {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--cream-deep);
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}
.gallery__item:hover img { transform: scale(1.06); }
/* Vary tile sizes a touch on wider screens for visual rhythm */
@media (min-width: 1000px) {
  .gallery__item:nth-child(3) { grid-row: span 2; aspect-ratio: 1 / 2; }
  .gallery__item:nth-child(6) { grid-column: span 2; aspect-ratio: 2 / 1; }
}

/* ============== Order steps ============== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-bottom: 56px;
}
@media (min-width: 820px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(39, 76, 36, 0.08);
  transition: transform 280ms ease, box-shadow 280ms ease;
}
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.step__num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--green);
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.step h3 { margin-bottom: 8px; font-size: 1.25rem; }
.step p { color: var(--muted); margin: 0; }

.order-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 36px;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 40px;
}
@media (min-width: 820px) { .order-info { grid-template-columns: repeat(3, 1fr); } }
.order-info h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--lime);
}
.order-info p { color: rgba(244, 239, 223, 0.82); margin: 0; font-size: 0.96rem; }
.order-info strong { color: var(--cream); }

.order-cta { text-align: center; }

/* ============== Testimonials ============== */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 820px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  margin: 0;
  background: rgba(244, 239, 223, 0.06);
  border: 1px solid rgba(244, 239, 223, 0.14);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 4px; left: 18px;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  color: var(--lime);
  opacity: 0.5;
  line-height: 1;
}
.testimonial blockquote {
  margin: 18px 0 22px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--cream);
  font-style: italic;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testimonial figcaption strong { color: var(--cream); font-weight: 600; }
.testimonial figcaption span { color: rgba(244, 239, 223, 0.6); font-size: 0.88rem; }

/* ============== Contact ============== */
.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 880px) { .contact { grid-template-columns: 1fr 1.1fr; gap: 64px; } }
.contact__copy h2 { margin-bottom: 18px; }
.contact__copy > p {
  color: var(--muted);
  font-size: 1.06rem;
  margin-bottom: 32px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact__list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(39, 76, 36, 0.12);
}
.contact__list li:last-child { border-bottom: 0; }
.contact__label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green);
}
.contact__list a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid rgba(39, 76, 36, 0.25);
  transition: color 200ms ease, border-color 200ms ease;
}
.contact__list a:hover { color: var(--green); border-color: var(--green); }

.contact__map {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-deep);
  box-shadow: var(--shadow-sm);
}
.contact__map iframe {
  width: 100%; height: 100%;
  border: 0;
}
.contact__map-placeholder {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact__map-placeholder svg { position: absolute; inset: 0; }
.contact__map-pin {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(20, 32, 18, 0.18);
  font-weight: 600;
  color: var(--green);
}
.contact__map-note {
  position: absolute;
  bottom: 14px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
  background: rgba(244, 239, 223, 0.85);
  padding: 4px 10px;
  border-radius: 4px;
}

/* ============== Footer ============== */
.footer {
  background: var(--green-deep);
  color: var(--cream);
  padding: 56px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 820px) {
  .footer__inner {
    grid-template-columns: auto 1fr auto;
    text-align: left;
    align-items: center;
  }
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}
@media (min-width: 820px) { .footer__brand { justify-content: flex-start; } }
.footer__logo-img {
  height: 68px;
  width: auto;
  display: block;
}
.footer__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0;
  color: var(--cream);
}
.footer__tag {
  font-size: 0.84rem;
  color: rgba(244, 239, 223, 0.6);
  margin: 2px 0 0;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.footer__links a {
  color: rgba(244, 239, 223, 0.75);
  font-size: 0.92rem;
  transition: color 200ms ease;
}
.footer__links a:hover { color: var(--lime); }
.footer__social {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 223, 0.2);
  color: var(--cream);
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.footer__social a:hover {
  background: var(--lime);
  color: var(--green-deep);
  border-color: var(--lime);
}
.footer__copy {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 239, 223, 0.1);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(244, 239, 223, 0.5);
}

/* ============== Image placeholders ==============
   Every <div class="ph" data-label="..."> renders a branded placeholder
   with the label baked in. To use a real photo, replace the <div> with:
     <img src="images/your-photo.jpg" alt="..." loading="lazy" />
   ================================================ */
.ph {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(135deg,
      rgba(39, 76, 36, 0.05) 0 8px,
      rgba(39, 76, 36, 0.09) 8px 16px),
    var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--green);
}
.ph::before {
  /* small leaf mark in the corner */
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 22px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M20 4 C 30 10, 34 22, 20 36 C 6 22, 10 10, 20 4 Z' fill='black'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'><path d='M20 4 C 30 10, 34 22, 20 36 C 6 22, 10 10, 20 4 Z' fill='black'/></svg>") center/contain no-repeat;
  opacity: 0.3;
}
.ph::after {
  content: attr(data-label);
  font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  text-align: center;
  padding: 8px 14px;
  background: rgba(244, 239, 223, 0.7);
  border: 1px dashed rgba(39, 76, 36, 0.3);
  border-radius: 4px;
  max-width: 80%;
  line-height: 1.3;
}
/* Placeholder on dark backgrounds (gallery etc never on dark, but just in case) */
.section--dark .ph {
  background:
    repeating-linear-gradient(135deg,
      rgba(220, 232, 92, 0.05) 0 8px,
      rgba(220, 232, 92, 0.09) 8px 16px),
    rgba(244, 239, 223, 0.06);
  color: var(--lime);
}
.section--dark .ph::after {
  color: var(--lime);
  background: rgba(20, 32, 18, 0.5);
  border-color: rgba(220, 232, 92, 0.3);
}

/* Hero background placeholder — full-bleed landscape gradient */
.hero__bg--placeholder {
  background:
    linear-gradient(180deg,
      #e8d99a 0%,
      #c5cf7e 18%,
      #8db463 38%,
      #5a8a4a 60%,
      #3a6837 82%,
      #274C24 100%);
  position: relative;
}
.hero__bg--placeholder::after {
  content: "REPLACE: hero farm photo (1600×900 landscape)";
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--cream);
  background: rgba(20, 32, 18, 0.5);
  padding: 8px 14px;
  border: 1px dashed rgba(244, 239, 223, 0.5);
  border-radius: 4px;
  white-space: nowrap;
}
/* subtle horizon stripes for landscape feel */
.hero__bg--placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(180deg,
      transparent 0 80px,
      rgba(255,255,255,0.03) 80px 82px),
    repeating-linear-gradient(90deg,
      transparent 0 120px,
      rgba(39, 76, 36, 0.04) 120px 121px);
}

/* ============== Inquire section ============== */
.inquire { display: flex; justify-content: center; }
.inquire__card {
  max-width: 640px;
  text-align: center;
  padding: 12px 8px;
}
.inquire__card h2 { margin: 8px 0 18px; }
.inquire__lede {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 auto 30px;
  max-width: 540px;
}
.inquire__alt { margin: 22px 0 0; }
.inquire__alt a {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--green);
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(39, 76, 36, 0.2);
  transition: color 200ms ease, border-color 200ms ease;
}
.inquire__alt a:hover { color: var(--green-deep); border-color: var(--green-deep); }

/* ============== Follow / Instagram callout ============== */
.follow { display: flex; justify-content: center; }
.follow__card {
  max-width: 720px;
  text-align: center;
  padding: 12px 8px;
}
.follow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px; height: 72px;
  border-radius: 20px;
  background: var(--green);
  color: var(--lime);
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(39, 76, 36, 0.18);
  transform: rotate(-3deg);
}
.follow__card h2 { margin-bottom: 18px; }
.follow__lede {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0 auto 26px;
  max-width: 540px;
}
.follow__btn { margin-top: 4px; }
.follow__alt {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.follow__alt a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1px solid rgba(39, 76, 36, 0.25);
  transition: color 200ms ease, border-color 200ms ease;
}
.follow__alt a:hover { color: var(--green-deep); border-color: var(--green-deep); }

/* Instagram bio chips */
.bio-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 30px;
  max-width: 620px;
}
.bio-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 12px;
  background: var(--white);
  border: 1px solid rgba(39, 76, 36, 0.14);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(20, 32, 18, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.bio-chips li:hover {
  transform: translateY(-2px);
  border-color: rgba(39, 76, 36, 0.28);
  box-shadow: 0 4px 12px rgba(20, 32, 18, 0.06);
}
.bio-chips__emoji {
  font-size: 1.05rem;
  line-height: 1;
}

/* ============== Floating WhatsApp ============== */
.fab-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(20, 32, 18, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.fab-wa:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5), 0 2px 6px rgba(20, 32, 18, 0.18);
}
.fab-wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 560px) {
  .fab-wa { padding: 14px; }
  .fab-wa__label { display: none; }
}
