/* ==========================================================================
   RYKOLO ADVISORY — CORE STYLESHEET
   Design system: Deep navy + gold, Playfair Display / Inter
   ========================================================================== */

:root {
  --primary: #081B33;
  --secondary: #102A43;
  --accent: #C9A227;
  --accent-light: #E7CA6B;
  --accent-dim: rgba(201, 162, 39, 0.14);
  --white: #FFFFFF;
  --gray: #F8F9FB;
  --gray-line: #E5E8ED;
  --text: #202124;
  --text-muted: #59606C;
  --text-inverse: #F3F5F8;
  --text-inverse-muted: #A9B4C4;

  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --radius: 2px;
  --transition: 420ms cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 20px 60px -20px rgba(8, 27, 51, 0.25);
  --shadow-card: 0 1px 2px rgba(8,27,51,0.04), 0 12px 32px -18px rgba(8,27,51,0.18);
}

/* ---------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  margin: 0 0 0.6em;
  color: var(--primary);
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section { padding: 110px 0; }
.section-tight { padding: 70px 0; }
.section-alt { background: var(--gray); }
.section-dark {
  background: linear-gradient(155deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--text-inverse);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}
.section-dark .eyebrow { color: var(--accent-light); }

.section-head { max-width: 720px; margin: 0 0 60px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-muted); font-size: 1.08rem; }
.section-dark .section-head p { color: var(--text-inverse-muted); }

h1 { font-size: clamp(2.4rem, 4.6vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.65rem); }
h3 { font-size: 1.35rem; }

.lede {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 620px;
}

/* ---------------------------- Buttons --------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-gold:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-2px); box-shadow: 0 14px 28px -12px rgba(201,162,39,0.55); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-ghost {
  background: none;
  color: var(--primary);
  padding: 8px 0;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--accent);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--accent); gap: 16px; }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------------------------- Navigation --------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 26px 0;
  transition: all var(--transition);
  background: transparent;
}
.nav.is-scrolled {
  padding: 16px 0;
  background: rgba(8, 27, 51, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 30px -18px rgba(0,0,0,0.5);
}
.nav .container { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 38px; height: 38px;
  border: 1px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 700;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.brand-mark span { transform: rotate(-45deg); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--white);
  letter-spacing: 0.01em;
}
.brand-name em { font-style: normal; color: var(--accent); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  color: var(--text-inverse-muted);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
}
.nav-cta { display: flex; align-items: center; gap: 20px; }
.nav-cta .btn { padding: 12px 26px; font-size: 0.78rem; }

.nav-toggle {
  display: none;
  width: 40px; height: 32px;
  background: none; border: none;
  flex-direction: column; justify-content: space-between;
  padding: 4px 0;
}
.nav-toggle span { display: block; height: 1px; width: 100%; background: var(--white); transition: all var(--transition); }

/* ---------------------------- Hero --------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #081B33 0%, #0D2340 55%, #102A43 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,39,0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.7) 40%, transparent 100%);
  pointer-events: none;
}
.hero-skyline {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%;
  max-width: 900px;
  opacity: 0.5;
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; }
.hero h1 { color: var(--white); margin-bottom: 26px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lede { color: var(--text-inverse-muted); font-size: 1.22rem; max-width: 560px; margin-bottom: 44px; }

.hero-page {
  min-height: 56vh;
  padding-top: 170px;
  padding-bottom: 90px;
}
.hero-page .lede { max-width: 620px; }

/* ---------------------------- Ticker --------------------------------- */
.ticker-band {
  background: var(--primary);
  border-top: 1px solid rgba(201,162,39,0.25);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  overflow: hidden;
  position: relative;
  padding: 18px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
}
.ticker-track span {
  display: inline-flex;
  align-items: center;
  color: var(--text-inverse-muted);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 28px;
  white-space: nowrap;
}
.ticker-track span::after {
  content: '\2022';
  color: var(--accent);
  margin-left: 28px;
}
.ticker-track strong { color: var(--white); font-weight: 600; margin-right: 8px; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------- Logo strip --------------------------------- */
.trust-strip { padding: 60px 0; border-bottom: 1px solid var(--gray-line); }
.trust-strip .trust-label {
  text-align: center;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 30px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-grid .trust-item {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--primary);
  opacity: 0.55;
  transition: opacity var(--transition);
  letter-spacing: 0.02em;
}
.trust-grid .trust-item:hover { opacity: 1; }

/* ---------------------------- Grids & cards --------------------------------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

.card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 42px 34px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); border-color: transparent; }
.card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 26px;
  transform: rotate(45deg);
}
.card-icon i { transform: rotate(-45deg); }
.card h3 { margin-bottom: 12px; font-size: 1.22rem; }
.card p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.97rem; }
.card-link { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--primary); border-bottom: 1px solid var(--gray-line); padding-bottom: 4px; }
.card:hover .card-link { color: var(--accent); border-color: var(--accent); }

.service-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-line);
}
.service-detail:last-child { border-bottom: none; }
.service-detail .num { font-family: var(--font-display); font-size: 2.4rem; color: var(--accent); opacity: 0.6; }
.service-detail h3 { margin-bottom: 14px; }
.service-detail .tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.service-detail .tags span {
  font-size: 0.74rem; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 7px 14px; border: 1px solid var(--gray-line); color: var(--text-muted);
}

/* ---------------------------- Timeline / process --------------------------------- */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  top: 26px; left: 0; right: 0;
  height: 1px;
  background: var(--gray-line);
}
.timeline-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.timeline-step { position: relative; text-align: left; padding-top: 64px; }
.timeline-step .step-dot {
  position: absolute; top: 0; left: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--accent);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}
