/* ═══════════════════════════════════════════════════════════
   Genesis Group — Main Stylesheet
   Brand Guide Colors:
     Primary:   #1C2B4A (Navy/Hero)  #464F70 (Purple)  #50818C (Turquoise)
     Accent:    #D26728 (Burnt Orange)  #E1AE35 (Yellow/Gold)
     Secondary: #E3F4FD (Sky Blue)  #8792A8 (Light Purple)
   Fonts: Neue Haas Grotesk → Helvetica Neue stack
          Droid → Georgia (serif fallback)
═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES ── */
:root {
  --gg-navy:        #1C2B4A;
  --gg-navy-deep:   #152238;
  --gg-navy-mid:    #23355A;
  --gg-navy-light:  #344E79;
  --gg-purple:      #464F70;
  --gg-turquoise:   #50818C;
  --gg-orange:      #D26728;
  --gg-gold:        #E8C97A;
  --gg-yellow:      #E1AE35;
  --gg-sky-blue:    #E3F4FD;
  --gg-light-purple:#8792A8;
  --gg-off-white:   #F7F5F0;
  --gg-text-dark:   #1C2B4A;
  --gg-text-mid:    #444;
  --gg-text-muted:  #666;
  --gg-border:      #e4e0d8;

  --gg-font-head: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gg-font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gg-font-serif: Georgia, 'Times New Roman', serif;

  --gg-radius:    8px;
  --gg-radius-lg: 12px;
  --gg-shadow:    0 2px 16px rgba(28,43,74,0.08);

  --gg-max-width: 1160px;
  --gg-content-width: 740px;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--gg-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gg-text-mid);
  background: #fff;
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gg-orange); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1rem; }
h1,h2,h3,h4,h5,h6 { font-family: var(--gg-font-head); color: var(--gg-text-dark); line-height: 1.2; margin: 0 0 .75rem; }

