/* ========================================================================
   Xyra Group — Design System
   Palette derived from the Introductory Memorandum: deep purple + gold.
   ======================================================================== */

:root {
  /* Brand */
  --purple-deep:   #2A0F4F;   /* primary brand — IM cover */
  --purple:        #3B1865;   /* primary */
  --purple-soft:   #5B2A8C;   /* surfaces, secondary */
  --purple-haze:   #8B6BB8;   /* tints */
  --gold:          #C9892A;   /* accent */
  --gold-soft:     #E0AE5B;   /* hover/highlight */
  --gold-faint:    #F2DDB5;   /* tinted backgrounds */

  /* Neutrals */
  --cream:         #F8F4EC;   /* warm body bg */
  --ivory:         #FCFAF5;   /* surface */
  --paper:         #FFFFFF;
  --ink:           #171018;   /* primary text */
  --ink-soft:      #3D3140;
  --mute:          #6B5E70;
  --rule:          #E5DDD2;
  --rule-strong:   #C9BFAF;

  /* Semantic */
  --bg:            var(--cream);
  --surface:       var(--ivory);
  --text:          var(--ink);
  --text-mute:     var(--mute);
  --primary:       var(--purple);
  --primary-strong:var(--purple-deep);
  --accent:        var(--gold);

  /* Type */
  --font-display: "Cormorant Garamond", "Garamond", "EB Garamond", Georgia, serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Scale */
  --step--1: clamp(0.78rem, 0.76rem + 0.10vw, 0.86rem);
  --step-0:  clamp(0.95rem, 0.90rem + 0.20vw, 1.05rem);
  --step-1:  clamp(1.10rem, 1.00rem + 0.40vw, 1.25rem);
  --step-2:  clamp(1.35rem, 1.20rem + 0.70vw, 1.65rem);
  --step-3:  clamp(1.75rem, 1.50rem + 1.20vw, 2.30rem);
  --step-4:  clamp(2.30rem, 1.85rem + 2.10vw, 3.50rem);
  --step-5:  clamp(3.00rem, 2.30rem + 3.20vw, 5.20rem);

  /* Layout */
  --container: 1240px;
  --gutter: clamp(1rem, 2.5vw, 2rem);
  --section-y: clamp(4rem, 8vw, 7rem);

  /* Effects */
  --shadow-1: 0 1px 2px rgba(23,16,24,0.04), 0 4px 12px rgba(23,16,24,0.06);
  --shadow-2: 0 8px 24px rgba(42,15,79,0.10), 0 24px 60px rgba(42,15,79,0.08);
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ====================================================================== */
/* Reset & base                                                            */
/* ====================================================================== */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--purple); color: var(--gold-faint); }

/* ====================================================================== */
/* Typography                                                              */
/* ====================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: var(--step-5); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: var(--step-4); font-weight: 500; }
h3 { font-size: var(--step-3); }
h4 { font-size: var(--step-2); }

p { font-size: var(--step-0); line-height: 1.65; max-width: 70ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold-soft); }

.lead {
  font-family: var(--font-display);
  font-size: var(--step-2);
  line-height: 1.35;
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 36ch;
}

/* ====================================================================== */
/* Layout primitives                                                       */
/* ====================================================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--tight { padding-top: clamp(2rem,5vw,4rem); padding-bottom: clamp(2rem,5vw,4rem); }
.section--purple {
  background: var(--purple-deep);
  color: var(--cream);
}
.section--purple h1, .section--purple h2, .section--purple h3, .section--purple h4 {
  color: var(--cream);
}
.section--purple p { color: rgba(248,244,236,0.80); }

.section--gold-edge {
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 880px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--text-2 > *:first-child { order: 2; }
}

.stack > * + * { margin-top: 1rem; }
.stack-lg > * + * { margin-top: 1.5rem; }

/* ====================================================================== */
/* Buttons & links                                                         */
/* ====================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn--primary {
  background: var(--gold);
  color: var(--purple-deep);
}
.btn--primary:hover { background: var(--gold-soft); transform: translateY(-1px); box-shadow: var(--shadow-1); }
.btn--ghost {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}
.btn--ghost:hover { background: var(--purple); color: var(--gold); border-color: var(--purple); }
.btn--ghost.on-dark:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--purple);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: all 0.25s var(--ease);
}
.link-arrow:hover { color: var(--gold); border-color: var(--purple); }
.link-arrow .arrow { transition: transform 0.25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ====================================================================== */
/* Header / navigation                                                     */
/* ====================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--purple-deep);
}
.brand__mark { width: 36px; height: 36px; flex-shrink: 0; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s var(--ease);
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--purple-deep); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); }
.nav__cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--purple-deep);
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 22px; height: 2px;
  background: var(--purple-deep);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top:  7px; }

@media (max-width: 880px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--rule);
    padding: 1rem var(--gutter) 1.5rem;
    gap: 0;
  }
  .nav.is-open .nav__link {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav.is-open .nav__cta { margin: 1rem 0 0; align-self: flex-start; }
}

/* ====================================================================== */
/* Hero                                                                    */
/* ====================================================================== */

