/* ==========================================================================
   GURU MEDIA HUB — SHARED STYLESHEET
   Used by index.html, agency.html, media.html
   ========================================================================== */

/* ---- 1. Variables & reset ---- */
:root {
  --color-ink: #1A1A1A;
  --color-cream: #FAF6EF;
  --color-white: #fff;
  --color-yellow: #F5A623;
  --color-coral: #E8636A;
  --color-purple: #A84DB8;
  --color-terracotta: #C0724A;
  --color-brown: #3A2C26;       /* body copy on cream backgrounds */
  --color-brown-dark: #3A2416;  /* body copy on yellow backgrounds */
  --color-quiet: #7C7C7C;       /* muted quote text */

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1180px;
  --container-wide: 1280px;
  --pad-x: clamp(24px, 5vw, 72px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  overflow-x: hidden;
}
a { color: var(--color-terracotta); text-decoration: none; }
a:hover { color: var(--color-ink); }

/* Home page runs a full-viewport dark shell instead of the normal page flow */
body.page-home a { color: var(--color-white); }
/*body.page-home a:hover { color: var(--color-white); }*/

img { max-width: 100%; }

/* ---- 2. Containers & sections ---- */
.container { max-width: var(--container); margin: 0 auto; }
.container--wide { max-width: var(--container-wide); margin: 0 auto; }

.section { padding: clamp(80px, 9vw, 130px) var(--pad-x); }
.section--tight { padding: clamp(48px, 5vw, 64px) var(--pad-x) clamp(60px, 7vw, 90px); }
.section--roomy { padding: clamp(90px, 10vw, 150px) var(--pad-x); }
.section--top-flush { padding: 0 var(--pad-x) clamp(80px, 9vw, 130px); }

.section--cream { background: var(--color-cream); }
.section--dark { background: var(--color-ink); color: var(--color-white); }
.section--yellow { position: relative; background: var(--color-yellow); overflow: hidden; }

.section--notched {
  clip-path: polygon(0 4vw, 100% 0, 100% 100%, 0 100%);
}

/* Two-column layouts used throughout for "heading + supporting copy" blocks */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 4vw, 70px);
  align-items: start;
}
.split--tight { gap: clamp(18px, 2vw, 26px); }
.split--center { align-items: center; }
.split--narrow { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.split--cards { grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); }
.split--mb-lg { margin-bottom: clamp(44px, 5vw, 68px); }

.stack { display: flex; flex-direction: column; gap: 20px; }
.stack--sm { gap: 12px; }
.stack--lg { gap: 44px; }

