:root {
  --navy: #0b1f3a;
  --navy-mid: #132c4f;
  --ink: #14202b;
  --muted: #5a6570;
  --blue: #046bd2;
  --blue-dark: #045cb4;
  --green: #194d24;
  --green-mid: #2a7a38;
  --green-logo: #3b7336;
  --paper: #f4f6f3;
  --white: #ffffff;
  --line: #d7dde3;
  --card: #ffffff;
  --max: 1160px;
  --pad: 24px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16.5px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4 {
  font-family: Inter, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1em; }
.wrap { width: min(var(--max), calc(100% - var(--pad) * 2)); margin: 0 auto; }
.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 8px; background: #fff; padding: 8px 12px; z-index: 20; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 20px;
}
.logo img { height: 42px; width: auto; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--green-mid); }
.nav-cta {
  background: var(--navy);
  color: #fff !important;
  padding: 9px 14px;
  border-radius: 8px;
}
.nav-cta:hover { background: var(--blue); }
.menu-btn {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 10px; font: inherit; cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  color: #fff;
  min-height: 520px;
  display: grid;
  align-items: end;
  background: var(--navy) center/cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,58,0.35) 0%, rgba(11,31,58,0.78) 70%, rgba(11,31,58,0.92) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 72px 0 56px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #cfe8d4;
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(32px, 5vw, 56px);
  max-width: 16ch;
  margin-bottom: 12px;
}
.hero .lede {
  font-size: clamp(18px, 2.2vw, 22px);
  color: #e8eef5;
  max-width: 42ch;
}
.hero .sub {
  color: #c9d4e0;
  max-width: 56ch;
  margin-top: 8px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px; border-radius: 9px; font-weight: 600; font-size: 15px;
  border: 0; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--green-mid); color: #fff !important; }
.btn-primary:hover { background: var(--green); }
.btn-ghost { background: transparent; color: #fff !important; border: 1px solid rgba(255,255,255,0.45); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: #fff !important; }
.btn-navy:hover { background: var(--blue); }

/* Sections */
.section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.kicker {
  color: var(--green-mid);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.muted { color: var(--muted); }
.paper { background: var(--paper); }
.navy-band { background: var(--navy); color: #dce5ef; }
.navy-band h2, .navy-band h3 { color: #fff; }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}
.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow);
}
.stat b { display: block; font-size: 28px; color: var(--navy); letter-spacing: -0.03em; }
.stat span { color: var(--muted); font-size: 14px; }

/* Cards / tiles */
.grid-5, .grid-3, .grid-2, .grid-4 { display: grid; gap: 16px; }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.tile, .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 1px 0 rgba(11,31,58,0.03);
}
.tile { text-align: center; color: inherit; display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 180px; justify-content: center; }
.tile:hover { border-color: #b9c7d6; box-shadow: var(--shadow); color: inherit; }
.tile img { height: 54px; width: auto; object-fit: contain; }
.tile strong { color: var(--navy); font-size: 15px; }
.tile span { color: var(--muted); font-size: 13px; }
.tile.soon { background: var(--paper); color: var(--muted); min-height: 180px; }
.product-row img.lockup { height: 48px; }

/* GI */
.gi {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  align-items: center;
}
.gi img { width: 180px; }

/* Partners */
.partner-block { margin-top: 40px; }
.partner-block h3 { font-size: 22px; margin-bottom: 14px; }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 10px;
}
.logo-wall.colleges { grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); }
.logo-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  height: 96px;
  display: grid;
  place-items: center;
  padding: 6px 8px;
}
.logo-cell img {
  max-height: 84px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
}
.logo-cell:hover img { filter: none; }

