:root{
  --navy:#081B3F;
  --royal:#0D2B70;
  --accent:#2F6BFF;
  --accent-2:#6FA1FF;
  --ice:#EEF3FC;
  --white:#FFFFFF;
  --slate:#2A333D;
  --muted:#7C8A9A;
  --line:#DCE5EE;
  --radius:8px;
  --maxw:1120px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Inter',sans-serif;
  color:var(--slate);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,.serif{
  font-family:'Fraunces',serif;
  font-weight:600;
  color:var(--navy);
  letter-spacing:-0.01em;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.pending{
  display:inline-block;
  font-size:12px;
  font-weight:600;
  color:var(--accent);
  background:var(--ice);
  border:1px solid var(--line);
  border-radius:20px;
  padding:2px 10px;
  margin-left:8px;
  vertical-align:middle;
}

/* NAV */
header.site{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,0.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}
nav.wrap{
  position:relative;
  display:flex; align-items:center; justify-content:space-between;
  height:72px;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:'Fraunces',serif; font-weight:600; font-size:19px; color:var(--navy);
}
.brand .mark{
  width:34px; height:34px; border-radius:7px;
  background:linear-gradient(160deg,var(--navy),var(--accent));
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:'Fraunces',serif; font-weight:700; font-size:16px;
  flex-shrink:0;
}
.navlinks{display:flex; gap:2px; list-style:none;}
.navlinks a{
  display:inline-block;
  font-family:'Inter',sans-serif; font-size:14.5px; font-weight:500;
  color:var(--slate); padding:10px 14px; border-radius:6px;
  transition:background .15s, color .15s;
  white-space:nowrap;
}
.navlinks a:hover{background:var(--ice); color:var(--navy);}
.navlinks a.active{color:var(--navy); font-weight:600;}

.nav-toggle{
  display:none;
  flex-direction:column; justify-content:center; align-items:center; gap:4px;
  width:40px; height:40px; flex-shrink:0;
  background:none; border:1px solid var(--line); border-radius:6px; cursor:pointer;
}
.nav-toggle span{width:18px; height:2px; background:var(--navy); border-radius:2px;}

main{min-height:60vh;}

/* HERO */
.hero{
  position:relative;
  overflow:hidden;
  padding:0;
  color:#fff;
  min-height:640px;
}
.hero-slide{
  position:absolute; inset:0;
  opacity:0; visibility:hidden;
  transition:opacity .8s ease;
  background:
    linear-gradient(100deg, rgba(8,27,63,0.92) 0%, rgba(8,27,63,0.72) 35%, rgba(8,27,63,0.42) 65%, rgba(8,27,63,0.30) 100%),
    var(--slide-bg, none);
  background-size:cover;
  background-position:center;
}
.hero-slide.is-active{opacity:1; visibility:visible; position:relative;}
.hero-slide::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,0.5), transparent 75%);
  pointer-events:none;
}
.hero-slide .wrap{position:relative; z-index:1; padding:96px 28px 80px;}
.hero-pill{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.18);
  color:#DCE7FF;
  font-size:13.5px; font-weight:600;
  padding:8px 16px; border-radius:30px;
  margin-bottom:28px;
}
.hero-pill .dot{width:6px; height:6px; border-radius:50%; background:var(--accent-2);}
.hero .kicker{color:var(--accent-2); font-weight:600; font-size:14px; margin-bottom:14px;}
.hero h1{font-size:clamp(36px,5vw,56px); line-height:1.08; max-width:780px; color:#fff;}
.hero p.lead{
  margin-top:20px; font-size:18px; color:#C3D2EE; max-width:580px;
}
.hero .cta-row{margin-top:36px; display:flex; gap:14px; flex-wrap:wrap;}

/* Carousel controls */
.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff; font-size:18px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; z-index:2;
  transition:background .15s;
}
.hero-arrow:hover{background:rgba(255,255,255,0.2);}
.hero-arrow.prev{left:24px;}
.hero-arrow.next{right:24px;}
.hero-dots{
  position:absolute; bottom:28px; left:0; right:0;
  display:flex; justify-content:center; gap:8px; z-index:2;
}
.hero-dots button{
  display:inline-block;
  -webkit-appearance:none; appearance:none;
  width:8px; height:8px; border-radius:50%;
  background:rgba(255,255,255,0.35); border:none; cursor:pointer;
  padding:0; transition:background .15s, width .2s;
}
.hero-dots button.is-active{background:#fff; width:22px; border-radius:5px;}

.btn{
  display:inline-block; padding:13px 22px; border-radius:6px;
  font-weight:600; font-size:15px; cursor:pointer; border:1px solid transparent;
}
.btn-primary{background:var(--accent); color:#fff;}
.btn-primary:hover{background:#4A80FF;}
.btn-ghost{background:transparent; color:var(--navy); border-color:var(--line);}
.btn-ghost:hover{border-color:var(--navy);}
.btn-outline-light{background:transparent; color:#fff; border-color:rgba(255,255,255,0.4);}
.btn-outline-light:hover{border-color:#fff; background:rgba(255,255,255,0.06);}

.stat-section{background:var(--white); border-bottom:1px solid var(--line);}
.stat-row{
  display:grid; grid-template-columns:repeat(3,1fr);
}
.stat{padding:32px 0; border-right:1px solid var(--line);}
.stat:last-child{border-right:none;}
.stat .n{font-family:'Fraunces',serif; font-size:32px; color:var(--navy); font-weight:600;}
.stat .l{color:var(--muted); font-size:13.5px; margin-top:4px;}

/* STORY HEADER (photo + overlapping stat card) */
.story-header{max-width:640px; margin:0 auto 48px; text-align:center;}
.pill-light{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--ice); border:1px solid var(--line); color:var(--accent);
  font-size:13px; font-weight:700; letter-spacing:0.02em;
  padding:7px 18px; border-radius:30px; margin-bottom:20px;
}
.story-header h2{font-size:clamp(30px,4vw,42px); margin-top:18px;}
.story-header p{color:var(--muted); font-size:17px; margin-top:16px;}
.story-photo-wrap{position:relative; margin-bottom:64px;}
.story-photo-frame{
  border-radius:16px; overflow:hidden;
  aspect-ratio:16/8; background:linear-gradient(150deg,var(--ice),var(--line));
}
.story-photo-frame img{width:100%; height:100%; object-fit:cover; display:block;}
.story-photo-frame .ph-label{
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:14px;
}
.story-stat-card{
  position:absolute; left:40px; bottom:-32px;
  background:var(--navy); color:#fff;
  border-radius:14px; padding:24px 32px;
  box-shadow:0 16px 32px rgba(8,27,63,0.25);
  min-width:180px;
}
.story-stat-card .n{font-family:'Fraunces',serif; font-size:38px; font-weight:600; color:#fff;}
.story-stat-card .l{color:#B9C6E0; font-size:13px; margin-top:4px;}

/* SECTION SCAFFOLD */
.section{padding:72px 0;}
.section + .section{border-top:1px solid var(--line);}
.section-head{max-width:600px; margin-bottom:40px;}
.section-head .eyebrow{color:var(--accent); font-weight:600; font-size:13.5px; margin-bottom:10px;}
.section-head h2{font-size:30px;}
.section-head p{color:var(--muted); margin-top:12px; font-size:16px;}
.section.tint{background:var(--ice);}

/* ABOUT */
.about-grid{display:grid; grid-template-columns:1.1fr 0.9fr; gap:56px;}
.about-grid p{color:var(--slate); font-size:16px; margin-bottom:16px; max-width:520px;}
.about-grid .placeholder-copy{color:var(--muted); font-style:italic;}
.achv-list{display:flex; flex-direction:column; gap:0;}
.achv-item{
  display:flex; justify-content:space-between; gap:16px;
  padding:16px 0; border-bottom:1px solid var(--line);
}
.achv-item:first-child{border-top:1px solid var(--line);}
.achv-item .yr{color:var(--accent); font-weight:600; font-size:14px; width:64px; flex-shrink:0;}
.achv-item .desc{color:var(--muted); font-size:14.5px;}

/* LEADERSHIP */
.board-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:28px;}
.board-card .avatar{
  width:100%; aspect-ratio:1; border-radius:var(--radius);
  background:linear-gradient(150deg,var(--ice),var(--line));
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:13px; margin-bottom:14px;
}
.board-card h3{font-size:16px; color:var(--navy); margin-bottom:2px;}
.board-card .role{color:var(--accent); font-size:13.5px; font-weight:600; margin-bottom:8px;}
.board-card .bio{color:var(--muted); font-size:13.5px;}

/* OUR ARMS HUB */
.arms-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.arm-card{
  border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; transition:border-color .15s, transform .15s;
  background:var(--white); display:block;
}
.arm-card:hover{border-color:var(--accent); transform:translateY(-2px);}
.arm-card .tag{color:var(--accent); font-weight:600; font-size:12.5px; margin-bottom:14px;}
.arm-card h3{font-size:20px; margin-bottom:10px;}
.arm-card p{color:var(--muted); font-size:14.5px; margin-bottom:18px;}
.arm-card .go{color:var(--navy); font-weight:600; font-size:14px;}
.arm-card.disabled{opacity:.55; cursor:default; pointer-events:none;}

/* ARM DETAIL */
.arm-back{color:var(--accent); font-weight:600; font-size:14px; display:inline-block; margin-bottom:24px;}
.arm-header{display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap; margin-bottom:36px;}
.arm-header h2{font-size:32px;}
.profile-strip{
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid var(--line); border-radius:var(--radius); overflow:hidden;
  margin-bottom:48px;
}
.profile-cell{padding:18px 20px; border-right:1px solid var(--line);}
.profile-cell:last-child{border-right:none;}
.profile-cell .k{font-size:12.5px; color:var(--muted); margin-bottom:6px;}
.profile-cell .v{font-size:15px; color:var(--navy); font-weight:600;}

.arm-sub-grid{display:grid; grid-template-columns:1fr 1fr; gap:40px; margin-bottom:48px;}
.empty-box{
  border:1px dashed var(--line); border-radius:var(--radius);
  padding:32px; text-align:center; color:var(--muted); font-size:14px;
}
.fixture-row{
  display:flex; justify-content:space-between; padding:14px 0; border-bottom:1px solid var(--line); font-size:14.5px;
}

/* GALLERY */
.gallery-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
.g-item{
  aspect-ratio:1; border-radius:var(--radius);
  background:linear-gradient(160deg,var(--ice),var(--line));
  display:flex; align-items:center; justify-content:center;
  color:var(--muted); font-size:13px;
}
.g-item.tall{grid-row:span 2; aspect-ratio:auto;}

/* CONTACT */
.contact-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px;}
.contact-info .row{padding:16px 0; border-bottom:1px solid var(--line);}
.contact-info .k{font-size:12.5px; color:var(--muted); margin-bottom:4px;}
.contact-info .v{font-size:16px; color:var(--navy); font-weight:600;}
form.contact-form{display:flex; flex-direction:column; gap:16px;}
.field label{display:block; font-size:13px; color:var(--muted); margin-bottom:6px;}
.field input, .field textarea{
  width:100%; border:1px solid var(--line); border-radius:6px; padding:12px 14px;
  font-family:'Inter',sans-serif; font-size:14.5px; color:var(--slate); background:var(--white);
}
.field textarea{resize:vertical; min-height:100px;}

/* SPONSOR STRIP + FOOTER */
.sponsor-strip{border-top:1px solid var(--line); padding:36px 0; background:var(--ice);}
.sponsor-strip .label{font-size:12.5px; color:var(--muted); margin-bottom:18px;}
.sponsor-row{display:flex; gap:14px; flex-wrap:wrap;}
.sponsor-slot{
  width:120px; height:52px; border:1px dashed var(--line); border-radius:6px;
  display:flex; align-items:center; justify-content:center; color:var(--muted); font-size:11.5px;
  background:var(--white);
}
footer.site{background:var(--navy); color:#B9C6D6; padding:44px 0 28px;}
footer.site .fgrid{display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; margin-bottom:28px;}
footer.site .fbrand{color:#fff; font-family:'Fraunces',serif; font-size:18px; font-weight:600;}
footer.site .fcol h4{color:#fff; font-size:13.5px; margin-bottom:12px;}
footer.site .fcol a{display:block; color:#B9C6D6; font-size:13.5px; margin-bottom:8px;}
footer.site .fcol a:hover{color:#fff;}
footer.site .bottom{border-top:1px solid rgba(255,255,255,0.12); padding-top:20px; font-size:12.5px; color:#8296AC;}

@media (max-width:900px){
  .nav-toggle{display:flex;}
  .navlinks{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; gap:0;
    background:var(--white); border-bottom:1px solid var(--line);
    max-height:0; overflow:hidden; opacity:0;
    transition:max-height .25s ease, opacity .2s ease;
  }
  .navlinks.is-open{max-height:400px; opacity:1;}
  .navlinks li{width:100%;}
  .navlinks a{display:block; padding:14px 28px; border-radius:0;}

  .hero-slide .wrap{padding:64px 24px 96px;}
  .hero h1{font-size:28px;}
  .hero p.lead{font-size:15px;}
  .hero-arrow{width:36px; height:36px; top:auto; bottom:16px; transform:none;}
  .hero-arrow.prev{left:16px;}
  .hero-arrow.next{right:16px;}
  .hero-dots{bottom:16px; left:70px; right:70px; justify-content:center;}

  .about-grid, .arms-grid, .board-grid, .arm-sub-grid, .contact-grid{grid-template-columns:1fr;}
  .stat-row{grid-template-columns:1fr; }
  .stat{border-right:none; border-bottom:1px solid var(--line); padding-bottom:16px;}
  .profile-strip{grid-template-columns:1fr 1fr;}
  .profile-cell:nth-child(2n){border-right:none;}
  .gallery-grid{grid-template-columns:repeat(2,1fr);}
  .story-stat-card{left:20px; bottom:-24px; padding:18px 22px; min-width:140px;}
  .story-stat-card .n{font-size:28px;}
}