/* ---- 3. Typography ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.eyebrow--block { display: block; }
.eyebrow--center { display: block; text-align: center; }
.eyebrow--yellow { color: var(--color-yellow); }
.eyebrow--terracotta { color: var(--color-terracotta); }
.eyebrow--white-quiet { color: rgba(255, 255, 255, 0.75); }
.eyebrow--muted { color: var(--color-brown); opacity: 0.6; }
.eyebrow--hero { margin-bottom: 22px; }
.eyebrow--lg { font-size: 24px; }

.section-label {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 38px;
}
.section-label__rule { flex: 1; height: 1px; background: rgba(26, 26, 26, 0.14); }

.step-number {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.heading-hero {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(50px, 7.4vw, 116px);
  line-height: 0.88;
  letter-spacing: -1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  max-width: 16ch;
}
.heading-hero--md { font-size: clamp(40px, 4.6vw, 76px); line-height: 0.92; letter-spacing: -1.2px; max-width: none; }
.heading-hero--panel { font-size: clamp(40px, 4.4vw, 66px); line-height: 0.9; letter-spacing: -0.5px; max-width: none; }

.heading-section {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.8px;
  color: var(--color-ink);
}
.heading-section--white { color: var(--color-white); font-weight: 800; font-size: clamp(38px, 4.6vw, 68px); line-height: 0.94; letter-spacing: -1px; text-transform: uppercase; }
.heading-section--md { font-size: clamp(36px, 4.4vw, 64px); font-weight: 800; line-height: 0.94; letter-spacing: -1px; }
.heading-section--md-alt { font-size: clamp(36px, 4.4vw, 62px); font-weight: 800; line-height: 0.94; letter-spacing: -1px; }

.heading-card {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1;
  letter-spacing: -0.4px;
  text-transform: uppercase;
}

.heading-cta {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.4vw, 100px);
  line-height: 0.9;
  letter-spacing: -1.4px;
  text-transform: uppercase;
  color: var(--color-ink);
  max-width: 18ch;
}
.heading-cta--17 { max-width: 17ch; }

.lede {
  margin: 30px 0 0;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.58;
  max-width: 46ch;
}
.lede--on-dark { color: rgba(255, 255, 255, 0.86); }
.lede--on-yellow { color: var(--color-brown-dark); }
.lede--wide { max-width: 58ch; }
.lede--pad-right { padding-right: clamp(0px, 6vw, 80px); }
.lede--pad-right-lg { padding-right: clamp(0px, 10vw, 160px); }

.statement-text { margin: 0; font-size: clamp(17px, 1.3vw, 20px); line-height: 1.62; }
.statement-text--dim { color: rgba(255, 255, 255, 0.72); }
.statement-text--bright { color: rgba(255, 255, 255, 0.86); }
.statement-highlight {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.cta-content { position: relative; z-index: 2; }

.body-text {
  margin: 0;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.66;
  color: var(--color-brown);
  max-width: 52ch;
}
.body-text--on-dark { color: rgba(255, 255, 255, 0.82); }
.body-text--strong { font-weight: 600; }

.accent-rule {
  width: 64px;
  height: 5px;
  background: var(--color-terracotta);
  transform: skewX(-20deg);
}

/* ---- 4. Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 30px;
  border: 2px solid transparent;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn--sm { font-size: 15px; letter-spacing: 2px; padding: 13px 24px; }
.btn--nav { font-size: 16px; padding: 11px 22px; border-radius: 2px; border-width: 1.5px; }
.btn--spaced { margin-top: 36px; align-self: flex-start; }
.btn--spaced-sm { margin-top: 8px; align-self: flex-start; }
.btn--self-start { align-self: flex-start; }
.btn-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 38px; }
.btn-row .btn { margin-top: 0; }

.btn--white { background: var(--color-white); color: var(--color-ink); }
.btn--white:hover { background: var(--color-yellow); color: var(--color-ink); }

.btn--dark { background: var(--color-ink); color: var(--color-white); }
.btn--dark:hover { background: var(--color-yellow); color: var(--color-ink); }

.btn--coral { background: var(--color-coral); color: var(--color-white); }
.btn--coral:hover { background: var(--color-white); color: var(--color-ink); }

.btn--yellow { background: var(--color-yellow); color: var(--color-ink); }
.btn--yellow:hover { background: var(--color-white); color: var(--color-ink); }

.btn--purple { background: var(--color-purple); color: var(--color-ink); }
.btn--purple:hover { background: var(--color-white); color: var(--color-ink); }

.btn--terracotta { background: var(--color-terracotta); color: var(--color-ink); }
.btn--terracotta:hover { background: var(--color-white); color: var(--color-ink); }

.btn--outline-white { background: transparent; border-color: rgba(255, 255, 255, 0.85); color: var(--color-white); }
.btn--outline-white:hover { background: var(--color-white); color: var(--color-ink); border-color: var(--color-white); }

.btn--outline-dark { background: transparent; border-color: var(--color-ink); color: var(--color-ink); }
.btn--outline-dark:hover { background: var(--color-ink); color: var(--color-white); }

.btn--outline-coral { background: transparent; border-color: var(--color-coral); color: var(--color-coral); }
.btn--outline-coral:hover { background: var(--color-coral); color: var(--color-white); }

/* ---- 5. Tags / pills ---- */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 14px; font-weight: 500; padding: 6px 12px; }
.tag--dark { color: var(--color-ink); background: rgba(26, 26, 26, 0.13); }
.tag--light { color: var(--color-white); background: rgba(255, 255, 255, 0.2); }

