/* ================================================================
   GMA JIU-JITSU — DESIGN SYSTEM (light theme)

   Ported from main-gym/css/global-header.css. Same component names
   (.gma-nav, .gma-footer, .gma-why, .btn-primary ...) so the two
   sites stay structurally identical — but the SEMANTIC TOKENS below
   are redefined light. Section CSS that hardcoded dark values on the
   main site has been converted here.

   Load order: main.css (hero / marquee / class cards) then this file.
   ================================================================ */

/* ===== GMA MASTER PALETTE (identical to main gym) ===== */
:root {
  --gma-red: #C41E2A;
  --gma-red-light: #E53E3E;
  --gma-red-dark: #9B1B1B;
  --gma-blue: #2B4B9E;
  --gma-blue-light: #3A5CB5;
  --gma-blue-dark: #1E3578;
  --gma-black: #0A0A0A;
  --gma-white: #FFFFFF;
  --gma-off-white: #F5F5F5;
  --gma-gray-100: #E5E5E5;
  --gma-gray-300: #A3A3A3;
  --gma-gray-500: #6B6B6B;
  --gma-gray-700: #333333;
  --gma-gray-900: #1A1A1A;
}

/* ===== SEMANTIC TOKENS — LIGHT MODE (this is the divergence) ===== */
:root {
  --bg: var(--gma-white);
  --bg-surface: #F7F7F8;
  --bg-card: var(--gma-white);
  --border: #E4E4E7;
  --text-primary: var(--gma-black);
  --text-body: #3F3F46;
  --text-muted: #6B6B6B;
  /* On white, the base red already passes AA — no lightened variant needed. */
  --gma-red-accessible: var(--gma-red);
  --accent-primary: var(--gma-red);
  --link: var(--gma-blue);
  --gradient: linear-gradient(135deg, var(--gma-red), var(--gma-blue));
  --shadow-sm: 0 2px 8px rgba(10,10,10,0.06);
  --shadow-md: 0 8px 28px rgba(10,10,10,0.10);
  --shadow-lg: 0 16px 48px rgba(10,10,10,0.14);
}

body { background: var(--bg); color: var(--text-body); }
html { scroll-behavior: smooth; overflow-x: hidden; }
[id] { scroll-margin-top: 90px; }

/* ===== SHARED SECTION HEADER (centred — matches main gym) =====
   Every light section carries the same soft red wash as Why GMA so the
   page has movement instead of flat white bands. */
.gma-sec { position: relative; padding: 100px 24px; background: var(--bg); overflow: hidden; }
.gma-sec::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(to bottom,
    var(--bg) 0%, rgba(196,30,42,0.05) 22%, rgba(196,30,42,0.08) 50%,
    rgba(196,30,42,0.05) 78%, var(--bg) 100%);
}
/* Slightly deeper wash — alternate down the page for rhythm */
.gma-sec--deep::before {
  background: linear-gradient(to bottom,
    var(--bg) 0%, rgba(196,30,42,0.08) 20%, rgba(196,30,42,0.13) 50%,
    rgba(196,30,42,0.08) 80%, var(--bg) 100%);
}
.gma-sec__inner { position: relative; max-width: 1200px; margin: 0 auto; text-align: center; z-index: 3; }
/* The classes grid brings its own width + padding; neutralise it in here */
.gma-sec__inner .bjj-programs__grid { padding: 0; max-width: none; }
.gma-sec__label,
.gma-why__label {
  font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gma-red-accessible); margin-bottom: 16px;
}
.gma-sec__heading {
  font-family: 'Teko', sans-serif; font-weight: 700;
  font-size: clamp(36px, 5vw, 56px); line-height: 0.95; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--text-primary); margin: 0 0 16px;
}
.gma-sec__heading-accent {
  display: block;
  background: linear-gradient(135deg, var(--gma-red), var(--gma-red-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gma-sec__sub {
  font-family: 'Inter', sans-serif; font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.65; color: var(--text-body);
  max-width: 560px; margin: 0 auto 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gma-red); color: var(--gma-white);
  font-family: 'Teko', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 8px;
  border: 2px solid transparent; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  background: var(--gma-white); color: var(--gma-red);
  border-color: var(--gma-red);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(196,30,42,0.28);
}
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  background: transparent; color: var(--gma-blue);
  font-family: 'Teko', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 32px; border-radius: 8px; border: 2px solid var(--gma-blue);
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: var(--gma-blue); color: var(--gma-white);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,75,158,0.25);
}

