/* Multidimensional Leaders — rebuilt static site
   Brand: deep purple #490c7c + iridescent pastel gradients
   Fonts: self-hosted brand originals —
     Lacoste Celtic (display/logo face), Alice (body), Dancing Script (accent) */

@font-face {
  font-family: "Lacoste Celtic";
  src: url("fonts/LacosteCeltic-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Alice";
  src: url("fonts/Alice-Regular.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Dancing Script";
  src: url("fonts/DancingScript-Variable.woff2") format("woff2-variations"),
       url("fonts/DancingScript-Variable.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}

:root {
  /* Official brand palette — Brand Guidelines p.12
     Primary 60% | Secondary 30% | Accent 10% */
  /* secondary backgrounds — as used on the original site */
  --lilac:  #f8ebf8;   /* pale pink-lavender */
  --blue:   #d7f2fa;   /* pale blue */
  --coral:  #fde0db;   /* blush */
  /* remaining guideline swatches */
  --peach:  #ffd6a5;
  --yellow: #fdffb6;
  --green:  #e4f1ee;
  --purple: #4a0b7c;
  --purple-deep: #29054c;
  --slate: #524d5f;   /* muted grayish purple — surface colour */
  --white:  #f7f7f7;

  --purple-soft: #6b2ba3;
  --lav: #c3b6e6;
  --ink: #29054c;
  --muted: #5c4b6b;
  --line: rgba(74, 11, 124, 0.14);
  --maxw: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--lilac); /* #f8ebf8 — the page backdrop */
  color: var(--ink);
  font-family: "Alice", Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Lacoste Celtic", "Cormorant Garamond", Georgia, serif;
  font-weight: 400; /* Lacoste Celtic ships Regular only — avoids synthetic bold */
  line-height: 1.14;
  margin: 0 0 .5em;
  color: var(--purple-deep);
  letter-spacing: .01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); color: var(--purple-soft); }
p { margin: 0 0 1.1em; }
a { color: var(--purple); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; margin: 0 auto; }

/* ---------- header ---------- */
header.site {
  position: sticky; top: 0; z-index: 60;
  background: rgba(82, 77, 95, .97); /* muted purple #524d5f */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 24px; max-width: var(--maxw); margin: 0 auto;
}
.nav img.logo { height: 46px; width: auto; display: block; }
.nav ul { display: flex; gap: 26px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.nav a {
  color: #f3ecfa; text-decoration: none; font-size: .82rem;
  letter-spacing: .16em; text-transform: uppercase;
  font-family: "Alice", serif; white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: #fff; text-decoration: underline; text-underline-offset: 6px; }
.navtoggle { display: none; background: none; border: 1px solid rgba(255,255,255,.4); color: #fff;
  border-radius: 6px; padding: 7px 11px; font-size: 1rem; cursor: pointer; }

@media (max-width: 900px) {
  .navtoggle { display: block; }
  .nav ul {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--slate);
    padding: 10px 24px 22px; border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .nav ul.open { display: flex; }
  .nav ul li { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.10); }
}

/* ---------- hero ---------- */
.hero {
  background: var(--lilac);
  padding: clamp(70px, 12vw, 130px) 0 clamp(60px, 10vw, 110px);
  text-align: center; position: relative; overflow: hidden;
}
.hero .eyebrow {
  font-family: "Dancing Script", cursive; font-size: 1.5rem;
  color: var(--purple-soft); margin-bottom: .3em;
}
.hero p.lede { font-size: 1.22rem; color: var(--muted); max-width: 680px; margin: 0 auto 2em; }
.hero-mark { width: 78px; opacity: .9; margin: 0 auto 26px; display: block; }

/* full-bleed photographic hero, as the original site used */
.hero.photo {
  padding: clamp(140px, 24vw, 280px) 0 clamp(120px, 20vw, 240px);
  background: var(--slate) center/cover no-repeat;
  position: relative;
}
.hero.photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(82,77,95,.34) 0%, rgba(82,77,95,.18) 45%, rgba(82,77,95,.40) 100%);
}
.hero.photo > * { position: relative; z-index: 2; }
.hero.photo h1 { color: #fff; text-shadow: 0 2px 24px rgba(45,42,52,.55); }
.hero.photo .eyebrow, .hero.photo p.lede { color: #f6eeff; text-shadow: 0 1px 12px rgba(45,42,52,.65); }
.hero.photo .sub {
  color: #fff; letter-spacing: .2em; text-transform: uppercase;
  font-size: .82rem; margin: 0 auto 2.2em; max-width: 640px;
  text-shadow: 0 1px 12px rgba(45,42,52,.65);
}

/* ---------- sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
section.alt { background: var(--white); }
section.deep {
  background: var(--slate); color: #f0ecf3;
}
section.deep h1, section.deep h2, section.deep h3 { color: #fff; }
section.deep h4 { color: var(--lav); }
section.deep a { color: #e5d3f7; }
section.blue  { background: var(--blue); }
.hero.blue    { background: var(--blue); }
.hero.coral   { background: var(--coral); }
.hero.white   { background: var(--white); }
section.coral { background: var(--coral); }
section.peach { background: var(--peach); }
section.green { background: var(--green); }
section.lilac { background: var(--lilac); }
section.yellow{ background: var(--yellow); }

/* decorative sparkles from the original site */
.sparkles { position: relative; }
.sparkles .sp {
  position: absolute; width: 26px; opacity: .85; pointer-events: none; user-select: none;
}

.center { text-align: center; }
.kicker {
  font-family: "Dancing Script", cursive; font-size: 1.45rem;
  color: var(--purple-soft); margin-bottom: .2em;
}
section.deep .kicker { color: var(--lav); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; padding: 15px 34px; border-radius: 999px;
  background: var(--purple); color: #fff !important; text-decoration: none;
  font-size: .8rem; letter-spacing: .17em; text-transform: uppercase;
  border: 1px solid var(--purple); transition: .2s;
}
.btn:hover { background: var(--purple-deep); border-color: var(--purple-deep); }
.btn.ghost { background: transparent; color: var(--purple) !important; }
.btn.ghost:hover { background: var(--purple); color: #fff !important; }
section.deep .btn { background: var(--peach); color: var(--purple-deep) !important; border-color: var(--peach); }
section.deep .btn:hover { background: var(--coral); border-color: var(--coral); }
section.deep .btn.ghost { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.6); }
section.deep .btn.ghost:hover { background: #fff; color: var(--purple) !important; }

/* ---------- grids / cards ---------- */
.grid { display: grid; gap: 30px; }
.g2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.g3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.g4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 28px; box-shadow: 0 2px 20px rgba(41,5,76,.06);
}
.card h3 { margin-top: 0; }
section.deep .card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); }

.split { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 48px; align-items: center; }
.split img { width: 100%; border-radius: 16px; display: block; }

figure { margin: 0; }
img { max-width: 100%; height: auto; }

.checklist { list-style: none; padding: 0; margin: 0 0 1.4em; }
.checklist li { padding-left: 32px; position: relative; margin-bottom: .85em; }
.checklist li::before {
  content: "✧"; position: absolute; left: 0; top: 0;
  color: var(--purple-soft); font-size: 1.1rem;
}
section.deep .checklist li::before { color: var(--lav); }

/* ---------- people ---------- */
.person { text-align: center; }
.person img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: 50%; margin-bottom: 14px; background: var(--lav);
}
.person .name { font-family: "Lacoste Celtic", "Cormorant Garamond", serif; font-size: 1.28rem; color: var(--purple-deep); }
section.deep .person .name { color: #fff; }
.person .role { font-size: .88rem; color: var(--muted); }
section.deep .person .role { color: var(--lav); }

/* ---------- agenda ---------- */
.slot { border-left: 3px solid var(--lav); padding: 4px 0 4px 24px; margin-bottom: 34px; }
.slot .time {
  font-size: .78rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--purple-soft); margin-bottom: .3em;
}
.slot h4 { margin-bottom: .35em; color: var(--purple-deep); }
.slot .who {
  font-family: "Dancing Script", cursive; font-size: 1.3rem;
  color: var(--purple-soft); margin-bottom: .4em;
}
.slot p { color: var(--muted); margin-bottom: 0; }