/* ---- 6. Stats ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: clamp(16px, 1.8vw, 26px);
  width: 100%;
}
.stat-grid--spaced { margin-top: 44px; }
.stat-grid--spaced-lg { margin-top: 64px; }

.stat { border-top: 3px solid var(--color-white); padding-top: 16px; display: flex; flex-direction: column; gap: 6px; }
.stat--yellow { border-top-color: var(--color-yellow); }
.stat--coral { border-top-color: var(--color-coral); }
.stat--purple { border-top-color: var(--color-purple); }
.stat--terracotta { border-top-color: var(--color-terracotta); }
.stat--white { border-top-color: var(--color-white); }

.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 3.1vw, 50px);
  line-height: 0.9;
  color: var(--color-white);
}
.stat__label { font-size: 14px; line-height: 1.4; color: rgba(255, 255, 255, 0.72); }
.stat__action { width: 100%; max-width: 300px; margin-top: 16px; }

/* ---- 7. Cards ---- */
.service-card {
  padding: clamp(32px, 3.2vw, 46px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-card--yellow { background: var(--color-yellow); color: var(--color-ink); }
.service-card--coral { background: var(--color-coral); color: var(--color-white); }
.service-card--purple { background: var(--color-purple); color: var(--color-white); }
.service-card--terracotta { background: var(--color-terracotta); color: var(--color-white); }

.service-card__step { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: 3px; }
.service-card--yellow .service-card__step { color: rgba(26, 26, 26, 0.6); }
.service-card--coral .service-card__step,
.service-card--purple .service-card__step,
.service-card--terracotta .service-card__step { color: rgba(255, 255, 255, 0.72); }

.service-card__title { color: inherit; }
.service-card--yellow .service-card__title { color: var(--color-ink); }

.service-card__desc { margin: 0; font-size: 17px; line-height: 1.55; font-weight: 500; }
.service-card--yellow .service-card__desc { color: var(--color-brown-dark); }
.service-card--coral .service-card__desc,
.service-card--purple .service-card__desc,
.service-card--terracotta .service-card__desc { color: rgba(255, 255, 255, 0.95); }

.service-card__note {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-white);
}

.event-card {
  text-decoration: none;
  color: inherit;
  background: var(--color-white);
  border: 1px solid rgba(26, 26, 26, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease;
}
.event-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(26, 26, 26, 0.14); }

.event-card__logo { width: 100%; padding: 2rem 1rem; display: block; align-self: center; }
.event-card__logo--sm { max-width: 350px; }
.event-card__logo--md { max-width: 400px; }
.event-card__logo--lg { max-width: 440px; }
.event-card__logo--xl { max-width: 450px; }

.event-card__body { width: 100%; padding: 0 28px 30px; display: flex; flex-direction: column; align-items: center; gap: 12px; flex: 1; }
.event-card__title {
  margin: 10px 0 40px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  text-align: center;
}

.podcast-cover { width: 100%; max-width: 440px; aspect-ratio: 1/1; object-fit: cover; display: block; }

/* ---- 8. Decorative skewed bars ---- */
.deco-bars { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.deco-bar { position: absolute; top: -14%; height: 128%; transform: skewX(-7deg); }
.deco-bar--cta { top: -20%; height: 140%; }
.deco-bar--1 { right: -12%; width: 46%; }
.deco-bar--2 { right: 16%; width: 16%; }
.deco-bar--3 { right: 30%; width: 7%; }
.deco-bar--cta-1 { right: -6%; width: 26%; }
.deco-bar--cta-2 { right: 14%; width: 9%; }
.deco-bar--yellow { background: var(--color-yellow); }
.deco-bar--coral { background: var(--color-coral); }
.deco-bar--purple { background: var(--color-purple); }

/* ---- 9. Page header logo + hero shells (agency / media pages) ---- */
.page-hero { position: relative; background: var(--color-ink); overflow: hidden; min-height: 86vh; display: flex; align-items: center; }
.page-hero--compact { min-height: 0; }

.site-logo-wrap { position: absolute; top: 26px; left: var(--pad-x); z-index: 3; }
.site-logo-wrap a { display: inline-block; line-height: 0; }
.site-logo { width: auto; display: block; }
.site-logo--header { height: 52px; }
.site-logo--header-lg { height: 90px; }
.site-logo--footer { height: 58px; }

.page-hero__inner { position: relative; z-index: 2; width: 100%; max-width: var(--container-wide); margin: 0 auto; padding: 150px var(--pad-x) 92px; }
.page-hero__col { width: 100%; max-width: max(300px, min(720px, 50vw)); display: flex; flex-direction: column; align-items: flex-start; }
.page-hero__testimonials { width: 100%; max-width: 100%; margin: 0 auto; }

/* ---- 10. Navigation & footer ---- */
.link-row { display: flex; flex-wrap: wrap; gap: 22px; }
.nav-link { font-size: 15px; font-weight: 500; color: rgba(255, 255, 255, 0.7); text-decoration: none; }
.nav-link:hover { color: var(--color-white); }

.site-footer { background: var(--color-ink); color: var(--color-white); padding: clamp(56px, 6vw, 84px) var(--pad-x) 40px; }
.site-footer__inner { max-width: var(--container); margin: 0 auto; display: flex; flex-direction: column; gap: 44px; }
.site-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; align-items: start; }
.site-footer__brand { display: flex; flex-direction: column; gap: 22px; }
.site-footer__legal { border-top: 1px solid rgba(255, 255, 255, 0.12); padding-top: 22px; font-size: 13px; color: rgba(255, 255, 255, 0.42); }

/* ---- 11. Home page (index.html) skewed panel layout ---- */
body.page-home { background: var(--color-ink); font-family: var(--font-body); }

.home-shell { height: 100vh; width: 100%; position: relative; display: flex; flex-direction: column; overflow: hidden; background: var(--color-ink); }
.home-shell__stage { flex: 1; position: relative; overflow: hidden; }
.home-shell__row { display: flex; height: 100%; width: calc(100% + 140px); margin-left: -70px; }

.hero-panel {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  transform: skewX(-7deg);
  background: var(--color-ink);
  transition: flex 0.34s var(--ease), filter 0.3s ease;
  text-decoration: none !important;
  color: inherit;
  cursor: pointer;
  display: block;
}
.hero-panel:hover { text-decoration: none !important; filter: brightness(1.08) !important; flex-grow: 1.5 !important; }
.hero-panel--1 { flex: 1.18; }
.hero-panel--2 { flex: 1; }
.hero-panel--3 { flex: 1.2; }

.hero-panel__bg { position: absolute; inset: -80px -140px; transform: skewX(7deg); background-size: cover; z-index: 1; }
.hero-panel__bg--1 { background-image: url('uploads/office-bg.jpg'); background-position: 50% 55%; }
.hero-panel__bg--2 { background-image: url('uploads/jay-stage.png'); background-position: 63% 18%; }
.hero-panel__bg--3 { background-image: url('uploads/sponsor-bg.webp'); background-position: 85% 38%; }

.hero-panel__overlay { position: absolute; inset: 0; z-index: 2; opacity: 0.82; transition: opacity 0.32s ease; pointer-events: none; }
.hero-panel:hover .hero-panel__overlay { opacity: 0.62 !important; }
.hero-panel__overlay--yellow { background: var(--color-yellow); }
.hero-panel__overlay--coral { background: var(--color-coral); }
.hero-panel__overlay--purple { background: var(--color-purple); }

.hero-panel__content { position: relative; z-index: 3; height: 100%; padding: 44px 62px 56px 132px; transform: skewX(7deg); display: flex; flex-direction: column; justify-content: flex-start; }
.hero-panel__content--tight { padding-left: 62px; }
.hero-panel__content--wide { padding: 44px 80px 56px 96px; }

.hero-panel__label { display: block; font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255, 255, 255, 0.75); text-align: left; margin-bottom: 40px; }
.hero-panel__desc { margin: 18px 0 0; font-family: var(--font-body); font-weight: 500; font-size: 17px; line-height: 1.4; color: rgba(255, 255, 255, 0.96); max-width: 24ch; }

