/* ==========================================================================
   Keeping Vert Dead — home.css
   Homepage hero + brand-statement section. Loaded on the front page only.
   ========================================================================== */

/* Remove Storefront's content padding so the hero can run full-bleed. */
.kvd-home {
  margin: 0;
  padding: 0;
}

/* ── Hero ──
   Full-width breakout from Storefront's centered .col-full container. */
.kvd-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 78vh;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  box-sizing: border-box;
}

/* Dark scrim so the white logo reads against the photo. */
.kvd-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.45) 0%, rgba(17, 17, 17, 0.65) 100%);
}

.kvd-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.kvd-hero__logo {
  width: min(440px, 80vw);
  height: auto;
  filter: drop-shadow(0 4px 18px rgba(0, 0, 0, 0.6));
}

/* ── Brand statement ── */
.kvd-statement {
  background-color: var(--kvd-bg);
  padding: 5rem 1.5rem;
}
.kvd-statement__inner {
  max-width: 760px;
  margin: 0 auto;
  border-left: 4px solid var(--kvd-accent);
  padding-left: 2rem;
}

.kvd-statement__term {
  font-family: var(--kvd-font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 0.95;
  margin: 0 0 0.25rem;
  color: var(--kvd-text);
}
.kvd-statement__pos {
  font-family: var(--kvd-font-body);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--kvd-text-muted);
  margin: 0 0 1.5rem;
}
.kvd-statement__def {
  font-family: var(--kvd-font-body);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--kvd-text);
  margin: 0 0 1.75rem;
}
.kvd-statement__quote {
  font-family: var(--kvd-font-body);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--kvd-text);
  border: 0;
  margin: 0 0 2.25rem;
  padding: 0;
}
.kvd-statement__quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  color: var(--kvd-accent);
}

/* ── Mobile ── */
@media (max-width: 600px) {
  .kvd-hero { min-height: 64vh; }
  .kvd-statement { padding: 3rem 1.25rem; }
  .kvd-statement__inner { padding-left: 1.25rem; }
}
