/* ==========================================================================
   home.css — Page-specific layout for the landing page (index.html)
   --------------------------------------------------------------------------
   Sections unique to the home page: hero, about split, gallery, CTA band,
   location. Reusable blocks live in components.css. Depends on tokens.css,
   base.css, components.css.
   ========================================================================== */

/* ── HERO ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8.5rem 0 5.5rem;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(155,216,60,0.28), transparent 60%),
    linear-gradient(180deg, var(--sky) 0%, #fff 78%);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); }
.hero h1 .heal { color: var(--blue); }
.hero h1 .amp { color: var(--blue-ink); }
.hero h1 .hap { color: var(--green-deep); }
.hero-lede { font-size: 1.2rem; color: var(--ink-soft); max-width: 30ch; }

.facts { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1.6rem 0; }
.fact {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius-pill); padding: 0.5rem 1rem;
  font-weight: 500; font-size: 0.95rem; box-shadow: var(--shadow-sm);
}
.fact svg { width: 18px; height: 18px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.5rem; }

.hosted { display: flex; align-items: center; gap: 0.75rem; margin-top: 2rem; color: var(--ink-soft); font-size: 0.9rem; }
.hosted img { width: 52px; height: 52px; object-fit: contain; }

.hero-art { display: flex; justify-content: center; }
/* Wrapper provides the positioning context so the emblem can overflow the
   photo corner without being clipped by the figure's overflow:hidden. */
.hero-photo-wrap { position: relative; width: 100%; max-width: 360px; }
.hhd-logo.accent {
  position: absolute; right: -14px; bottom: -14px;
  width: 88px; height: 88px;
  filter: drop-shadow(0 8px 18px rgba(20,92,160,0.28));
}

/* ── ABOUT / SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.about-points { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.9rem; }
.about-points li { display: flex; gap: 0.75rem; align-items: flex-start; }
.about-points .tick {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(155,216,60,0.20); color: var(--green-deep);
  display: grid; place-items: center; font-size: 0.85rem; margin-top: 2px;
}
.tri-towns { display: flex; gap: 0.5rem; margin-top: 1.1rem; flex-wrap: wrap; justify-content: center; }
.tri-towns span { background: rgba(43,57,201,0.10); color: var(--blue-deep); border: 1px solid rgba(43,57,201,0.20); border-radius: var(--radius-pill); padding: 0.35rem 0.9rem; font-size: 0.85rem; font-weight: 500; }

/* ── GALLERY ── */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }

/* ── CTA BAND (reusable colored callout) ── */
.cta-band { background: var(--grad-cool); color: #fff; text-align: center; border-radius: var(--radius-lg); padding: 3.5rem 2rem; box-shadow: var(--shadow-md); }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); }
.cta-band p { max-width: 56ch; margin: 0 auto 1.6rem; opacity: 0.95; }

/* ── LOCATION ── */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: stretch; }
.loc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow-sm); }
.loc-card h3 { font-size: 1.3rem; }
.loc-row { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1rem; }
.loc-row svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 320px; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .facts, .hero-cta { justify-content: center; }
  .hosted { justify-content: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .split { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr; }
}
