/* ══════════════════════════════════════════════════════════════
   GSS — Shared Design System (all pages)
   Dark mode only · teal #00C2CB · pale wood · greenery
   ══════════════════════════════════════════════════════════════ */

:root {
  --gss-bg: #04060D;
  --gss-bg-elevated: #0B1018;
  --gss-bg-card: #101822;
  --gss-text: #FFFFFF;
  --gss-text-muted: #B8C0CC;
  --gss-teal: #00C2CB;
  --gss-teal-deep: #0A9AA3;
  --gss-teal-soft: rgba(0, 194, 203, 0.14);
  --gss-wood-pale: #D4C2A8;
  --gss-wood-sand: #C4A882;
  --gss-green-leaf: #5B8C5A;
  --gss-green-sage: #7D9B76;
  --gss-border: rgba(255, 255, 255, 0.08);
  --gss-glow-teal: 0 0 24px rgba(0, 194, 203, 0.28);
  --gss-section-space: clamp(4.5rem, 7vw, 6.5rem);
}

/* Local fonts remove the extra Google Fonts request chain on mobile. */
@font-face {
  font-family: 'Anton';
  src: url('/assets/fonts/anton-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('/assets/fonts/jost-latin.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'JetBrains Mono';
  src: url('/assets/fonts/jetbrains-mono-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

html { scroll-behavior: smooth; }
body {
  background: var(--gss-bg);
  color: var(--gss-text);
  font-family: 'Jost', sans-serif;
  overflow-x: hidden;
}

/* Reserve a clear landing zone above the fixed chat control. */
footer { padding-bottom: 8rem !important; }

/* Keep the review embed integrated with the site's primary canvas. */
.reviews-section {
  background: var(--gss-bg);
  padding-top: clamp(2rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.gss-reviews-widget { background: var(--gss-bg); }
.gss-reviews-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 0 2rem;
}
.gss-reviews-kicker {
  color: var(--gss-text);
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 600;
}
.gss-reviews-rating { display: flex; align-items: center; gap: .8rem; margin-top: .6rem; color: var(--gss-text-muted); }
.gss-reviews-rating strong { color: var(--gss-teal); font-family: 'Anton', sans-serif; font-size: 2rem; font-weight: 400; }
.gss-review-stars { color: var(--gss-wood-sand); letter-spacing: .08em; }
.gss-review-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: .8rem 1.4rem;
  border-radius: .75rem;
  background: var(--gss-teal);
  color: var(--gss-bg);
  font-weight: 700;
  transition: background-color .2s ease, transform .2s ease;
}
.gss-review-cta:hover { background: #25d6de; transform: translateY(-2px); }
.gss-reviews-carousel { display: grid; grid-template-columns: 44px minmax(0, 1fr) 44px; align-items: center; gap: .75rem; }
.gss-reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  overflow-x: auto;
  padding: .25rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gss-reviews-track::-webkit-scrollbar { display: none; }
.gss-review-card {
  flex: 0 0 min(360px, calc(100vw - 9rem));
  display: flex;
  flex-direction: column;
  height: 240px;
  padding: 1.25rem;
  border: 1px solid var(--gss-border);
  border-radius: 1rem;
  background: var(--gss-bg-elevated);
  scroll-snap-align: start;
}
.gss-review-card.is-expanded { height: auto; min-height: 240px; }
.gss-review-card-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.gss-review-card-score { color: var(--gss-wood-sand); font-weight: 700; }
.gss-review-card time { color: var(--gss-text-muted); font-size: .78rem; white-space: nowrap; }
.gss-review-copy {
  display: -webkit-box;
  margin-top: .85rem;
  overflow: hidden;
  color: var(--gss-text);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.gss-review-card.is-expanded .gss-review-copy {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}
.gss-review-more {
  align-self: flex-start;
  min-height: 44px;
  margin-top: .2rem;
  color: var(--gss-teal);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
  cursor: pointer;
}
.gss-review-more:hover { color: #fff; }
.gss-review-more:focus-visible { outline: 2px solid var(--gss-teal); outline-offset: 3px; }
.gss-review-author { margin-top: auto; color: var(--gss-teal); font-family: 'JetBrains Mono', monospace; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.gss-review-card.is-expanded .gss-review-author { margin-top: .9rem; }
.gss-review-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 194, 203, .45);
  border-radius: 999px;
  color: var(--gss-teal);
  font-size: 1.25rem;
}
.gss-review-arrow:hover { background: var(--gss-teal-soft); }
.gss-reviews-loading, .gss-reviews-status { color: var(--gss-text-muted); }
.gss-reviews-status { min-height: 1.5rem; margin-top: 1rem; text-align: center; font-size: .8rem; }
@media (max-width: 640px) {
  .gss-reviews-summary { align-items: flex-start; flex-direction: column; }
  .gss-reviews-rating { flex-wrap: wrap; }
  .gss-reviews-carousel { grid-template-columns: 1fr; }
  .gss-review-arrow { display: none; }
  .gss-review-card { flex-basis: calc(100vw - 3.5rem); }
}

/* The service-area link meets the 24px mobile tap-target minimum. */
.footer-service-area a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

/* Full-width navigation is transparent at rest and gains its surface on scroll. */
.site-nav {
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transition: background-color .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}
.site-header {
  background: transparent;
  transition: background-color .28s ease, box-shadow .28s ease;
}
html:not(.has-scrolled) .site-header,
html:not(.has-scrolled) .site-nav {
  background: transparent !important;
  border-bottom-color: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.site-header.is-scrolled,
.has-scrolled .site-header {
  background: rgba(4, 6, 13, .78);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}
.site-header.menu-open {
  background: rgba(4, 6, 13, .96);
}
.site-header.is-scrolled .site-nav,
.site-header.menu-open .site-nav,
.has-scrolled .site-header .site-nav {
  background: transparent;
  border-bottom-color: rgba(255, 255, 255, .09);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

/* Mobile navigation: three-line trigger with a staggered cascading panel. */
.mobile-menu-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(0, 194, 203, .58);
  border-radius: 50%;
  background: rgba(4, 6, 13, .18);
  cursor: pointer;
}
.mobile-menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--gss-teal);
  transition: top .25s ease, transform .25s ease, opacity .2s ease;
}
.mobile-menu-toggle span:nth-child(1) { top: 14px; }
.mobile-menu-toggle span:nth-child(2) { top: 21px; }
.mobile-menu-toggle span:nth-child(3) { top: 28px; }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: translateX(8px); }
.mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }
.mobile-cascade-menu {
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  max-height: calc(100svh - 112px);
  overflow-y: auto;
  padding: .75rem 1.25rem 1.25rem;
  background: rgba(4, 6, 13, .98);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(0, 194, 203, .32);
  box-shadow: 0 26px 48px rgba(0, 0, 0, .48);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}
.mobile-cascade-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-cascade-links { display: grid; }
.mobile-cascade-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: .8rem .25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: var(--gss-text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-14px);
  transition: color .2s ease, opacity .28s ease, transform .28s ease;
}
.mobile-cascade-link.active { color: var(--gss-teal); }
.mobile-cascade-link:hover,
.mobile-cascade-link:focus { color: #fff; }
.mobile-services-toggle {
  width: 100%;
  justify-content: space-between;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.mobile-services-indicator {
  width: 8px;
  height: 8px;
  margin-right: .35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .24s ease;
}
.mobile-services-toggle[aria-expanded="true"] .mobile-services-indicator {
  transform: translateY(2px) rotate(225deg);
}
.mobile-services-submenu {
  display: grid;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  border-bottom: 1px solid transparent;
  transition: max-height .36s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, transform .3s ease, border-color .22s ease;
}
.mobile-services-submenu.open {
  max-height: 430px;
  opacity: 1;
  transform: translateY(0);
  border-bottom-color: rgba(255, 255, 255, .08);
}
.mobile-services-sublink {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: .7rem .5rem .7rem 1.15rem;
  color: var(--gss-text-muted);
  border-left: 1px solid rgba(0, 194, 203, .38);
  font-family: 'JetBrains Mono', monospace;
  font-size: .67rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-10px);
  transition: color .2s ease, background-color .2s ease, opacity .24s ease, transform .24s ease;
}
.mobile-services-sublink:hover,
.mobile-services-sublink:focus-visible,
.mobile-services-sublink.active {
  color: var(--gss-teal);
  background: rgba(0, 194, 203, .06);
  outline: none;
}
.mobile-services-submenu.open .mobile-services-sublink { opacity: 1; transform: translateX(0); }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(1) { transition-delay: .03s; }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(2) { transition-delay: .06s; }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(3) { transition-delay: .09s; }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(4) { transition-delay: .12s; }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(5) { transition-delay: .15s; }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(6) { transition-delay: .18s; }
.mobile-services-submenu.open .mobile-services-sublink:nth-child(7) { transition-delay: .21s; }
.mobile-cascade-menu.open .mobile-cascade-link { opacity: 1; transform: translateX(0); }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(1) { transition-delay: .03s; }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(2) { transition-delay: .06s; }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(3) { transition-delay: .09s; }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(4) { transition-delay: .12s; }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(5) { transition-delay: .15s; }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(6) { transition-delay: .18s; }
.mobile-cascade-menu.open .mobile-cascade-link:nth-child(7) { transition-delay: .21s; }
.desktop-header-cta { display: none !important; }
.mobile-cascade-cta {
  justify-content: center;
  min-height: 52px;
  margin-top: .85rem;
  padding: .9rem 1rem;
  border: 1px solid rgba(0, 194, 203, .85);
  border-radius: 2px;
  background: linear-gradient(180deg, rgba(0, 194, 203, .92), rgba(0, 166, 174, .92));
  color: #04060D;
  font-weight: 800;
  box-shadow: 0 10px 28px -12px rgba(0, 194, 203, .7);
}
.mobile-cascade-cta:hover,
.mobile-cascade-cta:focus-visible { color: #04060D; background: #2bd5dc; outline: 2px solid #fff; outline-offset: 3px; }
@media (min-width: 1024px) {
  .desktop-header-cta { display: inline-flex !important; }
}

/* The hero begins below the announcement and continues behind the transparent nav. */
.home-video-hero {
  margin-top: 36px;
  min-height: calc(100svh - 36px);
  background: #04060D;
}
.home-video-hero > video { opacity: 1; filter: none; transform: none; background: #04060D; }

/* One-time golf-ball reveal layered over the Golf Fitness hero. */
.golf-ball-hero-animation {
  position: absolute;
  z-index: 4;
  top: 12%;
  right: calc(-13% + 175px);
  width: min(58vw, 900px);
  height: 70%;
  object-fit: contain;
  object-position: center right;
  pointer-events: none;
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .38));
}
.golf-ball-hero-mobile { display: none; }
@media (max-width: 767px) {
  .golf-ball-hero-animation { display: none; }
  .golf-ball-hero-mobile {
    display: block;
    width: min(82vw, 360px);
    height: auto;
    margin: .9rem auto 0;
    filter: drop-shadow(0 22px 24px rgba(0, 0, 0, .42));
  }
}
.home-hero-teal-wash {
  background: rgba(0, 194, 203, 0.10);
  mix-blend-mode: color;
}
.home-hero-copy {
  width: min(360px, 29vw);
  margin-right: auto;
  text-shadow: 0 2px 12px rgba(0,0,0,.9), 0 1px 3px #000;
}
.home-hero-copy h1 {
  font-size: clamp(2.75rem, 4.05vw, 3.9rem);
  line-height: .95;
}
.award-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;
  text-decoration: none;
}
.award-lockup img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 50%;
  transition: transform .25s ease;
}
.award-lockup:hover img,
.award-lockup:focus-visible img { transform: translateY(-2px) scale(1.025); }
.award-lockup:focus-visible { outline: 2px solid var(--gss-teal); outline-offset: 5px; }
.award-lockup span {
  display: block;
  margin-top: .55rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: .58rem;
  line-height: 1.35;
  letter-spacing: .04em;
}
.award-lockup strong {
  display: block;
  margin-bottom: .16rem;
  color: var(--gss-teal);
  font-family: 'Anton', sans-serif;
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.award-lockup-hero {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 5;
  width: clamp(112px, 11vw, 158px);
  padding: .65rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: .8rem;
  background: rgba(4,6,13,.68);
  backdrop-filter: blur(8px);
}
.award-lockup-footer { width: 132px; margin-top: 1.35rem; }
.award-lockup-footer span { color: rgba(255,255,255,.74); }
.site-section { padding-top: var(--gss-section-space); padding-bottom: var(--gss-section-space); }
@media (min-width: 1024px) {
  .home-video-hero {
    margin-top: 36px;
    min-height: calc(100svh - 36px);
  }
}
@media (max-width: 767px) {
  .home-hero-copy { width: min(88vw, 430px); }
  .home-hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4.25rem); }
  .award-lockup-hero { position: static; width: 110px; margin: .85rem 0 0 auto; padding: .45rem; }
  .award-lockup-hero span { font-size: .48rem; }
  .award-lockup-hero strong { font-size: .72rem; }
}
::selection { background: var(--gss-teal); color: #04060D; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #04060D; }
::-webkit-scrollbar-thumb { background: #14202c; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: var(--gss-teal-deep); }

.font-display { font-family: 'Anton', sans-serif; letter-spacing: 0.01em; }
.font-mono-hud { font-family: 'JetBrains Mono', monospace; }

/* ── Hero: brightened + slow Ken Burns zoom ── */
.hero-img {
  filter: brightness(1.14) saturate(1.06);
  transform-origin: 50% 55%;
  animation: hero-zoom 32s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hero-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* ── Announcement bar ── */
/* Moving type is prone to sub-pixel blur, particularly on high-density screens. */
.marquee-track {
  display: flex;
  width: 100%;
  justify-content: center;
  animation: none;
  transform: none;
}
.marquee-track span { display: none; white-space: nowrap; }
.marquee-track span:first-child { display: inline; }
@media (max-width: 479px) {
  .marquee-track {
    font-size: 9.5px !important;
    letter-spacing: .12em;
  }
  .marquee-track span:first-child { padding-inline: .75rem; }
}

/* ── Reveal on scroll ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }

/* ── SQUARE LIQUID GLASS BUTTONS (iOS-style) ── */
.btn-glass,
.btn-primary-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 2px;
  padding: 1rem 2.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  backdrop-filter: blur(18px) saturate(170%);
  transition: box-shadow 0.28s ease, background 0.28s ease, border-color 0.28s ease, color 0.28s ease, transform 0.28s ease;
}
/* specular top highlight — the liquid sheen */
.btn-glass::before,
.btn-primary-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 28%, transparent 55%);
  pointer-events: none;
}
/* 1px liquid gradient stroke */
.btn-glass::after,
.btn-primary-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(255,255,255,0.5), rgba(255,255,255,0.12) 35%, rgba(0,194,203,0.35) 70%, rgba(255,255,255,0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.btn-glass {
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-glass:hover {
  background: rgba(0, 194, 203, 0.10);
  color: var(--gss-teal);
  box-shadow: 0 8px 28px -10px rgba(0,194,203,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary-glass {
  background: linear-gradient(180deg, rgba(0,194,203,0.85), rgba(0,166,174,0.85));
  color: #04060D;
  box-shadow: 0 10px 30px -10px rgba(0,194,203,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}
.btn-primary-glass:hover {
  background: linear-gradient(180deg, rgba(41,214,222,0.95), rgba(0,194,203,0.95));
  box-shadow: 0 14px 40px -10px rgba(0,194,203,0.6), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary-glass::before { background: linear-gradient(180deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.08) 30%, transparent 55%); }
.btn-sm { padding: 0.7rem 1.55rem; font-size: 12px; font-weight: 700; }

@media (hover: hover) and (pointer: fine) {
  .btn-glass::before,
  .btn-primary-glass::before {
    inset: 0 auto 0 0;
    width: 62%;
    background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.48) 48%, rgba(255,255,255,0.12) 62%, transparent 82%);
    transform: translateX(-170%);
  }
  .btn-glass:hover::before,
  .btn-primary-glass:hover::before { animation: button-shimmer 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
}
@keyframes button-shimmer {
  to { transform: translateX(260%); }
}

/* ── Glass card ── */
.glass {
  background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012));
  border: 1px solid var(--gss-border);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

/* ── Services navigation ── */
.service-menu { position: relative; padding: 1.75rem 0; }
.service-menu > a::after {
  content: '';
  width: 6px;
  height: 6px;
  margin-left: .5rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.service-menu:hover > a::after,
.service-menu:focus-within > a::after {
  transform: translateY(2px) rotate(225deg);
}
.service-menu-panel {
  position: absolute;
  top: calc(100% - 0.45rem);
  left: 50%;
  width: 250px;
  padding: 0.65rem;
  background: rgba(11, 16, 24, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.service-menu:hover .service-menu-panel,
.service-menu:focus-within .service-menu-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.service-menu-link {
  display: block;
  padding: 0.75rem 0.85rem;
  color: var(--gss-text-muted);
  font-size: 10px;
  line-height: 1.35;
  letter-spacing: 0.13em;
  transition: color 0.2s ease, background 0.2s ease;
}
.service-menu-link:hover,
.service-menu-link:focus { color: var(--gss-teal); background: rgba(0, 194, 203, 0.07); outline: none; }
.service-menu-all { color: #fff; border-bottom: 1px solid rgba(255, 255, 255, 0.1); margin-bottom: 0.35rem; }

@media (max-width: 359px) {
  .service-hero-title {
    font-size: clamp(2.85rem, 15vw, 3.75rem) !important;
  }
}

.tpi-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.tpi-mark img { width: 56px; height: 56px; }
.tpi-mark:hover,
.tpi-mark:focus { border-color: rgba(0, 194, 203, 0.55); background: rgba(0, 194, 203, 0.08); outline: none; }

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.credential-card {
  min-height: 118px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  color: var(--gss-text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.credential-card:hover,
.credential-card:focus { border-color: rgba(0, 194, 203, 0.5); background: rgba(0, 194, 203, 0.06); color: #fff; outline: none; }
.credential-card img { width: 50px; height: 50px; object-fit: contain; }
.credential-card img.credential-logo-wide { width: 86px; }
.service-coach-section { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.service-coach-card { max-width: 1040px; margin-inline: auto; }
.service-coach-media { height: 340px; min-height: 0; }
.service-coach-media .team-cutout {
  width: 191px;
  max-width: 191px;
  height: 340px;
  aspect-ratio: auto;
  flex: 0 0 191px;
}
.service-coach-copy { padding: 1.5rem 2rem; }
.service-coach-card .credential-card { min-height: 74px; padding: 0.45rem; gap: 0.3rem; }
.service-coach-card .credential-card img { width: 34px; height: 34px; }
.service-coach-card .credential-wordmark { font-size: 1.2rem; }
@media (max-width: 1023px) {
  .service-coach-media { height: 320px; }
  .service-coach-media .team-cutout { width: 180px; max-width: 180px; height: 320px; flex-basis: 180px; }
  .service-coach-copy { padding: 1.5rem; }
  .service-coach-media { background: #04060D !important; }
}
.credential-wordmark {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #fff;
}
@media (max-width: 620px) {
  .credential-grid { grid-template-columns: 1fr; }
  .credential-card { min-height: 94px; flex-direction: row; justify-content: flex-start; text-align: left; }
}

/* ── SEO article library ── */
.article-shell { padding-top: 0; }
.article-hero { position: relative; min-height: 72svh; display: flex; align-items: end; overflow: hidden; }
.article-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.article-hero-shade { position: absolute; inset: 0; background: linear-gradient(to top, var(--gss-bg) 2%, rgba(4,6,13,.68) 55%, rgba(4,6,13,.35)); }
.article-hero-copy { position: relative; z-index: 1; width: min(1180px, calc(100% - 3rem)); margin: 0 auto; padding: 12rem 0 5rem; }
.article-hero h1 { max-width: 980px; margin-top: 1rem; font-family: 'Anton', sans-serif; font-size: clamp(3rem, 7vw, 6.8rem); line-height: .98; text-transform: uppercase; }
.article-byline { margin-top: 1.5rem; color: var(--gss-text-muted); font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.article-content { width: min(780px, calc(100% - 3rem)); margin: 0 auto; padding: 5rem 0 7rem; color: var(--gss-text-muted); font-size: 1.08rem; line-height: 1.85; }
.article-content > p { margin: 1.35rem 0; }
.article-content h2 { margin: 4rem 0 1.15rem; color: #fff; font-family: 'Anton', sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; text-transform: uppercase; }
.article-content h3 { margin: 2.6rem 0 .8rem; color: #fff; font-family: 'Anton', sans-serif; font-size: 1.45rem; text-transform: uppercase; }
.article-content ul { margin: 1.25rem 0; padding-left: 1.25rem; list-style: none; }
.article-content li { position: relative; margin: .7rem 0; padding-left: 1rem; }
.article-content li::before { content: '+'; position: absolute; left: -1rem; color: var(--gss-teal); }
.article-content strong { color: #fff; font-weight: 600; }
.article-table-wrap { margin: 2rem 0; overflow-x: auto; border: 1px solid var(--gss-border); }
.article-content table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: .9rem; }
.article-content th, .article-content td { padding: 1rem; text-align: left; border-bottom: 1px solid var(--gss-border); }
.article-content th { color: var(--gss-teal); font-family: 'JetBrains Mono', monospace; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.article-cta { margin: 5rem 0 2rem; padding: 2rem; border: 1px solid rgba(0,194,203,.3); background: rgba(0,194,203,.07); }
.article-cta h2 { margin-top: 0; }
.article-cta p { margin: 1rem 0 1.8rem; }
.article-disclaimer { margin-top: 2rem !important; padding-top: 1.5rem; border-top: 1px solid var(--gss-border); font-size: .82rem; }

/* Mobile editorial layout: keep breadcrumbs, headlines, and article chrome in
   distinct lanes while preserving comfortable reading measure. */
@media (max-width: 767px) {
  .insights-index-hero {
    padding-top: 10.75rem !important;
    padding-bottom: 3.5rem !important;
  }
  .insights-page-main > .breadcrumb-nav { top: 8rem; }
  .insights-index-hero h1 {
    max-width: 8ch;
    font-size: clamp(2.75rem, 13vw, 3.35rem) !important;
    line-height: .92;
    text-wrap: balance;
  }
  .insights-index-hero p:last-child {
    margin-top: 1.5rem !important;
    line-height: 1.7;
  }
  .insights-index-grid { padding-bottom: 6rem !important; }
  .insights-card-media { height: 11rem !important; }
  .insights-card-body { padding: 1.25rem !important; }
  .insights-card-meta {
    display: grid !important;
    justify-content: stretch !important;
    gap: .45rem !important;
  }
  .insights-card h2 {
    margin-top: .85rem !important;
    font-size: 1.45rem !important;
    line-height: 1.08 !important;
    text-wrap: balance;
  }
  .insights-card-description {
    display: -webkit-box;
    margin-top: .85rem !important;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
  .insights-card-body > span { margin-top: 1.15rem !important; }

  .article-page-main > .breadcrumb-nav {
    top: 8rem;
    row-gap: .35rem;
  }
  .article-page-main > .breadcrumb-nav a[href="/blog/"] + span[aria-hidden="true"],
  .article-page-main > .breadcrumb-nav [aria-current="page"] { display: none; }
  .article-hero {
    min-height: 0;
    align-items: stretch;
  }
  .article-hero-copy {
    width: calc(100% - 3rem);
    padding: 10.75rem 0 2.75rem;
  }
  .article-hero h1 {
    margin-top: .8rem;
    font-size: clamp(2.35rem, 11.5vw, 3rem);
    line-height: .96;
    text-wrap: balance;
  }
  .article-byline {
    margin-top: 1.15rem;
    font-size: .66rem !important;
    line-height: 1.7;
    letter-spacing: .1em;
  }
  .article-content {
    width: calc(100% - 3rem);
    padding: 3rem 0 5.5rem;
    font-size: 1rem;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }
  .article-content > p { margin: 1.15rem 0; }
  .article-content h2 {
    margin: 3rem 0 1rem;
    font-size: clamp(1.9rem, 9vw, 2.4rem);
    line-height: 1.08;
    text-wrap: balance;
  }
  .article-content h3 {
    margin: 2.15rem 0 .7rem;
    font-size: 1.35rem;
    line-height: 1.15;
  }
  .article-content ul { padding-left: .75rem; }
  .article-table-wrap {
    max-width: 100%;
    margin: 1.5rem 0;
    -webkit-overflow-scrolling: touch;
  }
  .article-content th,
  .article-content td { padding: .8rem; }
  .article-cta {
    margin: 3.5rem 0 1.5rem;
    padding: 1.25rem;
  }
  .article-cta .btn-primary-glass { width: 100%; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .insights-page-main > .breadcrumb-nav { top: 8rem; }
  .article-page-main > .breadcrumb-nav a[href="/blog/"] + span[aria-hidden="true"],
  .article-page-main > .breadcrumb-nav [aria-current="page"] { display: none; }
  .article-hero {
    min-height: 0;
    align-items: stretch;
  }
  .article-hero-copy { padding: 11rem 0 4rem; }
  .article-hero h1 {
    font-size: clamp(3rem, 7vw, 4.5rem);
    text-wrap: balance;
  }
  .article-content { padding: 4rem 0 6rem; }
}

.breadcrumb-nav {
  position: absolute;
  z-index: 30;
  top: 172px;
  left: 50%;
  width: min(1180px, calc(100% - 3rem));
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  color: rgba(255,255,255,.62);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.breadcrumb-nav a:hover { color: var(--gss-teal); }
.breadcrumb-nav [aria-current="page"] { color: rgba(255,255,255,.8); }

/* ── Logo lockup: icon mark + 2-line wordmark ── */
.logo-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.logo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: 48px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  filter: none;
  transition: transform 0.25s ease;
}
.logo-badge::before { display: none; }
.logo-badge:hover {
  filter: none;
  transform: translateY(-1px);
}
.logo-badge img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}
.logo-badge-nav { height: 61px; }
.logo-badge-nav img { height: 61px; width: auto; }
.logo-badge-footer { height: 72px; }
.logo-badge-footer img { height: 72px; width: auto; }

/* Footer columns: explicit grid tracks instead of flex-wrap + justify-between.
   Flex-wrap justifies each wrapped row independently, so with 5 unequal-width
   columns the second row (Legal, Follow) ended up spread across the full
   width with a huge gap while row one packed differently - nothing lined up.
   A real grid keeps every column in a fixed track at every breakpoint. */
.footer-columns { position: relative; z-index: 1; grid-template-columns: 1fr; }
.footer-columns > :first-child { grid-column: 1 / -1; }
@media (min-width: 640px) {
  .footer-columns { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-columns { grid-template-columns: repeat(5, 1fr); }
  .footer-columns > :first-child { grid-column: auto; }
}
.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  min-width: 0;
}
.logo-wordmark-top {
  font-family: 'Anton', sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.logo-wordmark-bottom {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gss-teal);
  white-space: nowrap;
}
.logo-wordmark-footer { line-height: 1.3; }
@media (max-width: 420px) {
  .logo-wordmark-bottom { font-size: 0.62rem; letter-spacing: 0.04em; }
  .logo-wordmark-top { font-size: 1rem; }
  .logo-badge-nav { height: 52px; }
  .logo-badge-nav img { height: 52px; }
}

/* ── Wood + sage accents ── */
.wood-hairline {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gss-wood-sand) 18%, var(--gss-wood-pale) 50%, var(--gss-wood-sand) 82%, transparent);
  opacity: 0.5;
}
.sage-dot { color: var(--gss-green-sage); }

/* ── Angled pillar cards ── */
.tilt-card {
  isolation: isolate;
  transform: skewY(-3deg);
  transition: transform 0.5s cubic-bezier(0.22,1,0.36,1), box-shadow 0.5s ease;
  box-shadow: inset 0 0 0 1px rgba(0,194,203,0.22);
}
.tilt-card:hover {
  transform: skewY(-3deg) translateY(-6px);
  box-shadow: inset 0 0 0 1px rgba(0,194,203,0.55), 0 24px 48px -18px rgba(0,194,203,0.22);
}
.tilt-card .tilt-inner { transform: skewY(3deg); z-index: 2; }

/* A brief specular sweep gives the feature cards a tactile hover response. */
.tilt-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 35%, rgba(255,255,255,0.22) 48%, rgba(0,194,203,0.18) 52%, transparent 65%);
  transform: translateX(-130%);
}
@media (hover: hover) and (pointer: fine) {
  .tilt-card:hover::after { animation: card-shimmer 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }
}
@keyframes card-shimmer {
  to { transform: translateX(130%); }
}

/* ── Watermark ── */
.watermark {
  left: 50%;
  bottom: 1rem;
  z-index: 0;
  transform: translateX(-50%);
  font-family: 'Anton', sans-serif;
  color: rgba(0,194,203,0.018);
  -webkit-text-stroke: 1px rgba(0,194,203,0.14);
  user-select: none;
  pointer-events: none;
  line-height: 0.8;
}

/* ── Grain ── */
.grain::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 60;
  mix-blend-mode: overlay;
}

/* ── Team portraits — the 9:16 cutout shell is retained for a future video return ── */
.team-cutout {
  position: relative;
  aspect-ratio: 9 / 16;
  width: 100%;
  max-width: 340px;
  background: transparent;
}
.team-cutout::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: radial-gradient(60% 55% at 50% 88%, rgba(0,194,203,0.16), transparent 70%);
  filter: blur(10px);
  pointer-events: none;
}
.team-trainer-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.45));
}

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--gss-border); }
.faq-q { cursor: pointer; transition: color 0.2s ease; }
.faq-q:hover { color: var(--gss-teal); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22,1,0.36,1); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-item.open .faq-chevron { transform: rotate(45deg); color: var(--gss-teal); }
.faq-chevron { transition: transform 0.3s ease, color 0.3s ease; }

/* ── Chatbot FAB ── */
.chat-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 88px;
  height: 88px;
  border: 2px solid var(--gss-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(0,194,203,.18), 0 0 26px rgba(0,194,203,.24);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1), box-shadow 0.3s ease, opacity .2s ease;
}
.mobile-menu-active .chat-fab {
  opacity: 0;
  pointer-events: none;
  transform: scale(.82);
}
.fab-open-lockup {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  gap: 3px;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.fab-open-lockup img { display: block; flex: 0 0 41px; width: 60px; height: 41px; object-fit: contain; }
.fab-silver-label {
  display: block;
  flex: 0 0 16px;
  line-height: 16px;
  color: #dce3e7;
  background: linear-gradient(110deg, #747d84 0%, #f8fbfc 28%, #9aa3a9 52%, #ffffff 72%, #7b858b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.7));
}
.chat-fab::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 62%;
  border-radius: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255,255,255,0.48) 48%, rgba(255,255,255,0.12) 62%, transparent 82%);
  transform: translateX(-170%);
  animation: fab-button-shimmer 4.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  pointer-events: none;
  z-index: 2;
}
.chat-fab::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(0,194,203,.42);
  pointer-events: none;
}
.chat-fab .aura {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0,194,203,0.35), transparent 70%);
  display: none;
  pointer-events: none;
  z-index: -1;
}
.chat-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 0 0 1px rgba(0,194,203,.36), 0 0 38px rgba(0,194,203,.55); }
.chat-fab:active { transform: translateY(0) scale(0.97); }
@keyframes fab-button-shimmer {
  0%, 12% { transform: translateX(-170%); }
  82%, 100% { transform: translateX(260%); }
}
@keyframes aura-pulse { 0%,100% { opacity: 0.55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.18); } }

