
/* ═══════════════════════════════════════════════════════
   HOMEPAGE STYLES (overrides on top of theme + tour + hub)
═══════════════════════════════════════════════════════ */

/* HERO */
.home-hero {
  position: relative;
  min-height: 720px;
  background: var(--cabernet-dark);
  color: white;
  overflow: hidden;
}
.home-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(24,12,16,.97) 0%, rgba(24,12,16,.78) 50%, rgba(24,12,16,.4) 100%);
}
.home-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 60px;
  align-items: center;
  padding: 88px 0;
  min-height: 720px;
}
.home-hero-copy h1 {
  margin-top: 30px;
  font-family: Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  color: white;
  text-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.home-hero-lede {
  margin-top: 24px; max-width: 600px;
  color: #ede0cc; font-family: Georgia, serif;
  font-size: 18px; line-height: 1.65;
}
.home-hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.home-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 40px; max-width: 600px;
}
.home-stats div {
  border-left: 2px solid var(--gold); padding-left: 14px;
}
.home-stats strong {
  display: block; color: var(--gold);
  font-family: Georgia, serif; font-size: 28px; line-height: 1;
}
.home-stats span {
  display: block; margin-top: 4px; color: #d9cdb9;
  font-size: 12px; font-weight: 600;
}

/* QUICK-FIND CARD (right side of hero) */
.home-quickfind {
  border: 1px solid rgba(216,181,109,.3);
  border-radius: 10px;
  background: var(--ivory);
  padding: 22px;
  color: var(--cabernet);
  box-shadow: 0 22px 70px rgba(43,15,22,.4);
}
.home-quickfind .quote-head {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px; margin-bottom: 12px;
}
.home-quickfind h2 {
  margin-top: 4px; font-family: Georgia, serif;
  font-size: 22px; line-height: 1.2; color: var(--cabernet);
}
.home-quickfind .field-card {
  margin-top: 10px; border: 1px solid var(--line);
  border-radius: 7px; background: white; padding: 12px 14px;
}
.home-quickfind .field-card span {
  display: block; color: #8a7460; font-size: 10px;
  font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 4px;
}
.qf-select {
  width: 100%; border: 0; outline: 0; background: transparent;
  font-family: inherit; font-size: 14px; font-weight: 700;
  color: var(--cabernet); padding: 0;
}

/* SECTIONS */
.home-featured-tours { background: var(--cream); padding: 72px 0; }
.home-by-pickup { background: var(--ivory); padding: 72px 0; }
.home-by-category { background: var(--cream); padding: 72px 0; }
.home-faq { background: var(--ivory); padding: 72px 0; border-top: 1px solid var(--line); }

/* CATEGORY GRID — big visual cards */
.home-cat-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.home-cat-card {
  position: relative;
  display: block;
  height: 280px;
  background-size: cover; background-position: center;
  border-radius: 10px; overflow: hidden;
  color: white;
  transition: transform .2s;
}
.home-cat-card:hover { transform: translateY(-3px); }
.home-cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(24,12,16,.95) 0%, rgba(24,12,16,.5) 60%, rgba(24,12,16,.2) 100%);
}
.home-cat-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px;
}
.home-cat-content h3 {
  font-family: Georgia, serif; font-size: 24px;
  color: white; margin: 0 0 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.home-cat-content p {
  color: #ede0cc; font-size: 14px; line-height: 1.5; margin: 0 0 14px;
}
.home-cat-arrow {
  color: var(--gold); font-size: 13px; font-weight: 800; letter-spacing: .03em;
}

/* FAQ GRID */
.home-faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.home-faq-grid details {
  border: 1px solid var(--line); border-radius: 9px;
  background: white;
}
.home-faq-grid summary {
  cursor: pointer; padding: 16px 20px;
  font-weight: 700; color: var(--cabernet);
  list-style: none;
}
.home-faq-grid summary::-webkit-details-marker { display: none; }
.home-faq-grid summary::after {
  content: '▾'; float: right; color: var(--gold); transition: transform .15s;
}
.home-faq-grid details[open] summary::after { transform: rotate(180deg); }
.home-faq-grid details p {
  padding: 0 20px 18px; margin: 0;
  color: var(--muted); font-size: 14px; line-height: 1.65;
}

@media (max-width: 980px) {
  .home-hero-inner { grid-template-columns: 1fr; gap: 32px; padding: 64px 0; min-height: 0; }
  .home-hero { min-height: 0; }
  .home-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .home-faq-grid { grid-template-columns: 1fr; }
}
