/* ============================================================
   wa-aboutus.css — Velthian About Us page styles
   ============================================================ */

.au-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 56px 120px;
}

/* ── Hero heading ─────────────────────────────────────────── */
.au-hero {
  margin-bottom: 64px;
}

.au-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.au-hero-eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.au-hero-eyebrow span {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

.au-hero-title {
  font-family: var(--font-d);
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}
.au-hero-title em {
  font-style: italic;
  color: var(--gold);
}

.au-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--gold) 0%, rgba(201,168,76,0.08) 60%, transparent 100%);
  margin-top: 32px;
  opacity: 0.4;
}

/* ── Body content ─────────────────────────────────────────── */
.au-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.au-lead {
  font-family: var(--font-d);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.45;
  color: var(--text);
  max-width: 680px;
}

.au-para {
  font-size: 15px;
  font-weight: 300;
  color: var(--text2);
  line-height: 1.8;
  max-width: 680px;
}

.au-divider {
  width: 48px;
  height: 1px;
  background: var(--border2);
  margin: 8px 0;
}

/* ── Insight callout ──────────────────────────────────────── */
.au-callout {
  background: rgba(201,168,76,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 28px 32px;
  margin: 8px 0;
}
.au-callout-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.au-callout-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(201,168,76,0.15);
}
.au-callout-text {
  font-family: var(--font-d);
  font-size: clamp(18px, 1.8vw, 23px);
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
}
.au-callout-text em {
  font-style: italic;
  color: var(--gold);
}

/* ── Close note ───────────────────────────────────────────── */
.au-close {
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .au-page { padding: 56px 24px 80px; }
}
