/* ============================================================
   CHIANTI VINTAGE EXPEDITIONS — Home Page Styles
   css/pages/home.css
   ============================================================ */

/* ── Intro Section ────────────────────────────────────────── */
.home-intro {
  text-align: center;
}

.home-intro__heading {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  color: var(--color-black);
  margin-block: var(--space-6) var(--space-8);
  line-height: 1.1;
}

.home-intro__text {
  font-size: clamp(var(--text-base), 2vw, var(--text-xl));
  color: var(--color-grey);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.85;
}

.home-intro__detail {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-style: italic;
  font-weight: 300;
  color: var(--color-grey);
  margin-top: 0;
}

/* ── Tours Section ────────────────────────────────────────── */
.home-tours__intro {
  margin-bottom: var(--space-12);
}

.home-tours__intro-text {
  color: rgba(245, 240, 232, 0.6);
  font-size: var(--text-lg);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
  margin-top: var(--space-4);
}

.home-tours__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 720px) {
  .home-tours__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.home-tour-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  padding: var(--space-8);
  border: 1px solid rgba(201, 160, 82, 0.2);
}

.home-tour-card__name {
  font-family: var(--font-display);
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-4xl));
  font-weight: 300;
  line-height: 1.05;
  margin-top: var(--space-1);
}

.home-tour-card__desc {
  color: rgba(245, 240, 232, 0.65);
  line-height: 1.8;
  font-size: var(--text-base);
  flex-grow: 1;
}

.home-tour-card .btn {
  align-self: flex-start;
  margin-top: var(--space-2);
}

.home-tour__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(201, 160, 82, 0.2);
}

.home-tour__highlights li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  border-bottom: 1px solid rgba(201, 160, 82, 0.15);
  font-size: var(--text-sm);
  color: rgba(245, 240, 232, 0.75);
  gap: var(--space-4);
}

.home-tour__highlight-key {
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: var(--text-xs);
  color: var(--color-gold);
  flex-shrink: 0;
}

/* ── The Land ─────────────────────────────────────────────── */
.home-land {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  padding-block: var(--space-24);
  overflow: hidden;
}

.home-land__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a1f18;
}

.home-land__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(28, 23, 20, 0.82) 0%,
    rgba(28, 23, 20, 0.45) 60%,
    rgba(28, 23, 20, 0.2) 100%
  );
}

.home-land__content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.home-land__heading {
  font-size: clamp(var(--text-3xl), 4.5vw, var(--text-5xl));
  color: var(--color-cream);
  margin-block: var(--space-4) var(--space-6);
  line-height: 1.05;
}

.home-land__text {
  color: rgba(245, 240, 232, 0.75);
  font-size: var(--text-base);
  line-height: 1.8;
}

/* ── Contact Teaser ───────────────────────────────────────── */
.home-contact-teaser {
  text-align: center;
}

.home-contact__heading {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  color: var(--color-black);
  margin-block: var(--space-4) var(--space-6);
}

.home-contact-teaser p {
  color: var(--color-grey);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
}

.home-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}