/* Article / about */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.6em; }
.prose li { margin-bottom: 0.4em; }
.figure {
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.figure img { width: 100%; object-fit: cover; max-height: 420px; }
.figure figcaption { padding: 10px 14px; color: var(--muted); font-size: 14px; background: var(--paper); }
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.gallery figure { margin: 0; border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.gallery img { width: 100%; height: 180px; object-fit: cover; }
.gallery figcaption { padding: 8px 10px; font-size: 12px; color: var(--muted); }
.leaders { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.leader h3 { margin-bottom: 2px; font-size: 22px; }
.leader .role { color: var(--green-mid); font-weight: 700; font-size: 14px; margin-bottom: 10px; }
.price-card b { font-size: 32px; color: var(--navy); display: block; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.faq summary { cursor: pointer; font-weight: 600; color: var(--navy); }
.faq details p { margin: 10px 0 0; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 32px; }
.contact-list { list-style: none; padding: 0; margin: 0 0 20px; }
.contact-list li { margin: 0 0 12px; }
.contact-form { display: grid; gap: 12px; }
.contact-form label { font-size: 14px; font-weight: 600; color: var(--navy); display: grid; gap: 6px; }
.contact-form input, .contact-form textarea {
  font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; width: 100%;
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; }
.form-status { font-size: 14px; }
.video-wrap { background: #000; border-radius: 12px; overflow: hidden; }
.video-wrap video { width: 100%; display: block; }
.page-hero { background: var(--navy); color: #dce5ef; padding: 48px 0 36px; }
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); }
.crumbs { color: #9eb0c4; font-size: 13px; margin-bottom: 10px; }
.crumbs a { color: #c5d6ea; }
.resource-card img { width: 100%; height: 180px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.wholesal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pkg { border-top: 3px solid var(--green-mid); }

/* Footer */
.site-footer {
  margin-top: auto;
  background: var(--navy);
  color: #c5d0dc;
  padding: 48px 0 24px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}
.site-footer h4 { color: #fff; font-family: Inter, sans-serif; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer a { color: #d5deea; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 0 0 8px; }
.foot-brand img { height: 36px; width: auto; margin-bottom: 12px; }
.social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.legal { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 28px; padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #8fa0b3; }
.family { margin-top: 20px; max-width: 420px; opacity: 0.95; }

@media (max-width: 980px) {
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .stats, .leaders, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gi, .contact-grid, .foot-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .menu-btn { display: inline-flex; }
  .nav {
    display: none; position: absolute; right: var(--pad); top: 76px;
    background: #fff; border: 1px solid var(--line); border-radius: 10px;
    flex-direction: column; padding: 14px; min-width: 200px; box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .grid-5, .grid-3, .grid-2, .stats, .leaders, .gallery, .wholesal-grid { grid-template-columns: 1fr; }
  .logo img { height: 34px; }
  .hero { min-height: 440px; }
}

.brand-card.dark { background: #111; border-color: #111; }
.brand-card.dark h5 { color: #cbd5e1; }
.brand-card img { max-height: 72px; }

/* extras used by inner page content */
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 8px; }
.pill {
  border: 1px solid rgba(255,255,255,0.28);
  color: #e8eef5;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.section-alt { background: var(--paper); }
.history-photo { margin: 20px 0 6px; border-radius: 12px; overflow: hidden; border: 1px solid var(--line); }
.history-photo img { width: 100%; max-height: 420px; object-fit: cover; }
.caption { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.leader-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  font-weight: 700; margin-bottom: 10px;
}
.brand-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.brand-card {
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 22px 16px; text-align: center; color: inherit;
  display: flex; flex-direction: column; align-items: center; gap: 10px; min-height: 170px; justify-content: center;
}
.brand-card:hover { box-shadow: var(--shadow); color: inherit; }
.brand-card img { max-height: 72px; width: auto; object-fit: contain; }
.brand-card h5, .brand-card .cap { margin: 0; color: var(--muted); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.info-list { margin: 18px 0; }
.info-item h4 { margin: 0 0 2px; font-family: Inter, sans-serif; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.cert { margin-top: 20px; max-width: 220px; border: 1px solid var(--line); border-radius: 8px; }
.form-note { color: var(--muted); font-size: 13px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer-logo { height: 36px; width: auto; margin-bottom: 12px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 0 0 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 28px; padding-top: 16px; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: 13px; color: #8fa0b3; }
.header-inner { width: min(var(--max), calc(100% - var(--pad) * 2)); margin: 0 auto; }
@media (max-width: 980px) {
  .brand-cards, .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .brand-cards, .footer-grid { grid-template-columns: 1fr; }
}

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 36px; align-items: center; position: relative; z-index: 1; padding: 64px 0 48px; }
.hero-logo { height: 48px; width: auto; margin-bottom: 18px; }
.hero-kicker { color: #cfe8d4; font-weight: 700; letter-spacing: 0.04em; margin: 0 0 10px; }
.hero .lead { color: #e8eef5; max-width: 52ch; }
.hero-photo img { border-radius: 14px; width: 100%; object-fit: cover; max-height: 380px; }
.stats { background: transparent; padding: 0 0 24px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: -28px; position: relative; z-index: 2; }
.stats-grid > div { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; box-shadow: var(--shadow); }
.stat-num { font-size: 28px; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; }
.stat-label { color: var(--muted); font-size: 14px; }
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 36px; align-items: center; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 8px; padding: 8px 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--navy); margin: 3px 0; }
@media (max-width: 980px) {
  .hero-grid, .split, .stats-grid { grid-template-columns: 1fr; }
  .stats-grid { margin-top: 0; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-block; }
}



/* Product suite hero — keep white box, tight so tiles sit higher */
.suite {
  position: relative;
  isolation: isolate;
  background: #e8ece6 url("../img/hero/suite-bg.jpg") center 40% / cover no-repeat;
  color: var(--navy);
  padding: 18px 0 28px;
  text-align: center;
}
.suite::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.10) 100%);
  z-index: 0;
}
.suite .wrap { position: relative; z-index: 1; }
.suite-intro {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 8px 16px 7px;
  max-width: 760px;
  margin: 0 auto 12px;
  box-shadow: 0 6px 18px rgba(11,31,58,0.10);
  text-align: center;
}
.suite-wordmark { display: none; }
.suite-kicker {
  color: var(--green-mid);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
  margin: 0 0 10px;
}
.suite-title {
  color: var(--navy);
  font-size: clamp(17px, 2.05vw, 24px);
  max-width: none;
  width: 100%;
  margin: 0 auto 6px;
  line-height: 1.2;
  white-space: nowrap;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.suite-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px 8px 0;
  display: block;
  overflow: hidden;
  min-height: 0;
  color: inherit;
}
.suite-card:hover {
  border-color: #b9c7d6;
  box-shadow: var(--shadow);
  color: inherit;
}
.suite-card img {
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: contain;
  display: block;
}
.gi-promo { background: #fff; padding: 48px 0; }
.gi-mark { display: grid; place-items: center; }
.gi-mark img { max-width: 260px; width: 100%; }
.stats { padding: 0 0 48px; background: #fff; }
.stats-grid { margin-top: 0; }
@media (max-width: 1100px) {
  .suite-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .suite { padding: 14px 0 22px; }
  .suite-grid { grid-template-columns: 1fr; gap: 12px; max-width: 420px; margin: 0 auto; }
}


.suite-bullets { list-style:none; padding:0; margin:0 auto 8px; max-width:40rem; text-align:left; }
.suite-bullets li { position:relative; padding-left:1.15em; margin:0 0 3px; font-weight:600; color:var(--navy); font-size:13.5px; line-height:1.35; }
.suite-bullets li::before { content:""; position:absolute; left:0; top:0.48em; width:0.45em; height:0.45em; border-radius:50%; background:var(--green-mid); }
.suite-lead { max-width:46rem; margin:0 auto 8px; color:#1b2a38; }
.suite-pills { justify-content:center; gap:7px; margin:6px auto 0; }
.suite-pills .pill { border-color:rgba(11,31,58,0.18); color:var(--navy); background:#f4f6f3; padding:3px 8px; font-size:10px; letter-spacing:0.03em; }
.suite-item { display:flex; flex-direction:column; min-width:0; }
.suite-cta {
  display:block; margin-top:8px; background:#2a7a38; color:#fff !important;
  text-align:center; padding:8px 8px; border-radius:8px; font-weight:600; font-size:13px;
}
.suite-cta:hover { background:#194d24; color:#fff !important; }
.nav-cta, .nav a[href*="contact"] {
  background: var(--green-mid); color:#fff !important;
  padding:8px 16px; border-radius:999px;
}
.nav-cta:hover, .nav a[href*="contact"]:hover { background: var(--green); }
.btn-green { background:#2a7a38; color:#fff !important; }
.btn-green:hover { background:#194d24; }

.stats-bar { background: var(--navy); padding: 26px 0; }
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); gap:0; }
.stat-cell { text-align:center; padding:4px 12px; border-right:1px solid rgba(255,255,255,0.12); }
.stat-cell:last-child { border-right:0; }
.stats-bar .stat-num { color:#3b9a4a; font-size:clamp(32px,4.2vw,48px); font-weight:700; letter-spacing:-0.03em; line-height:1.05; }
.stats-bar .stat-label { color:#9aa3ad; text-transform:uppercase; font-size:11px; letter-spacing:0.1em; font-weight:600; margin-top:4px; }

.gi-split { display:grid; grid-template-columns:1.05fr 0.95fr; gap:36px; align-items:center; }
.gi-photo { margin:0; }
.gi-photo img { width:100%; border-radius:14px; object-fit:cover; max-height:420px; display:block; }
.gi-copy {
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-self:center;
}
.gi-logo { max-width:180px; width:auto; max-height:48px; object-fit:contain; margin:0 0 12px; }
.gi-copy h2 { font-size:clamp(26px,3vw,36px); margin:0 0 12px; }
.gi-copy p { margin:0 0 14px; }
.gi-copy p:last-child { margin-bottom:0; }

.partners-section { background:#f5f6f7; }
.partners-section .section-head { max-width: none; }
.partners-section .section-head h2 {
  color: var(--navy);
  white-space: nowrap;
  width: 100%;
  font-size: clamp(22px, 2.6vw, 34px);
  margin: 0 0 10px;
}
.partners-section .section-head .muted {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(14px, 1.35vw, 16.5px);
}
@media (max-width: 720px) {
  .partners-section .section-head h2 { white-space: normal; font-size: clamp(22px, 5.4vw, 28px); }
  .partners-section .section-head .muted { white-space: normal; font-size: 15px; }
}
.partner-block h3 {
  font-family: Inter, sans-serif; font-size:20px; font-weight:700; color:var(--navy);
  padding-bottom:10px; border-bottom:1px solid #d7dde3; margin:28px 0 16px;
}
.logo-wall { grid-template-columns: repeat(5, minmax(0,1fr)); }
.logo-wall.colleges, .logo-wall.tight { grid-template-columns: repeat(5, minmax(0,1fr)); }

.site-footer { background:#fff; color:#5a6570; border-top:1px solid #e5e8eb; }
.site-footer h4 { color:#8a93a0; }
.site-footer a { color:#14202b; }
.site-footer a:hover { color:var(--green-mid); }
.footer-grid { grid-template-columns: 1.35fr 0.85fr 0.85fr 1.25fr; }
.footer-search { color:#2a7a38 !important; font-weight:600; }
.footer-social a {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%; background:#2a7a38;
  color:#fff !important; font-size:0; line-height:0;
  background-repeat:no-repeat; background-position:center; background-size:16px 16px;
}
.footer-social a[href*="facebook"] { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M14 8h3V4h-3c-2.8 0-5 2.2-5 5v2H7v4h2v8h4v-8h3l1-4h-4V9c0-.6.4-1 1-1z'/></svg>"); }
.footer-social a[href*="instagram"] { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M7 3h10a4 4 0 014 4v10a4 4 0 01-4 4H7a4 4 0 01-4-4V7a4 4 0 014-4zm5 4.5A4.5 4.5 0 1016.5 12 4.5 4.5 0 0012 7.5zm6.2-.9a1.1 1.1 0 11-1.1-1.1 1.1 1.1 0 011.1 1.1zM12 9.5A2.5 2.5 0 1114.5 12 2.5 2.5 0 0112 9.5z'/></svg>"); }
.footer-social a[href*="x.com"] { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M17.5 3h3.1l-6.8 7.8L22 21h-6.2l-4.8-6.3L5.6 21H2.4l7.3-8.3L2 3h6.4l4.4 5.8L17.5 3zm-1.1 16.2h1.7L7.7 4.7H5.9l10.5 14.5z'/></svg>"); }
.footer-social a[href*="youtube"] { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M23 12.2s0-3.2-.4-4.6c-.2-.9-.9-1.6-1.8-1.8C19.2 5.4 12 5.4 12 5.4s-7.2 0-8.8.4c-.9.2-1.6.9-1.8 1.8C1 9 1 12.2 1 12.2s0 3.2.4 4.6c.2.9.9 1.6 1.8 1.8 1.6.4 8.8.4 8.8.4s7.2 0 8.8-.4c.9-.2 1.6-.9 1.8-1.8.4-1.4.4-4.6.4-4.6zM9.8 15.6V8.8l6.2 3.4-6.2 3.4z'/></svg>"); }
.footer-social a[href*="linkedin"] { background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M6.5 9H3.7v11h2.8V9zM5.1 3.6A1.7 1.7 0 103.4 5.3a1.7 1.7 0 001.7-1.7zM20.3 13.3c0-3.2-1.7-4.7-4-4.7a3.5 3.5 0 00-3.1 1.7h-.1V9H10.4v11h2.8v-5.8c0-1.5.3-3 2.2-3s1.9 1.7 1.9 3.1V20h2.8v-6.7z'/></svg>"); }
.footer-bottom { color:#8a93a0; border-top-color:#e5e8eb; }
.footer-nap {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: #5a6570;
}
.footer-nap-name {
  font-weight: 600;
  color: #14202b;
  margin: 0 0 6px;
}
.footer-nap p { margin: 0 0 4px; }
.footer-nap-reviews a { font-weight: 600; }
.footer-map-embed {
  display: block;
  width: 100%;
  height: 240px;
  border: 0;
  border-radius: 8px;
  background: #eef1f4;
}
.footer-map-link { margin: 8px 0 0; font-size: 13px; }
.footer-findus { min-width: 0; }


@media (max-width: 980px) {
  .gi-split, .stats-row { grid-template-columns: 1fr; }
  .stat-cell { border-right:0; border-bottom:1px solid rgba(255,255,255,0.12); padding:14px 8px; }
  .logo-wall, .logo-wall.colleges, .logo-wall.tight { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  .suite { padding: 14px 0 22px; }
  .suite-intro { padding: 8px 12px 7px; }
  .suite-title { white-space: normal; font-size: clamp(18px, 5.4vw, 22px); }
  .suite-grid { grid-template-columns: 1fr; gap: 12px; max-width: 420px; margin: 0 auto; }
  .logo-wall, .logo-wall.colleges, .logo-wall.tight { grid-template-columns: repeat(2, minmax(0,1fr)); }
}


/* About page */
.about-page { background:#fff; }
.about-page h1, .about-page h2 { color:var(--navy); }
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
.about-copy h1 { font-size:clamp(28px,3.4vw,40px); margin:0 0 16px; }
.about-copy p { color:#2a3340; }
.about-hero-photo { margin:0; }
.about-hero-photo img { width:100%; border-radius:14px; box-shadow:0 12px 28px rgba(11,31,58,0.12); object-fit:cover; }
.about-hero-photo figcaption {
  color:#7a8490; font-size:13px; margin-top:8px; line-height:1.4;
}
.year-list { padding-left:1.15em; margin:16px 0 18px; }
.year-list li { margin:0 0 12px; color:#2a3340; }

.about-history.section { padding-bottom: 28px; }
.about-timeline.section { padding-top: 8px; }
.about-timeline-flow > h2 { margin-top:2.1em; }
.about-timeline-flow > h2:first-child { margin-top:0; }
.about-timeline-flow p { color:#2a3340; }

.legacy-block {
  background:var(--navy); color:#fff; border-radius:16px;
  padding:40px 44px; margin-top:40px;
}
.legacy-block h2 { color:#fff; }
.legacy-block p { color:#dce5ef; margin-bottom:1em; }
.legacy-block p:last-child { margin-bottom:0; }

.leaders-title { text-align:center; margin-bottom:28px; }
.about-leaders .leader {
  background:#fff; border:1px solid var(--line); border-radius:14px;
  padding:22px 20px; box-shadow:0 8px 20px rgba(11,31,58,0.06);
}
.about-leaders .leader-mark { background:var(--green-mid); }
.about-leaders .role { text-transform:uppercase; letter-spacing:0.06em; }

.about-gallery-sec { background:#f7f4ee; }
.gallery-title { margin:0 0 22px; }
.about-gallery {
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:16px;
}
.about-gallery figure {
  margin:0;
  background:#fff;
  border:1px solid #e6e0d4;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(11,31,58,0.06);
  display:flex;
  flex-direction:column;
}
.about-gallery .gallery-open {
  display:block; width:100%; padding:0; border:0;
  background:#efe8da; cursor:pointer; line-height:0;
}
.about-gallery .gallery-open:focus-visible {
  outline:2px solid var(--green-mid); outline-offset:2px;
}
.about-gallery img {
  width:100%; height:210px; object-fit:cover; object-position:center 18%; display:block;
  transition:transform 0.35s ease;
}
.about-gallery .gallery-open:hover img { transform:scale(1.03); }
.about-gallery figcaption {
  color:#5a6570; font-size:13px; line-height:1.4;
  padding:10px 12px 12px; margin:0;
}

.lightbox[hidden] { display:none !important; }
.lightbox {
  position:fixed; inset:0; z-index:80;
  display:flex; align-items:center; justify-content:center;
}
.lightbox-backdrop {
  position:absolute; inset:0;
  background:rgba(11,31,58,0.88);
}
.lightbox-panel {
  position:relative; z-index:1;
  width:min(1100px, calc(100% - 32px));
  display:grid;
  grid-template-columns:48px 1fr 48px;
  align-items:center;
  gap:8px;
}
.lightbox-figure { margin:0; grid-column:2; min-width:0; display:flex; flex-direction:column; align-items:center; }
.lightbox-figure img {
  width:auto; height:auto;
  max-width:100%; max-height:78vh;
  object-fit:contain; object-position:center center;
  border-radius:10px; background:#0b1f3a;
  margin:0 auto;
}
.lightbox-figure figcaption {
  display:flex; justify-content:space-between; gap:16px; align-items:baseline;
  color:#e8eef5; font-size:14px; line-height:1.45;
  margin-top:12px;
}
.lightbox-count { color:#9eb0c4; white-space:nowrap; font-variant-numeric:tabular-nums; }
.lightbox-close, .lightbox-prev, .lightbox-next {
  border:0; cursor:pointer; color:#fff;
  background:rgba(255,255,255,0.12);
  border-radius:999px;
  font-size:28px; line-height:1;
  width:44px; height:44px;
  display:grid; place-items:center;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background:var(--green-mid);
}
.lightbox-close {
  position:absolute; top:-8px; right:52px; z-index:2;
  font-size:26px;
}
.lightbox-prev { grid-column:1; }
.lightbox-next { grid-column:3; }
body.lightbox-open { overflow:hidden; }

@media (max-width: 980px) {
  .about-split { grid-template-columns:1fr; }
  .about-gallery { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .legacy-block { padding:32px 24px; }
  .lightbox-panel { grid-template-columns:1fr; width:calc(100% - 20px); }
  .lightbox-figure { grid-column:1; }
  .lightbox-prev, .lightbox-next {
    position:absolute; top:42%;
  }
  .lightbox-prev { left:4px; }
  .lightbox-next { right:4px; }
  .lightbox-close { top:0; right:0; }
}
@media (max-width: 720px) {
  .about-gallery { grid-template-columns:repeat(2, minmax(0,1fr)); }
  .about-gallery img { height:160px; }
}

.suite-pills { align-items: center; }
.pill-arrow { color: var(--navy); opacity: 0.4; font-size: 12px; line-height: 1; font-weight: 600; padding: 0 1px; }

.logo-wall.pga .logo-cell {
  height: 108px;
  padding: 8px;
}
.logo-wall.pga .logo-cell img {
  max-height: 92px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.article-list { list-style:none; padding:0; margin:0; max-width:760px; }
.article-list li { padding:22px 0; border-bottom:1px solid var(--line); }
.article-list li:first-child { padding-top:0; }
.article-list .article-card {
  display:grid; grid-template-columns:120px 1fr; gap:16px; align-items:center;
  color:var(--navy); text-decoration:none;
}
.article-list .article-card img { width:120px; height:90px; object-fit:cover; border-radius:8px; }
.article-list .article-card strong {
  display:block; font-weight:700; font-size:22px; letter-spacing:-0.02em;
}
.article-list .article-card:hover, .article-list .article-card:hover strong { color:var(--green-mid); }
.article-list p { margin:6px 0 0; color:var(--muted); font-weight:400; font-size:16.5px; }
@media (max-width: 544px) {
  .article-list .article-card { grid-template-columns:88px 1fr; gap:12px; }
  .article-list .article-card img { width:88px; height:66px; }
  .article-list .article-card strong { font-size:18px; }
}
/* Resource article pages */
.prose h3 { margin-top: 1.4em; }
.prose h2:first-child,
.prose h3:first-child { margin-top: 0; }
.prose .cert { max-width: 420px; margin: 16px 0; }
.prose .faq-q { margin-top: 1.4em; margin-bottom: 0.35em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form select {
  font: inherit; padding: 11px 12px; border: 1px solid var(--line); border-radius: 8px; width: 100%;
}
.contact-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 24px 0 8px; max-width: 760px; }
.hub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 760px; }
.hub-grid h2 { font-size: 22px; }
@media (max-width: 720px) {
  .form-row, .contact-pair, .hub-grid { grid-template-columns: 1fr; }
}

.product-shots {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  margin: 18px 0 22px;
}
.product-shots.ncaa-shots { grid-template-columns: 1fr 1fr; }
.product-shots figure { margin: 0; }
.product-shots img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fff;
}
.product-shots.ncaa-shots img { height: 280px; object-fit: contain; background: #f4f6f3; }
.ncaa-banner { margin: 0 0 22px; }
.ncaa-banner img { width: 100%; max-height: 160px; object-fit: contain; background: #fff; }
.wholesale-banner { margin: 0 0 22px; }
.wholesale-banner img { width: 100%; max-height: 360px; object-fit: contain; background: #194d24; }
.hub-grid .card img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  margin: 0 0 12px;
}
@media (max-width: 720px) {
  .product-shots.ncaa-shots { grid-template-columns: 1fr; }
  .product-shots.ncaa-shots img { height: 220px; }
}