/* ---------- blog ---------- */
.postlist { list-style: none; padding: 0; margin: 0; }
.postlist li { border-bottom: 1px solid var(--line); padding: 26px 0; }
.postlist a { text-decoration: none; color: var(--purple-deep); }
.postlist a:hover h3 { text-decoration: underline; text-underline-offset: 4px; }
.postlist h3 { margin: 0 0 .25em; }
.postlist .date { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.postlist .sub { color: var(--muted); margin: .3em 0 0; }

.post-body { font-size: 1.06rem; }
.post-body img { border-radius: 12px; margin: 1.5em 0; }
.post-body h2, .post-body h3 { margin-top: 1.6em; }
.post-body blockquote {
  margin: 1.6em 0; padding: 4px 0 4px 26px;
  border-left: 3px solid var(--lav); color: var(--muted); font-style: italic;
}
.post-body a { color: var(--purple); }
.post-body hr { border: none; border-top: 1px solid var(--line); margin: 2.2em 0; }

.notice {
  background: rgba(73,12,124,.06); border: 1px solid var(--line);
  border-radius: 12px; padding: 18px 22px; font-size: .95rem; color: var(--muted);
}

/* ---------- legal ---------- */
.legal { font-size: .97rem; color: var(--muted); }
.legal h2 { font-size: 1.5rem; margin-top: 1.8em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.4em; }

/* ---------- footer ---------- */
footer.site {
  background: var(--slate); color: #d8d3e0;
  padding: 60px 0 34px; font-size: .92rem;
}
footer.site img.logo { height: 60px; margin-bottom: 18px; }
footer.site a { color: #e0cef2; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
footer.site .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 34px; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { margin-bottom: 9px; }
footer.site h4 {
  color: #fff; font-size: .8rem; letter-spacing: .17em;
  text-transform: uppercase; font-family: "Alice", serif; margin-bottom: 14px;
}
.legalbar {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between;
  font-size: .82rem; color: #a892c2;
}
