/* hosts.css — Meet Your Hosts page */

/* ── HERO ── */
.host-hero {
  background: var(--forest);
  padding: 96px 40px 72px;
  border-bottom: 1px solid rgba(176,141,87,0.12);
}
.host-hero-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.host-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 300; color: var(--cream);
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.host-hero h1 em { font-style: italic; color: var(--gold-lt); display: block; }
.host-hero-sub {
  font-size: 16px; font-weight: 300;
  color: var(--w70); line-height: 1.7;
  max-width: 520px;
}

/* Monogram / avatar placeholder */
.host-monogram {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.host-monogram-letters {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(176,141,87,0.12);
  border: 1px solid rgba(176,141,87,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 28px; font-weight: 300;
  color: var(--gold-lt);
  letter-spacing: 0.04em;
}
.host-monogram-since {
  font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--w45);
}

/* ── INTRO ── */
.host-intro { padding: 88px 0; background: var(--linen); }

.host-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.host-intro-copy .ht { margin-bottom: 28px; }
.host-intro-copy p {
  font-size: 15px; font-weight: 300;
  color: var(--stone); line-height: 1.8;
  margin-bottom: 18px;
}
.host-intro-copy p:last-child { margin-bottom: 0; }

/* Host cards */
.host-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.host-card {
  background: #fff;
  padding: 24px 20px;
  border: 1px solid rgba(176,141,87,0.10);
}
.host-card-icon {
  font-size: 20px; line-height: 1;
  color: var(--gold);
  display: block; margin-bottom: 10px;
}
.host-card-title {
  font-size: 13px; font-weight: 500;
  color: var(--ink); margin-bottom: 6px;
}
.host-card-desc {
  font-size: 12px; font-weight: 300;
  color: var(--stone); line-height: 1.6;
}

/* ── DIVIDER ── */
.host-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.host-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(176,141,87,0.18);
}
.host-divider-mark {
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
}

/* ── FAVORITES ── */
.host-favs { padding: 80px 0; background: var(--linen); }

.host-favs-hd { max-width: 600px; margin-bottom: 52px; }
.host-favs-hd .ht { margin-bottom: 12px; }
.host-favs-sub {
  font-size: 14px; font-weight: 300;
  color: var(--stone); line-height: 1.65;
  font-style: italic;
}

.host-favs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.host-fav {
  background: #fff;
  padding: 32px 28px;
  border: 1px solid rgba(176,141,87,0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: border-color 0.2s;
}
.host-fav:hover { border-color: rgba(176,141,87,0.25); }

.host-fav-num {
  font-family: var(--serif);
  font-size: 36px; font-weight: 300;
  color: rgba(176,141,87,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
  margin-top: 2px;
}

.host-fav-tag {
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.host-fav-name {
  font-family: var(--serif);
  font-size: 22px; font-weight: 300;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}
.host-fav-why {
  font-size: 13px; font-weight: 300;
  color: var(--stone); line-height: 1.7;
  margin-bottom: 10px;
}
.host-fav-logistics {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--parchment);
  border-top: 1px solid rgba(176,141,87,0.12);
  padding-top: 8px;
  margin-top: 4px;
}

/* ── CTA ── */
.host-cta {
  background: var(--bark);
  border-top: 1px solid rgba(176,141,87,0.15);
}
.host-cta-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.host-cta-headline {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 300; color: var(--cream);
  margin-bottom: 6px;
}
.host-cta-sub {
  font-size: 14px; font-weight: 300; color: var(--w70);
}
.host-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.host-cta-btn-primary {
  padding: 13px 28px;
  background: var(--gold); color: var(--ink);
  font-size: 11px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 3px; white-space: nowrap;
  transition: background 0.2s;
}
.host-cta-btn-primary:hover { background: var(--gold-lt); }
.host-cta-btn-ghost {
  padding: 12px 24px;
  background: transparent; color: var(--cream);
  font-size: 12px; font-weight: 300;
  text-decoration: none;
  border: 1px solid rgba(176,141,87,0.30);
  border-radius: 3px; white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}
.host-cta-btn-ghost:hover {
  border-color: var(--gold-bdr);
  color: var(--gold-lt);
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .host-hero { padding: 80px 20px 56px; }
  .host-hero-inner { flex-direction: column-reverse; align-items: flex-start; gap: 28px; }
  .host-monogram { flex-direction: row; align-items: center; }
  .host-intro { padding: 64px 0; }
  .host-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .host-cards { grid-template-columns: 1fr; }
  .host-favs { padding: 64px 0; }
  .host-favs-grid { grid-template-columns: 1fr; }
  .host-cta-inner { flex-direction: column; align-items: flex-start; padding: 32px 20px; }
  .host-cta-actions { flex-direction: column; width: 100%; }
  .host-cta-btn-primary, .host-cta-btn-ghost {
    width: 100%; text-align: center;
    display: block; padding: 14px;
  }
  .host-divider { padding: 0 20px; }
}

@media (max-width: 580px) {
  .host-hero { padding: 76px 16px 48px; }
  .host-fav { flex-direction: column; gap: 12px; padding: 24px 20px; }
  .host-fav-num { width: auto; font-size: 28px; }
  .host-cards { gap: 1px; }
}
