/* ===========================
   HOME PAGE
   =========================== */

body.home-page {
  background-color: var(--cream);
}

/* HERO */
.home-hero {
  background-color: var(--red);
  min-height: 420px;
  padding: 48px 56px 56px;
  position: relative;
  overflow: hidden;
}

.hero-title-wrap {
  margin-bottom: 0;
}

.hero-title {
  font-family: var(--font-header);
  font-weight: 900;
  font-size: clamp(5rem, 14vw, 11rem);
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

/* PENNANT */
.pennant-wrap {
  position: absolute;
  top: 32px;
  right: 56px;
  width: clamp(160px, 25vw, 260px);
}

.pennant-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}

/* HERO NAV */
.hero-nav {
  margin-top: 40px;
}

.hero-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-nav ul li a {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: opacity 0.2s;
  display: inline-block;
}

.hero-nav ul li a:hover {
  opacity: 0.7;
  text-decoration: none;
}

/* PHOTO ROWS */
.home-photos {
  padding: 0 56px;
}

.home-photo-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  padding: 48px 0;
  border-bottom: 1px solid rgba(141, 20, 36, 0.15);
  align-items: flex-start;
}

.home-photo-row:last-child {
  border-bottom: none;
}

.photo-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 6px;
  padding-right: 24px;
}

.photo-month {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.photo-divider {
  color: var(--red);
  font-size: 0.7rem;
  line-height: 1.4;
}

.photo-year {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--red);
}

.photo-image-wrap {
  width: 100%;
}

.home-photo {
  width: 100%;
  max-width: 720px;
  height: auto;
  display: block;
  cursor: zoom-in;
  transition: opacity 0.2s;
}

.home-photo:hover {
  opacity: 0.92;
}

.photo-placeholder {
  width: 100%;
  max-width: 720px;
  height: 320px;
  border: 1px dashed var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  opacity: 0.5;
}

/* FOOTER */
.home-footer {
  text-align: right;
  padding: 24px 56px 32px;
  border-top: 1px solid rgba(141, 20, 36, 0.2);
  margin-top: 20px;
}

.home-footer a {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .home-hero {
    padding: 32px 24px 40px;
    min-height: 320px;
  }

  .pennant-wrap {
    top: 16px;
    right: 20px;
    width: 130px;
  }

  .home-photos {
    padding: 0 24px;
  }

  .home-photo-row {
    grid-template-columns: 80px 1fr;
    padding: 32px 0;
  }

  .home-footer {
    padding: 20px 24px 24px;
  }
}