/* ── LAYOUT ── */
.gg-container {
  max-width: var(--gg-max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.gg-content-narrow { max-width: var(--gg-content-width); margin: 0 auto; }

/* ── TOP BAR ── */
.gg-topbar {
  background: var(--gg-navy);
  padding: 8px 0;
}
.gg-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gg-topbar__text { color: #B8C8E0; font-size: 12px; }
.gg-topbar__text-link { color: inherit; text-decoration: none; }
.gg-topbar__text-link:hover { color: var(--gg-gold); text-decoration: underline; }
.gg-topbar__right a { color: #B8C8E0; font-size: 12px; }
.gg-topbar__right a:hover { color: var(--gg-gold); text-decoration: none; }

/* ── HEADER / NAV ── */
.gg-header {
  background: #fff;
  border-bottom: 1px solid var(--gg-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 8px rgba(28,43,74,0.06);
}
.gg-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

/* Logo — text fallback */
.gg-logo-text { display: flex; flex-direction: column; align-items: flex-start; text-decoration: none; line-height: 1; }
.gg-logo-text__genesis { font-size: 22px; font-weight: 700; letter-spacing: 6px; color: #000; }
.gg-logo-text__bar { background: #000; padding: 3px 0; width: 100%; text-align: center; margin-top: 2px; }
.gg-logo-text__bar { font-size: 9px; font-weight: 500; letter-spacing: 5px; color: #fff; display: block; }
/* Custom logo image sizing */
.gg-header__logo .custom-logo { height: 52px; width: auto; }

/* Light/reversed logo for dark backgrounds */
.gg-logo-text--light .gg-logo-text__genesis { color: #fff; }
.gg-logo-text--light .gg-logo-text__bar { background: #fff; }
.gg-logo-text--light .gg-logo-text__bar { color: var(--gg-navy); }
.gg-footer__logo .custom-logo,
.gg-hero__card-logo .custom-logo { height: 44px; width: auto; filter: brightness(0) invert(1); }
.gg-footer__churchmark { width: 200px; height: auto; display: block; }

/* Nav links */
.gg-nav { display: flex; align-items: center; gap: 24px; }
.gg-nav__list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; align-items: center; }
.gg-nav__list li a {
  font-size: 13px;
  color: #444;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s;
}
.gg-nav__list li a:hover,
.gg-nav__list .current-menu-item > a,
.gg-nav__list .current_page_item > a {
  color: var(--gg-orange);
  text-decoration: none;
}
.gg-nav__list .current-menu-item > a,
.gg-nav__list .current_page_item > a {
  border-bottom: 2px solid var(--gg-orange);
  padding-bottom: 4px;
}

/* Dropdown sub-menus */
.gg-nav__list li {
  position: relative;
}
.gg-nav__list .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--gg-border);
  border-radius: var(--gg-radius);
  box-shadow: 0 8px 24px rgba(28,43,74,0.10);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  z-index: 200;
}
.gg-nav__list li:hover > .sub-menu,
.gg-nav__list li:focus-within > .sub-menu {
  display: block;
}
.gg-nav__list .sub-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 13px;
  color: #444;
  border-radius: 0;
  white-space: nowrap;
}
.gg-nav__list .sub-menu li a:hover {
  color: var(--gg-orange);
  background: var(--gg-off-white);
}
/* Arrow indicator on parent items with children */
.gg-nav__list li:has(> .sub-menu) > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.5;
}

/* Mobile hamburger */
.gg-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.gg-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gg-navy);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── BUTTONS ── */
.gg-btn {
  display: inline-block;
  font-family: var(--gg-font-head);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 10px 22px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.gg-btn:hover { opacity: 0.88; text-decoration: none; transform: translateY(-1px); }
.gg-btn--primary  { background: var(--gg-orange); color: #fff; }
.gg-btn--ghost    { background: transparent; color: var(--gg-gold); border: 1px solid var(--gg-gold); }
.gg-btn--nav      { background: var(--gg-orange); color: #fff; border-radius: 20px; padding: 8px 18px; }
.gg-btn--meeting  { background: #fff; color: var(--gg-orange); font-weight: 500; }
.gg-btn--sm       { padding: 6px 14px; font-size: 12px; }
.gg-btn--outline-dark { background: transparent; color: var(--gg-navy); border: 1px solid var(--gg-navy); }
.gg-btn--outline-dark:hover { background: var(--gg-navy); color: #fff; }

/* ── EYEBROW / SECTION LABELS ── */
.gg-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.gg-eyebrow-line { width: 24px; height: 2px; background: var(--gg-orange); flex-shrink: 0; }
.gg-eyebrow span { font-size: 10px; color: var(--gg-orange); letter-spacing: 3px; font-weight: 500; text-transform: uppercase; }
.gg-eyebrow--light .gg-eyebrow-line { background: var(--gg-gold); }
.gg-eyebrow--light span { color: var(--gg-gold); }

/* ── HERO ── */
.gg-hero {
  background: var(--gg-navy);
  position: relative;
  overflow: hidden;
}
.gg-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-top: 56px;
  padding-bottom: 52px;
}
.gg-hero__accent {
  position: absolute;
  right: 0; top: 0;
  width: 340px;
  height: 100%;
  background: var(--gg-navy-mid);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}
.gg-hero__text { position: relative; z-index: 2; max-width: 440px; }
.gg-hero__heading { font-size: 32px; font-weight: 300; color: #fff; line-height: 1.25; margin-bottom: 16px; }
.gg-hero__sub { font-size: 14px; color: #9CAEC8; line-height: 1.8; margin-bottom: 28px; }
.gg-hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero eyebrow tag */
.gg-hero .gg-eyebrow { margin-bottom: 18px; }

/* Hero community card */
.gg-hero__card {
  position: relative;
  z-index: 2;
  background: var(--gg-navy-mid);
  border-radius: var(--gg-radius);
  padding: 24px 20px;
  width: 230px;
  flex-shrink: 0;
  border: 0.5px solid var(--gg-navy-light);
}
.gg-hero__card-logo { display: flex; justify-content: center; margin-bottom: 14px; }
.gg-hero__card-title { display: block; color: var(--gg-gold); font-size: 13px; font-weight: 500; text-align: center; margin-bottom: 8px; }
.gg-hero__card-text { color: #9CAEC8; font-size: 11px; text-align: center; line-height: 1.6; }
.gg-hero__stats { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 16px; border-top: 0.5px solid var(--gg-navy-light); }
.gg-hero__stat { text-align: center; }
.gg-hero__stat b { display: block; color: #fff; font-size: 17px; font-weight: 600; }
.gg-hero__stat span { color: #6A85A8; font-size: 10px; }

/* Hero community card — upcoming events (static list) */
.gg-hero__ticker {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 0.5px solid var(--gg-navy-light);
  height: 130px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 12px), transparent);
          mask-image: linear-gradient(to bottom, #000 calc(100% - 12px), transparent);
}
.gg-hero__ticker-track {
  display: flex;
  flex-direction: column;
}
.gg-hero__ticker-item {
  display: block;
  padding: 8px 2px;
  border-bottom: 0.5px solid var(--gg-navy-light);
  text-decoration: none;
}
.gg-hero__ticker-item:hover .gg-hero__ticker-title { text-decoration: underline; }
.gg-hero__ticker-date {
  display: block;
  color: var(--gg-gold);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.gg-hero__ticker-title {
  display: block;
  color: #fff;
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.3;
}

/* ── MEETING BAR ── */
.gg-meeting-bar { background: var(--gg-orange); }
.gg-meeting-bar__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}
.gg-meeting-bar__label { font-size: 11px; color: rgba(255,255,255,0.8); text-transform: uppercase; letter-spacing: 1px; display: block; }
.gg-meeting-bar__date  { font-size: 15px; font-weight: 500; color: #fff; }
.gg-meeting-bar__sep   { color: rgba(255,255,255,0.35); font-size: 20px; }
.gg-meeting-bar__loc   { font-size: 13px; color: rgba(255,255,255,0.85); }
.gg-meeting-bar .gg-btn--meeting { margin-left: auto; }

/* ── PAGE HERO (inner pages) ── */
.gg-page-hero {
  background: var(--gg-navy);
  padding: 48px 0 44px;
  position: relative;
  overflow: hidden;
}
.gg-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gg-orange);
}
.gg-page-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}
.gg-page-hero__subtitle { font-size: 15px; color: #9CAEC8; margin: 0; }

/* ── SECTIONS ── */
.gg-section { padding: 52px 0; }
.gg-section--light { background: var(--gg-off-white); }
.gg-section--sky   { background: var(--gg-sky-blue); }
.gg-section--primary { background: var(--gg-navy); }
.gg-section__heading {
  font-size: 28px;
  font-weight: 700;
  color: var(--gg-navy);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.gg-section__heading--light { color: #fff; }
.gg-section__sub { font-size: 15px; color: var(--gg-text-muted); max-width: 520px; line-height: 1.8; margin-bottom: 32px; }
.gg-section-header { margin-bottom: 32px; }

/* ── CARDS ── */
.gg-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gg-card {
  background: #fff;
  border: 1px solid var(--gg-border);
  border-radius: var(--gg-radius-lg);
  padding: 24px;
}
.gg-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--gg-radius);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gg-card__icon--amber { background: #FFF4E0; color: var(--gg-orange); }
.gg-card__icon--navy  { background: #EBF0F8; color: var(--gg-navy); }
.gg-card__icon--green { background: #EAF5EE; color: #1A6E3C; }
.gg-card__title  { font-size: 16px; font-weight: 600; color: var(--gg-navy); margin-bottom: 8px; }
.gg-card__text   { font-size: 13px; color: var(--gg-text-muted); line-height: 1.7; }
.gg-card__link   { font-size: 12px; color: var(--gg-orange); margin-top: 14px; display: block; }
.gg-card__link:hover { text-decoration: underline; }
.gg-card__date   { font-size: 11px; color: var(--gg-light-purple); display: block; margin-bottom: 6px; }
.gg-card__thumb  { width: 100%; height: 180px; object-fit: cover; border-radius: var(--gg-radius) var(--gg-radius) 0 0; }
.gg-card__thumb-link { display: block; }
.gg-card--post { padding: 0; overflow: hidden; }
.gg-card--post .gg-card__body { padding: 20px; }
.gg-card--post .gg-card__title a { color: var(--gg-navy); }
.gg-card--post .gg-card__title a:hover { color: var(--gg-orange); text-decoration: none; }

/* ── HISTORY / TIMELINE ── */
.gg-history { background: var(--gg-off-white); }
.gg-history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.gg-timeline { display: flex; flex-direction: column; }
.gg-tl-item { display: flex; gap: 16px; position: relative; }
.gg-tl-item:not(:last-child) .gg-tl-dot::after {
  content: '';
  position: absolute;
  left: 5px; top: 12px;
  width: 1px;
  height: 100%;
  background: #c8bfac;
}
.gg-tl-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gg-orange);
  margin-top: 5px;
  flex-shrink: 0;
}
.gg-tl-body { padding-bottom: 24px; }
.gg-tl-year { font-size: 11px; font-weight: 600; color: var(--gg-orange); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.gg-tl-text { font-size: 14px; color: #555; line-height: 1.7; }

/* ── PULL QUOTE ── */
.gg-pull-quote {
  background: var(--gg-navy);
  border-radius: var(--gg-radius);
  padding: 24px;
  margin: 20px 0 0;
  border: none;
}
.gg-pull-quote p { font-size: 15px; color: #B8C8E0; line-height: 1.8; font-style: italic; font-family: var(--gg-font-serif); margin: 0 0 10px; }
.gg-pull-quote cite { font-size: 12px; color: var(--gg-gold); font-style: normal; font-weight: 500; display: block; }

/* ── LEADERSHIP ── */
.gg-leader-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 32px;
}
.gg-leader-card {
  background: #fff;
  border: 1px solid var(--gg-border);
  border-radius: var(--gg-radius-lg);
  overflow: hidden;
  text-align: center;
}
.gg-leader__img { background: var(--gg-sky-blue); height: 180px; display: flex; align-items: center; justify-content: center; }
.gg-leader__photo { width: 100%; height: 100%; object-fit: cover; }
.gg-leader__photo-placeholder {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--gg-turquoise);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gg-leader__body { padding: 20px; }
.gg-leader__name { font-size: 16px; font-weight: 700; color: var(--gg-navy); margin-bottom: 4px; }
.gg-leader__title { font-size: 12px; color: var(--gg-orange); letter-spacing: 1px; font-weight: 500; margin-bottom: 10px; }
.gg-leader__bio { font-size: 13px; color: var(--gg-text-muted); line-height: 1.6; }
.gg-leader__bio--placeholder { font-style: italic; opacity: 0.6; }

/* ── EVENT LIST ── */
.gg-event-list { display: flex; flex-direction: column; gap: 0; margin-top: 24px; }
.gg-event-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gg-border);
}
.gg-event-item__date {
  flex-shrink: 0;
  width: 56px;
  text-align: center;
  background: var(--gg-navy);
  border-radius: var(--gg-radius);
  padding: 10px 8px;
}
.gg-event-item__month { display: block; font-size: 11px; color: var(--gg-gold); text-transform: uppercase; letter-spacing: 1px; }
.gg-event-item__day   { display: block; font-size: 22px; font-weight: 700; color: #fff; line-height: 1; }
.gg-event-item__body  { flex: 1; }
.gg-event-item__title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.gg-event-item__title a { color: var(--gg-navy); }
.gg-event-item__title a:hover { color: var(--gg-orange); text-decoration: none; }
.gg-event-item__excerpt { font-size: 13px; color: var(--gg-text-muted); margin: 0; }

/* ── VIDEO EMBED ── */
.gg-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--gg-radius);
  margin-top: 24px;
}
.gg-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* ── PAGE LAYOUT (with optional sidebar) ── */
.gg-main--page { padding: 0; }
.gg-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 64px;
}
.gg-page-layout:has(.gg-sidebar) {
  grid-template-columns: 1fr 280px;
}
.gg-page-content { min-width: 0; }
.gg-entry-content { line-height: 1.8; }
.gg-entry-content h2 { font-size: 24px; margin: 2rem 0 .75rem; }
.gg-entry-content h3 { font-size: 20px; margin: 1.5rem 0 .5rem; }
.gg-entry-content ul, .gg-entry-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.gg-entry-content blockquote { border-left: 3px solid var(--gg-orange); padding-left: 1.5rem; margin: 1.5rem 0; font-style: italic; color: var(--gg-text-muted); }
.gg-post-meta { font-size: 12px; color: var(--gg-light-purple); margin-bottom: 20px; }

/* Sidebar */
.gg-sidebar { min-width: 0; }
.gg-sidebar .widget { margin-bottom: 32px; }
.gg-sidebar .widget-title { font-size: 14px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gg-navy); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--gg-orange); }

/* ── FOOTER ── */
.gg-footer { background: var(--gg-navy); }
.gg-footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr 1fr;
  gap: 40px;
  padding-top: 44px;
  padding-bottom: 40px;
}
.gg-footer__tagline { color: #B8C8E0; font-size: 13px; line-height: 1.8; margin-top: 14px; }
.gg-footer__heading { font-size: 10px; color: var(--gg-gold); letter-spacing: 3px; margin-bottom: 14px; text-transform: uppercase; }
.gg-footer__nav { list-style: none; margin: 0; padding: 0; }
.gg-footer__nav li { margin-bottom: 8px; }
.gg-footer__nav a { color: #9CAEC8; font-size: 13px; }
.gg-footer__nav a:hover { color: #fff; text-decoration: none; }
.gg-footer__col--nav .gg-footer__nav {
  column-count: 4;
  column-width: 90px;
  column-gap: 16px;
}
.gg-footer__col--nav .gg-footer__nav li {
  break-inside: avoid;
  margin-bottom: 10px;
}

/* Connect column — icon + label, stacked list */
.gg-footer__connect {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gg-footer__connect-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #9CAEC8;
  text-decoration: none;
}
.gg-footer__connect-link:hover {
  color: #fff;
  text-decoration: none;
}
.gg-footer__connect-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #9CAEC8;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.gg-footer__connect-link:hover .gg-footer__connect-icon {
  background: var(--gg-orange);
  color: #fff;
}
.gg-footer__connect-label {
  font-size: 13px;
}
.gg-footer__bottom { background: var(--gg-navy-deep); }
.gg-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.gg-footer__bottom span { color: #6A85A8; font-size: 12px; }
.gg-footer__lds { color: #50818C; font-size: 11px; letter-spacing: 0.5px; }

/* ── UTILITIES ── */
.gg-empty-state { font-size: 15px; color: var(--gg-text-muted); font-style: italic; padding: 40px 0; }
.gg-pagination { margin-top: 40px; }
.gg-pagination .nav-links { display: flex; gap: 8px; justify-content: center; }
.gg-pagination a, .gg-pagination span { display: inline-block; padding: 8px 14px; border: 1px solid var(--gg-border); border-radius: 4px; font-size: 13px; color: var(--gg-navy); }
.gg-pagination a:hover { background: var(--gg-navy); color: #fff; text-decoration: none; }
.gg-pagination .current { background: var(--gg-orange); color: #fff; border-color: var(--gg-orange); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .gg-hero__inner { flex-direction: column; text-align: center; }
  .gg-hero__accent { display: none; }
  .gg-hero__card { width: 100%; max-width: 340px; }
  .gg-hero__btns { justify-content: center; }
  .gg-eyebrow { justify-content: center; }
  .gg-history__grid { grid-template-columns: 1fr; }
  .gg-card-grid { grid-template-columns: repeat(2, 1fr); }
  .gg-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .gg-container { padding: 0 20px; }
  .gg-section { padding: 40px 0; }
  .gg-hero__inner { padding-top: 40px; padding-bottom: 40px; }
  .gg-page-hero { padding: 36px 0 32px; }
  .gg-page-hero__title { font-size: 28px; }

  /* Mobile nav */
  .gg-nav-toggle { display: flex; }
  .gg-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--gg-border);
    padding: 16px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .gg-nav.is-open { display: flex; }
  .gg-nav__list { flex-direction: column; width: 100%; }
  .gg-nav__list li a { display: block; padding: 10px 0; font-size: 15px; }
  .gg-btn--nav { margin-top: 8px; }
  .gg-header__inner { position: relative; }

  .gg-card-grid { grid-template-columns: 1fr; }
  .gg-footer__grid { grid-template-columns: 1fr; }
  .gg-meeting-bar__inner { gap: 12px; }
  .gg-meeting-bar .gg-btn--meeting { margin-left: 0; width: 100%; text-align: center; }
  .gg-leader-grid { grid-template-columns: repeat(2, 1fr); }
  .gg-page-layout:has(.gg-sidebar) { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gg-hero__heading { font-size: 26px; }
  .gg-section__heading { font-size: 22px; }
  .gg-leader-grid { grid-template-columns: 1fr; }
  .gg-topbar__right { display: none; }
}