/* Chat panel */
.chat-panel {
  position: fixed;
  bottom: 9rem;
  right: 1.5rem;
  z-index: 89;
  width: min(380px, calc(100vw - 3rem));
  border-radius: 2px;
  overflow: hidden;
  background: rgba(11, 16, 24, 0.82);
  -webkit-backdrop-filter: blur(24px) saturate(170%);
  backdrop-filter: blur(24px) saturate(170%);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,194,203,0.12), inset 0 1px 0 rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.22,1,0.36,1), transform 0.32s cubic-bezier(0.22,1,0.36,1);
}
.chat-panel.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat-msg { animation: msg-in 0.35s cubic-bezier(0.22,1,0.36,1) both; }
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.typing-dot { animation: typing 1.1s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.15s; }
.typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes typing { 0%,100% { opacity: 0.3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }

/* ── Insight filter chips ── */
.chip {
  border: 1px solid var(--gss-border);
  border-radius: 2px;
  padding: 0.5rem 1.1rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gss-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
}
.chip:hover { border-color: rgba(0,194,203,0.5); color: var(--gss-teal); }
.chip.active {
  background: rgba(0,194,203,0.12);
  border-color: var(--gss-teal);
  color: var(--gss-teal);
  box-shadow: 0 0 16px rgba(0,194,203,0.18);
}

/* ── Social icon buttons ── */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 2px;
  border: 1px solid var(--gss-border);
  color: var(--gss-text-muted);
  transition: all 0.25s ease;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
}
.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  outline: none;
}
.social-link svg { width: 18px; height: 18px; }
.social-link-instagram:hover,
.social-link-instagram:focus-visible { color: #E4405F; border-color: rgba(228,64,95,.7); box-shadow: 0 0 18px rgba(228,64,95,.35); }
.social-link-facebook:hover,
.social-link-facebook:focus-visible { color: #1877F2; border-color: rgba(24,119,242,.72); box-shadow: 0 0 18px rgba(24,119,242,.38); }
.social-link-google:hover,
.social-link-google:focus-visible { color: #4285F4; border-color: rgba(66,133,244,.72); box-shadow: 0 0 18px rgba(66,133,244,.38); }

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .chat-fab, .chat-fab .aura { animation: none; }
  .hero-img { animation: none; }
  html { scroll-behavior: auto; }
}

/* Mobile compositing is expensive; preserve the design while avoiding full-page GPU effects. */
@media (max-width: 767px) {
  .grain::after { display: none; }
  .glass,
  .btn-glass,
  .btn-primary-glass { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .hero-img { animation: none; will-change: auto; }
  section { content-visibility: auto; contain-intrinsic-size: auto 720px; }
  #top { content-visibility: visible; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL MOTION SYSTEM v2
   Transform/opacity only. Every effect degrades to a static layout
   under prefers-reduced-motion or when JavaScript is unavailable.
   ══════════════════════════════════════════════════════════════ */

/* Directional reveal variants extend the base .reveal contract. */
.reveal-left  { transform: translate3d(-38px, 0, 0); }
.reveal-right { transform: translate3d(38px, 0, 0); }
.reveal-scale { transform: scale(0.955); }
.reveal-blur  { filter: blur(9px); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1), filter .9s cubic-bezier(.22,1,.36,1); }
.reveal-left.in,
.reveal-right.in,
.reveal-scale.in { transform: translate3d(0, 0, 0) scale(1); }
.reveal-blur.in  { filter: blur(0); }

/* Display headings wipe up behind a mask instead of simply fading.
   The extra padding keeps descenders from being clipped. */
.reveal-mask {
  display: block;
  overflow: hidden;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
.reveal-mask > span {
  display: block;
  transform: translate3d(0, 105%, 0);
  transition: transform 1.05s cubic-bezier(.16, 1, .3, 1);
}
.reveal-mask.in > span { transform: translate3d(0, 0, 0); }
.reveal-mask.in > span:nth-child(2) { transition-delay: .09s; }
.reveal-mask.in > span:nth-child(3) { transition-delay: .18s; }
.reveal-mask.in > span:nth-child(4) { transition-delay: .27s; }

/* Any container marked data-stagger cascades its direct children.
   site.js sets --i so the delay scales with position. */
[data-stagger] > * {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
  transition-delay: calc(var(--i, 0) * 70ms);
}
[data-stagger].in > * { opacity: 1; transform: none; }

/* A hairline that draws itself in rather than appearing all at once. */
.rule-draw {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.2s cubic-bezier(.16, 1, .3, 1);
}
.rule-draw.in { transform: scaleX(1); }

/* Scroll progress sits directly under the fixed header. */
.scroll-progress {
  position: fixed;
  top: 36px;
  left: 0;
  z-index: 45;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--gss-teal-deep), var(--gss-teal) 55%, var(--gss-wood-pale));
  box-shadow: 0 0 12px rgba(0, 194, 203, .5);
  pointer-events: none;
  will-change: transform;
}

/* Depth on section backdrops. site.js writes --parallax in pixels. */
[data-parallax] {
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.14);
  will-change: transform;
}

/* Card lift is a shadow and border change, never a size change,
   so neighbouring cards never shift underneath the cursor. */
.lift-card { transition: box-shadow .32s ease, border-color .32s ease, background-color .32s ease; }
.lift-card:hover,
.lift-card:focus-within {
  border-color: rgba(0, 194, 203, .42);
  box-shadow: 0 18px 46px -22px rgba(0, 194, 203, .55), 0 0 0 1px rgba(0, 194, 203, .18) inset;
}

/* ── Hero legibility ──
   The video is untouched. A directional scrim sits between the video and the
   copy so the headline holds contrast without dimming the whole frame. */
.home-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(4, 6, 13, .93) 0%, rgba(4, 6, 13, .82) 22%, rgba(4, 6, 13, .42) 44%, rgba(4, 6, 13, 0) 66%),
    linear-gradient(to top, rgba(4, 6, 13, .88) 0%, rgba(4, 6, 13, 0) 34%);
}
.home-hero-copy {
  width: min(500px, 41vw);
  text-shadow: 0 2px 18px rgba(0, 0, 0, .72);
}
.home-hero-copy h1 { font-size: clamp(2.9rem, 4.6vw, 4.6rem); }
.home-hero-copy p { max-width: 46ch; }
/* Between phone and wide desktop, 41vw squeezes the paragraph to a sliver. */
@media (min-width: 768px) and (max-width: 1279px) {
  .home-hero-copy { width: min(560px, 64vw); }
}
@media (max-width: 767px) {
  .home-hero-copy { width: min(90vw, 460px); }
  .home-hero-scrim {
    background:
      linear-gradient(to top, rgba(4, 6, 13, .95) 0%, rgba(4, 6, 13, .78) 38%, rgba(4, 6, 13, .28) 72%, rgba(4, 6, 13, .12) 100%);
  }
}

