/* ============================================
   THE GEN-Z COMPOSER — PAGE STYLES
   ============================================ */

/* --- Hero --- */
.genz-hero {
  position: relative;
  padding: 8rem 2rem 5rem;
  background: var(--obsidian);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.genz-hero-split {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
.genz-hero-text {
  padding: 2rem 0;
}
.genz-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}
.genz-hero-tagline {
  font-family: var(--font-body);
  font-size: 1.3rem;
  color: var(--cream);
  opacity: 0.6;
  font-weight: 300;
  font-style: italic;
  max-width: 600px;
  line-height: 1.8;
}
.genz-hero-photo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.genz-hero-frame {
  position: relative;
  max-width: 400px;
  width: 100%;
}
.genz-hero-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: contrast(1.02) saturate(0.95);
}
.genz-hero-frame .corner-accent {
  z-index: 2;
  width: 30px;
  height: 30px;
}
.genz-hero-frame .corner-bottom-right {
  top: auto;
  left: auto;
  bottom: -1px;
  right: -1px;
  border-top: none;
  border-left: none;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}

/* --- Narrow container --- */
.genz-narrow {
  max-width: 780px;
  margin: 0 auto;
}

/* --- Prose --- */
.genz-prose p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
  opacity: 0.8;
}
.genz-prose-light p {
  color: var(--cream);
  opacity: 0.75;
}
.genz-prose-mt {
  margin-top: 2.5rem;
}
.genz-lead {
  font-size: 1.3rem !important;
  line-height: 1.85 !important;
  font-weight: 400;
  opacity: 1 !important;
}
.genz-highlight {
  font-family: var(--font-heading);
  font-size: 1.35rem !important;
  letter-spacing: 0.02em;
  color: var(--gold) !important;
  opacity: 1 !important;
  padding: 1rem 0;
  line-height: 1.6 !important;
}
.genz-prose-light .genz-highlight {
  color: var(--gold) !important;
}

/* --- Testimonial --- */
.genz-testimonial-section {
  text-align: center;
  padding: 2rem 0;
}
.genz-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: -1rem;
}
.genz-quote {
  border: none;
  margin: 0;
  padding: 0;
}
.genz-quote p {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 650px;
  margin: 0 auto 1.25rem;
}
.genz-cite {
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 0.25rem;
}
.genz-cite-context {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--charcoal);
  opacity: 0.45;
  letter-spacing: 0.02em;
  margin-bottom: 0;
}
.genz-testimonial-section .genz-prose {
  text-align: left;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .genz-hero {
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }
  .genz-hero-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .genz-hero-text {
    padding: 0;
  }
  .genz-hero-photo {
    order: -1;
  }
  .genz-hero-frame {
    max-width: 260px;
    margin: 0 auto;
  }
  .genz-hero-title {
    font-size: 2.2rem;
  }
  .genz-hero-tagline {
    font-size: 1.1rem;
    margin: 0 auto;
  }
  .genz-quote p {
    font-size: 1.25rem;
  }
}
