:root{
  --bg: #ffffff;
  --fg: #0b1220;
  --muted: #5b667a;
  --border: #e6e8ee;
  --card: #fbfbfd;
  --accent: #0b1220;
  --accent-2: #1f6feb;
  --shadow: 0 10px 30px rgba(11,18,32,.08);
  --radius: 16px;
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  --font-serif: "Work Sans", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: var(--font-serif);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left: 1rem; top: 1rem;
  width:auto;height:auto;
  padding:.5rem .75rem;
  background: var(--fg);
  color: var(--bg);
  border-radius: 10px;
  z-index: 9999;
}

/* --- ACA-style header --- */
.aca-header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #e6e8ee;
}

.aca-header-inner{
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.aca-brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.aca-logo{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* Hamburger */
.aca-menu-btn{
  width: 56px;
  height: 56px;
  border: none;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.aca-menu-btn .bar{
  width: 34px;
  height: 3px;
  background: #0b1220;
  border-radius: 999px;
}

/* --- Drawer --- */
.aca-drawer{
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 1fr;
  pointer-events: none;
  visibility: hidden;
}

.aca-drawer.open{
  pointer-events: auto;
  visibility: visible;
}

.aca-backdrop{
  display: none;
}

.aca-drawer-panel{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1202;
  pointer-events: auto;

  transform: translateX(100%);
  transition: transform 200ms ease;
}

/* When open */
.aca-drawer.open .aca-drawer-panel{
  transform: translateX(0);
}

.aca-close{
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border: none;
  background: transparent;
  width: auto;
  height: auto;
  padding: 0.5rem;
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  color: var(--fg);
}

.aca-drawer-nav{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 1.25rem;
  padding-left: 1.5rem;
  align-items: flex-start;
  margin-top: 0;
}

.aca-drawer-nav a{
  padding: .25rem 0;
  text-decoration: none;
  font-weight: 500;
  color: #0b1220;
  text-align: left;
  font-size: 1rem;
}

.aca-drawer-nav a:hover{
  background: transparent;
  text-decoration: underline;
}

.brand{
  display:flex;
  align-items:center;
  gap: .75rem;
}
.brand-logo{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  flex-shrink: 0;
}
.brand-text{ display:flex; flex-direction:column; line-height: 1.1; }
.brand-sub{ font-size: .85rem; color: var(--muted); margin-top:.15rem; }

.section{
  padding: 1rem 0 3rem 0;
}

.section-head{
  margin-bottom: 1rem;
}
.section-head h2{
  margin: 0 0 .25rem 0;
  font-size: 1.9rem;
  font-weight: 700;
  font-family: var(--font);
}

h2, h3, h4{
  font-weight: 700;
  font-family: var(--font);
}
.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

.hero{
  display:grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 1.25rem;
  align-items:start;
}
h1{
  margin: 0 0 .6rem 0;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  font-family: var(--font-serif);
  font-weight: 400;
}
.lead{
  color: var(--muted);
  font-size: 1.06rem;
  margin: 0 0 1.2rem 0;
}

.cta-row{
  display:flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.btn{
  display:inline-block;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.btn:hover{ text-decoration:none; border-color:#cfd6e6; }
.btn.primary{
  background: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
  padding: 0.75rem 1.25rem;
}
form .btn {
  margin-top: 0.75rem;
}

.hero-card{
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.h4{ font-size: 1.1rem; margin:0 0 .5rem 0; }
.divider{
  height:1px;
  background: var(--border);
  margin: .9rem 0;
}

.checklist{
  margin: .5rem 0 0 0;
  padding-left: 1.1rem;
}
.checklist li{ margin: .35rem 0; }

.pillars{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: .85rem;
}
.pillar{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  padding: .9rem;
}
.pillar h3{
  margin: 0 0 .25rem 0;
  font-size: 1.05rem;
}
.pillar p{ margin:0; color: var(--muted); }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;

  align-items: start;
}

.card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  padding: 1rem;
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
}
.card.callout{
  margin-top: 1rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.bullets{ margin: .5rem 0 0 1rem; }
.tags-row{ display:flex; flex-wrap:wrap; gap: .5rem; margin: .5rem 0; }
.tag{
  display:inline-flex;
  padding: .25rem .6rem;
  border-radius: 999px;
  border:1px solid var(--border);
  background: #fff;
  font-size: .88rem;
  color: var(--muted);
}

.toolbar{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.field{
  display:flex;
  flex-direction: column;
  gap: .35rem;
  min-width: 240px;
}
.field-label{ font-size: .9rem; color: var(--muted); }
input, select, textarea{
  width: 100%;
  padding: .65rem .75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--fg);
  outline: none;
}
input:focus, select:focus, textarea:focus{
  border-color: #b8c6ff;
  box-shadow: 0 0 0 4px rgba(31,111,235,.12);
}

.cards-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.member-card{
  display:flex;
  gap: .9rem;
  align-items:flex-start;
}
.avatar{
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #e9eefc;
  border: 1px solid var(--border);
  flex: 0 0 auto;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 800;
  color: #2443a8;
}
.member-meta h4{ margin:0; font-size: 1.05rem; }
.member-meta p{ margin:.15rem 0 0 0; color: var(--muted); }
.member-meta .role{ font-weight: 600; color: var(--fg); }

.media-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1rem;
}
.media-card iframe{
  width:100%;
  aspect-ratio: 9 / 16;
  border:0;
  border-radius: 14px;
  background: #000;
}
.media-card .media-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: .75rem;
  margin-bottom: .6rem;
}
.media-card .media-top h4{ margin:0; font-size: 1rem; }
.media-card .platform{
  font-size: .85rem;
  color: var(--muted);
  border:1px solid var(--border);
  padding:.2rem .5rem;
  border-radius: 999px;
  background:#fff;
}

.list{
  display:flex;
  flex-direction: column;
  gap: .75rem;
}
.list-item{
  border:1px solid var(--border);
  background: #fff;
  border-radius: 14px;
  padding: .85rem;
}
.list-item h4{ margin:0 0 .2rem 0; }
.list-item p{ margin:0; color: var(--muted); }
.list-item .meta{
  display:flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}
.badge{
  font-size: .84rem;
  color: var(--muted);
  border:1px solid var(--border);
  padding:.15rem .5rem;
  border-radius: 999px;
  background: var(--card);
}

.site-footer{
  background: #2a2a2a;
  padding: 3rem 0;
  color: #fff;
}

.footer-content{
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-text{
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: lowercase;
}

.footer-social-icons{
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease;
}

.social-icon:hover{
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.social-icon svg,
.social-icon img{
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
}

.social-icon-large img{
  width: 36px;
  height: 36px;
}

.social-icon-fb span{
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links{
  display:flex;
  flex-direction: column;
  gap: .4rem;
}

@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .cards-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .media-grid{ grid-template-columns: 1fr; }
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    display:none;
    width: 100%;
    padding-top: .75rem;
  }
  .site-nav.open{ display:flex; }
}
@media (max-width: 520px){
  .cards-grid{ grid-template-columns: 1fr; }
}

/* Socials block styling */
/* Center the whole block */
.socials-centered{
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Center headings only */
.socials-centered h1,
.socials-centered h2{
  text-align: center;
}

.socials-centered h1{
  margin-bottom: 1.5rem;
}

.socials-centered h2{
  margin-bottom: 2rem;
  font-weight: 600;
}

/* Left-align the list inside the centered container */
.socials-list{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Each row behaves like ACA’s */
.social-row{
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: baseline;
  column-gap: 1rem;

  text-align: left;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Label column */
.social-row .label{
  white-space: nowrap;
}

/* Value column */
.social-row .value{
  font-weight: 500;
  letter-spacing: normal;
  text-transform: none;
}

/* HERE! link */
.social-row a{
  font-weight: 700;
  text-decoration: underline;
  white-space: nowrap;
}

/* Mobile: stack nicely */
@media (max-width: 600px){
  .social-row{
    grid-template-columns: 1fr;
    gap: .25rem;
  }

  .social-row a{
    margin-top: .25rem;
  }
}

.google-form-embed{
  width: 100%;
  min-height: 900px;   /* adjust if needed */
  border: 0;           /* replaces frameborder="0" */
  display: block;      /* removes inline spacing */
}