.hero {
  background: var(--purple-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,137,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(91,42,140,0.40) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) {
  .hero__inner { grid-template-columns: 1.15fr 1fr; }
}
.hero h1 {
  color: var(--cream);
  font-size: clamp(2.4rem, 1.8rem + 3.4vw, 5rem);
  line-height: 1.05;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-style: italic;
}
.hero p { color: rgba(248,244,236,0.86); font-size: var(--step-1); max-width: 50ch; }
.hero__cta { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--purple-soft) 0%, var(--purple-deep) 100%);
  border-radius: var(--radius);
  border: 1px solid rgba(201,137,42,0.30);
  box-shadow: var(--shadow-2);
  overflow: hidden;
}
.hero__visual::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(42,15,79,0.40) 100%);
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: 0.72; }
.hero__seal {
  position: absolute;
  bottom: 1.4rem; left: 1.4rem;
  width: 88px; height: 88px;
  z-index: 2;
}

/* Page hero (smaller — non-home pages) */
.page-hero {
  background: var(--purple-deep);
  color: var(--cream);
  text-align: center;
  padding: clamp(4rem,8vw,6rem) var(--gutter) clamp(3rem,6vw,4.5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top, rgba(201,137,42,0.10) 0%, transparent 60%),
    radial-gradient(ellipse at bottom, rgba(91,42,140,0.50) 0%, transparent 70%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: var(--cream); margin-top: 0.6rem; }
.page-hero p { color: rgba(248,244,236,0.80); margin: 1rem auto 0; font-size: var(--step-1); }

/* ====================================================================== */
/* Stats                                                                   */
/* ====================================================================== */

.stats {
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem,3vw,2.5rem);
  padding: clamp(2.5rem,5vw,4rem) 0;
}
@media (min-width: 720px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; padding: 0 0.5rem; border-left: 2px solid var(--gold); padding-left: 1.25rem; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.4rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat__num small { font-size: 0.55em; color: var(--gold); margin-left: 0.1em; vertical-align: super; }
.stat__label {
  margin-top: 0.7rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ====================================================================== */
/* Cards / committees / pillars                                            */
/* ====================================================================== */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1rem, 2vw, 1.75rem);
}
.card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 4px; height: 0;
  background: var(--gold);
  transition: height 0.4s var(--ease);
}
.card:hover { transform: translateY(-3px); border-color: var(--purple-soft); box-shadow: var(--shadow-1); }
.card:hover::before { height: 100%; }
.card__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.card h3, .card h4 { color: var(--purple-deep); margin-bottom: 0.7rem; }
.card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }

.card--purple {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple-soft);
}
.card--purple h3, .card--purple h4 { color: var(--cream); }
.card--purple p { color: rgba(248,244,236,0.78); }
.card--purple .card__num { color: var(--gold); }
.card--purple::before { display: none !important; }

/* ====================================================================== */
/* Founder block                                                           */
/* ====================================================================== */

.founder {
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.founder__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem,4vw,3rem);
  padding: clamp(3rem,7vw,5.5rem) 0;
  align-items: start;
}
@media (min-width: 920px) {
  .founder__inner { grid-template-columns: 380px 1fr; }
}
.founder__portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--purple-soft), var(--purple-deep));
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rule-strong);
}
.founder__portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder__portrait::after {
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(42,15,79,0.35));
}
.founder__quote { font-family: var(--font-display); font-size: var(--step-2); line-height: 1.4; font-style: italic; color: var(--ink-soft); }
.founder__signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 0.2rem;
}
.founder__signature strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; color: var(--purple-deep); }
.founder__signature span { font-size: 0.85rem; color: var(--mute); letter-spacing: 0.10em; text-transform: uppercase; }

/* ====================================================================== */
/* Board                                                                   */
/* ====================================================================== */

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}
.board-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.board-card:hover { transform: translateY(-4px); border-color: var(--purple-soft); box-shadow: var(--shadow-2); }
.board-card__photo {
  aspect-ratio: 1/1.15;
  background: linear-gradient(160deg, var(--purple-soft), var(--purple-deep));
  position: relative; overflow: hidden;
}
.board-card__photo::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 50%;
  background: linear-gradient(180deg, transparent, rgba(42,15,79,0.55));
}
.board-card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.board-card:hover .board-card__photo img { transform: scale(1.05); }
.board-card__body { padding: 1.2rem 1.2rem 1.4rem; }
.board-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}
.board-card__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.board-card__bio { font-size: 0.88rem; line-height: 1.55; color: var(--ink-soft); margin-bottom: 1rem; }
.board-card__linkedin {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--purple); font-weight: 600;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: all 0.2s var(--ease);
}
.board-card__linkedin:hover { color: var(--gold); border-color: var(--gold); }

/* ====================================================================== */
/* Sectors / verticals                                                     */
/* ====================================================================== */

