/* ==========================================================================
   High Cliffs POA — pages.css
   Home hero + page-specific arrangements
   ========================================================================== */

/* --------------------------------------------------------------------------
   Home hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  /* Gradient fallback shows even before/without the photo */
  background: linear-gradient(160deg, #16281F 0%, #22382C 55%, #35503F 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg,
    rgba(20, 32, 25, 0.88) 0%,
    rgba(20, 32, 25, 0.55) 48%,
    rgba(20, 32, 25, 0.20) 100%);
}
.hero__content {
  max-width: 640px;
  padding-block: clamp(5rem, 12vw, 8rem);
  animation: hero-rise 900ms ease both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: none; }
}
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; margin-bottom: 1.4rem; }
.hero p { color: #D5DCD4; font-size: 1.15rem; }
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* Ridgeline silhouette at the base of the hero */
.hero__ridge {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 70px;
  color: var(--cloud);
  z-index: 1;
}

/* --------------------------------------------------------------------------
   Map section
   -------------------------------------------------------------------------- */
.map-frame {
  max-width: 940px;
  margin-inline: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 8px solid #fff;
}

/* --------------------------------------------------------------------------
   Lifestyle CTA band
   -------------------------------------------------------------------------- */
.cta-band { text-align: center; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 720px; margin-inline: auto; }
.cta-band .btn { margin-top: 2rem; }

/* --------------------------------------------------------------------------
   Views section (full-bleed image band)
   -------------------------------------------------------------------------- */
.views-band {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  isolation: isolate;
  background: linear-gradient(160deg, #1B3026, #2C4636);
}
.views-band__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
}
.views-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to right, rgba(20,32,25,0.85) 25%, rgba(20,32,25,0.25));
}
.views-band__content { max-width: 560px; padding-block: 5rem; }
.views-band h2 { color: #fff; margin-bottom: 1.1rem; }
.views-band p { color: #D5DCD4; }
.views-band .eyebrow { color: var(--gold-soft); }
.views-band .eyebrow::before { background: var(--gold-soft); }

/* --------------------------------------------------------------------------
   About page prose blocks
   -------------------------------------------------------------------------- */
.about-block { max-width: 760px; margin-inline: auto; }
.about-block + .about-block { margin-top: clamp(3rem, 6vw, 4.5rem); }
.about-block h2 { margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Section headers
   -------------------------------------------------------------------------- */
.section-head { max-width: 760px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head p { margin-top: 0.9rem; color: var(--ink-soft); }

.disclaimer {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-align: center;
}