/* ===== MAIN NAV — light ===== */
.gma-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 0 24px;
}
.gma-nav__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.gma-nav__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.gma-nav__logo img { width: 40px; height: 40px; object-fit: contain; }
.gma-nav__logo-text {
  font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 700;
  color: var(--text-primary); letter-spacing: 0.02em; text-transform: uppercase; line-height: 1;
}
/* Long legal-entity lockup — sized to stay on one line beside the nav links */
.gma-nav__logo-sub {
  display: block; font-family: 'Inter', sans-serif; font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-muted); line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 420px) { .gma-nav__logo-sub { display: none; } }
.gma-nav__links { display: flex; align-items: center; gap: 6px; list-style: none; }
.gma-nav__link {
  font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 8px 11px; border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease; white-space: nowrap;
}
.gma-nav__link:hover { color: var(--gma-red); background: rgba(196,30,42,0.06); }
.gma-nav__link--active { color: var(--text-primary); }

.gma-nav__dropdown { position: relative; }
.gma-nav__dropdown-toggle { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.gma-nav__dropdown-toggle svg { width: 10px; height: 10px; fill: currentColor; transition: transform 0.2s ease; }
.gma-nav__dropdown:hover .gma-nav__dropdown-toggle svg { transform: rotate(180deg); }
.gma-nav__dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--gma-white); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all 0.25s ease; box-shadow: var(--shadow-lg);
}
.gma-nav__dropdown:hover .gma-nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.gma-nav__dropdown-item {
  display: block; font-family: 'Teko', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; padding: 9px 20px;
  transition: color 0.15s ease, background 0.15s ease;
}
.gma-nav__dropdown-item:hover { color: var(--gma-red); background: rgba(196,30,42,0.06); }

.gma-nav__cta {
  font-family: 'Teko', sans-serif; font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  background: var(--gma-red); color: var(--gma-white);
  padding: 9px 20px; border-radius: 6px; text-decoration: none;
  transition: all 0.3s ease; white-space: nowrap;
}
.gma-nav__cta:hover {
  background: var(--gma-red-light); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,30,42,0.35); color: var(--gma-white);
}

