  @font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-book.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-book-italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-medium.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Futura';
    src: url('assets/fonts/futura-bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('assets/fonts/gotham-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('assets/fonts/gotham-black.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gotham';
    src: url('assets/fonts/gotham-black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --navy-deep: #3D3C83;
    --navy-900: #201F4C;
    --navy-mid: #302F6B;
    --navy-soft: #4B4A96;
    --sky: #98B9E1;
    --sky-light: #C9DAF0;
    --accent: #98B9E1;
    --accent-deep: #3D3C83;
    --off-white: #E5E5E5;
    --paper: #FFFFFF;
    --ink: #3D3C83;
    --ink-soft: #5B5A8C;
    --line: #D8DEEA;
    --shadow-soft: 0 4px 16px rgba(61,60,131,0.08);
    --shadow-lift: 0 8px 28px rgba(32,31,76,0.14);

    --font-display: 'Gotham', 'Arial Black', sans-serif;
    --font-body: 'Futura', -apple-system, sans-serif;

    --max-w: 1160px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  }

  body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }

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

  a { color: inherit; }

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

  h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; letter-spacing: -0.005em; }

  .eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-deep);
  }
  section.dark .eyebrow { color: var(--sky-light); }

  /* ---------- Focus states ---------- */
  a:focus-visible, button:focus-visible {
    outline: 3px solid var(--sky);
    outline-offset: 3px;
    border-radius: 4px;
  }

  /* ---------- Nav ---------- */
  header.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(61, 60, 131, 0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(152, 185, 225, 0.25);
    box-shadow: 0 2px 12px rgba(32,31,76,0.15);
  }
  .nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--paper);
  }
  .nav-brand img { width: 44px; height: 44px; border-radius: 9px; }
  .nav-brand span {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.01em;
  }
  nav.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  nav.nav-links a {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--sky-light);
    transition: color 0.15s ease;
  }
  nav.nav-links a:hover { color: var(--paper); }
  .nav-cta {
    background: var(--accent);
    color: var(--navy-deep) !important;
    padding: 9px 18px;
    border-radius: 100px;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--paper); }
  .nav-cta-secondary {
    border: 1.5px solid var(--sky);
    color: var(--paper) !important;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
  }
  .nav-cta-secondary:hover { background: rgba(152,185,225,0.15); }
  .nav-buttons { display: flex; align-items: center; gap: 10px; }
  .nav-toggle { display: none; background: none; border: none; color: var(--paper); font-size: 1.6rem; cursor: pointer; }

  @media (max-width: 860px) {
    nav.nav-links { display: none; }
    .nav-toggle { display: block; }
    nav.nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--navy-deep);
      padding: 20px 24px 28px;
      gap: 16px;
      align-items: stretch;
    }
    nav.nav-links.open .nav-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
    nav.nav-links.open .nav-cta,
    nav.nav-links.open .nav-cta-secondary { text-align: center; }
      border-bottom: 1px solid rgba(152,185,225,0.25);
    }
  }

  /* ---------- Hero ---------- */
  .hero {
    background:
      radial-gradient(circle at 85% 15%, rgba(152,185,225,0.16) 0%, transparent 45%),
      linear-gradient(135deg, var(--navy-900) 0%, var(--navy-deep) 55%, var(--navy-mid) 100%);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    padding: 64px 0 80px;
  }
  .hero-rings {
    position: absolute;
    right: -140px;
    top: -80px;
    width: 520px;
    height: 520px;
    opacity: 0.18;
    pointer-events: none;
  }
  @media (max-width: 900px) { .hero-rings { display: none; } }
  .hero-rings circle { fill: none; stroke-width: 30; }
  .hero-rings .ring-a { stroke: var(--sky); }
  .hero-rings .ring-b { stroke: var(--paper); }
  .hero-inner {
    position: relative;
    z-index: 2;
    max-width: 640px;
  }
  .hero .eyebrow { color: var(--sky-light); margin-bottom: 18px; display: inline-block; }
  .hero h1 {
    font-size: clamp(2.2rem, 4.6vw, 3.3rem);
    margin-bottom: 22px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.01em;
  }
  .hero h1 .beat {
    display: inline-block;
    opacity: 0;
    transform: translateY(8px);
    animation: rise 0.6s ease forwards;
  }
  .hero h1 .beat:nth-child(1) { animation-delay: 0.15s; }
  .hero h1 .beat:nth-child(2) { animation-delay: 0.38s; color: var(--sky); }
  .hero h1 .beat:nth-child(3) { animation-delay: 0.61s; }
  .hero h1 .beat:nth-child(4) { animation-delay: 0.84s; color: var(--sky); }
  @keyframes rise { to { opacity: 1; transform: translateY(0); } }

  .hero p.lede {
    font-size: 1.14rem;
    color: var(--sky-light);
    max-width: 500px;
    margin-bottom: 34px;
  }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

  @media (max-width: 480px) {
    .hero-ctas .btn, .join-ctas .btn, .hero-ctas.speaker-cta .btn { width: 100%; justify-content: center; }
    .meeting-card { flex-direction: column; align-items: flex-start; gap: 8px; }
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease;
    border: 1.5px solid transparent;
  }
  .btn:hover { transform: translateY(-2px); }
  .btn-primary { background: var(--accent); color: var(--navy-deep); }
  .btn-primary:hover { background: var(--paper); }
  .btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--paper); }
  .btn-ghost:hover { border-color: var(--sky); background: rgba(152,185,225,0.12); }
  .btn-large { padding: 18px 38px; font-size: 1.1rem; font-weight: 700; }

  .meeting-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(152,185,225,0.3);
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    max-width: 480px;
  }
  .meeting-card .day {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.9rem;
    color: var(--sky-light);
    line-height: 1;
  }
  .meeting-card .details { font-size: 0.92rem; color: var(--sky-light); }
  .meeting-card .details strong { color: var(--paper); display: block; font-size: 1rem; margin-bottom: 2px; }

  /* ---------- Section shell ---------- */
  section { padding: 56px 0; position: relative; }
  section.dark { background: var(--navy-deep); color: var(--paper); }
  section.tint { background: var(--paper); }
  .section-head { max-width: 600px; margin-bottom: 32px; }
  .section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-top: 10px; }
  .section-head p { color: var(--ink-soft); margin-top: 10px; font-size: 1.02rem; }
  section.dark .section-head p { color: var(--sky-light); }

  .divider {
    display: flex;
    justify-content: center;
    padding: 0;
  }
  .divider svg { width: 64px; height: 64px; opacity: 0.5; }
  .divider circle { fill: none; stroke: var(--sky); stroke-width: 6; }

  /* ---------- Story ---------- */
  .story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: start;
  }
  .story-grid p { margin-bottom: 18px; color: var(--ink-soft); font-size: 1.02rem; }
  .story-grid p strong { color: var(--ink); }
  .value-list { display: flex; flex-direction: column; gap: 18px; }
  .value-item {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: var(--shadow-soft);
  }
  .value-item h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; margin-bottom: 6px; }
  .value-item p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

  @media (max-width: 800px) {
    .story-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* ---------- Meeting flow (connected flowchart) ---------- */
  .flow-timeline {
    counter-reset: flow;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 640px;
    margin: 0 auto;
  }
  .flow-node {
    counter-increment: flow;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    position: relative;
  }
  .flow-node .node-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
  }
  .flow-node .node-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--navy-deep);
    color: var(--paper);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .flow-node .node-line {
    width: 3px;
    flex: 1;
    background: var(--sky-light);
    min-height: 28px;
  }
  .flow-node:last-child .node-line { display: none; }
  .flow-node .node-arrow {
    color: var(--sky);
    font-size: 0.9rem;
    line-height: 1;
    margin: 2px 0;
  }
  .flow-node .node-content {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 14px;
    flex: 1;
    box-shadow: var(--shadow-soft);
  }
  .flow-node .node-content h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
  .flow-node .node-content p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

  .callout {
    margin-top: 36px;
    background: linear-gradient(120deg, #EAF1FB, #FFFFFF);
    border: 1px solid var(--sky-light);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .callout .icon {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent-deep);
  }
  .callout p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }
  .callout strong { color: var(--ink); }

  /* ---------- Leadership ---------- */
  .crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
  }
  .crew-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(152,185,225,0.28);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  }
  .crew-card .initials {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--sky);
    color: var(--navy-deep);
    font-family: var(--font-body);
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
    font-size: 0.9rem;
  }
  .crew-card h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin-bottom: 4px; color: var(--paper); }
  .crew-card p { font-size: 0.86rem; color: var(--sky-light); }

  .leader-group-label {
    grid-column: 1 / -1;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin: 4px 0 -6px;
  }
  .leader-group-label.second { margin-top: 18px; }
  .crew-card.group-leader { border-color: var(--sky); background: rgba(152,185,225,0.1); }

  /* ---------- Speakers ---------- */
  .speaker-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .stat-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    max-width: 420px;
  }
  .stat { text-align: left; }
  .stat .num { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--navy-deep); }
  .stat .label { font-size: 0.85rem; color: var(--ink-soft); font-family: var(--font-body); text-transform: uppercase; letter-spacing: 0.06em; }

  @media (max-width: 800px) {
    .speaker-wrap { grid-template-columns: 1fr; gap: 36px; }
  }
  @media (max-width: 400px) {
    .stat-strip { grid-template-columns: 1fr; max-width: 240px; }
  }

  .future-note {
    background: var(--off-white);
    border: 1px dashed var(--sky);
    border-radius: 14px;
    padding: 20px 22px;
    font-size: 0.92rem;
    color: var(--ink-soft);
    margin-top: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
  }
  .future-note strong { color: var(--navy-deep); }

  /* ---------- Join / Contact ---------- */
  .join-panel {
    background:
      radial-gradient(circle at 15% 85%, rgba(152,185,225,0.14) 0%, transparent 50%),
      linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 55%, var(--navy-900) 100%);
    box-shadow: var(--shadow-lift);
    border-radius: 24px;
    padding: 56px;
    color: var(--paper);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }
  .join-panel h2 { color: var(--paper); }
  .join-panel p { color: var(--sky-light); margin-top: 14px; font-size: 1.02rem; max-width: 440px; }
  .join-ctas { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
  .join-qr {
    background: var(--paper);
    border-radius: 16px;
    padding: 16px;
    justify-self: center;
    width: 180px;
  }
  @media (max-width: 800px) {
    .join-panel { grid-template-columns: 1fr; padding: 36px 26px; text-align: left; }
    .join-qr { justify-self: start; }
  }

  /* ---------- Footer ---------- */
  footer { background: var(--navy-deep); color: var(--sky-light); padding: 52px 0 24px; }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(152,185,225,0.2);
  }
  .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .footer-brand img { width: 38px; height: 38px; border-radius: 8px; }
  .footer-brand span { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--paper); }
  .footer-col p { font-size: 0.88rem; color: var(--sky-light); margin: 0 0 6px; max-width: 280px; }
  .footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 14px;
  }
  .footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  footer a { text-decoration: none; color: var(--sky-light); font-size: 0.9rem; }
  footer a:hover { color: var(--paper); }
  .footer-contact-email { color: var(--paper) !important; font-weight: 600; text-decoration: underline; }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 20px;
    font-size: 0.82rem;
  }
  @media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  }


  /* ---------- Calendar list (homepage) ---------- */
  .calendar-list { max-width: 720px; margin: 0 auto; }
  .calendar-status { text-align: center; color: var(--ink-soft); font-size: 0.95rem; padding: 20px 0; }
  .calendar-month {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--navy-deep);
    margin: 28px 0 14px;
  }
  .calendar-month:first-child { margin-top: 0; }
  .calendar-event {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 14px;
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .calendar-event .cal-date-badge {
    flex-shrink: 0;
    width: 56px;
    text-align: center;
    background: var(--off-white);
    border-radius: 10px;
    padding: 8px 4px;
  }
  .calendar-event .cal-day-num { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--navy-deep); line-height: 1; }
  .calendar-event .cal-day-name { font-size: 0.68rem; text-transform: uppercase; color: var(--ink-soft); letter-spacing: 0.04em; }
  .calendar-event .cal-body h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; margin: 0 0 4px; }
  .calendar-event .cal-time { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 4px; }
  .calendar-event .cal-location { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 6px; }
  .calendar-event .cal-desc { font-size: 0.88rem; color: var(--ink-soft); white-space: pre-line; }
  .calendar-showmore { text-align: center; margin-top: 10px; }

  /* ---------- Photo band (full-width contextual photo + caption) ---------- */
  .photo-band {
    position: relative;
    height: 340px;
    overflow: hidden;
  }
  .photo-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .photo-band .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(32,31,76,0.85) 0%, rgba(32,31,76,0) 100%);
    color: var(--paper);
    padding: 40px 24px 16px;
    text-align: center;
    font-size: 0.9rem;
    font-style: italic;
  }
  @media (max-width: 700px) { .photo-band { height: 220px; } }

  /* ---------- Location card ---------- */
  .location-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lift);
    margin-bottom: 32px;
  }
  .location-photos {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2px;
    background: var(--line);
  }
  .location-photos img { width: 100%; height: 260px; object-fit: cover; display: block; }
  @media (max-width: 700px) {
    .location-photos { grid-template-columns: 1fr; }
    .location-photos img { height: 200px; }
  }
  .location-body { padding: 28px 30px; display: flex; gap: 24px; align-items: flex-start; flex-wrap: wrap; }
  .location-logo { flex-shrink: 0; width: 160px; }
  .location-logo img { width: 100%; height: auto; border-radius: 10px; box-shadow: var(--shadow-soft); }
  .location-info { flex: 1; min-width: 220px; }
  .location-info h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy-deep); margin: 0 0 8px; }
  .location-info p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 6px; }
  .location-info .location-schedule { font-weight: 700; color: var(--navy-deep); }
  .location-actions { margin-top: 16px; display: flex; gap: 12px; flex-wrap: wrap; }

  /* ---------- Meeting photo card (homepage Meetings section) ---------- */
  .meeting-photo-card {
    max-width: 640px;
    margin: 32px auto 0;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .meeting-photo-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
  .meeting-photo-card .meeting-photo-caption {
    grid-column: 1 / -1;
    padding: 14px 18px;
    font-size: 0.9rem;
    color: var(--ink-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  @media (max-width: 520px) { .meeting-photo-card { grid-template-columns: 1fr; } }

  /* ---------- Community gallery ---------- */
  .community-section { padding: 40px 0 48px; background: var(--off-white); }
  .community-section .section-head { text-align: center; max-width: 560px; margin: 0 auto 28px; }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    max-width: 1100px;
    margin: 0 auto;
  }
  .gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    display: block;
  }