.timeline-step h3 { font-size: 1.05rem; margin-bottom: 10px; }
.timeline-step p { color: var(--text-muted); font-size: 0.92rem; }

.timeline-detail { display: flex; flex-direction: column; gap: 0; }
.timeline-detail-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 40px;
  padding: 44px 0;
  border-bottom: 1px solid var(--gray-line);
}
.timeline-detail-row:first-child { padding-top: 0; }
.timeline-detail-row:last-child { border-bottom: none; }
.timeline-detail-row .step-label { display: flex; align-items: flex-start; gap: 14px; }
.timeline-detail-row .step-num { font-family: var(--font-display); font-size: 2rem; color: var(--accent); }
.timeline-detail-row .step-name { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 8px; }

/* ---------------------------- Stats / counters --------------------------------- */
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat .stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 12px;
}
.stat .stat-label { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-inverse-muted); }
.section:not(.section-dark) .stat .stat-label { color: var(--text-muted); }

/* ---------------------------- Industries --------------------------------- */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--gray-line); }
.industry-tile {
  background: var(--white);
  padding: 46px 30px;
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-tile i { color: var(--accent); font-size: 1.6rem; margin-bottom: 20px; display: block; }
.industry-tile h3 { font-size: 1.08rem; margin-bottom: 10px; }
.industry-tile p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }
.industry-tile:hover { background: var(--primary); }
.industry-tile:hover h3, .industry-tile:hover i { color: var(--white); }
.industry-tile:hover p { color: var(--text-inverse-muted); }

/* ---------------------------- Values / why choose --------------------------------- */
.value-list { display: grid; grid-template-columns: 1fr 1fr; gap: 34px 50px; }
.value-item { display: flex; gap: 20px; }
.value-item i { color: var(--accent); font-size: 1.3rem; margin-top: 4px; flex-shrink: 0; }
.value-item h3 { font-size: 1.08rem; margin-bottom: 8px; }
.value-item p { color: var(--text-muted); font-size: 0.93rem; margin: 0; }
.section-dark .value-item p { color: var(--text-inverse-muted); }

/* ---------------------------- Testimonials --------------------------------- */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 44px 38px;
  position: relative;
}
.testimonial-card .quote-mark { font-family: var(--font-display); font-size: 3.4rem; color: var(--accent); line-height: 1; opacity: 0.5; }
.testimonial-card p.quote { font-size: 1.02rem; color: var(--text); margin: 12px 0 28px; }
.testimonial-person { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem;
}
.testimonial-person .p-name { font-weight: 600; font-size: 0.92rem; color: var(--primary); }
.testimonial-person .p-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---------------------------- Insights / articles --------------------------------- */
.insight-card { display: flex; flex-direction: column; }
.insight-thumb {
  height: 190px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}