.gma-nav__hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px; cursor: pointer; background: none; border: none; padding: 4px;
}
.gma-nav__hamburger span { display: block; width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s ease; }
.gma-nav__hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gma-nav__hamburger.active span:nth-child(2) { opacity: 0; }
.gma-nav__hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile drawer — same logic as main gym + ASP */
.gma-nav__mobile-drawer {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 98; padding: 80px 32px 40px; overflow-y: auto; flex-direction: column; gap: 4px;
}
.gma-nav__mobile-drawer.active { display: flex; }
.gma-nav__mobile-header {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border); margin-bottom: 8px;
}
.gma-nav__mobile-header img { width: 80px; height: 80px; object-fit: contain; }
.gma-nav__mobile-brand {
  font-family: 'Teko', sans-serif; font-size: 18px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-primary); text-align: center;
}
.gma-nav__mobile-drawer a {
  font-family: 'Teko', sans-serif; font-size: 22px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.2s ease;
}
.gma-nav__mobile-drawer a:hover { color: var(--gma-red); }
.gma-nav__mobile-folder { border-bottom: 1px solid var(--border); }
.gma-nav__mobile-folder-toggle {
  font-family: 'Teko', sans-serif; font-size: 22px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted);
  padding: 12px 0; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; transition: color 0.2s ease;
}
.gma-nav__mobile-folder-toggle:hover { color: var(--gma-red); }
.gma-nav__mobile-folder-toggle svg { transition: transform 0.3s ease; }
.gma-nav__mobile-folder.open .gma-nav__mobile-folder-toggle svg { transform: rotate(180deg); }
.gma-nav__mobile-folder.open .gma-nav__mobile-folder-toggle { color: var(--text-primary); }
.gma-nav__mobile-folder-items { display: none; flex-direction: column; padding-left: 16px; padding-bottom: 8px; }
.gma-nav__mobile-folder.open .gma-nav__mobile-folder-items { display: flex; }
.gma-nav__mobile-folder-items a { font-size: 17px; font-weight: 500; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.gma-nav__mobile-folder-items a:last-child { border-bottom: none; }
.gma-nav__mobile-cta {
  margin-top: 24px; display: block; text-align: center;
  background: var(--gma-red); color: var(--gma-white) !important;
  padding: 16px 24px !important; border-radius: 8px;
  border-bottom: none !important; font-weight: 600 !important;
}
.gma-nav__mobile-cta:hover { background: var(--gma-red-light); }
.gma-nav__mobile-family {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.gma-nav__mobile-family-label {
  font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gma-red);
}
.gma-nav__mobile-family-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.gma-nav__mobile-family-links a {
  font-size: 13px !important; font-weight: 500 !important;
  padding: 0 !important; border-bottom: none !important; letter-spacing: 0.06em !important;
}

/* Push content below the fixed nav */
body { padding-top: 64px; }

/* ===== HERO CTA overrides (main.css left-aligns them and goes full-width on mobile) =====
   The content box is 560px but the copy is capped at 420px, so centring on the
   box lands the buttons right of the text. Match the copy's width, then centre. */
.bjj-hero__ctas { justify-content: center; max-width: 420px; }
@media (max-width: 768px) {
  /* Regular-sized, centred buttons — not edge-to-edge slabs */
  .bjj-hero__btn-primary,
  .bjj-hero__btn-secondary { width: auto; justify-content: center; }
  .bjj-hero__ctas { justify-content: center; }
  .bjj-hero__content { align-items: center; text-align: center; }
}

/* ===== WHY GMA ===== */
.gma-why { position: relative; background: var(--bg); padding: 100px 24px; overflow: hidden; }
.gma-why::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    var(--bg) 0%, rgba(196,30,42,0.05) 22%, rgba(196,30,42,0.08) 50%,
    rgba(196,30,42,0.05) 78%, var(--bg) 100%);
  pointer-events: none; z-index: 0;
}
.gma-why__inner { position: relative; max-width: 1200px; margin: 0 auto; z-index: 3; text-align: center; }
.gma-why__photos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 48px; }
.gma-why__photo {
  position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3;
  border: 1px solid rgba(196,30,42,0.18); background: var(--bg-surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gma-why__photo:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(196,30,42,0.16); border-color: rgba(196,30,42,0.4); }
.gma-why__photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gma-why__photo:hover img { transform: scale(1.03); }

.gma-why__stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.gma-why__stat {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px;
  padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gma-why__stat:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(196,30,42,0.14); border-color: rgba(196,30,42,0.35); }
.gma-why__stat-number { font-family: 'Teko', sans-serif; font-size: 36px; font-weight: 700; line-height: 1; color: var(--text-primary); }
.gma-why__stat-number span {
  background: linear-gradient(135deg, var(--gma-red), var(--gma-red-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gma-why__stat-label { font-family: 'Inter', sans-serif; font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.gma-why__badges { display: flex; justify-content: center; align-items: center; gap: 28px; margin-top: 8px; flex-wrap: wrap; }
.gma-why__badge {
  font-family: 'Teko', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-muted);
  display: flex; align-items: center; gap: 8px;
}
.gma-why__badge svg { width: 18px; height: 18px; fill: var(--gma-red); flex-shrink: 0; }
.gma-why__cta { margin-top: 40px; }

/* ===== GMA FAMILY / AFTER SCHOOL — white background, blue gradient wash ===== */
.gma-family { position: relative; padding: 100px 24px; overflow: hidden; background: var(--bg); }
.gma-family::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: linear-gradient(to bottom,
    var(--bg) 0%, rgba(43,75,158,0.14) 18%, rgba(43,75,158,0.26) 50%,
    rgba(43,75,158,0.14) 82%, var(--bg) 100%);
}
.gma-family__inner { position: relative; max-width: 1200px; margin: 0 auto; text-align: center; z-index: 2; }
.gma-family__label {
  font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--gma-blue); margin-bottom: 16px;
}
.gma-family__heading {
  font-family: 'Teko', sans-serif; font-weight: 700; font-size: clamp(36px, 5vw, 56px);
  line-height: 0.95; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--text-primary); margin: 0 0 16px;
}
.gma-family__heading-accent { display: block; color: var(--gma-blue); }
.gma-family__sub {
  font-family: 'Inter', sans-serif; font-size: clamp(15px, 1.8vw, 17px); line-height: 1.65;
  color: var(--text-body); max-width: 560px; margin: 0 auto 48px;
}
/* Photo mosaic — 2x2 grid with the left photo spanning both rows.
   The fixed height is what keeps it in proportion; without it the grid grows
   to the images' intrinsic size and the block swallows the viewport.
   Dimensions ported from main-gym/pages/home/after-school.html. */
.gma-family__photos {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: 16px; margin-bottom: 48px; height: 420px;
}
.gma-family__photo {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(43,75,158,0.25); box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gma-family__photo:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(43,75,158,0.20); border-color: rgba(43,75,158,0.5); }
.gma-family__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  display: block; transition: transform 0.4s ease;
}
.gma-family__photo:hover img { transform: scale(1.03); }
.gma-family__photo--large { grid-row: 1 / 3; }
.gma-family__photo--large img { object-position: center center; }
.gma-family__photo--bottom img { object-position: center 70%; }
.gma-family__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 40px; }
.gma-family__card {
  background: var(--bg-card); border: 1px solid rgba(43,75,158,0.18);
  border-radius: 12px; padding: 28px 20px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.gma-family__card:hover { transform: translateY(-4px); border-color: rgba(43,75,158,0.45); box-shadow: 0 8px 28px rgba(43,75,158,0.15); }
.gma-family__card-icon {
  width: 44px; height: 44px; border-radius: 10px; margin: 0 auto 16px;
  background: rgba(43,75,158,0.10); display: flex; align-items: center; justify-content: center;
}
.gma-family__card-icon svg { width: 22px; height: 22px; fill: var(--gma-blue); }
.gma-family__card-title {
  font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 6px;
}
.gma-family__card-meta {
  font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; color: var(--gma-blue); margin-bottom: 10px;
}
.gma-family__card-body { font-size: 14px; line-height: 1.6; color: var(--text-body); }
.gma-family__cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gma-blue); color: var(--gma-white);
  font-family: 'Teko', sans-serif; font-weight: 600; font-size: 17px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 8px; text-decoration: none;
  border: 2px solid transparent; transition: all 0.3s ease;
}
.gma-family__cta-btn:hover {
  background: var(--gma-white); border-color: var(--gma-blue); color: var(--gma-blue);
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(43,75,158,0.28);
}

