/* =========================================================
   HOUSEBOATS ARCHIVE — CLEAN FINAL LAYOUT
   ========================================================= */

.gc-archive-houseboats {
  background: #BFB4A3;
  color: #222;
  padding-bottom: 6rem;
  overflow-x: hidden;
}

/* Container */
.gc-archive-houseboats .gc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* =========================================================
   HERO — FULL VIEWPORT
   ========================================================= */

.gc-archive-houseboats__hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Overlay behind text */
.gc-archive-houseboats__hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

/* Text above overlay */
.gc-archive-houseboats__hero .gc-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Title */
.gc-archive-houseboats__title {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  color: #ffffff;
  margin: 0;
}

/* Lead */
.gc-archive-houseboats__lead {
  margin-top: 18px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.95);
}

/* Scroll indicator wrapper */
.gc-archive-houseboats__scroll-indicator {
  margin-top: 26px;
  display: flex;
  justify-content: center;
}

/* Text arrow */
.gc-scroll-arrow {
  font-size: 34px;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  animation: gc-scroll-bounce 1.6s infinite;
}

/* Pure vertical bounce */
@keyframes gc-scroll-bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

/* Mobile hero */
@media (max-width: 900px) {
  .gc-archive-houseboats__hero {
    height: 85vh;
  }

  .gc-archive-houseboats__title {
    font-size: clamp(36px, 12vw, 64px);
  }
}

/* =========================================================
   HOUSEBOAT CARDS — HORIZONTAL
   ========================================================= */

.gc-archive-houseboats__cards {
  display: flex;
  flex-direction: column;
  gap: 40px;       /* controls spacing between cards */
  margin-top: 64px;
}

.gc-houseboat-card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0;      /* REMOVE vertical padding */
}

/* Image */
.gc-houseboat-card__image {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 6px;
}

/* Text content */
.gc-houseboat-card__content {
  max-width: 520px;
}

.gc-houseboat-card__eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}

.gc-houseboat-card__title {
  font-family: "Instrument Serif", serif;
  font-size: 36px;
  margin: 0 0 12px;
}

.gc-houseboat-card__subtitle {
  font-size: 15px;
  opacity: 0.7;
  margin-bottom: 12px;
}

.gc-houseboat-card__excerpt {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* CTA Button */
.gc-houseboat-card__cta {
  background: #7A8062;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.gc-houseboat-card__cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.gc-houseboat-card__cta:hover {
  background: #646a52;
}

.gc-houseboat-card__cta:hover::after {
  transform: translateX(4px);
}

/* =========================================================
   EMPTY STATE
   ========================================================= */

.gc-archive-houseboats .gc-empty {
  padding: 3rem 0;
  text-align: center;
  color: rgba(0,0,0,0.5);
}

/* =========================================================
   MOBILE CARDS
   ========================================================= */

@media (max-width: 900px) {
  .gc-houseboat-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .gc-houseboat-card__image {
    height: 240px;
  }

  .gc-houseboat-card__title {
    font-size: 28px;
  }
}