/* ============ Convener page — editorial profile ============ */

.convener {
  background: var(--cream);
  color: var(--ink);
}

/* Hero */
.cv-hero {
  position: relative;
  background: linear-gradient(180deg, #1A4A9E 0%, #0E2E68 100%);
  color: var(--cream);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.cv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 380px at 90% 20%, rgba(255, 196, 46, 0.10), transparent 65%),
    radial-gradient(500px 320px at 10% 90%, rgba(255, 196, 46, 0.06), transparent 65%);
  pointer-events: none;
}

.cv-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.cv-overline {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  border-top: 1px solid rgba(255, 196, 46, 0.45);
  padding-top: 0.85rem;
}

.cv-name {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
  color: var(--cream);
}

.cv-tag {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5;
  color: rgba(250, 247, 242, 0.85);
  max-width: 30ch;
  margin: 0 0 2.5rem;
}
.cv-tag strong {
  color: var(--gold);
  font-weight: 600;
}

.cv-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  max-width: 480px;
}
.cv-meta div {
  display: flex;
  flex-direction: column;
}
.cv-meta span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.55);
  margin-bottom: 0.3rem;
}
.cv-meta strong {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: -0.005em;
}

.cv-portrait {
  margin: 0;
  position: relative;
}
.cv-portrait img {
  width: 100%;
  height: clamp(420px, 56vw, 620px);
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 196, 46, 0.25);
}
.cv-portrait figcaption {
  margin-top: 1rem;
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.5;
  text-align: right;
  max-width: 36ch;
  margin-left: auto;
}

@media (max-width: 900px) {
  .cv-hero-grid { grid-template-columns: 1fr; }
  .cv-portrait figcaption { text-align: left; margin-left: 0; }
  .cv-portrait img { height: clamp(360px, 80vw, 540px); object-position: center 18%; }
}

/* Editorial body */
.cv-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.cv-section--narrow .container { max-width: 760px; }
.cv-section--two-col .container { max-width: 1100px; }

.cv-section + .cv-section:not(.cv-pullquote-section):not(.cv-stakes):not(.cv-cta-band):not(.cv-ask) {
  padding-top: 0;
}

.cv-h2 {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.cv-h2--light { color: var(--cream); }

.cv-lede {
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  color: var(--ink);
  margin: 0 0 1.5rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  hanging-punctuation: first;
}

.cv-section p {
  font-size: clamp(1.02rem, 1.15vw, 1.1rem);
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  hanging-punctuation: first;
}
.cv-section p:last-child { margin-bottom: 0; }
.cv-section p strong { color: var(--ink); font-weight: 600; }
.cv-section p em { font-style: italic; color: var(--ink); }

/* Pullquote stays centered, not justified */
.cv-pullquote p { text-align: center; hyphens: manual; }

/* On narrow screens, switch to left-aligned for better readability */
@media (max-width: 600px) {
  .cv-section p,
  .cv-lede {
    text-align: left;
    hyphens: manual;
  }
}

/* Pullquote */
.cv-pullquote-section {
  background: var(--cream-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.cv-pullquote {
  margin: 0 auto;
  max-width: 880px;
  text-align: center;
}
.cv-pullquote p {
  font-family: 'Crimson Pro', Georgia, serif;
  font-weight: 700;
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 auto 1.5rem;
  max-width: 800px;
  text-align: center;
  position: relative;
}
.cv-pullquote p::before {
  content: """;
  font-family: 'Crimson Pro', Georgia, serif;
  font-size: 4em;
  font-style: normal;
  color: var(--gold);
  position: absolute;
  top: -0.55em;
  left: -0.65em;
  line-height: 1;
  opacity: 0.4;
}
.cv-pullquote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
}

/* Method cards */
.cv-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.cv-method-card {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.cv-method-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.cv-method-num {
  display: block;
  font-family: 'Crimson Pro', Georgia, serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}
.cv-method-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
  color: var(--ink);
}
.cv-method-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .cv-method-grid { grid-template-columns: 1fr; }
}

/* Stakes */
.cv-stakes {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

/* Ask */
.cv-ask {
  background: var(--cream);
  border-top: 1px solid var(--border);
}
.cv-ask-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
}
.cv-ask-grid h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 1rem;
}
.cv-ask-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.cv-ask-grid li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
  color: var(--ink-soft);
  display: flex;
  gap: 0.6rem;
}
.cv-ask-grid li::before {
  content: "—";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.cv-ask-grid li:last-child { border-bottom: none; }
@media (max-width: 720px) {
  .cv-ask-grid { grid-template-columns: 1fr; }
}

/* CTA band */
.cv-cta-band {
  background: linear-gradient(180deg, #1A4A9E 0%, #0E2E68 100%);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}
.cv-cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 380px at 50% -10%, rgba(255, 196, 46, 0.10), transparent 60%);
  pointer-events: none;
}
.cv-cta-inner {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cv-cta-inner p {
  font-size: clamp(1.05rem, 1.3vw, 1.15rem);
  line-height: 1.6;
  color: rgba(250, 247, 242, 0.85);
  margin: 0 auto 2.5rem;
  max-width: 64ch;
}
.cv-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