/* ===== INSTRUCTORS ===== */
.gma-inst__cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
/* Rocian Gracie Jr is the source of the curriculum, not a Gallatin instructor —
   full-width feature row above the coaches who actually teach here. */
.gma-inst__card--feature {
  grid-column: 1 / -1; border: 2px solid var(--gma-red);
  box-shadow: 0 10px 34px rgba(196,30,42,0.16);
  display: grid; grid-template-columns: 180px 1fr; gap: 28px;
  align-items: center; text-align: left; padding: 28px 32px;
}
.gma-inst__card--feature .gma-inst__photo { width: 180px; height: 180px; margin: 0; }
/* Full-length portrait in a circle — bias the crop up so the head is not cut off */
.gma-inst__card--feature .gma-inst__photo img { object-position: center 12%; }
.gma-inst__card--feature .gma-inst__ranks { justify-content: flex-start; }
.gma-inst__flag {
  display: inline-block; margin-bottom: 10px;
  font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gma-white); background: var(--gma-red);
  padding: 5px 12px; border-radius: 5px;
}
@media (max-width: 1100px) { .gma-inst__cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 700px) {
  .gma-inst__card--feature { grid-template-columns: 1fr; text-align: center; }
  .gma-inst__card--feature .gma-inst__photo { margin: 0 auto; }
  .gma-inst__card--feature .gma-inst__ranks { justify-content: center; }
}
.gma-inst__card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px;
  padding: 32px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.gma-inst__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(196,30,42,0.3); }
