:root{
  --navy:#173D6F;
  --gold:#B89443;
  --ink:#0C1724;
  --ivory:#F6F1E8;
  --paper:#FFFFFF;
  --line:rgba(12,23,36,.12);
  --muted:rgba(12,23,36,.72);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:linear-gradient(180deg,#fbf8f2 0%, #f4efe5 100%);
  color:var(--ink);
  font:16px/1.7 Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit}
h1,h2,h3{
  font-family:Georgia,"Times New Roman",serif;
  font-weight:400;
  line-height:1.02;
  letter-spacing:-.03em;
  margin:0;
}
p{margin:0}
.container{
  width:min(1280px,calc(100% - 40px));
  margin:0 auto;
  min-width:0;
}
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:#F7F4ED;
  border-bottom:1px solid rgba(23,25,26,.10);
}
.topbar .container{
  width:min(1240px,92vw);
}
.nav{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:18px;
  min-height:88px;
  min-width:0;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  min-width:max-content;
  flex:0 0 auto;
}
.brand img{
  width:auto;
  max-height:66px;
  object-fit:contain;
}
.navlinks{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  flex:1;
  flex-wrap:nowrap;
  min-width:0;
  overflow:hidden;
}
.navlinks a{
  text-decoration:none;
  color:#17191A;
  font-family:Inter,Arial,sans-serif;
  font-size:11px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  white-space:nowrap;
  flex:0 0 auto;
  padding:6px 0;
}
.navlinks a:hover{color:#D9A93B}
.navlinks a.active{
  color:#D9A93B;
  box-shadow:inset 0 -2px 0 #D9A93B;
}
.nav-cta{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:8px;
  flex:0 0 auto;
}
.tea{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  background:#D9A93B;
  color:#17191A;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:800;
  border:1px solid #D9A93B;
  box-shadow:0 8px 22px rgba(217,169,59,.18);
  border-radius:999px;
}
.tea:hover{
  background:#E5B94F;
  border-color:#E5B94F;
  color:#17191A;
  transform:translateY(-1px);
}
.member-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:0 16px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.13em;
  font-size:12px;
  font-weight:800;
  border:1px solid rgba(23,25,26,.20);
  border-radius:999px;
  color:#17191A;
  background:transparent;
}
.member-pill:hover{
  border-color:rgba(23,25,26,.20);
  background:rgba(23,25,26,.04);
}
.menu-btn{
  display:none;
  align-items:center;
  justify-content:center;
  min-height:48px;
  min-width:48px;
  border:1px solid rgba(23,25,26,.20);
  background:transparent;
  color:#17191A;
  padding:0;
  border-radius:999px;
  flex:0 0 auto;
}
.menu-btn .menu-icon{
  width:18px;
  height:12px;
  position:relative;
  display:block;
}
.menu-btn .menu-icon span{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  border-radius:2px;
  background:#17191A;
}
.menu-btn .menu-icon span:nth-child(1){top:0}
.menu-btn .menu-icon span:nth-child(2){top:5px}
.menu-btn .menu-icon span:nth-child(3){bottom:0}
.mobile-panel{display:none}
.mobile-sticky-actions{display:none}
.hero{
  padding:58px 0 30px;
}
.hero-shell{
  background:
    linear-gradient(135deg, rgba(23,61,111,.92) 0%, rgba(23,61,111,.84) 52%, rgba(184,148,67,.92) 100%);
  color:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 22px 60px rgba(16,26,40,.10);
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:end;
  padding:44px;
  min-width:0;
}
.kicker{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size:.72rem;
  color:rgba(255,255,255,.86);
  font-weight:700;
  margin-bottom:16px;
}
.hero h1{
  font-size:clamp(2.8rem,6.8vw,6.4rem);
  max-width:11ch;
  overflow-wrap:anywhere;
}
.hero p{
  margin-top:18px;
  max-width:66ch;
  color:rgba(255,255,255,.9);
  font-size:1.08rem;
}
.hero-meta{
  display:grid;
  gap:14px;
  justify-items:start;
  padding-bottom:6px;
}
.meta-line{
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:rgba(255,255,255,.8);
}
.section{
  padding:36px 0 88px;
}
.intro{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  box-shadow:0 10px 28px rgba(13,23,34,.04);
}
.intro-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:30px;
  align-items:start;
  min-width:0;
}
.section-label{
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:.72rem;
  color:var(--navy);
  font-weight:700;
}
.intro h2{
  font-size:clamp(2rem,4vw,3.8rem);
  margin:.18em 0 .35em;
  max-width:14ch;
  overflow-wrap:break-word;
}
.intro p{
  color:var(--muted);
  max-width:68ch;
}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-content:flex-start;
}
.chip{
  border:1px solid rgba(23,61,111,.18);
  background:rgba(23,61,111,.04);
  padding:10px 14px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.72rem;
  border-radius:999px;
}
.archive-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin:34px 0 18px;
}
.archive-head h2{
  font-size:clamp(1.9rem,4vw,3.3rem);
  overflow-wrap:anywhere;
}
.archive-head p{
  color:var(--muted);
  max-width:60ch;
}
.featured-layout{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  margin-top:18px;
  min-width:0;
  align-items:start;
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(13,23,34,.05);
}
.featured-card{
  display:grid;
  grid-template-rows:auto auto;
  min-height:0;
  align-self:start;
}
.card-media{
  aspect-ratio:16/10;
  overflow:hidden;
  background:#d9dfeb;
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}
.card:hover .card-media img{transform:scale(1.04)}
.card-body{
  padding:24px;
  display:grid;
  gap:14px;
}
.meta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.date{
  font-size:.76rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--muted);
}
.category{
  font-size:.72rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:700;
}
.card h3{
  font-size:clamp(1.35rem,2.2vw,1.95rem);
}
.card p{
  color:var(--muted);
}
.button-row{
  margin-top:4px;
}
.article-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:44px;
  padding:12px 18px;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.74rem;
  border:1px solid rgba(23,61,111,.22);
  background:rgba(23,61,111,.04);
  color:var(--navy);
  border-radius:999px;
}
.article-btn:hover{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.supporting-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.support-card .card-media{aspect-ratio:4/3}
.support-card h3{font-size:1.5rem}
.support-card .card-body{padding:20px}
.footer-rail{
  margin-top:34px;
  background:var(--navy);
  color:#fff;
  border-radius:24px;
  overflow:hidden;
  padding:24px 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}
.footer-rail p{color:rgba(255,255,255,.88);max-width:70ch}
.info{
  padding:56px 0 92px;
}
.info-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  min-width:0;
}
.info-card{
  padding:24px;
  background:rgba(255,255,255,.66);
  border:1px solid var(--line);
  border-radius:24px;
}
.info-card h3{
  font-size:1.8rem;
  margin:.2em 0 .35em;
}
.bgc-site-footer{
  padding:56px 0 32px;
  background:#17191A;
  color:#F5F1E8;
  overflow:hidden;
}
.bgc-site-footer .container{
  width:min(1240px,92vw);
}
.bgc-site-footer__wrap{
  padding:0;
}
.bgc-site-footer__grid{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(0,.95fr) minmax(0,.9fr);
  gap:34px;
  align-items:start;
}
.bgc-site-footer__brand{
  display:grid;
  gap:18px;
  align-content:start;
}
.bgc-site-footer__logo-tile{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:190px;
  height:145px;
  max-width:100%;
  padding:14px;
  border-radius:12px;
  background:#F3EEE4;
  border:1px solid rgba(245,241,232,.12);
  box-shadow:none;
}
.bgc-site-footer__logo{
  width:auto;
  height:auto;
  max-width:155px;
  max-height:110px;
  object-fit:contain;
}
.bgc-site-footer__tagline{
  font-family:"Cormorant Garamond",Georgia,serif;
  font-size:clamp(2rem,2.6vw,2.1rem);
  line-height:.98;
  letter-spacing:-.04em;
  color:#F5F1E8;
  margin:0;
  max-width:12ch;
}
.bgc-site-footer__contact{
  display:grid;
  gap:10px;
  color:#B8B1A6;
  font-size:15px;
}
.bgc-site-footer__contact a{
  color:#F5F1E8;
  text-decoration:none;
}
.bgc-site-footer__heading{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:10px;
  font-weight:700;
  color:#B8B1A6;
  margin-bottom:6px;
}
.bgc-site-footer__links{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px 18px;
}
.bgc-site-footer__link{
  width:max-content;
  max-width:100%;
  padding:2px 0;
  color:#B8B1A6;
  font-size:14px;
  border-bottom:1px solid transparent;
  text-decoration:none;
}
.bgc-site-footer__link:hover,
.bgc-site-footer__link:focus-visible{
  border-bottom-color:rgba(245,241,232,.35);
  color:#F5F1E8;
}
.bgc-site-footer__actions{
  display:grid;
  gap:12px;
  align-content:start;
}
.bgc-site-footer__cta{
  width:max-content;
  min-height:52px;
  padding:14px 18px;
  background:#D9A93B;
  border:1px solid #D9A93B;
  color:#17191A !important;
  box-shadow:0 10px 22px rgba(217,169,59,.22);
  border-radius:999px;
  font-weight:700;
}
.bgc-site-footer__cta:hover,
.bgc-site-footer__cta:focus-visible{
  background:#E5B94F;
  border-color:#E5B94F;
  color:#17191A !important;
}
.bgc-site-footer__cta--ghost{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 18px;
  width:max-content;
  color:#F5F1E8;
  border:1px solid rgba(245,241,232,.22);
  border-radius:999px;
  background:transparent;
  text-decoration:none;
}
.bgc-site-footer__cta--ghost:hover,
.bgc-site-footer__cta--ghost:focus-visible{
  border-color:#F5F1E8;
  background:rgba(245,241,232,.06);
}
.bgc-site-footer__rail{
  margin-top:32px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  color:#B8B1A6;
  font-size:13px;
}
.bgc-site-footer a:focus-visible{
  outline:2px solid rgba(245,241,232,.6);
  outline-offset:3px;
}
@media (max-width: 1024px){
  .bgc-site-footer__grid{
    grid-template-columns:1fr 1fr;
  }
  .bgc-site-footer__actions{
    grid-column:1 / -1;
  }
}
@media (max-width: 767px){
  .bgc-site-footer__grid{
    grid-template-columns:1fr;
    gap:24px;
  }
  .bgc-site-footer__logo-tile{
    width:165px;
    height:125px;
    padding:12px;
  }
  .bgc-site-footer__logo{
    max-width:136px;
    max-height:96px;
  }
  .bgc-site-footer__links{
    grid-template-columns:1fr;
    gap:10px;
  }
  .bgc-site-footer__cta,
  .bgc-site-footer__cta--ghost{
    width:100%;
  }
}
@media (max-width: 1024px){
  .featured-layout{grid-template-columns:1fr}
  .supporting-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .hero-grid,.intro-grid,.info-grid{grid-template-columns:1fr}
  .footer-rail{flex-direction:column;align-items:flex-start}
}
@media (max-width: 960px){
  .hero{padding-top:22px}
  .hero-grid{padding:28px}
  .archive-head{flex-direction:column;align-items:flex-start}
  .supporting-grid{grid-template-columns:1fr}
}
@media (max-width: 1024px){
  .mobile-panel{
    display:none;
    border-top:1px solid rgba(23,25,26,.10);
    background:#F7F4ED;
  }
  .mobile-panel.open{display:block}
  .mobile-panel .panel-inner{
    padding:14px 0 20px;
    display:grid;
    gap:10px;
  }
  .mobile-panel a{
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:11px;
    font-weight:800;
    padding:10px 0;
    border-bottom:1px solid rgba(23,25,26,.10);
    color:#17191A;
    font-family:Inter,Arial,sans-serif;
  }
  .mobile-panel a:hover{color:#D9A93B}
  .mobile-panel .tea{margin-top:8px}
  .mobile-panel .member-pill,
  .mobile-panel .tea{
    width:100%;
  }
  .mobile-panel .member-pill{
    border:1px solid rgba(23,25,26,.18);
  }
  .mobile-sticky-actions{
    position:sticky;
    bottom:0;
    z-index:45;
    display:flex;
    gap:8px;
    padding:10px 10px calc(10px + env(safe-area-inset-bottom));
    background:rgba(246,241,232,.92);
    backdrop-filter:saturate(1.1) blur(12px);
    border-top:1px solid var(--line);
    box-shadow:0 -10px 24px rgba(12,23,36,.08);
  }
  .mobile-sticky-actions a{
    flex:1;
    min-width:0;
    min-height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    text-transform:uppercase;
    letter-spacing:.12em;
    font-size:.68rem;
    padding:10px 8px;
    border-radius:999px;
    border:1px solid rgba(23,61,111,.18);
    background:#fff;
    color:var(--ink);
    text-align:center;
  }
  .mobile-sticky-actions a.primary{
    background:var(--navy);
    color:#fff;
    border-color:var(--navy);
  }
  .mobile-sticky-actions a.secondary{
    background:rgba(23,61,111,.05);
    color:var(--navy);
  }
}
@media (max-width: 480px){
  .container{width:min(1280px,calc(100% - 24px))}
  .hero-shell,.intro,.card,.info-card,.footer-rail{border-radius:20px}
  .hero-grid{padding:22px}
  .hero p,.intro p,.card p,.info-card p,.footer-rail p{font-size:.98rem}
  .supporting-grid{grid-template-columns:1fr}
  .card-body{padding:18px}
  .footer-rail{padding:20px}
  .meta-row,.button-row{min-width:0}
  .article-btn{max-width:100%;white-space:normal}
  .topbar .container{width:min(1280px,calc(100% - 16px))}
  .nav{
    gap:8px;
    padding:7px 0;
  }
  .brand img{
    max-height:56px;
  }
  .menu-btn{
    min-height:44px;
    min-width:44px;
  }
}