/* @override 
	https://www.pines-retreat.com/css/landing.css?* */

/* landing.css — Whispering Pines SEO landing pages
 * Loaded only on landing page entries (add to _landing.twig via registerCssFile).
 * Depends on wp.css being loaded first — reuses all CSS custom properties.
 * Never overrides global rules; all selectors are scoped to .lp-* or .lp- prefixed.
 */
/* ═══════════════════════════════════════════════════════════
    FAQ SECTION
 ═══════════════════════════════════════════════════════════ */
 
 .lp-faq {
   background: var(--cm);
   padding: 56px 40px;
   border-top: .5px solid var(--bd);
 }
 
 .lp-faq__inner {
   max-width: 820px;
   margin: 0 auto;
 }
 
 .lp-faq__heading {
   font-family: var(--fs);
   font-size: 28px;
   font-weight: 400;
   color: var(--bk);
   margin: 8px 0 2rem;
 }
 
 /* faq-list, faq-item, faq-q, faq-a all inherited from wp.css */
 
 @media (max-width: 900px) {
   .lp-faq {
     padding: 40px 24px;
   }
 }
 
 @media (max-width: 600px) {
   .lp-faq {
     padding: 32px 20px;
   }
 }
 
/* ═══════════════════════════════════════════════════════════
   1. HERO
═══════════════════════════════════════════════════════════ */

.lp-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  max-height: 860px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 64px;
  overflow: hidden;
}

.lp-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.lp-hero__bg--fallback {
  background: var(--gd);
}

.lp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,22,14,.15) 0%,
    rgba(14,22,14,.05) 40%,
    rgba(10,18,10,.75) 100%
  );
}

.lp-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 720px;
  width: 100%;
}

/* Reuses .hero-badge from wp.css */

.lp-hero__h1 {
  font-family: var(--fs);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 400;
  line-height: 1.13;
  color: #fff;
  margin: 16px 0 14px;
  letter-spacing: -.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.lp-hero__sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
}

.lp-hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   2. TRUST STRIP  (extends .trust from wp.css)
═══════════════════════════════════════════════════════════ */

/* No additional overrides needed — .trust already handles it.
   .lp-trust is available if you need page-specific tweaks. */

/* ═══════════════════════════════════════════════════════════
   3. INTRO
═══════════════════════════════════════════════════════════ */

.lp-intro {
  background: var(--cr);
  padding: 56px 40px 48px;
  border-bottom: .5px solid var(--bd);
}

.lp-intro__inner {
  max-width: 820px;
  margin: 0 auto;
}

.lp-intro__lead {
  font-size: 16px;
  line-height: 1.85;
  color: var(--bm);
  font-weight: 300;
  margin-bottom: 40px;
}

/* Stats row */

.lp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: .5px solid var(--bd);
  padding-top: 32px;
}

.lp-stat {
  text-align: center;
  padding: 0 12px;
  border-right: .5px solid var(--bd);
}

.lp-stat:last-child {
  border-right: none;
}

.lp-stat__num {
  font-family: var(--fs);
  font-size: 30px;
  font-weight: 400;
  color: var(--gm);
  line-height: 1;
  margin-bottom: 6px;
}

.lp-stat__label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bf);
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   4. MATRIX BODY
═══════════════════════════════════════════════════════════ */

.lp-body {
  background: var(--cr);
  padding: 56px 40px;
}

.lp-body__inner {
  max-width: 820px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   5. REVIEWS STRIP
═══════════════════════════════════════════════════════════ */

.lp-reviews {
  background: var(--cm);
  padding: 56px 40px;
  border-top: .5px solid var(--bd);
}

.lp-reviews__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.lp-reviews__heading {
  font-family: var(--fs);
  font-size: 22px;
  font-weight: 400;
  color: var(--bk);
  text-align: center;
  margin-bottom: 32px;
}

.lp-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
   6. CLOSING CTA
═══════════════════════════════════════════════════════════ */

.lp-cta {
  background: var(--gd);
  padding: 80px 40px;
  text-align: center;
  margin-bottom: 40px;
}

.lp-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.lp-cta__heading {
  font-family: var(--fs);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1.25;
  margin: 10px 0 14px;
}

.lp-cta__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 32px;
}

.lp-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lp-cta__btn-primary {
  background: #fff;
  color: var(--gd);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  text-decoration: none;
  transition: background .2s, color .2s;
}

.lp-cta__btn-primary:hover {
  background: var(--cr);
}

.lp-cta__btn-ghost {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .08em;
  text-decoration: none;
  border-bottom: .5px solid rgba(255,255,255,.35);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}

.lp-cta__btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,.7);
}

.lp-cta__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  flex-wrap: wrap;
}

.lp-cta__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .lp-hero {
    height: 72vh;
    min-height: 460px;
    padding-bottom: 48px;
  }

  .lp-intro {
    padding: 40px 24px 36px;
  }

  .lp-stats {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .lp-stat:nth-child(2) { border-right: none; }
  .lp-stat:nth-child(3) { border-right: .5px solid var(--bd); }
  .lp-stat:nth-child(3),
  .lp-stat:nth-child(4) {
    padding-top: 24px;
    border-top: .5px solid var(--bd);
  }

  .lp-body {
    padding: 40px 24px;
  }

  .lp-reviews {
    padding: 40px 24px;
  }

  .lp-reviews__grid {
    grid-template-columns: 1fr;
  }

  .lp-cta {
    padding: 56px 24px;
  }
}

@media (max-width: 600px) {
  .lp-hero {
    height: 88vh;
    min-height: 420px;
    padding-bottom: 40px;
  }

  .lp-hero__h1 {
    font-size: clamp(28px, 7vw, 38px);
  }

  .lp-hero__btns {
    flex-direction: column;
    gap: 12px;
  }

  .lp-hero__btns .btn-white {
    width: 100%;
    text-align: center;
  }

  .lp-intro {
    padding: 32px 20px 28px;
  }

  .lp-stats {
    grid-template-columns: 1fr 1fr;
  }

  .lp-body {
    padding: 32px 20px;
  }

  .lp-reviews {
    padding: 32px 20px;
  }

  .lp-cta {
    padding: 48px 20px;
  }

  .lp-cta__btns {
    flex-direction: column;
  }

  .lp-cta__btn-primary {
    width: 100%;
    text-align: center;
  }
}
