/* ── Homepage-specific styles ─────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────────────── */
.hero-section {
  display: flex;
  flex-direction: column;
  height: calc(100dvh - var(--hh, 80px));
}
.hero-photo {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  line-height: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.photo-bar {
  background: var(--navy);
  border-top: 3px solid #b8975a;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.photo-bar-text {
  font-family: 'Cinzel', serif;
  font-size: clamp(11px, 1.35vw, 20px);
  font-weight: 400;
  color: #e8d9bc;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.photo-bar-text .sep {
  display: inline-block;
  margin: 0 1em;
  color: #b8975a;
}

/* ── Featured CTA ─────────────────────────────────────────────────── */
.home-featured-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── News Section (outer wrapper only; card styles live in news.css) ─ */
.home-news {
  background: var(--white);
  padding: 5rem 0;
  border-top: 1px solid var(--sand);
}

/* ── Homepage Contact ─────────────────────────────────────────────── */
.home-contact {
  padding: 5rem 0;
  background: var(--stone);
}

.home-contact .eyebrow {
  text-align: center;
}

.home-contact h2 {
  font-family: bicyclette, sans-serif;
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 2rem;
  text-align: center;
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .photo-bar {
    padding: 14px 10px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }
  .photo-bar-text {
    font-size: clamp(13px, 3.5vw, 16px);
    letter-spacing: 0.08em;
  }
  .photo-bar-text .sep {
    display: block;
    margin: 0.3em 0;
    font-size: 10px;
  }

  /* Reset nav overrides for mobile */
  header .nav-links {
    font-size: 0.85rem;
    letter-spacing: 1.8px;
    gap: 1rem;
  }
  header .nav-cta {
    padding: 0.6rem 1.4rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    border-width: 2px;
  }
  header .nav-menu {
    gap: 1rem;
  }
}
