/* Home V2 — "Happiest Labs structure, corgi playfulness"
   Load AFTER style.css. */

/* Full-bleed video hero */
.video-hero {
  position: relative;
  height: 82vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,22,14,0.25) 0%, rgba(30,22,14,0.45) 100%);
}

.video-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 24px;
  max-width: 760px;
}

.video-hero h1 {
  color: #fff;
  font-size: 3.4rem;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  margin-bottom: 14px;
}

.video-hero p {
  font-size: 1.25rem;
  text-shadow: 0 1px 10px rgba(0,0,0,0.4);
  margin-bottom: 26px;
}

/* Alternating story sections */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 72px 0;
}

.story .story-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
}

.story:nth-of-type(even) .story-photo { transform: rotate(1.5deg); order: 2; }

.story .story-photo img, .story .story-photo video { width: 100%; display: block; }

.story .kicker {
  color: var(--orange);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.story h2 { font-size: 2.1rem; margin-bottom: 16px; }

.story p { color: var(--ink-soft); margin-bottom: 14px; }

/* Video tiles (Our Girls / Our Guys style) */
.video-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.video-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: block;
  text-decoration: none;
  aspect-ratio: 4 / 3;
}

.video-tile video, .video-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.video-tile:hover video, .video-tile:hover img { transform: scale(1.04); }

.video-tile .tile-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 55%, rgba(30,22,14,0.65) 100%);
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
}

/* Quote band */
.quote-band { background: var(--orange-soft); padding: 72px 0; }

.quote-band blockquote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}

.quote-band .who {
  display: block;
  margin-top: 18px;
  font-style: normal;
  font-weight: 800;
  color: var(--orange-dark);
  font-size: 1rem;
}

/* FAQ teaser cards */
.faq-teasers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.faq-teaser {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px;
  text-decoration: none;
  transition: transform 0.15s;
  display: block;
}

.faq-teaser:hover { transform: translateY(-4px); }

.faq-teaser .kicker {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.faq-teaser h3 { margin: 6px 0 8px; font-size: 1.15rem; }

.faq-teaser p { color: var(--ink-soft); font-size: 0.92rem; }

/* Trust badges */
.trust-band {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 34px 24px;
  background: var(--white);
}

.trust-band span {
  background: var(--orange-soft);
  color: var(--brown);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 9px 20px;
  border-radius: 999px;
}

@media (max-width: 880px) {
  .video-hero h1 { font-size: 2.2rem; }
  .story, .video-tiles, .faq-teasers { grid-template-columns: 1fr; }
  .story { gap: 30px; padding: 48px 0; }
  .story:nth-of-type(even) .story-photo { order: 0; }
}