.home-bar {
  flex: 0 0 auto;
  background: var(--color-ink);
  padding: 0 46px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ---- 12. Logo scroller ---- */
.gmh-logos {
  --gmh-gap: 64px;
  --gmh-speed: 34s;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.gmh-logo-track {
  display: flex;
  align-items: center;
  gap: var(--gmh-gap);
  width: max-content;
  animation: gmh-scroll var(--gmh-speed) linear infinite;
}
.gmh-logos:hover .gmh-logo-track { animation-play-state: paused; }
.gmh-logo-track img,
.gmh-logo-track .gmh-logo-text {
  height: 30px;
  flex: none;
  display: flex;
  align-items: center;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--color-ink);
}
.gmh-logo-track img:hover,
.gmh-logo-track .gmh-logo-text:hover { opacity: 1; }
.gmh-logo-track img.gmh-logo-h25 { height: 25px; }
.gmh-logo-track img.gmh-logo-h32 { height: 32px; }
.gmh-logo-track img.gmh-logo-h35 { height: 35px; }
.gmh-logo-track img.gmh-logo-h40 { height: 40px; }
.gmh-logo-track img.gmh-logo-h45 { height: 45px; }
.gmh-logo-track img.gmh-logo-h55 { height: 55px; }
@keyframes gmh-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- 13. Testimonial fader ---- */
.gmh-testimonials {
  position: relative;
  min-height: 250px;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.gmh-testimonial {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}
.gmh-testimonial.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.gmh-testimonial blockquote { margin: 0; font-size: clamp(19px, 2vw, 20px); line-height: 1.5; font-weight: 500; color: var(--color-quiet); }
.gmh-testimonial cite { font-style: normal; font-family: var(--font-display); font-weight: 700; letter-spacing: 1px; text-transform: uppercase; font-size: 14px; color: var(--color-yellow); }
.gmh-dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.gmh-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.25); cursor: pointer; padding: 0; transition: background 0.2s ease, transform 0.2s ease; }
.gmh-dots button.is-active { background: var(--color-yellow); transform: scale(1.25); }
.gmh-dots button:focus-visible,
.gmh-logos:focus-visible { outline: 2px solid var(--color-terracotta); outline-offset: 3px; }

