@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;600;700&family=Fraunces:opsz,wght@9..144,600;9..144,700&display=swap');

:root {
  --green: #0f6b3b;
  --green-dark: #0a4d2a;
  --navy: #12325c;
  --navy-deep: #0c2240;
  --sand: #f3f1eb;
  --ink: #1b2430;
  --muted: #5d6b7c;
  --line: #d9e0e8;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(18, 50, 92, 0.12);
  --radius: 18px;
  --font: "Source Sans 3", "Segoe UI", sans-serif;
  --display: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--white);
  line-height: 1.6;
}
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }
.container { width: min(1180px, calc(100% - 2rem)); margin-inline: auto; }

.top-bar {
  background: var(--navy);
  color: #e8eef7;
  font-size: 0.86rem;
  padding: 0.55rem 0;
}
.top-bar a { color: #e8eef7; }
.top-bar .social a { opacity: 0.9; }
.top-bar-phones {
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.top-bar-phones a { color: #fff; }
.top-bar-phones a:hover { color: #c8f0d4; }
.top-bar-sep { opacity: 0.7; }

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(18, 50, 92, 0.06);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.brand-block {
  display: flex;
  gap: 0.85rem;
  align-items: center;
  min-width: 0;
  flex: 0 1 auto;
}
.site-logo { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; }
.brand-kicker { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }
.brand-title {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--green);
  font-weight: 700;
  line-height: 1.2;
}
.header-meta { color: var(--muted); }

.main-nav {
  position: relative;
  z-index: 50;
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
}
.main-nav > ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem 1.15rem;
  margin: 0;
  padding: 0;
}
.main-nav > ul > li {
  position: relative;
  padding: 0.35rem 0;
}
.main-nav > ul > li > a {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-block;
  white-space: nowrap;
}
.main-nav > ul > li > a:hover,
.main-nav .has-children:hover > a,
.main-nav > ul > li.active > a,
.main-nav .has-children.active > a {
  color: var(--green);
}
.main-nav > ul > li.active > a {
  box-shadow: inset 0 -2px 0 var(--green);
}
.main-nav .submenu li.active > a {
  background: #eef7f1;
  color: var(--green);
}
.main-nav .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  margin: 0;
  padding: 0.55rem 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  z-index: 100;
  box-shadow: var(--shadow);
  flex-direction: column;
  gap: 0;
  list-style: none;
}
/* Invisible bridge so the mouse can move from parent to submenu without closing */
.main-nav .submenu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -12px;
  height: 12px;
}
.main-nav .has-children:hover > .submenu,
.main-nav .has-children:focus-within > .submenu {
  display: flex;
}
.main-nav .submenu li { padding: 0; }
.main-nav .submenu a {
  display: block;
  padding: 0.7rem 1rem;
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--ink);
  font-size: 0.92rem;
}
.main-nav .submenu a:hover {
  background: #eef7f1;
  color: var(--green);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 620px);
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease;
  background-color: var(--navy-deep);
  background-image:
    linear-gradient(105deg, rgba(12, 34, 64, 0.82) 0%, rgba(12, 34, 64, 0.55) 42%, rgba(15, 107, 59, 0.28) 100%),
    var(--slide-image);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-slider .slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.slide-shell {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.slide-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: min(640px, 100%);
  max-width: 640px;
  margin: 0;
  margin-right: auto;
  text-align: left;
}
.slide-content h1 {
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.08;
  margin: 0 0 0.85rem;
  text-align: left;
}
.slide-content p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 0 1.35rem;
  text-align: left;
  max-width: 36rem;
}
.slide-content .btn-cta {
  margin: 0;
}
.slider-nav {
  position: absolute;
  inset: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 3;
}
.slider-btn {
  pointer-events: auto; width: 44px; height: 44px; border: 0; border-radius: 999px;
  background: rgba(255,255,255,0.18); color: #fff; font-size: 1.6rem; backdrop-filter: blur(4px);
}
.slider-dots {
  position: absolute; left: 50%; bottom: 1.25rem; transform: translateX(-50%);
  display: flex; gap: 0.45rem;
  z-index: 3;
}
.slider-dots .dot {
  width: 10px; height: 10px; border-radius: 999px; border: 0; background: rgba(255,255,255,0.45);
}
.slider-dots .dot.active { background: #fff; width: 28px; }

.btn-cta, .btn-brand, .btn-outline-brand {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.8rem 1.35rem; border-radius: 999px; font-weight: 700; border: 2px solid transparent;
}
.btn-cta, .btn-brand { background: var(--green); color: #fff; }
.btn-cta:hover, .btn-brand:hover { background: var(--green-dark); color: #fff; }
.btn-outline-brand { border-color: var(--green); color: var(--green); background: transparent; }
.btn-outline-brand:hover { background: var(--green); color: #fff; }
.download-card-actions .btn-brand,
.download-card-actions .btn-outline-brand {
  padding: 0.55rem 1.1rem;
  font-size: 0.9rem;
}

.tagline-strip {
  background: #1a2330;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}
.tagline-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin: 0 0 0.4rem;
}
.tagline-strip p { margin: 0; color: #b7c2d2; }

.section { padding: 4.5rem 0; }
.section-eyebrow {
  display: inline-block; color: var(--green); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; margin-bottom: 0.45rem;
}
.section-head h2, .who-copy h2, .page-hero h1 {
  font-family: var(--display);
  margin: 0 0 0.75rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.15;
}
.section-head.center { text-align: center; }
.section-head.between { display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.section-head.light, .section-head.light .section-eyebrow { color: #d7e8dc; }
.section-head.light h2 { color: #fff; }

.who-we-are { background: var(--sand); }
.who-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2.5rem; align-items: center;
}
.who-media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}
.who-media img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; }
.check-list { padding-left: 1.1rem; margin: 1.25rem 0 1.5rem; }
.check-list li { margin-bottom: 0.65rem; }
.check-list.cms-content ul { padding-left: 1.1rem; margin: 1rem 0 1.25rem; }
.check-list.cms-content li { margin-bottom: 0.65rem; }
.who-copy .cms-content p { color: #314153; margin-bottom: 0.85rem; }

.ck-editor__editable_inline { min-height: 180px; }
.admin-content .ck-editor { margin-top: 0.25rem; }

.functions-grid, .team-grid, .events-grid {
  display: grid; gap: 1.25rem;
}
.functions-grid { grid-template-columns: repeat(4, 1fr); margin-top: 1.75rem; }
.function-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem; min-height: 100%;
}
.function-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--green), #2f9e5f);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.function-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #fff;
  -webkit-mask: var(--fn-icon) center / contain no-repeat;
  mask: var(--fn-icon) center / contain no-repeat;
}
.function-icon.icon-reform {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v3M12 18v3M3 12h3M18 12h3M5.6 5.6l2.1 2.1M16.3 16.3l2.1 2.1M5.6 18.4l2.1-2.1M16.3 7.7l2.1-2.1'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E");
}
.function-icon.icon-bridge {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17V7M20 17V7M4 12h16M7 12v5M12 12v5M17 12v5M4 17h16'/%3E%3C/svg%3E");
}
.function-icon.icon-standards {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 4v5c0 5-3.5 8.5-8 9-4.5-.5-8-4-8-9V7l8-4z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
}
.function-icon.icon-excellence {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l2.2 4.5 5 .7-3.6 3.5.9 5-4.5-2.4L7.5 16.7l.9-5L4.8 8.2l5-.7L12 3z'/%3E%3C/svg%3E");
}
.function-icon.icon-education {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 10L12 5 2 10l10 5 10-5z'/%3E%3Cpath d='M6 12v5c0 1.5 2.7 3 6 3s6-1.5 6-3v-5'/%3E%3Cpath d='M22 10v6'/%3E%3C/svg%3E");
}
.function-icon.icon-growth {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 19V5M4 19h16'/%3E%3Cpath d='M8 15l4-4 3 3 5-6'/%3E%3C/svg%3E");
}
.function-icon.icon-people {
  --fn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='8' r='3'/%3E%3Cpath d='M3 19c0-3 2.5-5 6-5s6 2 6 5'/%3E%3Ccircle cx='17' cy='9' r='2.5'/%3E%3Cpath d='M21 19c0-2.5-1.5-4-4-4'/%3E%3C/svg%3E");
}
.function-card h3 { font-size: 1.05rem; margin: 0 0 0.5rem; }
.function-card p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.team-section { background: #f7faf8; }
.team-grid { grid-template-columns: repeat(3, 1fr); margin-top: 1.75rem; }
.team-card { text-align: center; }
.team-photo {
  width: 180px; height: 180px; margin: 0 auto 1rem; border-radius: 50%;
  overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { margin: 0; font-size: 1.1rem; }
.team-card p { margin: 0.25rem 0 0; color: var(--muted); }

.colleges-band {
  background:
    linear-gradient(120deg, rgba(12,34,64,0.94), rgba(15,107,59,0.88)),
    url('/images/colleges-bg.svg') center/cover no-repeat;
  color: #fff;
  padding: 4rem 0;
}
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem;
}
.stats-row.compact { margin-top: 0; }
.stat-item {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius); padding: 1.5rem; text-align: center;
}
.stats-row.compact .stat-item {
  background: var(--sand); border-color: var(--line); color: var(--ink);
}
.stat-item strong {
  display: block; font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); line-height: 1;
}
.stat-item span { opacity: 0.9; }

.events-grid { grid-template-columns: repeat(3, 1fr); }
.related-events { background: #f7faf8; border-top: 1px solid var(--line); }
.related-events-grid { margin-top: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.event-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; min-height: 100%;
}
.event-media { position: relative; display: block; aspect-ratio: 16/10; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.event-card:hover .event-media img { transform: scale(1.04); }
.event-media time {
  position: absolute; left: 0.85rem; top: 0.85rem; background: var(--green); color: #fff;
  border-radius: 12px; padding: 0.45rem 0.6rem; text-align: center; line-height: 1.1;
}
.event-media time .d { display: block; font-size: 1.2rem; font-weight: 700; }
.event-media time .m { display: block; font-size: 0.75rem; text-transform: uppercase; }
.event-body { padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; gap: 0.55rem; flex: 1; }
.event-body h3 { font-size: 1.08rem; margin: 0; line-height: 1.35; }
.event-body h3 a { color: var(--ink); }
.event-body p { color: var(--muted); margin: 0; flex: 1; }
.read-more { font-weight: 700; }

.page-hero {
  background:
    linear-gradient(100deg, rgba(12,34,64,0.92), rgba(15,107,59,0.75)),
    url('/images/hero-1.svg') center/cover no-repeat;
  color: #fff;
  padding: 3.5rem 0;
}
.page-layout {
  display: grid; grid-template-columns: 1.7fr 0.8fr; gap: 2rem; align-items: start;
}
.page-aside .aside-box, .surface-table, .feature-list li, .download-list li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.aside-box { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.35rem; }
.aside-box h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.55rem;
}
.aside-box a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  color: var(--ink);
  font-weight: 600;
  background: var(--sand);
  transition: background 0.15s ease, color 0.15s ease;
}
.aside-box a::after {
  content: "→";
  color: var(--green);
}
.aside-box a:hover,
.aside-box a.active {
  background: #e5f3ea;
  color: var(--green-dark);
  text-decoration: none;
}
.aside-box a.active {
  font-weight: 700;
}
.aside-media {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.aside-image {
  border-radius: 0;
  margin-bottom: 0;
  width: 100%;
  object-fit: cover;
  max-height: 280px;
}
.narrow { width: min(860px, 100%); }
.cms-content h2 { font-family: var(--display); margin-top: 1.75rem; }
.cms-content p { color: #314153; }

.about-intro { margin-bottom: 2rem; }
.objectives-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.objectives-lead {
  color: var(--muted);
  margin: 0.35rem 0 0;
  max-width: 52ch;
}
.obj-accordion {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
}
.obj-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fbfcfb;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.obj-item.is-open,
.obj-item:has(.obj-trigger:not(.collapsed)) {
  border-color: rgba(15, 107, 59, 0.35);
  box-shadow: 0 10px 24px rgba(15, 107, 59, 0.08);
  background: #fff;
}
.obj-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  text-align: left;
  padding: 1rem 1.05rem;
  cursor: pointer;
}
.obj-index {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--green);
  background: #e8f6ee;
}
.obj-title {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.35;
}
.obj-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--line);
  position: relative;
  background: #fff;
}
.obj-icon::before,
.obj-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--green);
  transform: translate(-50%, -50%);
}
.obj-icon::after {
  width: 2px;
  height: 10px;
}
.obj-trigger:not(.collapsed) .obj-icon::after {
  display: none;
}
.obj-trigger:not(.collapsed) .obj-index {
  background: var(--green);
  color: #fff;
}
.obj-body {
  padding: 0 1.05rem 1.15rem 4.4rem;
  color: #425466;
  line-height: 1.65;
}
.obj-body p { margin: 0; }

