/* ─── SECTIONS COMMON ────────────────────────────── */
.section {
  padding: 6rem 5vw;
}
.section--dark { background: var(--pine); }
.section--alt  { background: var(--warm-lt); }

/* Section label */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--gold);
}
.section-label--gold { color: var(--gold); }

/* Section title */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

/* Section subtitle */
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 540px;
  font-weight: 300;
  line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,.65); }

/* Section header row */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* More link */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sage);
  white-space: nowrap;
  transition: gap var(--transition-fast);
}
.link-more:hover { gap: .7rem; }
.link-more--light { color: var(--gold); }

/* Pull quote */
.pull-quote {
  text-align: center;
  padding: 5rem 5vw;
  background: var(--warm-lt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pull-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--pine);
  max-width: 800px;
  margin: 0 auto .8rem;
  line-height: 1.45;
}
.pull-quote blockquote strong {
  font-weight: 700;
  color: var(--gold);
  font-style: normal;
}
.pull-quote cite {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  font-style: normal;
}

/* Video embed wrapper */
.video-embed {
  margin-top: 2.5rem;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,.2);
}
