@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Cinzel:wght@400;500;600&family=EB+Garamond:ital,wght@0,400;1,400&display=swap');
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy: #0D1F3C;
    --gold: #C9A84C;
    --gold-light: #e8c97a;
    --red: #8B0000;
    --cream: #FAF7F2;
    --warm-white: #F5F1EA;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--cream);
    color: var(--navy);
    font-family: 'EB Garamond', Georgia, serif;
    font-size: 18px;
    overflow-x: hidden;
  }


    /* ── NAV ── */

    nav {

      background: var(--navy);

      padding: 14px 40px;

      display: flex;

      align-items: center;

      justify-content: space-between;

      border-bottom: 1px solid rgba(201,168,76,0.25);

      position: sticky;

      top: 0;

      z-index: 1;

    }



    .nav-logo {

      font-family: 'Cinzel', serif;

      font-size: 1.1rem;

      color: var(--gold-light);

      letter-spacing: 0.15em;

    }



    .nav-logo span {

      color: rgba(255,255,255,0.5);

      font-size: 0.7rem;

      display: block;

      letter-spacing: 0.2em;

      font-family: 'Montserrat', sans-serif;

      font-weight: 300;

      margin-top: 2px;

    }



    .nav-links {

      display: flex;

      gap: 32px;

      list-style: none;

      margin: 0;

      padding: 0;      

    }



    .nav-links a {

      font-family: 'Cinzel', serif;

      font-size: 0.82rem;

      letter-spacing: 0.2em;

      color: rgba(255,255,255,0.65);

      text-decoration: none;

      text-transform: uppercase;

      transition: color 0.2s;

    }

    .nav-links li{

      margin: 0;

    }

    .nav-links a:hover { color: var(--gold-light); }



    nav .second-mobile-menu{

      font-size: 20px!important;

      display: none!important;

    }

  /* ── PHOTO HEADER ─────────────────────────────────────── */
  .photo-header {
    width: 100%;
    display: block;
    line-height: 0;
  }
  .photo-header img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 470px;
    object-fit: cover;
    object-position: center top;
  }

  /* ── CTA BUTTON ───────────────────────────────────────── */
  .cta-btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 16px 44px;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
  }
  .cta-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

  /* ── GOLD DIVIDER ─────────────────────────────────────── */
  .divider {
    display: flex;
    align-items: center;
  }
  .divider-line { flex: 1; height: 1px; background: var(--gold); opacity: 0.35; }
  .divider-center {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--gold);
    padding: 0 24px;
    white-space: nowrap;
  }

  /* ── SECTIONS ─────────────────────────────────────────── */
  .section { padding: 100px 24px; max-width: 1100px; margin: 0 auto; clear:both;}

  .section-label {
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .section-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 32px;
  }
  .section-heading em { font-style: italic; color: var(--red); }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 700px) { .intro-grid { grid-template-columns: 1fr; gap: 40px; } }

  .intro-body {
    font-size: 19px;
    line-height: 1.75;
    color: #2a3a55;
  }
  .intro-body p + p { margin-top: 20px; }

  /* Anniversary callouts */
  .anniversary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .anniversary-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }
  .ann-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    min-width: 72px;
    text-align: right;
  }
  .ann-text {
    padding-top: 6px;
    font-family: 'EB Garamond', serif;
    font-size: 17px;
    line-height: 1.55;
    color: var(--navy);
    border-top: 1px solid rgba(201,168,76,0.3);
  }
  .ann-text strong {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 4px;
  }

  /* ── PROGRAM SECTION ──────────────────────────────────── */
  .program-section {
    background: var(--navy);
    color: #fff;
    padding: 100px 24px;
  }
  .program-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }
  @media (max-width: 700px) { .program-inner { grid-template-columns: 1fr; gap: 48px; } }

  .program-section .section-label { color: var(--gold); }
  .program-section .section-heading { color: #fff; }
  .program-section .section-heading em { color: var(--gold-light); }

  .program-body {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255,255,255,0.7);
  }
  .program-body p + p { margin-top: 18px; }

  .schedule {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid rgba(201,168,76,0.3);
    padding-left: 32px;
  }
  .schedule li {
    position: relative;
    padding-bottom: 32px;
  }
  .schedule li::before {
    content: '';
    position: absolute;
    left: -37px;
    top: 6px;
    width: 10px; height: 10px;
    border: 1px solid var(--gold);
    background: var(--navy);
    transform: rotate(45deg);
  }
  .sch-time {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 4px;
  }
  .sch-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 300;
    color: #fff;
  }

  .detail-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
  }
  .pill {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 10px 18px;
  }
  .pill span { color: var(--gold); }

  /* ── LEADERSHIP ───────────────────────────────────────── */
  .leadership-section { padding: 100px 24px; background: var(--warm-white); }
  .leadership-inner { max-width: 900px; margin: 0 auto; text-align: center; }
  .leadership-inner .section-label { justify-content: center; display: flex; }
  .leadership-inner .section-heading { margin-bottom: 60px; }

  .chair-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  @media (max-width: 650px) { .chair-grid { grid-template-columns: 1fr; } }

  .chair-card {
    text-align: center;
    padding: 36px 24px;
    border-top: 2px solid var(--gold);
    background: #fff;
  }
  .chair-role {
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.4em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .chair-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--navy);
  }

  /* ── TICKET CTA ───────────────────────────────────────── */
  .ticket-section {
    background: var(--navy);
    padding: 100px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .ticket-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
  }
  .ticket-section .section-heading { color: #fff; margin-bottom: 16px; }
  .ticket-section .section-heading em { color: var(--gold-light); }
  .ticket-body {
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 44px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
  }
#footer .social-footer li:after{
  left: 0;
}
  /* ── FOOTER ───────────────────────────────────────────── */
  footer {
    background: #060f1e;
    padding: 40px 24px;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 10px;
    letter-spacing: 0.3em;
  }
  footer a { color: var(--gold); text-decoration: none; }


  /* ── SPONSORS ─────────────────────────────────────────── */
  .sponsors-section {
    background: var(--cream);
    padding: 80px 24px 100px;
  }
  .sponsors-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 72px;
  }
  .sponsors-block {}

  .sponsors-label-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 44px;
  }
  .sponsors-label-row .divider-line {
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.35;
  }
  .sponsors-label {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    letter-spacing: 0.4em;
    color: var(--gold);
    white-space: nowrap;
    text-transform: uppercase;
  }

  .logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
  }

  .logo-placeholder {
    width: 180px;
    height: 80px;
    border: 1px dashed rgba(201,168,76,0.4);
    background: rgba(201,168,76,0.04);
    border-radius: 2px;
    position: relative;
  }
  .logo-placeholder::after {
    content: 'LOGO';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 9px;
    letter-spacing: 0.35em;
    color: rgba(201,168,76,0.35);
  }

  .logo-grid--small .logo-placeholder {
    width: 140px;
    height: 64px;
  }

    /* ── FOOTER ── */

    footer {
      background: #060f1e;
      padding: 36px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      border-top: 1px solid rgba(201,168,76,0.15);
    }

    .footer-logo {
      font-family: 'Cinzel', serif;
      font-size: 0.9rem;
      color: var(--gold-light);
      letter-spacing: 0.15em;
    }

    .footer-text {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.6rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.1em;
    }

  @media (max-width: 600px) {
    .logo-placeholder { width: 140px; height: 64px; }
    .logo-grid--small .logo-placeholder { width: 110px; height: 54px; }

      nav{
        padding: 14px 20px;
      }

      nav .nav-links { 
        display: none;
        position: absolute;
        top: 36px;
        background-color: var(--navy);
        width: 100%;
        margin-left: -20px;
      }

      nav .nav-links li{
        margin: 10px 0;
      }

      nav.open .nav-links {
        display: block;
      }

      nav .second-mobile-menu{
        display: block!important;
      }    
  }

  /* ── SCROLL REVEAL ────────────────────────────────────── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }