* {
    padding: 0px;
    margin: 0px;
}

:root {
      --navy:   #0b1f3a;
      --gold:   #D72535;
      --cream:  #f5f0e8;
      --rust:   #b84a2a;
      --text:   #1a1a1a;
      --muted:  #5a5a5a;
      --white:  #ffffff;
      --ff-display: 'Playfair Display', Georgia, serif;
      --ff-body:    'DM Sans', sans-serif;
    }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: var(--ff-body);
      font-size: 1rem;
      line-height: 1.7;
      color: var(--navy);
      background: var(--navy);
      min-height: 100vh;
      width: 100vw;
      overflow-x: hidden;
      /* padding-top is set dynamically by JS to nav height + open drawer height */
      padding-top: var(--nav-h);
      transition: padding-top 0.3s ease;
}

/* ── shared token ── */
:root {
  --logo-w: clamp(100px, 14vw, 200px); /* logo column width */
  --nav-h:  70px;                       /* nav bar height — immovable */
}

/* ── NAV BAR: fixed strip across the full viewport width, 70px tall ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: var(--nav-h);
  padding-left: calc(var(--logo-w) + 2rem);
  padding-right: 2vw;
  box-sizing: border-box;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

/* ── LOGO: independently fixed, anchored top-left, hangs below nav bar ── */
.navigation-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--logo-w);
  height: var(--nav-h);  /* locked to nav bar — never overflows into page */
  z-index: 101;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4px 8px;
  box-sizing: border-box;
  line-height: 0;
}

nav img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
}

/* ── NAV LINKS: the aside sits inside the 70px nav bar ── */
nav aside {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  position: static;
  background: transparent;
  border: none;
}

nav ul {
  display: flex;
  list-style-type: none;
  gap: clamp(8px, 1.5vw, 20px);
  padding: 0;
  margin: 0;
  float: none;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
}

nav ul a {
  color: white;
  text-decoration: none;
  font-size: clamp(0.6rem, 1vw, 1.2rem);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}

ul {
  display: flex;
  list-style-type: none;
  gap: 20px;
  padding: 0;
  float: none;
}

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


a { color: inherit; }

.seata {
  color: var(--gold);
  padding: clamp(3px, 0.5vw, 8px) clamp(6px, 1vw, 14px);
  border: solid clamp(1px, 0.12vw, 2px) var(--gold);
  font-size: clamp(0.6rem, 1vw, 1rem);
  white-space: nowrap;
  line-height: 1.2;
}

.hero {
      margin-top: 0px;
      background: var(--navy);
      color: var(--white);
      display: grid;
      grid-template-columns: 60vw auto;
      grid-template-areas: 
              "heroleft heroright";
        margin-bottom: 100px;
    }

#profilepic {
    width: 100%;
  object-fit: cover
    position: sticky;
  display: inline-block; 
    height: 65vh;
    width: auto;
    position: relative;
    display: grid;
    grid-area: heroright;
   margin-top: -50px;
   margin-left: calc(-50vw - 0px);
   margin-right: -0vw;
        background-color: #627996;
    box-shadow: -15px -15px 0px #627996;
}

.hero-bg-lines {
      top: 0; inset: 0; pointer-events: none;
      position:relative;
      display: grid;
      grid-area: heroleft;
      background: #0B1F3A;

    }

.hero-eyebrow {

    font-size: .78rem; font-weight: 500;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--gold); 
    outline: 1px solid var(--gold);
    display: grid;
    grid-area: heroleft;      
    position: relative;
    margin-top: 100px; 
    }

.seat {
    position:relative;
    top: 20px;
    margin-bottom: 0px;
    outline: 1px solid var(--gold);
    font-size: 14px;
    color: var(--gold);
    text-align: center;
    background-color: var(--navy);
    text-transform: uppercase;
    border: 1px solid var(--gold);
    width: 250px;
    padding: 4px;
    display: grid;
    grid-area: heroleft;
    margin-top: 100px;
    margin-left: 12vw;
    column-span: 2;
}

h1 {
    display: grid;
    grid-area: heroleft;
    width: 100%;
      font-family: var(--ff-display);
      font-size: clamp(2.8rem, 6vw, 5rem);
      line-height: 1.06;
      font-weight: 900;
      margin-left: 10vw;
      margin-top: 2rem;
      margin-bottom: 0rem;
    }

h1 em { font-style: italic; color: var(--gold); }

.hero-tagline {
    display: grid;
    grid-area: heroleft;
      font-size: 1.5rem; font-weight: 300;
      color: #b8c5d4;
      max-width: 36ch;
      margin-left: 10vw;
      align-items: center;
      margin-bottom: 2rem;
      margin-right: 0px;
      text-wrap: wrap;
    }

.btn-primary {
      background: var(--gold);
      color: var(--navy);
      font-family: var(--ff-body);
      font-weight: 500;
      font-size: .9rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .85rem 2rem;
      border-radius: 2px;
      width: 100px;
      height: 50px;
      transition: background .2s, transform .15s;
      margin-left: 10vw;
      margin-bottom: 100px;
    }
.btn-primary:hover { background: #e0aa38; transform: translateY(-2px); }

.buttonspacer {
  height: 100px;
  width: 100%;
}
figure {
    position: sticky;
    display: grid;
    grid-area: heroright;
    margin-top: 100px;
   margin-left: 50vw;
}

#biography {
  background: var(--white);
  width: 100vw;
  overflow-x: hidden;
  padding-top: 2.5rem;
  padding-bottom: 4rem;
  box-sizing: border-box;
}

/* H2 — right-aligned, pinned to top of section */
.bio-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  text-align: left;
  padding-right: 6vw;
  margin-top: 0;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

/* H3 — left-aligned, 50px right of the h2 left edge */
#biography h3,
#biohead {
  font-family: var(--ff-body);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: left;
  padding-left: calc(6vw + 50px);
  margin-top: 50px;
  margin-bottom: 0.4rem;
  width: 100%;
  box-sizing: border-box;
  float: none;
  margin-left: 0;
}

/* P — left-aligned, 50px right of h2 (same indent as h3) */
.biographyp {
  text-align: left;
  padding-left: calc(6vw + 50px);
  padding-right: 6vw;
  width: 100%;
  margin-top: 0.25rem;
  margin-bottom: 0;
  float: none;
  box-sizing: border-box;
}

h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 10px;
  margin-bottom: -.75rem;
}
.bio p {
    font-size: 1.5rem;
    margin-left: 40vw;
    margin-right: 400px;
    margin-top: 100px;
    margin-bottom: 10px;
    display: grid;
    grid-area: main;
    position: sticky; 
      top: 90px;
}
.bio-stats {
      background: var(--cream);
      border-left: 4px solid var(--gold);
      padding: 1.5rem;
      margin-top: 2rem;
    }

.bio-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      grid-template-areas: "title blank"
      "body blank";
      gap: 4rem;
      align-items: justify;
    }

.stat { margin-bottom: 1.2rem; }

.stat dt {
      font-size: .72rem; font-weight: 500;
      letter-spacing: .15em; text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .15rem;
    }
.stat dd {
      font-family: var(--ff-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--navy);
    }
.bio-content h3 {
      font-family: var(--ff-display);
      font-size: 1.3rem;
      font-weight: 700;
      margin: 2rem 0 .5rem;
      color: var(--navy);
      margin-bottom: 100px;
    }
.bio-content h3:first-child { margin-top: 0; }

.bio h3 {
  margin-left: 7vw;
}
.bio p {
  text-wrap: wrap;
}
html {
  scroll-behavior: smooth;
}
.block {
  margin-top: 100px;
  margin-left: 10vw;
  margin-right: 10vw;
  margin-bottom: 10px;
  width: 100vw; 
  height: 200px;
  background-color: var(--navy);
}
blockquote {
    background: var(--navy);
      width: 100vw;
      color: var(--white);
      margin-left: 0px;
      margin-right: 0px;
      height: 400px;
    }

blockquote p {
      font-family: var(--ff-display);
      font-size: 3rem;
      font-style: italic;
      text-align: center;
      font-weight: 700;
      line-height: 1.35;
      color: var(--white);
      
      max-width: 100vw;
      margin-bottom: 1.5rem;
      margin-left: -10vw;
    }
blockquote cite {
      font-size: 1rem;
      letter-spacing: .15em;
      text-transform: uppercase;
      color: var(--white);
    }

 #platform {
      background: var(--white);
      width: 100vw;
      box-sizing: border-box;
      padding-bottom: 3rem;
      margin-top: 2.5rem;
    }

    .platform-grid {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      padding: 0 5vw;
      box-sizing: border-box;
    }

    .card1, .card2, .card3 {
      flex: 1;
      min-width: 0;
    }

    .platform-card {
      border: 2px solid var(--navy);
      padding: 2rem;
      height: 100%;
      box-sizing: border-box;
      transition: transform .2s, box-shadow .2s;
    }
    .platform-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0,0,0,.1);
    }
    .platform-card .icon {
      font-size: 2rem;
      margin-bottom: 1rem;
    }
    .platform-card h3 {
      font-family: var(--ff-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin: 0 0 .75rem 0;
      padding: 0;
      width: auto;
      float: none;
    }
    .platform-card ul {
      list-style: none;
      padding: 0;
    }

    .platform-card ul li {
      font-size: .9rem;
      color: var(--muted);
      padding: .35rem 0;
      border-bottom: 1px solid #eee;
      display: flex; align-items: flex-start; gap: .5rem;
    }
    .platform-card ul li:last-child { border-bottom: none; }
    .platform-card ul li::before {
      content: '→';
      color: var(--gold);
      flex-shrink: 0;
      margin-top: .05rem;
    }


  .platform-subhead {
    margin-left: 9vw;
    margin-right: 20vw;
    font-size: 4rem;
  }
  .platform-head {
    font-size: 1.25rem;
    margin-bottom: 10px;
    margin-left: 10vw;
    margin-right: 60vw;
  }

  .planp {
    margin-left: 10vw;
    margin-right: 40vw;
    text-wrap: wrap;
    align-items: center;
  }
.donation {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
}
.donationcopy {
  margin: 0 0 1rem 0;
  color: var(--white);
  text-align: center;
}
.donationcopy h3 {
  color: var(--white);
  font-size: 1.5rem;
}
.btn-second {
   background: var(--gold);
      color: var(--navy);
      font-family: var(--ff-body);
      font-weight: 500;
      font-size: .9rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      text-decoration: none;
      padding: .85rem 2rem;
      border-radius: 2px;
      transition: background .2s, transform .15s;
      position: relative;
      margin-top: 10px;
      margin-left: -150%;
      margin-right: 12px;
      margin-bottom: 10px;
      display: inline-block;
  }

footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  background-color: white;
  min-height: auto;
  padding: 4rem 6vw 3rem;
  box-sizing: border-box;
  gap: 4rem;
  position: relative;
}

.footer-contact {
  flex: 1;
  max-width: 50%;
}

.footer-donations {
  flex: 1;
  max-width: 50%;
  text-align: right;
}

footer h2 {
  display: block;
  grid-area: unset;
}

footer p {
  display: block;
  grid-area: unset;
  margin-top: 6px;
  margin-left: 0px;
  line-height: 1.4;
}

aside {
  margin-top: 0.75rem;
}

aside div {
  margin-bottom: 0px;
  display: block;
  grid-area: unset;
}

.contact-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.3rem 0;
  line-height: 1.3;
}

.contact-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.1rem;
}

.contact-item-body {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-item-body dt {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.2;
}

.contact-item-body dd {
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.3;
  margin: 0;
}


.checksinfo {
  width: 100%;
  background-color: white;
}

.checkhead {
  font-size: 2rem;
  color: #D72535;
  margin: 0 0 0.75rem 0;
}

.checkadd {
  color: #0B1F3A;
  margin: 0;
  line-height: 1.8;
}

.footer-disclaimer {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.paid-for {
  color: #0B1F3A;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  border: 1px solid #0B1F3A;
  padding: 2px;
  margin: 0;
  white-space: nowrap;
}





/* =============================================
   MOBILE RESPONSIVE — max-width: 768px
   ============================================= */
@media (max-width: 900px) {

  /* ── Mobile nav: horizontal bar — logo left, hamburger right ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: visible;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    box-sizing: border-box;
    z-index: 200;
  }

  /* Top bar: logo + hamburger side by side */
  .nav-topbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 16px;
    box-sizing: border-box;
  }

  /* ── Logo: large, left side of top bar ── */
  .navigation-logo {
    position: static;
    width: clamp(140px, 45vw, 260px);
    min-height: unset;
    height: auto;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    padding: 0;
    line-height: 0;
  }

  nav img {
    display: block;
    width: clamp(140px, 45vw, 260px);
    height: auto;
    min-height: unset;
    object-fit: contain;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
  }

  /* ── Hamburger button ── */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.25s ease;
    transform-origin: center;
  }

  /* Animate to X when open */
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Collapsible link drawer — JS sets top = nav.offsetHeight ── */
  nav aside {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: var(--white);
    border: none;
    transition: height 0.3s ease;
    z-index: 199;
  }

  nav aside.open {
    height: auto;
    padding-bottom: 12px;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0;
    width: 100%;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  nav ul a {
    font-size: 1rem;
    letter-spacing: 0.06em;
    display: block;
    padding: 12px 0;
    color: var(--navy);
  }

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

  .seata {
    font-size: 0.75rem;
    padding: 6px 14px;
    border-width: 1px;
    border-color: var(--gold);
    color: var(--gold);
    display: inline-block;
    margin: 8px auto 0;
  }

  /* body padding-top is managed by JS (nav height + drawer height) */

  /* HERO: stack vertically */
  .hero {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .herotext {
    order: 1;
    padding: 0 5vw;
  }

  figure {
    order: 2;
    margin: 0;
    display: flex;
    justify-content: center;
  }

  #profilepic {
    display: block;
    width: 90vw;
    height: auto;
    margin: 20px auto 0;
    position: static;
    box-shadow: -10px -10px 0px #627996;
  }

  .seat { margin-left: 0; margin-top: 20px; }

  h1 {
    margin-left: 0;
    margin-top: 1.5rem;
    font-size: clamp(2rem, 8vw, 3rem);
    display: block;
  }

  .hero-tagline {
    margin-left: 0;
    font-size: 1.1rem;
    max-width: 100%;
    display: block;
    color: #b8c5d4;
    margin-bottom: 1.5rem;
    position: static;
  }

  .btn-primary {
    margin-left: 0;
    margin-bottom: 20px;
  }

  /* BIOGRAPHY */
  #biography { padding-left: 5vw; padding-right: 5vw; }
  .bio-title { padding-right: 0; }
  #biography h3, #biohead { padding-left: 0; margin-top: 30px; }
  .biographyp { padding-left: 0; padding-right: 0; }

  /* BLOCKQUOTE */
  .block { margin-left: 0; margin-right: 0; width: 100%; box-sizing: border-box; }

  blockquote {
    height: auto; width: 100%; max-width: 100vw;
    padding: 2rem 5vw; box-sizing: border-box;
    text-align: center; overflow: hidden;
  }

  blockquote p {
    font-size: 1.6rem; margin-left: 0; margin-right: 0;
    max-width: 100%; text-align: center;
  }

  blockquote cite { display: block; text-align: center; }

  /* PLATFORM */
  .platform-grid { flex-direction: column; padding: 0 5vw; }
  .card1, .card2, .card3 { width: 100%; }
  .platform-card h3 { white-space: normal; word-wrap: break-word; overflow-wrap: break-word; }
  .platform-subhead { font-size: 2rem; margin-left: 5vw; margin-right: 5vw; }
  .platform-head { margin-left: 5vw; margin-right: 5vw; }
  .planp { margin-left: 5vw; margin-right: 5vw; }

  /* FOOTER */
  footer { flex-direction: column; gap: 2rem; padding: 2.5rem 6vw; }
  .footer-contact, .footer-donations { max-width: 100%; width: 100%; }
  .footer-disclaimer { position: static; width: 100%; justify-content: flex-start; order: 3; }
  .paid-for { white-space: normal; }
  .footer-donations { text-align: left; }
  .checks { text-align: left; }
}

/* Hide hamburger on desktop (above 900px) */
@media (min-width: 901px) {
  .nav-toggle { display: none; }
  .nav-topbar { display: contents; }
}
