/* ============================================================
   HOME / LANDING PAGE STYLES
   ============================================================ */

/* Full bleed from top — hero handles nav clearance internally */
.home-page {
  padding-top: 0;
}

/* ── Hero ────────────────────────────────────────────────── */

.home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52vh;
  background-color: #1a1208;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  background-color: #fff;
  background-size: 90% auto;
  background-repeat: no-repeat;
  background-position: center center;
  filter: brightness(0.55);
  z-index: 0;
}

.home-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: calc(2.8rem + 48px) 2.5rem 2.8rem; /* top pad absorbs fixed nav height */
}

.home-hero__eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #c8a96e;
  margin-bottom: 1rem;
}

.home-hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.home-hero__title em {
  font-style: normal;
  color: #c8a96e;
}

.home-hero__description {
  font-size: 1.15rem;
  font-weight: 600;
  color: #ede6d9;
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2rem;
}

.home-hero__cta {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  background: var(--color-accent);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s;
}

.home-hero__cta:hover {
  background: #a80000;
  color: #fff;
}

/* ── Section label ───────────────────────────────────────── */

.home-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* ── Explore cards grid ──────────────────────────────────── */

.home-explore {
  padding: 3rem 2.5rem;
  max-width: 1500px;
  margin: 0 auto;
}

.home-explore__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.home-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
  background: #fff;
}

.home-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.home-card__img-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #111;
}

.home-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
  filter: brightness(0.92);
}

.home-card:hover .home-card__img-wrap img {
  transform: scale(1.04);
  filter: brightness(1);
}

.home-card__body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.home-card__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #111;
}

.home-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}

.home-card__link {
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.home-card__link::after {
  content: '→';
  font-size: 1rem;
  transition: transform 0.2s;
}

.home-card:hover .home-card__link::after {
  transform: translateX(4px);
}

/* ── Divider ─────────────────────────────────────────────── */

.home-divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0 2.5rem;
}

/* ── Updates strip ───────────────────────────────────────── */

.home-updates {
  padding: 3rem 2.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.home-updates__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}

.home-updates__body li {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.home-updates__body strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  margin-right: 0.5rem;
}

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 768px) {
  .home-hero__bg {
    background-size: 150% auto;
    background-position: center center;
  }

  .home-hero__content {
    padding: calc(1.5rem + 3.5rem) 1.5rem 3rem;
  }

  .home-explore,
  .home-updates {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .home-divider {
    margin: 0 1.5rem;
  }

  .home-explore__grid {
    grid-template-columns: 1fr;
  }
}
