/* ============================================================
   NEHAMRIT FARMS — SEO landing pages
   Loaded only on the /agro-tourism-near-mumbai style pages, via the
   $PAGE_CSS hook in includes/header.php. Reuses the site's existing tokens
   and buttons; adds only the layouts those pages need.
   ============================================================ */

/* ---------- Hero ---------- */
/* The base .page-hero::before carries the opacity and sizing; each landing
   page passes its own photograph through the --lp-hero custom property so we
   don't need a CSS rule per page. Bottom padding is trimmed from the base
   100px because the fact strip now sits inside the hero and adds its own. */
.lp-hero { padding-bottom: 62px; }
.lp-hero::before { background-image: var(--lp-hero); }
.lp-hero h1 em { font-style: italic; font-weight: 400; color: #ffe9c2; }
.lp-hero__intro { max-width: 660px; }

/* ---------- Fact strip (inside the hero, over the photograph) ---------- */
.lp-facts__grid {
  list-style: none; margin: 54px 0 0; padding: 26px 0 0;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 26px 20px;
}
.lp-facts__grid li { display: flex; flex-direction: column; gap: 2px; }
.lp-facts__grid strong {
  font-family: var(--font-num); font-variant-numeric: tabular-nums lining-nums;
  font-size: 25px; font-weight: 700; color: #fff; line-height: 1.15;
}
.lp-facts__grid span {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

/* ---------- Prose block ---------- */
.lp-prose { padding: 92px 0 0; }
.lp-prose .container { max-width: 820px; }
.lp-prose h2 { margin: 6px 0 22px; }
.lp-prose__body p { font-size: 17px; color: var(--ink-soft); margin: 0 0 1.15em; }
.lp-prose__body p:last-child { margin-bottom: 0; }
.lp-prose__body strong { color: var(--ink); font-weight: 700; }
.lp-prose__body ul { margin: 0 0 1.2em; padding-left: 20px; color: var(--ink-soft); font-size: 17px; }
.lp-prose__body li { margin-bottom: .45em; }
.lp-prose__body a { border-bottom: 1px solid var(--teal-line); }
.lp-prose__body a:hover { color: var(--green); border-bottom-color: var(--green); }

/* Pull-quote — the "say the unflattering thing" lines */
.lp-note {
  margin: 30px 0; padding: 22px 26px;
  background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.lp-note p { margin: 0; font-size: 16.5px; color: var(--ink); }

/* ---------- Image + text split ---------- */
.lp-split { padding: 88px 0 0; }
.lp-split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.lp-split--left .lp-split__media { order: -1; }
.lp-split__copy h2 {
  font-family: var(--font-display); font-size: clamp(28px, 3vw, 40px); font-weight: 900;
  color: var(--teal); margin: 0 0 18px; line-height: 1.18;
}
.lp-split__copy h2 em { font-style: italic; font-weight: 400; color: var(--green); }
.lp-split__copy p { font-size: 16.5px; color: var(--ink-soft); margin: 0 0 1.1em; }
.lp-split__copy p:last-child { margin-bottom: 0; }
.lp-split__copy ul { margin: 0 0 1.1em; padding-left: 20px; color: var(--ink-soft); font-size: 16.5px; }
.lp-split__copy li { margin-bottom: .4em; }
.lp-split__copy a { border-bottom: 1px solid var(--teal-line); }
.lp-split__media img {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow);
  aspect-ratio: 4 / 3; object-fit: cover;
}

/* ---------- Card grid ---------- */
.lp-cards { padding: 92px 0 0; }
.lp-cards__head { max-width: 720px; margin: 0 0 40px; }
.lp-cards__head h2 { margin: 6px 0 14px; }
.lp-cards__head .lead { margin: 0; }
.lp-cards__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.lp-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.lp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.lp-card h3 {
  font-family: var(--font-display); font-size: 21px; color: var(--teal);
  margin: 0 0 10px; line-height: 1.25;
}
.lp-card p { margin: 0; font-size: 15.5px; color: var(--ink-soft); }

/* ---------- Rooms band ---------- */
.lp-rooms { padding: 92px 0 0; }

/* ---------- FAQ ---------- */
.lp-faq { padding: 92px 0 0; }
.lp-faq .container { max-width: 900px; }
.lp-faq h2 { margin: 0 0 28px; }
.lp-faq details { border-bottom: 1px solid var(--line); padding: 22px 0; }
.lp-faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
  font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--teal);
}
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary span {
  font-family: var(--font-body); font-size: 30px; color: var(--green);
  transition: transform .3s var(--ease); line-height: 1; flex: 0 0 auto;
}
.lp-faq details[open] summary span { transform: rotate(45deg); }
.lp-faq__a { margin: 16px 0 0; color: var(--ink-soft); font-size: 16.5px; max-width: 780px; }
.lp-faq__a p { margin: 0 0 .9em; }
.lp-faq__a p:last-child { margin-bottom: 0; }
.lp-faq__a a { border-bottom: 1px solid var(--teal-line); }

/* ---------- Closing CTA ---------- */
.lp-cta { margin: 100px 0 0; padding: 84px 0; background: var(--teal); color: #fff; text-align: center; }
.lp-cta h2 {
  font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); font-weight: 900;
  margin: 0 0 14px; color: #fff;
}
.lp-cta > .container > p { max-width: 620px; margin: 0 auto 30px; color: rgba(255,255,255,.9); font-size: 17px; }
.lp-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.lp-cta__phone { margin: 26px 0 0 !important; font-size: 15px; color: rgba(255,255,255,.75) !important; }
.lp-cta__phone a { color: #fff; border-bottom: 1px solid rgba(255,255,255,.4); }

/* ---------- Related links ---------- */
.lp-related { padding: 78px 0; background: var(--cream); }
.lp-related h2 {
  font-family: var(--font-display); font-size: 26px; color: var(--teal); margin: 0 0 26px;
}
.lp-related__grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px;
}
.lp-related__grid a {
  display: block; height: 100%; padding: 20px 22px; background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--r);
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.lp-related__grid a:hover { transform: translateY(-3px); border-color: var(--teal-line); }
.lp-related__grid strong {
  display: block; font-family: var(--font-display); font-size: 17.5px;
  color: var(--teal); margin-bottom: 5px; line-height: 1.3;
}
.lp-related__grid span { display: block; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .lp-split__grid { grid-template-columns: 1fr; gap: 32px; }
  .lp-split--left .lp-split__media { order: 0; }
  .lp-split { padding-top: 64px; }
  .lp-prose, .lp-cards, .lp-faq, .lp-rooms { padding-top: 64px; }
  .lp-hero { padding-bottom: 48px; }
  .lp-facts__grid { grid-template-columns: repeat(2, 1fr); gap: 20px 16px; margin-top: 38px; padding-top: 22px; }
  .lp-facts__grid strong { font-size: 21px; }
  .lp-cta { margin-top: 72px; padding: 64px 0; }
  .lp-faq summary { font-size: 18px; }
}