.sectors {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.sector {
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: 1.8rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  position: relative;
}
.sector:hover {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple);
  transform: translateY(-3px);
}
.sector:hover .sector__num,
.sector:hover h4 { color: var(--gold-soft); }
.sector:hover p { color: rgba(248,244,236,0.85); }
.sector__num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.20em;
  margin-bottom: 0.8rem;
  display: block;
  transition: color 0.3s var(--ease);
}
.sector h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--purple-deep);
  transition: color 0.3s var(--ease);
}
.sector p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--ink-soft);
  transition: color 0.3s var(--ease);
}

/* ====================================================================== */
/* Founders CTA box (yellow/gold call-to-action)                           */
/* ====================================================================== */

.cta-box {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid rgba(42,15,79,0.10);
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) {
  .cta-box { grid-template-columns: 1fr auto; }
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(42,15,79,0.10), transparent 70%);
  pointer-events: none;
}
.cta-box h3 {
  color: var(--purple-deep);
  font-size: var(--step-2);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.cta-box p {
  color: rgba(42,15,79,0.85);
  margin-top: 0.5rem;
  position: relative;
  z-index: 1;
}
.cta-box .btn {
  background: var(--purple-deep);
  color: var(--gold-soft);
  position: relative;
  z-index: 1;
}
.cta-box .btn:hover { background: var(--ink); color: var(--gold); }

.cta-box--purple {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  color: var(--cream);
}
.cta-box--purple h3 { color: var(--cream); }
.cta-box--purple p { color: rgba(248,244,236,0.85); }
.cta-box--purple .btn { background: var(--gold); color: var(--purple-deep); }
.cta-box--purple .btn:hover { background: var(--gold-soft); }

/* ====================================================================== */
/* Advisers / partners strip                                               */
/* ====================================================================== */

.partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 720px) { .partners { grid-template-columns: repeat(4, 1fr); } }
.partner {
  height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  transition: all 0.3s var(--ease);
}
.partner:hover { border-color: var(--purple-soft); box-shadow: var(--shadow-1); }
.partner__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--purple-deep);
  text-align: center;
  letter-spacing: 0.02em;
}
.partner__sub { display: block; font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.20em; text-transform: uppercase; color: var(--mute); margin-top: 0.3rem; }

/* ====================================================================== */
/* Forms                                                                   */
/* ====================================================================== */

.form { display: grid; gap: 1.2rem; }
.field { display: grid; gap: 0.4rem; }
.field label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--paper);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(91,42,140,0.10);
}
.field textarea { min-height: 140px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 720px) { .field-row { grid-template-columns: 1fr 1fr; } }

/* ====================================================================== */
/* Footer                                                                  */
/* ====================================================================== */

.footer {
  background: var(--purple-deep);
  color: rgba(248,244,236,0.75);
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.5rem;
}
.footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,244,236,0.12);
}
.footer__col p, .footer__col a, .footer__col li {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(248,244,236,0.78);
}
.footer__col ul { list-style: none; }
.footer__col a { transition: color 0.2s var(--ease); }
.footer__col a:hover { color: var(--gold); }
.footer__brand {
  grid-column: 1 / -1;
}
@media (min-width: 720px) {
  .footer__brand { grid-column: span 2; }
}
.footer__brand .brand { color: var(--cream); margin-bottom: 1rem; }
.footer__brand p { max-width: 38ch; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  font-size: 0.78rem;
  color: rgba(248,244,236,0.55);
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer__legal a { color: rgba(248,244,236,0.65); }
.footer__legal a:hover { color: var(--gold); }

.socials { display: flex; gap: 0.7rem; margin-top: 0.5rem; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(248,244,236,0.20);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.25s var(--ease);
  color: rgba(248,244,236,0.75);
}
.socials a:hover { background: var(--gold); color: var(--purple-deep); border-color: var(--gold); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; fill: currentColor; }

/* ====================================================================== */
/* Disclosure / regulatory notice block                                    */
/* ====================================================================== */

.disclosure {
  background: var(--purple-deep);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  color: rgba(248,244,236,0.78);
  padding: 2.5rem 0;
}
.disclosure h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.disclosure p { font-size: 0.84rem; line-height: 1.7; max-width: none; color: rgba(248,244,236,0.72); }
.disclosure p + p { margin-top: 0.8rem; }

/* ====================================================================== */
/* Cookie banner                                                           */
/* ====================================================================== */

.cookie-banner {
  position: fixed;
  bottom: clamp(1rem, 2.4vw, 1.6rem);
  left: clamp(1rem, 2.4vw, 1.6rem);
  right: clamp(1rem, 2.4vw, 1.6rem);
  z-index: 200;
  max-width: 560px;
  background: var(--purple-deep);
  color: var(--cream);
  padding: 1.6rem 1.7rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.55), 0 8px 20px -10px rgba(42,15,79,0.45);
  border: 1px solid rgba(201,137,42,0.55);
  display: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  backdrop-filter: blur(2px);
}
.cookie-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,137,42,0.2));
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}
.cookie-banner.is-visible {
  display: block;
  animation: cookieRise 0.5s var(--ease) forwards;
}
@keyframes cookieRise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__eyebrow {
  font-family: var(--font-mono, monospace);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}
