/* ============================================================
   REGISTER A — OXBLOOD — THE PRINCIPAL'S VOICE
   For: home, about, contact, legal/policy pages
   Loaded after varnham.css; overrides accent variables.
   ============================================================ */

:root {
  --accent: #6b1e2c;
  --accent-deep: #4a1219;
  --accent-soft: #f4e8e8;
  --accent-on-dark: #f4e8e8;
}

/* Register strip — appears at top of selected Register A pages */
.page-strip {
  background: var(--accent);
}

/* Register A specific: hero treatment with principal card on right */
.hero-a {
  padding: 100px 0 110px 0;
  border-bottom: 1px solid var(--rule);
}
.hero-a .hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}
.hero-a h1 { margin-bottom: 32px; }
.hero-a .standfirst {
  max-width: 540px;
  margin-bottom: 40px;
}
.hero-a .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .hero-a .hero-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 800px) {
  .hero-a { padding: 60px 0 80px 0; }
}

/* About page lead block — the principal narrative */
.principal-narrative {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  max-width: 720px;
}
.principal-narrative h2 {
  font-size: clamp(32px, 3.6vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.principal-narrative p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
  max-width: 580px;
}

/* Quote/byline accents in Register A */
.signed-block .signed {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.1;
  margin-top: 32px;
  margin-bottom: 6px;
}
.signed-block .signed-role {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
}