.gma-inst__photo { width: 140px; height: 140px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; border: 3px solid var(--gma-red); }
.gma-inst__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gma-inst__name {
  font-family: 'Teko', sans-serif; font-size: 24px; font-weight: 700;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-primary); line-height: 1.1;
}
.gma-inst__role {
  font-family: 'Teko', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gma-red); margin: 8px 0 16px;
}
.gma-inst__ranks { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 18px; }
.gma-inst__rank {
  font-family: 'Teko', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 5px; border: 1px solid;
}
.gma-inst__rank--blue { color: var(--gma-blue); border-color: rgba(43,75,158,0.4); background: rgba(43,75,158,0.06); }
.gma-inst__rank--red { color: var(--gma-red); border-color: rgba(196,30,42,0.4); background: rgba(196,30,42,0.06); }
.gma-inst__rank--gray { color: var(--text-muted); border-color: var(--border); background: var(--bg-surface); }
.gma-inst__bio { font-size: 14px; line-height: 1.65; color: var(--text-body); }

/* ===== REVIEWS ===== */
.gma-rev__rating { display: flex; align-items: center; justify-content: center; gap: 10px; margin: -24px 0 44px; flex-wrap: wrap; }
.gma-rev__google { width: 26px; height: 26px; flex-shrink: 0; display: block; }
.gma-rev__rating-stars { display: flex; gap: 2px; }
.gma-rev__rating-stars svg { width: 18px; height: 18px; fill: #F5A623; }
.gma-rev__rating-score { font-family: 'Teko', sans-serif; font-size: 20px; font-weight: 700; color: var(--text-primary); }
.gma-rev__rating-text { font-size: 14px; color: var(--text-muted); }
.gma-rev__viewport { overflow: hidden; }
.gma-rev__track { display: flex; gap: 24px; transition: transform 0.45s ease; will-change: transform; }
.gma-rev__card {
  flex: 0 0 calc((100% - 48px) / 3); position: relative;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 32px 26px 26px; text-align: left; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.gma-rev__card::before {
  content: ''; position: absolute; top: 0; left: 26px; right: 26px; height: 3px;
  background: linear-gradient(90deg, var(--gma-red), var(--gma-red-light)); border-radius: 0 0 3px 3px;
}
.gma-rev__quote-mark { font-family: 'Teko', sans-serif; font-size: 40px; line-height: 1; color: rgba(196,30,42,0.28); }
.gma-rev__stars { display: flex; gap: 2px; margin: 4px 0 14px; }
.gma-rev__stars svg { width: 15px; height: 15px; fill: #F5A623; }
.gma-rev__quote { font-size: 14.5px; line-height: 1.7; color: var(--text-body); flex: 1; }
.gma-rev__author { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.gma-rev__avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--gradient); color: var(--gma-white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 600; letter-spacing: 0.04em;
}
.gma-rev__name { font-family: 'Teko', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-primary); }
.gma-rev__role { font-size: 12.5px; color: var(--text-muted); }
.gma-rev__controls { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.gma-rev__btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--bg-card); cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.25s ease;
}
.gma-rev__btn svg { width: 18px; height: 18px; stroke: var(--text-primary); fill: none; stroke-width: 2; }
.gma-rev__btn:hover:not(:disabled) { border-color: var(--gma-red); background: var(--gma-red); }
.gma-rev__btn:hover:not(:disabled) svg { stroke: var(--gma-white); }
.gma-rev__btn:disabled { opacity: 0.35; cursor: default; }
.gma-rev__cta { margin-top: 36px; }

/* ===== START YOUR JOURNEY (3 steps) ===== */
.gma-journey__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gma-journey__step {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 36px 26px; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gma-journey__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gma-journey__num {
  width: 52px; height: 52px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--gma-red); color: var(--gma-white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Teko', sans-serif; font-size: 24px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(196,30,42,0.3);
}
.gma-journey__step-title {
  font-family: 'Teko', sans-serif; font-size: 21px; font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 10px;
}
.gma-journey__step-body { font-size: 14.5px; line-height: 1.65; color: var(--text-body); }

/* ===== SCHEDULE SNIPPET ===== */
.gma-snip { margin-top: 64px; }
.gma-snip__title {
  font-family: 'Teko', sans-serif; font-size: 26px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 20px;
}
.gma-snip__card {
  max-width: 760px; margin: 0 auto; text-align: left;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-sm);
}
.gma-snip__head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 16px 22px; border-bottom: 1px solid var(--border); background: var(--bg-surface);
}
.gma-snip__day {
  display: flex; align-items: center; gap: 9px;
  font-family: 'Teko', sans-serif; font-size: 17px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-primary);
}
.gma-snip__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gma-red); }
.gma-snip__meta { font-size: 13px; color: var(--text-muted); }
.gma-snip__row { display: flex; align-items: flex-start; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--border); }
.gma-snip__row:last-child { border-bottom: none; }
.gma-snip__time { font-size: 13.5px; color: var(--text-muted); white-space: nowrap; min-width: 132px; }
.gma-snip__name { font-size: 14.5px; font-weight: 600; color: var(--text-primary); }
.gma-snip__who { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.gma-snip__cta { margin-top: 32px; }

/* ===== GET IN TOUCH / MAP ===== */
.gma-touch__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 24px; text-align: left; }
.gma-touch__map {
  border-radius: 14px; overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); min-height: 460px; background: var(--bg-surface);
}
.gma-touch__map iframe { width: 100%; height: 100%; min-height: 460px; border: 0; display: block; }
.gma-touch__col { display: grid; gap: 24px; align-content: start; }
.gma-touch__card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: 30px 26px; box-shadow: var(--shadow-sm); text-align: center;
}
.gma-touch__icon {
  width: 46px; height: 46px; border-radius: 10px; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
}
.gma-touch__icon--red { background: rgba(196,30,42,0.10); }
.gma-touch__icon--blue { background: rgba(43,75,158,0.10); }
.gma-touch__icon svg { width: 22px; height: 22px; }
.gma-touch__icon--red svg { fill: var(--gma-red); }
.gma-touch__icon--blue svg { fill: var(--gma-blue); }
.gma-touch__card-title {
  font-family: 'Teko', sans-serif; font-size: 23px; font-weight: 700;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 10px;
}
.gma-touch__card-body { font-size: 14.5px; line-height: 1.65; color: var(--text-body); margin-bottom: 22px; }
.gma-touch__btn {
  display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
  font-family: 'Teko', sans-serif; font-size: 16px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 15px 20px; border-radius: 8px; text-decoration: none;
  border: 2px solid transparent; transition: all 0.3s ease; color: var(--gma-white);
}
.gma-touch__btn--red { background: var(--gma-red); }
.gma-touch__btn--red:hover { background: var(--gma-white); color: var(--gma-red); border-color: var(--gma-red); }
.gma-touch__btn--blue { background: var(--gma-blue); }
.gma-touch__btn--blue:hover { background: var(--gma-white); color: var(--gma-blue); border-color: var(--gma-blue); }