.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.55rem;
  letter-spacing: -0.005em;
}
.cookie-banner p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(248,244,236,0.82);
  margin-bottom: 1.15rem;
  max-width: 52ch;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.cookie-banner .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}
.cookie-banner__policy {
  margin-left: auto;
  font-size: 0.74rem;
  color: rgba(248,244,236,0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
.cookie-banner__policy:hover { color: var(--gold); }
@media (max-width: 540px) {
  .cookie-banner__policy { margin-left: 0; margin-top: 0.4rem; flex-basis: 100%; }
}

/* ====================================================================== */
/* Policy / legal pages                                                    */
/* ====================================================================== */

.policy {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4.5rem) var(--gutter);
}
.policy h1 { font-size: var(--step-4); margin-bottom: 0.5rem; color: var(--purple-deep); }
.policy h2 { font-size: var(--step-2); margin: 2.5rem 0 0.8rem; color: var(--purple-deep); }
.policy h3 { font-size: var(--step-1); margin: 1.6rem 0 0.6rem; color: var(--purple); }
.policy p, .policy li { font-size: 0.98rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 1rem; max-width: none; }
.policy ul, .policy ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.policy li { margin-bottom: 0.4rem; }
.policy strong { color: var(--ink); }
.policy__meta {
  font-size: 0.85rem;
  color: var(--mute);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

/* ====================================================================== */
/* Helpers                                                                 */
/* ====================================================================== */

.text-center { text-align: center; }
.muted { color: var(--mute); }
.purple { color: var(--purple); }
.gold { color: var(--gold); }
.divider { width: 60px; height: 2px; background: var(--gold); border: 0; margin: 1.2rem 0; }
.divider--center { margin: 1.2rem auto; }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* Print */
@media print {
  .header, .footer, .cookie-banner, .hero__visual, .nav, video, iframe { display: none !important; }
}

/* ============================================================
   VIDEO SECTIONS
   ============================================================ */
.video-section { background: var(--cream); }
.video-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .video-row { grid-template-columns: 1.05fr 1fr; }
  .video-row--reverse { grid-template-columns: 1fr 1.05fr; }
  .video-row--reverse > .video-frame { order: 2; }
}
.video-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(23,16,24,0.35), 0 8px 22px -10px rgba(42,15,79,0.20);
  background: var(--ink);
  border: 1px solid rgba(42,15,79,0.10);
}
.video-frame__inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.video-frame__inner iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
  display: block;
}
.video-section .video-row > div:not(.video-frame) p {
  max-width: 58ch;
}

/* ============================================================
   PARTNERS — LOGO VARIANT
   ============================================================ */
.partners--logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
@media (min-width: 720px) {
  .partners--logos { grid-template-columns: repeat(4, 1fr); }
}
.partners--logos .partner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  min-height: 130px;
  background: var(--ivory);
  border: 1px solid rgba(42,15,79,0.10);
  border-radius: 4px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.partners--logos .partner:hover {
  border-color: var(--gold);
  box-shadow: 0 14px 32px -16px rgba(42,15,79,0.25);
  transform: translateY(-3px);
}
.partners--logos .partner img {
  max-width: 100%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
  transition: filter 0.3s var(--ease), opacity 0.3s var(--ease);
}
.partners--logos .partner:hover img {
  filter: none;
  opacity: 1;
}

/* Stats — accommodate word values like "Centuries" / "Billions" */
.stat__num {
  word-break: keep-all;
}
.stat__num.is-word {
  font-size: clamp(1.6rem, 1rem + 1.8vw, 2.4rem);
  letter-spacing: 0;
  font-style: italic;
}

/* Make stat children block-level so label sits below number */
.stat__num, .stat__label { display: block; }

/* ====================================================================== */
/* Brand wordmark (orange Xyra logo + "Group/Holdings" lockup)            */
/* ====================================================================== */
.brand__wordmark {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand__lockup {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--purple-deep);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}
.brand__lockup small {
  font-family: var(--font-display);
  font-size: 0.78em;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--gold);
}
.brand--on-dark .brand__lockup { color: var(--cream); }
.brand--on-dark .brand__lockup small { color: var(--gold); }

/* ====================================================================== */
/* Hero — airy variant + photo on right                                    */
/* ====================================================================== */
.hero--airy .hero__inner { gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero--airy .hero__copy h1 { line-height: 1.08; margin-bottom: 1.4rem; }
.hero--airy .hero__copy p {
  line-height: 1.85;
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.18rem);
  letter-spacing: 0.005em;
  margin-bottom: 2rem;
  max-width: 56ch;
}
.hero__visual.hero__visual--photo {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  aspect-ratio: auto;
  border: none;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}
.hero__visual.hero__visual--photo::after { content: none; }
.hero__visual.hero__visual--photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  mix-blend-mode: normal;
  opacity: 1;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.55);
}

