/* ═══════════════════════════════════════════════════════════════════
   Kevin Mokuahi — Legacy Page
   Pacific blue accent. Editorial typography. Long-form reverence.
   ═══════════════════════════════════════════════════════════════════ */

:root {
  /* Pacific blue accent — Waikiki ocean / memorial gravitas */
  --c-accent:      #0369A1;
  --c-accent-hi:   #0284C7;
  --c-accent-soft: rgba(3, 105, 161, 0.14);
  --font-editorial: 'Playfair Display', Georgia, serif;
}

/* Header brand mark — same as charity */
.brand-mark {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--c-crimson), #991B1B);
  color: #fff;
  font-weight: 800; font-family: var(--font-display);
  border-radius: var(--r-md);
  box-shadow: var(--sh-md);
}

/* Hero — Pacific deep */
.hero-kevin {
  padding: 160px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(3, 105, 161, 0.25), transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(212, 165, 116, 0.06), transparent 65%);
}
.kevin-name {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5.5rem);
  letter-spacing: -0.025em;
  margin: 16px 0 28px;
  background: linear-gradient(135deg, #F5F5F7 0%, var(--c-accent-hi) 50%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.05;
}

/* Chapter headings */
.chapter-h {
  font-family: var(--font-editorial);
  font-weight: 700;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 18px 0 28px;
}

/* Editorial body type — wider line-height, larger font for readability */
.section .container-narrow p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 1.25em;
}
.section .container-narrow p.lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--c-text);
  font-weight: 500;
  margin-bottom: 1.5em;
}
.section .container-narrow p strong {
  color: var(--c-accent-hi);
  font-weight: 600;
}

/* Pull quotes */
.pull-quote {
  border-left: 4px solid var(--c-accent);
  padding: 22px 28px;
  margin: 44px 0;
  font-family: var(--font-editorial);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.45;
  font-style: italic;
  color: var(--c-text);
  background: var(--c-accent-soft);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.pull-quote-large {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  text-align: center;
  border-left: none;
  background: transparent;
  padding: 32px 16px;
  margin: 32px 0;
}
.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: .85rem;
  color: var(--c-text-dim);
  letter-spacing: .04em;
}

/* Celebs list — clean vertical column */
.celebs-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 32px;
}
.celebs-list li {
  font-family: var(--font-editorial);
  font-size: 1.4rem;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.celebs-list li strong {
  color: var(--c-text) !important;
}

@media (max-width: 600px) {
  .celebs-list { grid-template-columns: 1fr; gap: 0; }
}

/* Section head paragraph */
.section-head p { color: var(--c-text-dim); margin-top: 8px; }

/* Cards in TNT family section — overrides accent on hover */
.cards-grid a.card {
  color: inherit;
  text-decoration: none;
  display: block;
}

/* Mobile */
@media (max-width: 720px) {
  .hero-kevin { padding: 100px 0 60px; }
  .header-cta { display: none; }
  .container, .container-narrow { padding-left: 16px !important; padding-right: 16px !important; }

  .kevin-name, .chapter-h, h1, h2, h3, .hero-tag, p {
    overflow-wrap: break-word; word-break: normal; max-width: 100%; hyphens: auto;
  }
  .kevin-name { font-size: 2.5rem !important; padding: 0 8px; }
  .chapter-h { font-size: 1.65rem !important; }
  .hero-tag { font-size: .95rem; padding: 0 8px; }

  .hero-ctas { flex-direction: column; align-items: stretch; padding: 0 16px; }
  .hero-ctas .btn { width: 100%; }
  .pull-quote { padding: 16px 20px; margin: 28px 0; }
  .pull-quote-large { padding: 20px 12px; font-size: 1.2rem; }
  .celebs-list li { font-size: 1.15rem; }

  body { padding-bottom: 80px; }
  .nav-main { display: none; }
}

/* Hero background image overlay */
.hero-kevin {
  background-image:
    linear-gradient(180deg, rgba(8,47,73,0.6) 0%, rgba(11,11,15,0.85) 80%),
    url('/img/hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0B0B0F;
}