/* ===== SUPPLEMENTS ===== */
.gma-supp__viewport { overflow: hidden; }
.gma-supp__track { display: flex; gap: 20px; transition: transform 0.45s ease; will-change: transform; }
.gma-supp__card {
  flex: 0 0 calc((100% - 80px) / 5); background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex; flex-direction: column;
}
.gma-supp__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.gma-supp__img { aspect-ratio: 1 / 1; background: var(--bg-surface); display: flex; align-items: center; justify-content: center; padding: 18px; }
.gma-supp__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.gma-supp__body { padding: 18px 16px 22px; text-align: center; }
.gma-supp__cat {
  font-family: 'Teko', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gma-red); margin-bottom: 6px;
}
.gma-supp__name {
  font-family: 'Teko', sans-serif; font-size: 17px; font-weight: 600;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--text-primary); line-height: 1.15; margin-bottom: 8px;
}
.gma-supp__price { font-family: 'Teko', sans-serif; font-size: 19px; font-weight: 700; color: var(--gma-red); margin-bottom: 12px; }
.gma-supp__shop {
  display: inline-block; font-family: 'Teko', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 7px 16px; border-radius: 6px; text-decoration: none;
  color: var(--gma-red); border: 1px solid rgba(196,30,42,0.4); transition: all 0.25s ease;
}
.gma-supp__shop:hover { background: var(--gma-red); color: var(--gma-white); }