/* ====================================================================== */
/* Stats — dark navy band, gold serif numerals                             */
/* ====================================================================== */
.stats--dark {
  background: #0E1A2E;
  border-top: none;
  border-bottom: none;
  color: var(--cream);
}
.stats--dark .stat {
  border-left: none;
  padding-left: 0.5rem;
  text-align: center;
}
@media (min-width: 720px) {
  .stats--dark .stat { text-align: left; padding-left: 1.25rem; }
  .stats--dark .stat + .stat { border-left: 1px solid rgba(201,137,42,0.25); }
}
.stats--dark .stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.stats--dark .stat__num small { color: var(--gold); font-size: 0.6em; }
.stats--dark .stat__label {
  color: rgba(252,250,245,0.85);
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ====================================================================== */
/* Split with image                                                        */
/* ====================================================================== */
.split--with-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 4vw, 3.2rem);
  align-items: center;
}
@media (min-width: 860px) {
  .split--with-image { grid-template-columns: 1fr 1fr; gap: clamp(2.4rem, 4vw, 4rem); }
}
.split__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 24px 50px -28px rgba(0,0,0,0.45);
}

/* ====================================================================== */
/* Section — navy variant                                                  */
/* ====================================================================== */
.section--navy {
  background: #0E1A2E;
  color: var(--cream);
}
.section--navy h2,
.section--navy .on-dark { color: var(--cream); }
.section--navy p.on-dark { color: rgba(252,250,245,0.88); }
.section--navy .eyebrow.on-dark { color: var(--gold); }

/* ====================================================================== */
/* Section--purple p.on-dark consistency                                   */
/* ====================================================================== */
.section--purple h2.on-dark { color: var(--cream); }
.section--purple p.on-dark { color: rgba(252,250,245,0.92); }

/* ====================================================================== */
/* Bio modal (board cards)                                                 */
/* ====================================================================== */
.bio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(15, 10, 25, 0.78);
  backdrop-filter: blur(4px);
}
.bio-modal.is-open { display: flex; }
.bio-modal__panel {
  background: var(--cream);
  color: var(--ink);
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  border-radius: 8px;
  padding: clamp(1.6rem, 3vw, 2.4rem) clamp(1.4rem, 3vw, 2.6rem);
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.bio-modal__close {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  background: transparent;
  border: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink-soft);
  padding: 0.4rem 0.6rem;
}
.bio-modal__close:hover { color: var(--purple-deep); }
.bio-modal__head {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}
.bio-modal__photo {
  width: 96px;
  height: 96px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--ivory);
}
.bio-modal__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-modal__name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--purple-deep); margin: 0 0 0.2rem; }
.bio-modal__role { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin: 0 0 0.6rem; font-weight: 600; }
.bio-modal__linkedin { font-size: 0.85rem; color: var(--purple-deep); text-decoration: none; border-bottom: 1px solid currentColor; }
.bio-modal__linkedin:hover { color: var(--gold); }
.bio-modal__body p { font-size: 0.96rem; line-height: 1.75; margin-bottom: 0.9rem; color: var(--ink); }

.board-card { cursor: pointer; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.board-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.35); }
.board-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

body.modal-open { overflow: hidden; }

/* ====================================================================== */
/* v2 — Hero gradient (top-down purple)                                    */
/* ====================================================================== */
.hero.hero--gradient {
  background: linear-gradient(180deg, var(--purple-soft) 0%, var(--purple) 45%, var(--purple-deep) 100%);
}
.hero.hero--gradient::before { display: none; }

/* ====================================================================== */
/* v2 — Stats: purple variant (matches hero gradient terminus)             */
/* ====================================================================== */
.stats--purple {
  background: var(--purple-deep);
  color: var(--cream);
  border-top: none;
  border-bottom: none;
}
.stats--purple .stat {
  border-left: none;
  padding-left: 0.5rem;
  text-align: center;
}
@media (min-width: 720px) {
  .stats--purple .stat { text-align: left; padding-left: 1.25rem; }
  .stats--purple .stat + .stat { border-left: 1px solid rgba(201,137,42,0.28); }
}
.stats--purple .stat__num {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
  letter-spacing: -0.01em;
}
.stats--purple .stat__num small { color: var(--gold); font-size: 0.6em; }
.stats--purple .stat__label {
  color: rgba(252,250,245,0.85);
  letter-spacing: 0.18em;
  font-weight: 600;
}

/* ====================================================================== */
/* v2 — Split media right (text left, image right on desktop)              */
/* On mobile, image stacks above text for visual rhythm.                   */
/* ====================================================================== */
@media (min-width: 860px) {
  .split--with-image.split--media-right > .split__copy { order: 1; }
  .split--with-image.split--media-right > .split__media { order: 2; }
}

/* ====================================================================== */
/* v2 — Brand wordmark on dark backgrounds                                 */
/* The new logo-xyra.png is dark on transparent. On dark surfaces (footer) */
/* invert luminance to render light, then preserve original orange hue.    */
/* ====================================================================== */
.brand__wordmark { height: 44px; }
.brand__wordmark--invert {
  filter: invert(1) brightness(1.15);
}

