/* =========================================================================
   Lighthouse — 2026 home page custom sections
   Sections inserted at the top of #content per Apr 2026 mockup
   ========================================================================= */

:root {
  --lh-yellow: #fed327;
  --lh-yellow-hover: #f1c101;
  --lh-dark: #2d2d2d;
  --lh-grey: #5c5d60;
  --lh-text: #4a4a4a;
}

/* ---------- Shared ---------- */
.lh-section-title {
  font-family: gill-sans-nova, "Gill Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--lh-dark);
  margin: 0 0 1.5em;
  letter-spacing: -0.01em;
}
.lh-section-title--center {
  text-align: center;
}

.lh-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75em 0;
}
.lh-bullets li {
  position: relative;
  padding-left: 1.25em;
  margin: 0.25em 0;
  color: var(--lh-text);
  line-height: 1.6;
}
.lh-bullets li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--lh-text);
}

.lh-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2em 0 0;
}
.lh-cta-row--center {
  justify-content: center;
}

/* New 2026 sections: keep button labels title-cased (override site default lowercase) */
.lh-2026 .button {
  text-transform: none;
  letter-spacing: 0.02em;
}

/* dark grey pill button — companion to existing .button (yellow) */
.button.button--dark {
  background: var(--lh-grey);
  border-color: var(--lh-grey);
  color: #fff;
}
.button.button--dark:hover,
.button.button--dark:focus,
.button.button--dark:active {
  background: var(--lh-dark);
  border-color: var(--lh-dark);
  color: #fff;
}

/* Make sure new section text reads well */
.lh-2026 p {
  color: var(--lh-text);
  line-height: 1.6;
  margin: 0 0 1em;
}
.lh-2026 strong {
  color: var(--lh-dark);
}

/* ---------- What is Plan Management? ---------- */
.lh-pm-intro {
  background: #fff;
}
.lh-pm-intro__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Why choose Lighthouse? ---------- */
.lh-why {
  /* uses .bg-primary for yellow */
}
.lh-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem 3rem;
  margin: 1em 0 2.5em;
}
@media (min-width: 48em) {
  .lh-why__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.lh-why__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.25rem;
  align-items: start;
}
.lh-why__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lh-dark);
}
.lh-why__icon svg {
  width: 60px;
  height: 60px;
  stroke: var(--lh-dark);
  fill: none;
  stroke-width: 1.5;
}
.lh-why__text h3 {
  font-family: gill-sans-nova, "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.4em;
  color: var(--lh-dark);
}
.lh-why__text p {
  margin: 0;
  color: var(--lh-dark);
  line-height: 1.5;
}

/* ---------- Our Story ---------- */
.lh-story {
  background: #fff;
  position: relative;
}
.lh-story__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 62em) {
  .lh-story__layout {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.lh-story__copy {
  max-width: 480px;
}
.lh-story__copy .lh-section-title {
  text-align: center;
  margin-bottom: 1em;
}
.lh-story__image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 18px 18px 0 0 var(--lh-yellow);
  margin-right: 18px;
  margin-bottom: 18px;
  aspect-ratio: 4 / 3;
}
.lh-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- How To Get Started ---------- */
.lh-howto {
  background: #fff;
}
.lh-howto__inner {
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- Get Started (intro above form) ---------- */
.lh-getstarted {
  background: #fff;
}
.lh-getstarted__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.lh-getstarted .lh-section-title {
  margin-bottom: 1em;
}
.lh-getstarted__lead {
  font-size: 1.1rem;
  color: var(--lh-text);
  margin: 0 0 0.4em;
  line-height: 1.5;
}
.lh-getstarted__lead + .lh-getstarted__lead {
  margin-bottom: 1.5em;
}
.lh-getstarted .lh-cta-row {
  margin: 1.5em 0 2.5em;
}
.lh-getstarted__copy {
  max-width: 560px;
  margin: 0 auto;
  color: var(--lh-text);
}
.lh-getstarted__copy p {
  line-height: 1.6;
  margin: 0 0 1em;
}

/* ---------- FAQs ---------- */
.lh-faqs {
  /* uses .bg-primary for yellow */
}
.lh-faqs .lh-section-title {
  margin-bottom: 1em;
}
.lh-faqs__list {
  max-width: 820px;
  margin: 0 auto;
}
.lh-faq {
  border-bottom: 1px solid var(--lh-dark);
  padding: 1.4rem 0;
}
.lh-faq[open] {
  padding-bottom: 1.8rem;
}
.lh-faq summary {
  list-style: none;
  cursor: pointer;
  font-family: gill-sans-nova, "Gill Sans", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--lh-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.lh-faq summary::-webkit-details-marker {
  display: none;
}
.lh-faq summary:after {
  content: "+";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}
.lh-faq[open] summary:after {
  content: "−";
}
.lh-faq__answer {
  margin-top: 0.9rem;
  color: var(--lh-dark);
  line-height: 1.6;
}
.lh-faq__answer p {
  color: var(--lh-dark);
  margin: 0 0 0.75em;
}
.lh-faq__answer p:last-child {
  margin-bottom: 0;
}
