/* ============================================
   OPENING STATEMENT — Editorial quote
   ============================================ */

.statement {
  padding: var(--section-pad-mobile) var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.statement__inner {
  max-width: 800px;
  text-align: center;
}

.statement__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 40px;
}

.statement__quote {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 32px;
}

.statement__author {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-gray);
}

@media (min-width: 768px) {
  .statement {
    padding: var(--section-pad-desktop) 40px;
    min-height: 70vh;
  }

  .statement__quote {
    font-size: 48px;
    line-height: 1.2;
  }

  .statement__line {
    margin-bottom: 56px;
  }
}