/* v2 — hide the legacy "Group/Holdings" text lockup; the new image already
   contains the Group wordmark.                                            */
.brand__lockup { display: none !important; }

/* v2 — soften any padding-top on the Advisors section when preceded by a
   tight-padded section, to reduce blank space.                            */
.section--tight + .section { padding-top: clamp(2.4rem, 5vw, 4rem); }

/* v2 — ESG page: scroll-reveal images with subtle fade + rise            */
.esg-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.esg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.esg-figure {
  margin: clamp(2.4rem, 5vw, 4rem) 0;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px -32px rgba(42,15,79,0.45);
}
.esg-figure img { width: 100%; height: auto; display: block; }
.esg-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 1.6rem);
  margin: clamp(2rem, 5vw, 3.4rem) 0;
}
@media (min-width: 720px) {
  .esg-grid { grid-template-columns: 1fr 1fr; }
}

/* ====================================================================== */
/* v3 — Section spacing helpers                                            */
/* ====================================================================== */
.section--tight-bottom { padding-bottom: clamp(2rem, 4vw, 3rem) !important; }
.section--tight-top    { padding-top:    clamp(2rem, 4vw, 3rem) !important; }

/* ====================================================================== */
/* v3 — Seven theatres: centre the trailing 3 cards on the second row     */
/* Desktop: 4 cards top row, 3 centred on bottom row.                     */
/* Mobile: stack normally (auto-fit fallback inherited).                  */
/* ====================================================================== */
@media (min-width: 960px) {
  .sectors--centered-tail {
    grid-template-columns: repeat(12, 1fr);
  }
  .sectors--centered-tail > .sector { grid-column: span 3; }
  .sectors--centered-tail > .sector:nth-child(5) { grid-column: 2 / span 3; }
  .sectors--centered-tail > .sector:nth-child(6) { grid-column: span 3; }
  .sectors--centered-tail > .sector:nth-child(7) { grid-column: span 3; }
}

/* ====================================================================== */
/* v3 — Three-up cards (careers disciplines)                              */
/* ====================================================================== */
@media (min-width: 860px) {
  .cards--three { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ====================================================================== */
/* v3 — ESG accordion (collapsible sections I/II/III)                     */
/* ====================================================================== */
.esg-accordion {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--paper);
  margin: 0 0 1.25rem;
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.esg-accordion + .esg-accordion { margin-top: 1.25rem; }
.esg-accordion[open] {
  border-color: var(--purple-soft);
  box-shadow: var(--shadow-1);
}
.esg-accordion > summary,
.esg-accordion__summary {
  list-style: none;
  list-style-type: none;
  cursor: pointer;
  padding: clamp(1.4rem, 1.1rem + 1vw, 1.9rem) clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.95rem + 0.7vw, 1.5rem);
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -0.005em;
  transition: background-color 0.2s var(--ease);
}
.esg-accordion > summary::-webkit-details-marker,
.esg-accordion > summary::marker,
.esg-accordion__summary::-webkit-details-marker,
.esg-accordion__summary::marker { display: none; content: ""; }
.esg-accordion > summary:hover,
.esg-accordion__summary:hover { background: rgba(42,15,79,0.04); }
.esg-accordion > summary:focus-visible,
.esg-accordion__summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}
.esg-accordion__title {
  font-family: var(--font-display);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  letter-spacing: inherit;
}
.esg-accordion__title { flex: 1; }
.esg-accordion__chev {
  font-family: var(--font-display);
  font-size: 1.9rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  display: inline-block;
  font-weight: 300;
  flex-shrink: 0;
}
.esg-accordion[open] .esg-accordion__chev {
  transform: rotate(45deg);
}
.esg-accordion__body {
  padding: clamp(1.4rem, 1rem + 1vw, 1.9rem) clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem) clamp(1.8rem, 1.2rem + 1.4vw, 2.4rem);
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  line-height: 1.75;
  font-size: clamp(0.95rem, 0.9rem + 0.2vw, 1.02rem);
}
.esg-accordion__body p + p { margin-top: 1.1rem; }
.esg-accordion__body h3,
.esg-accordion__body h4 {
  color: var(--purple-deep);
  font-family: var(--font-display);
  font-weight: 500;
  margin: 1.6rem 0 0.7rem;
  letter-spacing: -0.005em;
}
.esg-accordion__body ul, .esg-accordion__body ol { margin: 0.8rem 0 0.8rem 1.4rem; }
.esg-accordion__body li { margin-bottom: 0.55rem; }

/* ====================================================================== */
/* v3 — Footer socials breathing room                                     */
/* ====================================================================== */
.footer .socials { margin-top: 1.6rem; }