/* ── Warm accent ──
   Teal stays the action colour. Wood and sage carry editorial eyebrows so the
   dark palette reads biophilic and premium instead of purely technical. */
.eyebrow-wood { color: var(--gss-wood-pale); }
.eyebrow-sage { color: var(--gss-green-sage); }
.section-index {
  color: var(--gss-wood-sand);
  opacity: .75;
  font-variant-numeric: tabular-nums;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-left, .reveal-right, .reveal-scale, .reveal-blur { transform: none; filter: none; transition: none; }
  .reveal-mask > span { transform: none; transition: none; }
  [data-stagger] > * { opacity: 1; transform: none; transition: none; }
  .rule-draw { transform: none; transition: none; }
  [data-parallax] { transform: none; }
  .scroll-progress { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY CORRECTIONS
   ══════════════════════════════════════════════════════════════ */

/* WCAG 2.2 AA target size (24x24 CSS px). Inline nav and footer links were
   only as tall as their 11px type, so their hit area was roughly 15-17px. */
.site-nav a,
.site-nav .service-menu > a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}
/* `display: flex` (not inline-flex) here so these stay block-level and keep
   stacking one-per-line like the `.block` utility already on these links —
   inline-flex was pulling them into an inline flow and wrecking the footer
   column widths. */
footer a:not(.social-link):not(.btn-glass):not(.btn-primary-glass) {
  display: flex;
  align-items: center;
  min-height: 24px;
}
.footer-legal a { min-height: 24px; }

/* A 10px HUD label is legible as an accent but not as content.
   11px is the floor, and the muted tone is lifted for the smallest sizes. */
.font-mono-hud { font-size: max(11px, 1em); }
.text-gss-muted.font-mono-hud,
.font-mono-hud.text-gss-muted { color: #C7CFDA; }

/* Body copy never drops below 16px on phones. */
@media (max-width: 767px) {
  main p:not(.font-mono-hud) { font-size: max(16px, 1em); }
}

/* ── Classes that were referenced in markup but never defined ── */

/* Secondary CTA on every /locations/ page. It sat next to a styled primary
   button as unstyled inline text until now. */
.btn-ghost-glass {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 1rem 2.25rem;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 2px;
  background: rgba(255, 255, 255, .04);
  color: var(--gss-text);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .28s ease, background-color .28s ease, color .28s ease;
}
.btn-ghost-glass:hover,
.btn-ghost-glass:focus-visible {
  border-color: rgba(0, 194, 203, .75);
  background: var(--gss-teal-soft);
  color: var(--gss-teal);
}

/* Legal pages run long; give the dense list-heavy copy room to breathe. */
.legal-content ul { list-style: disc; padding-left: 1.35rem; }
.legal-content li { margin-bottom: .5rem; }
.legal-content h2 { margin-top: 2.5rem; }
.legal-content h3 { margin-top: 1.75rem; }

/* ══════════════════════════════════════════════════════════════
   MOBILE-FIRST LANDING CORRECTIONS
   Keep the fixed navigation and hero in separate vertical lanes, then
   present the award as compact social proof within the hero flow.
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  .site-header .site-nav {
    height: 68px;
    padding-inline: 1rem;
    background: linear-gradient(180deg, rgba(4, 6, 13, .96), rgba(4, 6, 13, .82)) !important;
    border-bottom-color: rgba(255, 255, 255, .08);
  }
  .logo-lockup { gap: .5rem; }
  .logo-badge-nav,
  .logo-badge-nav img { height: 44px; }
  .logo-wordmark-top { font-size: .95rem; }
  .logo-wordmark-bottom {
    font-size: .58rem;
    letter-spacing: .035em;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border: 0;
    border-radius: 2px;
    background: transparent;
  }
  .mobile-menu-toggle span {
    left: 9px;
    width: 26px;
    height: 3px;
  }
  .mobile-menu-toggle span:nth-child(1) { top: 13px; }
  .mobile-menu-toggle span:nth-child(2) { top: 21px; }
  .mobile-menu-toggle span:nth-child(3) { top: 29px; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1),
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; }
  .mobile-menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
  }
  .mobile-cascade-menu {
    top: 104px;
    max-height: calc(100svh - 104px);
  }

  .home-video-hero {
    align-items: flex-start;
    min-height: calc(100svh - 36px);
  }
  .home-video-hero > video {
    object-fit: contain;
    object-position: center 42%;
    opacity: .44;
    filter: brightness(.8) saturate(.9);
  }
  .home-hero-inner {
    padding-top: 6.5rem;
    padding-bottom: 3rem;
  }
  .home-hero-copy { width: 100%; }
  .home-hero-eyebrow {
    max-width: 28ch;
    margin-bottom: .8rem;
    font-size: 11px !important;
    line-height: 1.5;
    letter-spacing: .22em !important;
  }
  .home-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 11vw, 3rem);
    line-height: .94;
  }
  .home-hero-right > p {
    max-width: 38ch;
    margin-top: 1rem;
    line-height: 1.55;
  }
  .home-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-width: 360px;
    gap: .65rem;
  }
  .home-hero-actions .btn-glass,
  .home-hero-actions .btn-primary-glass {
    min-height: 48px;
    padding: .75rem .55rem;
    font-size: 11px;
    letter-spacing: .1em;
    text-align: center;
  }
  .home-hero-membership {
    min-height: 44px;
    padding-block: .65rem;
    line-height: 1.45;
  }
  .award-lockup-hero {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    width: min(100%, 360px);
    min-height: 92px;
    margin: 1.25rem 0 0;
    padding: .65rem .8rem;
    border-color: rgba(0, 194, 203, .28);
    border-radius: 2px;
    text-align: left;
  }
  .award-lockup-hero img {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }
  .award-lockup-hero span {
    margin: 0 0 0 .8rem;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .03em;
  }
  .award-lockup-hero strong {
    margin-bottom: .2rem;
    font-size: .82rem;
  }

  .chat-fab {
    right: 1rem;
    bottom: 1rem;
    width: 76px;
    height: 76px;
  }
  .fab-open-lockup {
    width: 62px;
    height: 62px;
    gap: 2px;
    font-size: .9rem;
  }
  .fab-open-lockup img {
    flex-basis: 35px;
    width: 52px;
    height: 35px;
  }
  .fab-silver-label {
    flex-basis: 15px;
    line-height: 15px;
  }
}

@media (max-width: 359px) {
  .home-hero-inner { padding-inline: 1rem; }
  .home-hero-actions { grid-template-columns: 1fr; }
  .home-hero-actions .btn-glass,
  .home-hero-actions .btn-primary-glass { width: 100%; }
}

/* Desktop hero: a cinematic, single-path hierarchy. The animation becomes an
   atmospheric background, the welcome line spans the frame, and the award
   occupies its own upper-right quadrant. */
@media (min-width: 1024px) {
  .home-video-hero > video {
    opacity: .44;
    filter: brightness(.8) saturate(.9);
  }
  .home-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100svh - 36px);
    max-width: none;
    padding-top: 8.5rem;
    padding-bottom: 3rem;
    padding-inline: clamp(1.5rem, 4vw, 5rem);
  }
  .home-hero-copy {
    position: static;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(900px, 86vw);
    margin-inline: auto;
    text-align: center;
  }
  .home-hero-left,
  .home-hero-right { width: 100%; }
  .home-hero-eyebrow {
    position: absolute;
    top: 6.75rem;
    left: clamp(2rem, 6vw, 6rem);
    right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2vw, 2rem);
    width: calc(100% - clamp(4rem, 12vw, 12rem)) !important;
    max-width: none !important;
    margin: 0;
    padding-inline: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 12px !important;
    line-height: 1.5;
    letter-spacing: .52em !important;
    text-align: center;
    white-space: nowrap;
  }
  .home-hero-eyebrow::before,
  .home-hero-eyebrow::after {
    content: "";
    flex: 1 1 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 203, .72));
  }
  .home-hero-eyebrow::after {
    background: linear-gradient(90deg, rgba(0, 194, 203, .72), transparent);
  }
  .home-hero-copy h1 {
    width: 100%;
    margin-top: 1.5rem;
    font-size: clamp(3.8rem, 6vw, 5.5rem);
    line-height: .92;
  }
  .home-hero-right > p {
    max-width: 58ch;
    margin: 1.15rem auto 0;
    font-size: 1rem;
    line-height: 1.58;
  }
  .home-hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 540px);
    margin: 1.15rem auto 0;
    gap: .65rem;
  }
  .home-hero-actions .btn-glass,
  .home-hero-actions .btn-primary-glass {
    min-height: 48px;
    padding: .8rem .6rem;
    font-size: 11px;
    letter-spacing: .09em;
    text-align: center;
  }
  .home-hero-membership {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    margin: .7rem auto 0;
    padding-block: .55rem;
    line-height: 1.45;
  }
  .award-lockup-hero {
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    flex-direction: row;
    justify-content: flex-start;
    width: min(260px, 100%);
    min-height: 0;
    margin: .8rem auto 0;
    padding: .65rem .8rem;
    border-color: rgba(0, 194, 203, .2);
    border-radius: 2px;
    background: rgba(4, 6, 13, .48);
    text-align: left;
  }
  .award-lockup-hero img {
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
  }
  .award-lockup-hero span {
    margin: 0 0 0 .8rem;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .03em;
  }
  .award-lockup-hero strong {
    margin-bottom: .2rem;
    font-size: .82rem;
  }
  .home-hero-scrim {
    background:
      radial-gradient(circle at 50% 46%, rgba(4, 6, 13, .5) 0%, rgba(4, 6, 13, .68) 48%, rgba(4, 6, 13, .88) 100%),
      linear-gradient(to top, rgba(4, 6, 13, .9) 0%, rgba(4, 6, 13, .12) 48%, rgba(4, 6, 13, .32) 100%);
  }
}

/* The full desktop nav does not fit cleanly at the narrowest desktop width.
   Keep the simplified menu through 1099px instead of allowing the wordmark,
   links, and CTA to collide. */
@media (min-width: 1024px) and (max-width: 1099px) {
  .desktop-primary-links,
  .desktop-header-cta { display: none !important; }
  .mobile-menu-toggle {
    display: block !important;
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border: 0;
    border-radius: 2px;
    background: transparent;
  }
  .mobile-menu-toggle span {
    left: 9px;
    width: 26px;
    height: 3px;
  }
  .mobile-menu-toggle span:nth-child(1) { top: 13px; }
  .mobile-menu-toggle span:nth-child(2) { top: 21px; }
  .mobile-menu-toggle span:nth-child(3) { top: 29px; }
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1),
  .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; }
  .mobile-cascade-menu { display: block !important; }
}