/* ===== FAQ ===== */
.gma-faq__list { max-width: 860px; margin: 0 auto; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.gma-faq__item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.gma-faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left;
  font-family: 'Inter', sans-serif; font-size: 15.5px; font-weight: 500; color: var(--text-primary);
  transition: background 0.2s ease;
}
.gma-faq__q:hover { background: var(--bg-surface); }
.gma-faq__icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.gma-faq__icon::before, .gma-faq__icon::after {
  content: ''; position: absolute; background: var(--gma-red); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease;
}
.gma-faq__icon::before { top: 8px; left: 0; width: 18px; height: 2px; }
.gma-faq__icon::after { top: 0; left: 8px; width: 2px; height: 18px; }
.gma-faq__item.open .gma-faq__icon::after { transform: rotate(90deg); opacity: 0; }
.gma-faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.gma-faq__item.open .gma-faq__a { max-height: 640px; }
.gma-faq__a-inner { padding: 0 24px 22px; font-size: 14.5px; line-height: 1.7; color: var(--text-body); }
.gma-faq__a-inner a { color: var(--gma-blue); }

/* ===== FOOTER — red gradient, ASP pattern =====
   The last section fades down into red (.gma-sec--fade-footer), a thin
   divider marks the seam, then the footer sits on a red gradient. */
/* Long, eased ramp — a short fade reads as a hard seam. Extra bottom padding
   keeps the section's own content clear of the deep end of the gradient. */
/* Long eased fade into the red footer.
   The gradient spans the WHOLE section (inset:0) rather than a fixed height —
   a fixed 620px layer gets clipped by `overflow:hidden` on any shorter section,
   which starts the ramp part-way through and leaves a hard line at the seam. */
.gma-sec--fade-footer { padding-bottom: 150px; min-height: 640px; }
.gma-sec--fade-footer::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(155,27,27,0)    0%,
    rgba(155,27,27,0.02) 12%,
    rgba(155,27,27,0.06) 24%,
    rgba(155,27,27,0.13) 36%,
    rgba(155,27,27,0.24) 48%,
    rgba(155,27,27,0.39) 60%,
    rgba(155,27,27,0.58) 72%,
    rgba(155,27,27,0.79) 85%,
    rgba(155,27,27,0.94) 94%,
    #9B1B1B              100%);
  pointer-events: none; z-index: 1;
}
/* CTA sitting inside the fade needs its own edge or it dissolves into the red */
.gma-sec--fade-footer .btn-primary {
  border-color: rgba(255,255,255,0.9);
  box-shadow: 0 6px 22px rgba(0,0,0,0.14);
}
.gma-sec--fade-footer .btn-primary:hover {
  background: var(--gma-white); color: var(--gma-red); border-color: var(--gma-white);
}
/* The last section fades into the red footer — blue disappears into it, so the
   secondary CTA goes solid white with red copy and a red border. */
.gma-sec--fade-footer .btn-secondary {
  background: var(--gma-white); color: var(--gma-red); border-color: var(--gma-red);
  box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}
.gma-sec--fade-footer .btn-secondary:hover {
  background: var(--gma-red); color: var(--gma-white); border-color: var(--gma-white);
  box-shadow: 0 8px 26px rgba(0,0,0,0.20);
}
.gma-sec--fade-footer .btn-secondary svg { fill: currentColor; }
.gma-footer {
  background: linear-gradient(to bottom, #9B1B1B 0%, #B01D26 30%, #C41E2A 62%, #8E1620 100%);
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 64px 24px 24px; position: relative;
}
.gma-footer__inner { max-width: 1200px; margin: 0 auto; }
.gma-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.gma-footer__brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; text-decoration: none; }
/* White disc behind the mark — the logo is red and would vanish on the red footer */
.gma-footer__brand-logo img {
  width: 52px; height: 52px; object-fit: contain;
  background: var(--gma-white); border-radius: 50%; padding: 5px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}