/* ====================================================================== */
/* v3 — Board-card LinkedIn glyph (replaces "LinkedIn ↗" text)            */
/* ====================================================================== */
.board-card__linkedin {
  width: 36px; height: 36px;
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper);
  color: var(--purple-deep);
  transition: all 0.25s var(--ease);
  border-bottom: 1px solid var(--rule);
}
.board-card__linkedin svg {
  width: 18px; height: 18px;
  fill: currentColor;
  display: block;
}
.board-card__linkedin:hover {
  background: var(--purple-deep);
  color: var(--cream);
  border-color: var(--purple-deep);
  transform: translateY(-1px);
}

/* Read more button on board cards */
.board-card__actions { display: flex; align-items: center; gap: 0.7rem; margin-top: 0.6rem; flex-wrap: wrap; }
.board-card__readmore {
  appearance: none;
  border: 1px solid var(--rule);
  background: var(--paper);
  color: var(--purple-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.board-card__readmore:hover { background: var(--purple-deep); color: var(--cream); border-color: var(--purple-deep); }
.board-card__readmore .arrow { margin-left: 0.3rem; color: var(--gold); }
.board-card__readmore:hover .arrow { color: var(--cream); }

/* sr-only — visually hidden but accessible to screen readers */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ====================================================================== */
/* v3 — Founder section reverse layout (CEO message — image on right)     */
/* Markup order: text first, then portrait. Grid swaps column ratio.      */
/* ====================================================================== */
@media (min-width: 920px) {
  .founder--reverse .founder__inner {
    grid-template-columns: 1fr 380px;
  }
}

/* ====================================================================== */
/* v5 — Investment Thesis page                                            */
/* Bespoke diagrams, roadmap timeline, conviction pillars                 */
/* Palette anchors: --purple-deep, --gold, --cream                        */
/* ====================================================================== */

/* Lead intro band */
.thesis-lead {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 1.6vw + 1rem, 1.95rem);
  line-height: 1.45;
  font-weight: 500;
  color: var(--ink);
  max-width: 60ch;
}
.thesis-lead .accent { color: var(--gold); font-style: italic; }

/* Section eyebrow + heading rhythm specific to this page */
.thesis-section h2 { margin-top: 0.6rem; }
.thesis-section .lead { max-width: 64ch; }

/* ----- Horizontal × Vertical integration diagram ---------------------- */
.thesis-integration {
  position: relative;
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
}
@media (min-width: 980px) {
  .thesis-integration { grid-template-columns: 1.05fr 1fr; gap: 3.5rem; }
}
.thesis-integration__svg {
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0 auto;
  display: block;
}
.thesis-integration__svg .axis-line {
  stroke: var(--gold);
  stroke-width: 1.4;
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
  fill: none;
  transition: stroke-dashoffset 1.6s var(--ease) 0.15s;
}
.thesis-integration__svg .pillar-line {
  stroke: var(--purple-soft);
  stroke-width: 2;
  fill: none;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.6s var(--ease) 0.35s;
}
.thesis-integration__svg .node {
  fill: var(--gold);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.thesis-integration__svg .node-label {
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--ink);
  opacity: 0;
  transition: opacity 0.5s var(--ease) 0.6s;
}
.thesis-integration__svg .axis-label {
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--ink-soft);
  opacity: 0;
  transition: opacity 0.6s var(--ease) 0.8s;
}
.thesis-integration.is-in .axis-line { stroke-dashoffset: 0; }
.thesis-integration.is-in .pillar-line { stroke-dashoffset: 0; }
.thesis-integration.is-in .node { opacity: 1; transform: scale(1); }
.thesis-integration.is-in .node:nth-child(odd) { transition-delay: 0.7s; }
.thesis-integration.is-in .node:nth-child(even) { transition-delay: 0.9s; }
.thesis-integration.is-in .node-label,
.thesis-integration.is-in .axis-label { opacity: 1; }

.thesis-integration__copy h3 { margin: 0 0 0.6rem; font-size: clamp(1.4rem, 1.2vw + 1rem, 1.8rem); }
.thesis-integration__copy p { max-width: 56ch; }

/* ----- Acquisition mandate verticals (six cards) ---------------------- */
.thesis-verticals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .thesis-verticals { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .thesis-verticals { grid-template-columns: repeat(3, 1fr); } }
.vertical-card {
  background: var(--paper, #fff);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.7rem;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.vertical-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-2);
  border-color: rgba(201, 137, 42, 0.45);
}
.vertical-card__num {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  display: block;
  margin: 0 0 0.4rem;
  padding-top: 0;
}
.vertical-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  line-height: 1.3;
}
.vertical-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
  font-size: 0.96rem;
}

