/* ==========================================================================
   Home Management — page-specific sections
   Loaded after css/site.css. Shared chrome, .cta, [data-reveal], CSS vars
   all come from site.css. Only genuinely new section patterns live here.
   ========================================================================== */

/* ---- Hero: dark, image-led, parallax band ---- */
.hm-hero {
  position: relative; overflow: hidden;
  min-height: 62vh; display: flex; align-items: flex-end;
  background: var(--dark); color: var(--cream);
}
.hm-hero__img {
  position: absolute; top: -6%; left: 0;
  width: 100%; height: 112%; object-fit: cover; display: block; opacity: .62;
}
.hm-hero__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,11,.42) 0%, rgba(20,16,11,.30) 32%, rgba(20,16,11,.62) 68%, rgba(20,16,11,.90) 100%);
}
@media (max-width:500px){
  .hm-hero__veil { background: linear-gradient(180deg, rgba(20,16,11,.46) 0%, rgba(20,16,11,.34) 30%, rgba(20,16,11,.70) 62%, rgba(20,16,11,.92) 100%); }
}
.hm-hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1140px; margin: 0 auto;
  padding: 150px clamp(22px, 5vw, 32px) clamp(46px, 7vh, 72px);
}
.hm-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: #EAD7AE;
  text-shadow: 0 1px 14px rgba(15,12,8,.75);
}
.hm-hero__eyebrow::before {
  content: ""; width: 28px; height: 1px;
  background: var(--gold-light); display: inline-block;
}
.hm-hero__title {
  font-family: 'Playfair Display', serif; font-weight: 400;
  font-size: clamp(42px, 6.6vw, 92px); line-height: 1.0;
  letter-spacing: -0.015em; margin: 22px 0 0; max-width: 14ch;
  text-shadow: 0 2px 22px rgba(15,12,8,.55), 0 1px 4px rgba(15,12,8,.5);
}
.hm-hero__title em {
  font-style: italic; color: #D8BE8A;
  text-shadow: 0 2px 18px rgba(15,12,8,.7), 0 1px 3px rgba(15,12,8,.6);
}

/* ---- Intro lead ---- */
.hm-intro {
  padding: clamp(64px, 10vh, 110px) clamp(22px, 5vw, 32px) clamp(20px, 3vh, 32px);
}
.hm-intro p {
  max-width: 760px; margin: 0 auto; text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.7vw, 32px); line-height: 1.4; color: #3a3830;
}

/* ---- What we handle: grouped menu ---- */
.hm-handle {
  padding: clamp(48px, 7vh, 84px) clamp(22px, 5vw, 32px) clamp(72px, 11vh, 128px);
}
.hm-handle__inner { max-width: 1140px; margin: 0 auto; }
.hm-handle__head {
  display: flex; align-items: baseline; gap: 16px;
  border-bottom: 1px solid var(--line-2); padding-bottom: 18px; margin-bottom: 46px;
}
.hm-handle__label {
  font-size: 11px; font-weight: 600; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold);
}
.hm-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(30px, 4vw, 56px);
}
.hm-grid > .hm-item:nth-child(3n + 2) { transition-delay: .06s; }
.hm-grid > .hm-item:nth-child(3n + 3) { transition-delay: .12s; }
.hm-item h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 25px;
}
.hm-item p {
  color: var(--muted); font-size: 15.5px; margin-top: 10px; line-height: 1.7;
}

/* ---- Multi-home note (bridge to Residences) ---- */
.hm-multi {
  text-decoration: none; color: inherit; display: block; margin-top: 56px;
  border: 1px solid var(--line-2); padding: 34px 32px; background: #ECE8DF;
  transition: opacity 1s var(--ease), transform 1s var(--ease), background .4s;
}
.hm-multi:hover { background: #E6E0D3; }
.hm-multi__row {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 18px;
}
.hm-multi__text { max-width: 62ch; }
.hm-multi__text h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 26px;
}
.hm-multi__text p {
  color: var(--muted); font-size: 15.5px; margin-top: 8px; line-height: 1.7;
}
.hm-multi__link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); font-weight: 600; white-space: nowrap;
}
.hm-multi__rule {
  width: 20px; height: 1px; background: var(--gold); display: inline-block;
}