.plan-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.9rem;
}
.plan-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}
.plan-num {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--green), #2f9e5f);
}
.plan-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
}
.plan-card .cms-content p {
  margin: 0;
}

.feature-list, .download-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: 0.85rem; }
.feature-list li, .download-list li { padding: 1rem 1.15rem; }
.feature-list p { display: block; margin: 0.35rem 0 0; color: var(--muted); }
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}
.download-card-copy { flex: 1 1 280px; min-width: 0; }
.download-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--navy);
}
.download-card-body {
  margin-top: 0.35rem;
  color: var(--muted);
}
.download-card-body p {
  margin: 0;
  color: var(--muted);
}
.download-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.surface-table { overflow: hidden; }
.surface-table .table { margin: 0; }
.surface-table th { background: #eef5f0; }

.college-search {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem 1.1rem;
}
.college-search .form-label {
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.college-search-row {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.college-search-row .form-control {
  flex: 1 1 260px;
  min-height: 46px;
  border-radius: 999px;
  padding-inline: 1rem;
}
.college-search-row .btn {
  min-height: 46px;
}
.detail-cover { width: 100%; border-radius: var(--radius); margin-bottom: 1.25rem; max-height: 420px; object-fit: cover; }
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 1.35rem;
  border-radius: var(--radius);
  overflow: hidden;
  background: #0c2240;
  box-shadow: var(--shadow);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.meta { color: var(--muted); }

.site-footer { background: var(--navy-deep); color: #d5deea; padding-top: 1rem; }
.site-footer a { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.4rem; }

@media (max-width: 992px) {
  .who-grid, .page-layout { grid-template-columns: 1fr; }
  .functions-grid, .events-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .header-bar { align-items: flex-start; }
  .main-nav { justify-content: flex-start; width: 100%; }
  .main-nav > ul { justify-content: flex-start; }
}
@media (max-width: 700px) {
  .functions-grid, .events-grid, .stats-row { grid-template-columns: 1fr; }
  .header-meta { width: 100%; text-align: left !important; }
  .slide-shell { padding-bottom: 3rem; }
  .slide-content { width: 100%; max-width: 100%; }
  .brand-title { font-size: 0.98rem; }
  .site-logo { width: 48px; height: 48px; }
}
