/* ============================================================
   home.css — NashMatch Home Page
   ============================================================ */

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d1f3c 0%, #162d52 45%, #0a1f18 100%);
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,31,60,.98) 0%, rgba(13,31,60,.6) 60%, rgba(13,31,60,.85) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding: calc(var(--nav-height) + 80px) var(--space-6) 80px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__text {
  max-width: 600px;
}

.hero__text h1 {
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.04;
  margin-block: var(--space-4) var(--space-5);
}

.hero__text h1 em { color: var(--gold); font-style: italic; }

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.68);
  max-width: 46ch;
  line-height: 1.65;
  margin-bottom: var(--space-8);
}

.hero__actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.hero__stat-strip {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.12);
  flex-wrap: wrap;
}

.hero__stat { display: flex; flex-direction: column; gap: 3px; }
.hero__stat-num {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--white);
  line-height: 1;
}
.hero__stat-lbl {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.42);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__stat-div {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.15);
}

/* ── INSIGHT ── */
.insight {
  background: var(--white);
  padding-block: var(--space-24);
}

.insight__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.insight__left .eyebrow { margin-bottom: var(--space-3); }

.insight__left h2 {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  color: var(--navy);
  margin-bottom: var(--space-6);
  line-height: 1.15;
}

.insight__left h2 em { color: var(--gold); font-style: italic; }

.insight__left p {
  font-size: var(--text-lg);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: var(--space-4);
  max-width: none;
}

.insight__left p:last-of-type { margin-bottom: var(--space-8); }

.insight__right {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.insight__card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
}

.insight__card--active {
  background: var(--navy);
  border-color: var(--navy);
}

.insight__card-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: var(--space-4);
}

.insight__card--active .insight__card-label { color: var(--gold); }

.insight__card-items { display: flex; flex-direction: column; gap: var(--space-3); }

.insight__item {
  font-size: var(--text-sm);
  color: var(--white);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.insight__item--muted { color: var(--ink-muted); text-decoration: line-through; }
.insight__item strong { color: var(--gold); font-weight: 600; }

/* ── HOW IT WORKS ── */
.how {
  background: var(--canvas);
  padding-block: var(--space-24);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.how__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.how__header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.how__header .eyebrow { margin-bottom: var(--space-3); }

.how__header h2 {
  font-size: clamp(var(--text-3xl), 3vw, var(--text-5xl));
  color: var(--navy);
}

.how__steps {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: 900px;
  margin-inline: auto;
}

.how__step {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
}

.how__step-num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: var(--space-4);
}

.how__step h5 {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.how__step p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.65;
}

.how__step-arrow {
  font-size: var(--text-2xl);
  color: var(--border);
  flex-shrink: 0;
}

.how__cta {
  text-align: center;
  margin-top: var(--space-12);
}

/* ── NEIGHBORHOODS TEASE ── */
.hoods {
  background: var(--white);
  padding-block: var(--space-24);
}

.hoods__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.hoods__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
  gap: var(--space-4);
}

.hoods__header .eyebrow { margin-bottom: var(--space-2); }

.hoods__header h2 {
  font-size: clamp(var(--text-3xl), 3vw, var(--text-4xl));
  color: var(--navy);
}

.hoods__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.hcard {
  display: flex;
  flex-direction: column;
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.hcard:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.hcard__band {
  height: 5px;
  background: var(--hcard-color, var(--gold));
  flex-shrink: 0;
}

.hcard__body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--space-2);
}

.hcard__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  border: 1px solid;
  align-self: flex-start;
}

.hcard__name {
  font-size: var(--text-xl);
  color: var(--navy);
  margin-top: var(--space-1);
}

.hcard__desc {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.5;
  flex: 1;
}

.hcard__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
}

.hcard__price { font-size: var(--text-sm); font-weight: 600; color: var(--gold-dark); }
.hcard__meta  { font-size: var(--text-xs); color: var(--ink-muted); }

.hcard--more {
  justify-content: center;
  align-items: center;
  background: var(--canvas-alt);
  border-style: dashed;
  min-height: 220px;
}

.hcard__more-inner {
  text-align: center;
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hcard__more-num {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  color: var(--navy);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.hcard__more-inner p {
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

/* ── PLAN A VISIT TEASE ── */
.plan-tease {
  background: var(--navy);
  padding-block: var(--space-24);
}

.plan-tease__inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.plan-tease__left h2 {
  font-size: clamp(var(--text-3xl), 3.5vw, var(--text-5xl));
  line-height: 1.15;
  margin-block: var(--space-4) var(--space-5);
}

.plan-tease__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.plan-tease__card-header {
  background: rgba(201,168,76,.15);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: var(--space-4) var(--space-6);
}

.plan-tease__day {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .04em;
}

.plan-tease__stop {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.plan-tease__stop:last-child { border-bottom: none; }

.plan-tease__time {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--gold);
  min-width: 52px;
  padding-top: 2px;
  letter-spacing: .04em;
}

.plan-tease__stop strong {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 3px;
}

.plan-tease__stop p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  max-width: none;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--ink);
  padding-block: var(--space-24);
  text-align: center;
}

.final-cta__inner {
  max-width: 600px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}

.final-cta .eyebrow { margin-bottom: var(--space-3); }

.final-cta h2 {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.2;
}

.final-cta p {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.55);
  margin-bottom: var(--space-8);
  max-width: none;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .insight__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .plan-tease__inner { grid-template-columns: 1fr; gap: var(--space-10); }
  .hoods__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero__text h1 { font-size: clamp(2.5rem, 10vw, 3.5rem); }
  .hero__stat-strip { gap: var(--space-4); }
  .hero__stat-div { display: none; }
  .how__steps { flex-direction: column; gap: var(--space-4); }
  .how__step-arrow { transform: rotate(90deg); }
  .hoods__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
}
