/* ════════════════════════════════════════════════════════
   LAYOUT.CSS — Containers, sections, grids
   ════════════════════════════════════════════════════════ */

/* ── Main container ── */
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── Section base ── */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-alt {
  background: linear-gradient(
    180deg,
    var(--bg2) 0%,
    var(--bg3) 50%,
    var(--bg2) 100%
  );
}

/* ── Section type styles ── */
.section-h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  margin-bottom: 1rem;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-intro h2 { margin-bottom: 0; }

.section-lead {
  font-size: 1rem;
  max-width: 500px;
  margin-bottom: 3.5rem;
  line-height: 1.85;
}

/* ── Two column layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.two-col-reverse {
  direction: rtl;
}
.two-col-reverse > * {
  direction: ltr;
}

/* ── Eyebrow / label ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
  transition: color var(--t-normal);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
  transition: background var(--t-normal);
}