.insight-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,162,39,0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(201,162,39,0.15) 1px, transparent 1px);
  background-size: 26px 26px;
}
.insight-tag { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; display: block; }
.insight-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.insight-card p { color: var(--text-muted); font-size: 0.92rem; }
.insight-meta { font-size: 0.78rem; color: var(--text-muted); margin-top: auto; padding-top: 16px; border-top: 1px solid var(--gray-line); }

/* ---------------------------- CTA band --------------------------------- */
.cta-band {
  background: linear-gradient(155deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--white); margin-bottom: 30px; }
.cta-band .btn-row { justify-content: center; }

/* ---------------------------- Footer --------------------------------- */
.site-footer { background: #061424; color: var(--text-inverse-muted); padding: 90px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: var(--text-inverse-muted); font-size: 0.92rem; margin: 20px 0 24px; max-width: 300px; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { color: var(--white); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col a { font-size: 0.92rem; color: var(--text-inverse-muted); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col .contact-line { display: flex; gap: 10px; font-size: 0.9rem; margin-bottom: 14px; }
.footer-col .contact-line i { color: var(--accent); margin-top: 3px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; font-size: 0.8rem; color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom .legal-links { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ---------------------------- Forms --------------------------------- */
.form-shell {
  background: var(--white);
  border: 1px solid var(--gray-line);
  padding: 52px;
  box-shadow: var(--shadow-card);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.form-group { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em; color: var(--primary); }
.form-group .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--gray-line);
  background: var(--gray);
  padding: 14px 16px;
  border-radius: var(--radius);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-file {
  border: 1px dashed var(--gray-line);
  background: var(--gray);
  padding: 22px;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color var(--transition);
}
.form-file:hover { border-color: var(--accent); }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; }
.form-msg { padding: 16px 18px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 26px; display: none; }
.form-msg.success { display: block; background: rgba(46,125,50,0.08); border: 1px solid rgba(46,125,50,0.3); color: #2E7D32; }
.form-msg.error { display: block; background: rgba(198,40,40,0.08); border: 1px solid rgba(198,40,40,0.3); color: #C62828; }

.side-info { display: flex; flex-direction: column; gap: 28px; }
.side-info .info-item { display: flex; gap: 16px; }
.side-info .info-item i { color: var(--accent); font-size: 1.2rem; margin-top: 3px; }
.side-info .info-item h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--primary); }
.side-info .info-item p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.map-frame {
  height: 260px;
  background: linear-gradient(135deg, var(--gray) 25%, #EDEFF3 25%, #EDEFF3 50%, var(--gray) 50%, var(--gray) 75%, #EDEFF3 75%, #EDEFF3);
  background-size: 24px 24px;
  border: 1px solid var(--gray-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

/* ---------------------------- Legal pages --------------------------------- */
.legal-content { max-width: 780px; }
.legal-content h2 { margin-top: 46px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--text-muted); font-size: 0.98rem; }
.legal-content ul { margin: 16px 0; padding-left: 22px; list-style: disc; }
.legal-content li { margin-bottom: 8px; }
.legal-updated { font-size: 0.85rem; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 8px; display: block; }

/* ---------------------------- 404 --------------------------------- */
.error-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, #081B33 0%, #102A43 100%);
  color: var(--white);
  padding: 40px;
}
.error-page .error-code {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

/* ---------------------------- Breadcrumb --------------------------------- */
.breadcrumb { font-size: 0.82rem; color: var(--text-inverse-muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--text-inverse-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ---------------------------- Leadership --------------------------------- */
.leader-card { text-align: left; }
.leader-photo {
  height: 280px;
  background: linear-gradient(150deg, var(--primary), var(--secondary));
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.leader-photo::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(120deg, rgba(201,162,39,0.08) 0 2px, transparent 2px 40px);
}
.leader-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.leader-role { font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.leader-card p { color: var(--text-muted); font-size: 0.9rem; }

/* utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.divider-gold { width: 60px; height: 2px; background: var(--accent); margin: 24px 0; }
