:root {
  --ink: #1b1420;
  --muted: #6d6370;
  --cream: #fff8ec;
  --paper: #fffdf7;
  --plum: #271034;
  --violet: #7c2f83;
  --rose: #b83f70;
  --gold: #d8a84d;
  --amber: #f0c669;
  --green: #0c5b4d;
  --line: rgba(39, 16, 52, 0.14);
  --shadow: 0 24px 70px rgba(34, 16, 45, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(27, 20, 32, 0.92);
  color: #fff8ec;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
  text-decoration: none;
}

.brand strong,
.brand em {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand em {
  margin-top: 4px;
  color: var(--amber);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
}

.brand-mark {
  width: 42px;
  height: 52px;
  flex: 0 0 42px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 30px);
  font-size: 0.9rem;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--amber);
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(120deg, rgba(39, 16, 52, 0.9), rgba(39, 16, 52, 0.62)),
    radial-gradient(circle at 80% 10%, rgba(216, 168, 77, 0.35), transparent 32%),
    var(--plum);
  color: var(--cream);
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
}

h1 {
  max-width: 920px;
  font-size: clamp(3.8rem, 9vw, 8.2rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
}

p {
  line-height: 1.7;
}

.hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 248, 236, 0.84);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.hero-actions,
.connect {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  color: #21120d;
}

.button.secondary {
  border-color: rgba(255, 248, 236, 0.35);
  color: var(--cream);
}

.button:hover {
  transform: translateY(-1px);
}

.hero-media {
  justify-self: center;
  width: min(420px, 100%);
}

.hero-media img,
.flyer-frame img,
.leader-card {
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  max-height: min(680px, 76vh);
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(255, 248, 236, 0.24);
}

.section-pad {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.mission {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.mission-grid article {
  min-height: 270px;
  padding: clamp(24px, 4vw, 40px);
  background: var(--paper);
}

.mission-grid span {
  color: var(--rose);
  font-weight: 900;
}

.mission-grid h3 {
  margin-top: 58px;
}

.mission-grid p,
.leader-card p,
.conference p,
.connect p {
  color: var(--muted);
}

.leadership {
  background: #ffffff;
}

.leader-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.leader-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  background: var(--paper);
}

.leader-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(39, 16, 52, 0.1);
}

.leader-card.founder img {
  object-position: center top;
}

.role {
  margin: 0 0 8px;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.conference {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
  background: linear-gradient(180deg, #f9f3e6, #fffdf7);
}

.conference-copy {
  max-width: 760px;
}

dl {
  display: grid;
  gap: 1px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

dl div {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
}

dt {
  color: var(--green);
  font-weight: 900;
}

dd {
  margin: 0;
  color: var(--ink);
}

.flyer-frame {
  margin: 0;
}

.flyer-frame img {
  max-height: 760px;
  width: 100%;
  object-fit: contain;
  background: var(--plum);
}

.connect {
  justify-content: space-between;
  background: var(--plum);
  color: var(--cream);
}

.connect div {
  max-width: 760px;
}

.connect p {
  color: rgba(255, 248, 236, 0.82);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 0.9rem;
}

footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .conference {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    justify-self: start;
  }

  .mission-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 1.25rem;
  }

  nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  nav a {
    padding: 8px 0;
  }

  h1 {
    font-size: 3.25rem;
  }

  .leader-card {
    grid-template-columns: 1fr;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