.gma-footer__brand-name {
  font-family: 'Teko', sans-serif; font-size: 22px; font-weight: 700;
  color: var(--gma-white); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1;
}
.gma-footer__brand-sub {
  display: block; margin-top: 5px;
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: rgba(255,255,255,0.72); line-height: 1.3;
}
.gma-footer__brand-desc { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.80); margin-bottom: 20px; }
.gma-footer__social { display: flex; gap: 12px; }
.gma-footer__social a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.30); display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.gma-footer__social a:hover { border-color: var(--gma-white); background: rgba(255,255,255,0.14); }
.gma-footer__social svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.85); transition: fill 0.2s ease; }
.gma-footer__social a:hover svg { fill: var(--gma-white); }
.gma-footer__heading {
  font-family: 'Teko', sans-serif; font-size: 15px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--gma-white); margin-bottom: 16px;
}
.gma-footer__links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.gma-footer__links a { font-size: 14px; color: rgba(255,255,255,0.80); text-decoration: none; transition: color 0.2s ease; }
.gma-footer__links a:hover { color: var(--gma-white); }
.gma-footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.80); }
.gma-footer__contact-item svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.9); flex-shrink: 0; margin-top: 2px; }
.gma-footer__contact-item a { color: rgba(255,255,255,0.80); text-decoration: none; }
.gma-footer__contact-item a:hover { color: var(--gma-white); }
.gma-footer__cta-btn {
  display: inline-block; margin-top: 20px; background: var(--gma-red); color: var(--gma-white);
  font-family: 'Teko', sans-serif; font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 6px; text-decoration: none;
  border: 2px solid transparent; transition: all 0.3s ease;
}
.gma-footer__cta-btn { background: var(--gma-white); color: var(--gma-red); }
.gma-footer__cta-btn:hover { background: transparent; color: var(--gma-white); border-color: var(--gma-white); transform: translateY(-1px); }
.gma-footer__family { text-align: center; margin-bottom: 24px; }
.gma-footer__family-links { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.gma-footer__family-link {
  font-family: 'Teko', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.78);
  text-decoration: none; transition: color 0.2s ease;
}
.gma-footer__family-link:hover { color: var(--gma-white); }
.gma-footer__family-link--active { color: var(--gma-white); font-weight: 700; }
.gma-footer__divider { height: 1px; background: rgba(255,255,255,0.22); margin-bottom: 20px; }
.gma-footer__bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.gma-footer__copyright { font-size: 12px; color: rgba(255,255,255,0.72); }
.gma-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.gma-footer__legal a { font-size: 12px; color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.2s ease; }
.gma-footer__legal a:hover { color: var(--gma-white); }
.gma-footer__credit { font-size: 12px; color: rgba(255,255,255,0.72); }
.gma-footer__credit a { color: rgba(255,255,255,0.72); text-decoration: none; }
.gma-footer__credit a:hover { color: var(--gma-white); }
.gma-footer__brand-name { color: var(--gma-white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .gma-nav__links, .gma-nav__cta { display: none; }
  .gma-nav__hamburger { display: flex; }
  .gma-why__photos { grid-template-columns: repeat(2, 1fr); }
  .gma-inst__cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .gma-rev__card { flex: 0 0 calc((100% - 24px) / 2); }
  .gma-supp__card { flex: 0 0 calc((100% - 40px) / 3); }
  .gma-touch__grid { grid-template-columns: 1fr; }
  .gma-family__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 40px; }
}
@media (max-width: 768px) {
  .gma-sec, .gma-why, .gma-family { padding: 72px 20px; }
  .gma-why__photos { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; gap: 12px; scrollbar-width: none; }
  .gma-why__photos::-webkit-scrollbar { display: none; }
  .gma-why__photo { flex: 0 0 85%; scroll-snap-align: center; }
  .gma-why__stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gma-why__stat { padding: 18px 12px; }
  .gma-why__stat-number { font-size: 30px; }
  .gma-why__badges { gap: 14px; }
  /* Same swipeable carousel the main site drops to on mobile */
  .gma-family__photos {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; gap: 12px; height: auto;
    padding-bottom: 8px; scrollbar-width: none;
  }
  .gma-family__photos::-webkit-scrollbar { display: none; }
  .gma-family__photo { flex: 0 0 85%; scroll-snap-align: center; aspect-ratio: 4 / 3; }
  .gma-family__photo--large { grid-row: auto; }
  .gma-journey__steps { grid-template-columns: 1fr; }
  .gma-rev__card { flex: 0 0 100%; }
  .gma-supp__card { flex: 0 0 calc((100% - 20px) / 2); }
  .gma-snip__row { flex-direction: column; gap: 4px; }
  .gma-snip__time { min-width: 0; }
  .gma-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .gma-supp__card { flex: 0 0 82%; }
  .gma-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .gma-footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  .gma-rev__track, .gma-supp__track { transition: none !important; }
}