/* ==========================================================================
   14. Media queries
   ========================================================================== */

/* Tablet: tighten section rhythm, let hero decoration breathe less aggressively */
@media (max-width: 992px) {
  .section { padding: clamp(60px, 8vw, 100px) var(--pad-x); }
  .section--roomy { padding: clamp(70px, 9vw, 120px) var(--pad-x); }
  .page-hero { min-height: 0; padding: 40px 0; }
  .page-hero__inner { padding: 120px var(--pad-x) 64px; }
		.gmh-testimonials {
		min-height: 400px;
	}

}

/* Home page: JS (index.html's Component) switches the skewed panels to a
   stacked column layout below 820px via matchMedia; these rules cover the
   parts JS doesn't touch (typography, bar spacing) so both stay in sync. */
@media (max-width: 820px) {
  .home-bar { flex-wrap: wrap; padding: 16px 24px; min-height: 0; }
  .hero-panel__content { padding: 32px 32px 40px; }
  .hero-panel__content--tight,
  .hero-panel__content--wide { padding: 32px 32px 40px; }
	.split--cards {
		grid-template-columns: 1fr 1fr;
	}	
	.stat-grid {
		grid-template-columns: 1fr 1fr;
	}
	
}

/* Mobile */
@media (max-width: 640px) {
  .home-shell { height: auto; }

  .gmh-logos { --gmh-gap: 40px; --gmh-speed: 24s; }
  .gmh-logo-track img,
  .gmh-logo-track .gmh-logo-text { height: 22px; font-size: 17px; }

  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { justify-content: center; }

  .deco-bar--1 { width: 56%; }
  .deco-bar--2 { width: 20%; }

  .site-logo-wrap { position: static; margin-bottom: 24px; }
  .page-hero__inner { padding-top: 32px; }
  .page-hero { display: block; padding-top: 24px; }
	
  .split--cards { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr)); }

	.deco-bars {
		right: -80%;
	}
	
	.stat-grid {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
  .gmh-logo-track { animation: none; flex-wrap: wrap; justify-content: center; transform: none; }
}