/* ----- Three economies (value-creation model) ------------------------- */
.thesis-economies {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 820px) { .thesis-economies { grid-template-columns: repeat(3, 1fr); } }
.economy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(252, 250, 245, 0.18);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.8rem;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.economy-card__roman {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.3rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.economy-card h3 {
  margin: 0 0 0.6rem;
  color: var(--cream);
  font-size: 1.25rem;
}
.economy-card p {
  margin: 0;
  color: rgba(252, 250, 245, 0.82);
  line-height: 1.65;
  font-size: 0.96rem;
}

/* ----- Roadmap timeline (three phases) -------------------------------- */
.thesis-roadmap {
  position: relative;
  margin-top: 2rem;
}
.thesis-roadmap__rail {
  position: absolute;
  left: 0; right: 0;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  opacity: 0.25;
  border-radius: 2px;
  display: none;
}
@media (min-width: 900px) { .thesis-roadmap__rail { display: block; } }
.thesis-roadmap__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  position: relative;
}
@media (min-width: 900px) {
  .thesis-roadmap__grid { grid-template-columns: repeat(3, 1fr); gap: 2.2rem; }
}
.phase {
  position: relative;
  padding-top: 64px;
}
.phase__dot {
  position: absolute;
  top: 18px;
  left: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--rule);
  z-index: 2;
}
@media (min-width: 900px) {
  .phase__dot { left: 50%; transform: translateX(-50%); }
}
.phase__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
}
.phase h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  line-height: 1.3;
}
.phase p { color: var(--ink-soft); line-height: 1.7; margin: 0 0 0.8rem; }
.phase p:last-child { margin-bottom: 0; }
.phase__milestone {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* ----- Five convictions (pillars) ------------------------------------- */
.thesis-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  counter-reset: conviction;
}
@media (min-width: 720px) { .thesis-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .thesis-pillars { grid-template-columns: repeat(5, 1fr); } }
.pillar {
  background: var(--paper, #fff);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.7rem 1.3rem 1.5rem;
  position: relative;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-2);
}
.pillar__roman {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.6rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.7rem;
}
.pillar h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--ink);
}
.pillar p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ----- Audience CTA cards --------------------------------------------- */
.thesis-cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 820px) { .thesis-cta-grid { grid-template-columns: repeat(3, 1fr); } }
.cta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(252,250,245,0.18);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem 1.9rem;
  color: var(--cream);
  display: flex;
  flex-direction: column;
}
.cta-card__eyebrow {
  font-family: var(--font-mono, "Inter", sans-serif);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.cta-card h3 {
  margin: 0 0 0.7rem;
  color: var(--cream);
  font-size: 1.15rem;
  line-height: 1.35;
}
.cta-card p {
  margin: 0 0 1.4rem;
  color: rgba(252,250,245,0.82);
  font-size: 0.96rem;
  line-height: 1.65;
  flex: 1;
}
.cta-card .btn { align-self: flex-start; }

/* ============================================================
   PODCAST SECTION (McKinsey-style)
   ============================================================ */
.podcast {
  background: var(--purple-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(4rem, 8vw, 7rem);
}
.podcast::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201,137,42,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(91,42,140,0.40) 0%, transparent 60%);
  pointer-events: none;
}
.podcast .container { position: relative; z-index: 1; }
.podcast__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  padding-bottom: clamp(2.4rem, 5.5vw, 4rem);
  align-items: center;
}
@media (min-width: 900px) {
  .podcast__hero { grid-template-columns: 1fr auto; gap: 2.4rem; }
}
.podcast__hero h2 { color: var(--cream); margin: 0 0 1rem; font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.05; }
.podcast__hero p { color: rgba(252,250,245,0.86); max-width: 60ch; line-height: 1.65; margin: 0 0 1.2rem; }
.podcast__platforms { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.podcast__platforms a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--purple-deep);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.podcast__platforms a:hover { transform: translateY(-2px); background: var(--gold); color: var(--cream); }
.podcast__platforms svg { width: 18px; height: 18px; }
.podcast__listen .btn {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(252,250,245,0.55);
  padding: 0.85rem 1.6rem;
}
.podcast__listen .btn:hover { background: var(--gold); border-color: var(--gold); color: var(--cream); }
.podcast__card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 28px 70px -32px rgba(0,0,0,0.45);
}
@media (min-width: 900px) {
  .podcast__card { grid-template-columns: 1fr 1.15fr; }
}
.podcast__card-body { padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-direction: column; justify-content: center; }
.podcast__date { font-family: var(--font-mono); font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 0.8rem; letter-spacing: 0.02em; }
.podcast__card-body h3 { margin: 0 0 0.9rem; font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: var(--purple-deep); line-height: 1.2; }
.podcast__card-body h3 a { color: inherit; text-decoration: none; }
.podcast__card-body h3 a:hover { color: var(--gold); }
.podcast__card-body h3 .arrow { color: var(--gold); margin-left: 0.3rem; }
.podcast__card-body p { margin: 0; color: var(--ink-soft); line-height: 1.65; max-width: 50ch; }
.podcast__media { position: relative; aspect-ratio: 16/9; background: var(--ink); }
.podcast__media iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.podcast__spacer { height: 80px; background: var(--cream); display: none; }
.podcast__outro {
  margin: clamp(1.5rem, 3vw, 2.5rem) auto clamp(2.4rem, 5vw, 4rem);
  max-width: 760px;
  text-align: center;
}
.podcast__outro p {
  color: rgba(252,250,245,0.86);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0 0 1rem;
}
.podcast__outro p:last-child { margin-bottom: 0; }
