/* ==========================================================================
   GetFitDXB — consolidated design-system stylesheet
   Extracted 1:1 from the design_handoff_getfitdxb HTML prototypes.
   Every value (colors, clamp() scales, easings, delays, radii, spacing)
   is preserved exactly as in the mocks. Inline styles from the mocks were
   converted to the classes below; `style-hover` / `style-focus` design-tool
   attributes became :hover / :focus rules.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --accent: #FF5A1F;          /* Dubai-sunset orange */
  --bg: #0C0B09;              /* near-black warm background */
  --surface: #14120F;         /* card surface */
  --fg: #F2EEE8;              /* warm off-white foreground */
  --font-display: 'Anton', sans-serif;
  --font-body: 'Archivo', Helvetica, sans-serif;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);      /* fades / transitions */
  --ease-line: cubic-bezier(0.16, 0.8, 0.2, 1);    /* headline line reveals */
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
html, body { margin: 0; padding: 0; background: #0C0B09; }
body { -webkit-font-smoothing: antialiased; }
::selection { background: #FF5A1F; color: #0C0B09; }
input::placeholder, textarea::placeholder { color: rgba(242,238,232,0.35); }

.gfd-root {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  min-width: 1200px; /* mocks are desktop-only; keep unless adding responsive layer */
}

.gfd-accent { color: var(--accent); }

/* --------------------------------------------------------------------------
   3. Keyframes (exact copies from the mocks)
   -------------------------------------------------------------------------- */
@keyframes gfdKenburns { 0% { transform: scale(1.02) translateY(0); } 100% { transform: scale(1.32) translateY(-3%); } }
@keyframes gfdKbA { 0% { transform: scale(1.0) translate(0, 0); } 100% { transform: scale(1.3) translate(-4%, 3%); } }
@keyframes gfdKbB { 0% { transform: scale(1.3) translate(3.5%, -3%); } 100% { transform: scale(1.0) translate(0, 0); } }
@keyframes gfdLineUp { 0% { transform: translateY(115%); } 100% { transform: translateY(0); } }
@keyframes gfdFadeUp { 0% { opacity: 0; transform: translateY(26px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes gfdFadeDown { 0% { opacity: 0; transform: translateY(-16px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes gfdFadeIn { 0% { opacity: 0; } 100% { opacity: 1; } }
@keyframes gfdMarquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes gfdCue { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }
@keyframes gfdPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* --------------------------------------------------------------------------
   4. Images (ken-burns wrappers, saturation treatment)
   The enhance.js script assigns each .gfd-img inside .gfd-root a varied
   gfdKbA/gfdKbB animation (5–9s, negative delays) so they never sync.
   -------------------------------------------------------------------------- */
.gfd-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gfd-img--sat90 { filter: saturate(0.9); }   /* category / wellness tiles     */
.gfd-img--sat85 { filter: saturate(0.85); }  /* trainer/gym/blog card photos  */
.gfd-img--sat80 { filter: saturate(0.8); }   /* full-bleed CTA / page headers */
.gfd-img--cover { position: absolute; inset: 0; } /* absolutely-filled photo (CTA band, photo header) */
.gfd-img--zoom { transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.gfd-tile:hover .gfd-img--zoom { transform: scale(1.06); }

/* Hero image: dedicated always-running ken-burns (enhance.js skips it) */
.gfd-hero__img { animation: gfdKenburns 9s ease-in-out infinite alternate both; }

/* --------------------------------------------------------------------------
   5. Nav
   -------------------------------------------------------------------------- */
.gfd-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  background: #0C0B09;
  border-bottom: 1px solid rgba(242,238,232,0.12);
  font-family: var(--font-body);
  position: sticky; top: 0; z-index: 50;
}
/* Homepage variant: transparent, laid over the hero photo, animates in */
.gfd-nav--overlay {
  position: relative; top: auto; z-index: 3;
  padding: 28px 56px;
  background: none; border-bottom: none;
  animation: gfdFadeDown 0.9s 0.2s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.gfd-logo {
  font-family: var(--font-display); font-size: 26px; letter-spacing: 0.04em;
  color: var(--fg); text-decoration: none;
  display: flex; align-items: baseline; gap: 2px;
}
.gfd-nav__links { display: flex; align-items: center; gap: 36px; }
.gfd-nav__link {
  color: var(--fg); text-decoration: none;
  font-size: 15px; font-weight: 500; letter-spacing: 0.02em; opacity: 0.85;
}
.gfd-nav__link:hover { opacity: 1; color: var(--accent); }
.gfd-nav__actions { display: flex; align-items: center; gap: 14px; }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.gfd-btn {
  display: inline-block; text-decoration: none; cursor: pointer;
  border-radius: 999px; letter-spacing: 0.01em;
  font-family: var(--font-body);
  border: none;
}

/* Primary: accent pill, dark text, hover -> off-white */
.gfd-btn--primary {
  background: var(--accent); color: #0C0B09;
  font-size: 17px; font-weight: 700; padding: 18px 38px;
  transition: transform 0.2s;
}
.gfd-btn--primary:hover { background: #F2EEE8; }
.gfd-btn--primary.gfd-btn--lift:hover { transform: translateY(-2px); } /* hero CTA */

/* Secondary: 1.5px translucent border, hover -> brighter border */
.gfd-btn--secondary {
  color: var(--fg); font-size: 17px; font-weight: 600;
  padding: 17px 34px; background: none;
  border: 1.5px solid rgba(242,238,232,0.35);
}
.gfd-btn--secondary:hover { border-color: #F2EEE8; }

/* Ghost secondary ("Load more"): hover -> accent border + text */
.gfd-btn--ghost {
  color: var(--fg); font-size: 16px; font-weight: 600;
  padding: 16px 40px; background: none;
  border: 1.5px solid rgba(242,238,232,0.35);
}
.gfd-btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Dark pill (sits on accent surfaces: banner, newsletter) */
.gfd-btn--dark {
  flex-shrink: 0; background: #0C0B09; color: var(--fg);
  font-size: 15px; font-weight: 700; padding: 14px 28px;
}
.gfd-btn--dark:hover { color: var(--accent); }
.gfd-btn--dark-lg { font-size: 16px; padding: 18px 40px; } /* newsletter band */

/* Size modifiers used in the mocks */
.gfd-btn--sm { font-size: 15px; font-weight: 700; padding: 12px 24px; }  /* nav "Join free" */
.gfd-btn--md { font-size: 16px; font-weight: 700; padding: 16px 34px; }  /* CTA band "Contact us" */
.gfd-btn--form { font-size: 16px; font-weight: 700; padding: 16px 40px; } /* contact form submit */
.gfd-btn--book { text-align: center; font-size: 14px; font-weight: 700; padding: 12px 0; } /* schedule row */

/* --------------------------------------------------------------------------
   7. Eyebrows & section headings
   -------------------------------------------------------------------------- */
.gfd-eyebrow {
  margin: 0 0 14px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
}
/* Eyebrow with the 34px accent dash (hero + title bands) */
.gfd-eyebrow--dash { display: flex; align-items: center; gap: 12px; }
.gfd-eyebrow__dash { width: 34px; height: 2px; background: var(--accent); display: inline-block; }

.gfd-h2 {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  font-size: 64px; line-height: 1; text-transform: uppercase; letter-spacing: 0.01em;
}
.gfd-h2--md { font-size: 56px; letter-spacing: normal; } /* schedule / wellness / contact */
.gfd-h2--cta { font-size: 58px; line-height: 1.02; }     /* homepage advertise CTA band */

/* Section header row: heading left, arrow-link right */
.gfd-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px;
}
.gfd-section-head--tight { margin-bottom: 36px; }
.gfd-section-head--stack { display: block; margin-bottom: 56px; } /* heading only (How it works) */

/* "All 18 categories →" style link */
.gfd-link-more {
  color: var(--fg); text-decoration: none; font-size: 16px; font-weight: 600;
  border-bottom: 2px solid var(--accent); padding-bottom: 4px;
}
.gfd-link-more:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   8. Sections / layout containers
   Base container is 1560px max-width with 56px gutters; vertical padding
   varies per section exactly as in the mocks (modifiers below).
   -------------------------------------------------------------------------- */
.gfd-section { max-width: 1560px; margin: 0 auto; box-sizing: border-box; padding: 100px 56px 60px; }
.gfd-section--categories { padding: 120px 56px 60px; } /* first section after hero */
.gfd-section--cards      { padding: 100px 56px 60px; } /* featured pros */
.gfd-section--how        { padding: 100px 56px; }      /* how it works */
.gfd-section--areas      { padding: 60px 56px 100px; }
.gfd-section--banner     { padding: 48px 56px 0; }     /* directory placeholder banner */
.gfd-section--grid       { padding: 32px 56px 80px; }  /* directory card grid */
.gfd-section--schedule   { padding: 72px 56px 40px; }
.gfd-section--wellness   { padding: 60px 56px 90px; }
.gfd-section--featured   { padding: 72px 56px 40px; }  /* blog featured article */
.gfd-section--articles   { padding: 24px 56px 80px; }  /* blog card grid */
.gfd-section--steps      { padding: 90px 56px 40px; }  /* advertise page steps */
.gfd-section--contact    { padding: 70px 56px 110px; }

/* Grids */
.gfd-grid { display: grid; gap: 20px; }
.gfd-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gfd-grid--3 { grid-template-columns: repeat(3, 1fr); }
.gfd-grid--4 { grid-template-columns: repeat(4, 1fr); }
.gfd-grid--steps { grid-template-columns: repeat(3, 1fr); gap: 40px; }

/* Centered footer row of a grid section ("Load more") */
.gfd-load-more { display: flex; justify-content: center; margin-top: 48px; }

/* --------------------------------------------------------------------------
   9. Scroll reveal
   Gated behind html.js (added by enhance.js) so content is fully visible
   with JavaScript disabled. enhance.js adds .is-visible at 12% threshold.
   -------------------------------------------------------------------------- */
html.js .gfd-reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.2,0.7,0.2,1), transform 0.8s cubic-bezier(0.2,0.7,0.2,1);
}
html.js .gfd-reveal--d1 { transition-delay: 0.1s; } /* grids reveal 0.1s after their heading */
html.js .gfd-reveal.is-visible { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   10. Homepage hero
   -------------------------------------------------------------------------- */
.gfd-hero {
  position: relative; height: 100vh; min-height: 760px;
  overflow: hidden; display: flex; flex-direction: column;
}
.gfd-hero__media { position: absolute; inset: 0; overflow: hidden; }
.gfd-hero__shade-x { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,9,0.92) 0%, rgba(12,11,9,0.55) 45%, rgba(12,11,9,0.15) 100%); }
.gfd-hero__shade-y { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,9,0.55) 0%, rgba(12,11,9,0) 30%, rgba(12,11,9,0) 55%, rgba(12,11,9,0.95) 100%); }

.gfd-hero__content {
  position: relative; z-index: 2; flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 56px;
}
.gfd-hero__eyebrow {
  margin: 0 0 22px 6px; font-size: 14px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
  animation: gfdFadeUp 0.8s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.gfd-hero__title {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(88px, 10.5vw, 168px); line-height: 0.94;
  letter-spacing: 0.005em; text-transform: uppercase; color: var(--fg);
}
.gfd-hero__sub {
  margin: 30px 6px 0; max-width: 480px;
  font-size: 19px; line-height: 1.55; color: rgba(242,238,232,0.82);
  animation: gfdFadeUp 0.9s 1.15s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.gfd-hero__ctas {
  display: flex; align-items: center; gap: 18px; margin: 36px 6px 0;
  animation: gfdFadeUp 0.9s 1.3s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.gfd-hero__note {
  font-size: 14px; color: rgba(242,238,232,0.6); margin-left: 6px;
  display: flex; align-items: center; gap: 8px;
}
.gfd-pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  display: inline-block; animation: gfdPulse 1.8s ease-in-out infinite;
}

/* Headline line-reveal wrappers (shared by hero + title bands) */
.gfd-line { display: block; overflow: hidden; padding-right: 8px; }
.gfd-line > span { display: block; }
/* Outlined (stroked) line — always line 2 of the H1 */
.gfd-stroke { color: transparent; -webkit-text-stroke: 2px var(--accent); }

/* Hero timing: 1s, delays 0.55 / 0.7 / 0.85s */
.gfd-hero__title .gfd-line > span { animation: gfdLineUp 1s cubic-bezier(0.16, 0.8, 0.2, 1) both; }
.gfd-hero__title .gfd-line:nth-of-type(1) > span { animation-delay: 0.55s; }
.gfd-hero__title .gfd-line:nth-of-type(2) > span { animation-delay: 0.7s; }
.gfd-hero__title .gfd-line:nth-of-type(3) > span { animation-delay: 0.85s; }

/* Scroll cue */
.gfd-scroll-cue {
  position: absolute; z-index: 2; right: 56px; bottom: 130px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  animation: gfdFadeIn 1s 1.8s both;
}
.gfd-scroll-cue__label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(242,238,232,0.7); writing-mode: vertical-rl;
}
.gfd-scroll-cue__line {
  width: 2px; height: 56px; background: var(--accent); display: block;
  animation: gfdCue 2s cubic-bezier(0.6, 0, 0.4, 1) infinite;
}

/* Stat row (4 columns, 2px left rules, first rule accent) */
.gfd-stats {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin: 0 56px 92px;
  animation: gfdFadeUp 0.9s 1.5s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.gfd-stat { border-left: 2px solid rgba(242,238,232,0.25); padding: 4px 0 4px 20px; }
.gfd-stat--accent { border-left-color: var(--accent); }
.gfd-stat__num { font-family: var(--font-display); font-size: 40px; line-height: 1; }
.gfd-stat__label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,238,232,0.6); margin-top: 8px; }

/* Category marquee (bottom of hero) */
.gfd-marquee {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 0;
  overflow: hidden; border-top: 1px solid rgba(242,238,232,0.15);
  background: rgba(12,11,9,0.65); backdrop-filter: blur(8px);
  padding: 16px 0;
}
.gfd-marquee__track { display: flex; width: max-content; animation: gfdMarquee 28s linear infinite; }
.gfd-marquee__group {
  display: flex; align-items: center; gap: 42px; padding-right: 42px;
  font-family: var(--font-display); font-size: 20px; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
}
.gfd-marquee__sep { color: var(--accent); }

/* --------------------------------------------------------------------------
   11. Title band (inner pages)
   -------------------------------------------------------------------------- */
.gfd-titleband { padding: 88px 56px 56px; border-bottom: 1px solid rgba(242,238,232,0.1); }
.gfd-titleband__eyebrow {
  margin: 0 0 18px; font-size: 13px; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 12px;
  animation: gfdFadeUp 0.7s 0.2s cubic-bezier(0.2,0.7,0.2,1) both;
}
.gfd-titleband__h1 {
  margin: 0; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(72px, 8vw, 128px); line-height: 0.96;
  text-transform: uppercase; letter-spacing: 0.005em;
}
.gfd-titleband__h1--md { font-size: clamp(64px, 7vw, 112px); line-height: 0.98; } /* advertise page */
.gfd-titleband__sub {
  margin: 26px 0 0; max-width: 560px;
  font-size: 18px; line-height: 1.55; color: rgba(242,238,232,0.75);
  animation: gfdFadeUp 0.8s 0.7s cubic-bezier(0.2,0.7,0.2,1) both;
}
/* Title band timing: 0.9s, delays 0.3 / 0.45s */
.gfd-titleband__h1 .gfd-line > span { animation: gfdLineUp 0.9s cubic-bezier(0.16,0.8,0.2,1) both; }
.gfd-titleband__h1 .gfd-line:nth-of-type(1) > span { animation-delay: 0.3s; }
.gfd-titleband__h1 .gfd-line:nth-of-type(2) > span { animation-delay: 0.45s; }

/* Photo variant (Advertise page hero: photo + left-dark gradient) */
.gfd-titleband--photo { position: relative; overflow: hidden; padding: 110px 56px 100px; }
.gfd-titleband__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,9,0.96) 0%, rgba(12,11,9,0.8) 50%, rgba(12,11,9,0.4) 100%); }
.gfd-titleband__content { position: relative; max-width: 860px; }
.gfd-titleband__ctas {
  display: flex; align-items: center; gap: 16px; margin-top: 36px;
  animation: gfdFadeUp 0.8s 0.85s cubic-bezier(0.2,0.7,0.2,1) both;
}

/* --------------------------------------------------------------------------
   12. Sticky filter bar with pill chips
   -------------------------------------------------------------------------- */
.gfd-filterbar {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 56px;
  border-bottom: 1px solid rgba(242,238,232,0.1);
  position: sticky; top: 92px; /* height of the sticky nav above it */
  background: rgba(12,11,9,0.92); backdrop-filter: blur(10px);
  z-index: 40;
}
.gfd-filterbar--split { justify-content: space-between; gap: 24px; } /* chips left, dropdowns right */
.gfd-filterbar__group { display: flex; align-items: center; gap: 10px; }
.gfd-filterbar__group--end { gap: 12px; }

.gfd-chip {
  border: 1px solid rgba(242,238,232,0.25); color: rgba(242,238,232,0.8);
  font-size: 13px; font-weight: 600; padding: 8px 18px;
  border-radius: 999px; cursor: pointer;
  background: none; font-family: var(--font-body);
  text-decoration: none; display: inline-block;
}
.gfd-chip:hover { border-color: var(--accent); color: var(--accent); }
.gfd-chip--active {
  background: var(--accent); border: none; color: #0C0B09;
  font-weight: 700; padding: 9px 18px; cursor: default;
}
.gfd-chip--active:hover { border-color: transparent; color: #0C0B09; }
.gfd-chip--dropdown { padding: 8px 16px; }

/* Pill note ("Placeholder schedule — live classes coming soon") */
.gfd-pill-note {
  font-size: 14px; font-weight: 600; color: rgba(242,238,232,0.55);
  border: 1px solid rgba(242,238,232,0.25); padding: 8px 18px; border-radius: 999px;
}

/* --------------------------------------------------------------------------
   13. Photo tiles (categories, areas, wellness, featured article)
   -------------------------------------------------------------------------- */
.gfd-tile {
  position: relative; display: block; border-radius: 4px; overflow: hidden;
  text-decoration: none; color: var(--fg);
}
.gfd-tile--category { height: 380px; }
.gfd-tile--area     { height: 420px; }
.gfd-tile--wellness { height: 360px; }
.gfd-tile--featured { height: 520px; }

.gfd-tile__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(12,11,9,0) 45%, rgba(12,11,9,0.9) 100%); pointer-events: none; }
.gfd-tile__shade--50 { background: linear-gradient(180deg, rgba(12,11,9,0) 50%, rgba(12,11,9,0.9) 100%); } /* area tiles */
.gfd-tile__shade--featured { background: linear-gradient(180deg, rgba(12,11,9,0.1) 0%, rgba(12,11,9,0.35) 50%, rgba(12,11,9,0.95) 100%); }

.gfd-tile__caption {
  position: absolute; left: 24px; right: 24px; bottom: 22px;
  display: flex; align-items: baseline; justify-content: space-between;
  pointer-events: none;
}
.gfd-tile__caption--stack { left: 22px; right: auto; bottom: 20px; display: block; } /* area tiles */

.gfd-tile__title { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; letter-spacing: 0.02em; }
.gfd-tile__title--28 { font-size: 28px; letter-spacing: normal; } /* wellness */
.gfd-tile__title--26 { font-size: 26px; letter-spacing: normal; } /* areas */
.gfd-tile__meta { font-size: 14px; font-weight: 600; color: var(--accent); }
.gfd-tile__meta--sm { font-size: 13px; margin-top: 4px; } /* areas (stacked under title) */

/* --------------------------------------------------------------------------
   14. Cards (trainer / gym / blog)
   -------------------------------------------------------------------------- */
.gfd-card {
  display: block; text-decoration: none; color: var(--fg);
  background: var(--surface);
  border: 1px solid rgba(242,238,232,0.08); border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}
.gfd-card:hover { transform: translateY(-6px); border-color: var(--accent); }

.gfd-card__media { overflow: hidden; position: relative; }
.gfd-card__media--300 { height: 300px; } /* homepage featured trainer cards */
.gfd-card__media--280 { height: 280px; } /* trainers directory cards */
.gfd-card__media--240 { height: 240px; } /* gym + blog cards */

/* "Sample profile" / "Sample listing" badge (top-left of card image) */
.gfd-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(12,11,9,0.8);
  border: 1px solid var(--accent); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
/* Solid accent badge ("Featured" on blog hero article) */
.gfd-badge--solid {
  position: static; background: var(--accent); border: none; color: #0C0B09;
  font-size: 12px; letter-spacing: 0.16em; padding: 7px 16px;
  backdrop-filter: none;
}

.gfd-card__body { padding: 22px; }
.gfd-card__body--trainer { padding: 20px 22px 22px; }     /* trainers directory */
.gfd-card__body--trainer-lg { padding: 22px 22px 24px; }  /* homepage featured */
.gfd-card__body--blog { padding: 24px; }

.gfd-card__name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; }
.gfd-card__name--21 { font-size: 21px; } /* trainers directory */
.gfd-card__role { font-size: 14px; color: rgba(242,238,232,0.65); margin-top: 6px; }
.gfd-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.gfd-card__foot--lg { margin-top: 16px; } /* homepage featured trainer cards */
.gfd-card__area { font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(242,238,232,0.5); }

/* Gym card specifics */
.gfd-card__row { display: flex; align-items: baseline; justify-content: space-between; }
.gfd-card__tags { display: flex; gap: 8px; margin-top: 14px; }
.gfd-tag {
  font-size: 12px; font-weight: 600; color: rgba(242,238,232,0.7);
  border: 1px solid rgba(242,238,232,0.2); padding: 5px 12px; border-radius: 999px;
}

/* Blog card specifics */
.gfd-card__cat { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.gfd-card__title { margin: 12px 0 0; font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1.1; text-transform: uppercase; }
.gfd-card__excerpt { margin: 12px 0 0; font-size: 15px; line-height: 1.55; color: rgba(242,238,232,0.65); }

/* --------------------------------------------------------------------------
   15. Accent banner ("This could be you.")
   -------------------------------------------------------------------------- */
.gfd-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--accent); color: #0C0B09;
  border-radius: 4px; padding: 24px 32px;
}
.gfd-banner--mb { margin-bottom: 24px; } /* homepage version above the card grid */
.gfd-banner__text { display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap; }
.gfd-banner__title { font-family: var(--font-display); font-size: 32px; text-transform: uppercase; letter-spacing: 0.02em; line-height: 1; }
.gfd-banner__note { font-size: 15px; font-weight: 600; opacity: 0.85; }

/* --------------------------------------------------------------------------
   16. Class schedule list rows
   -------------------------------------------------------------------------- */
.gfd-schedule { display: flex; flex-direction: column; gap: 12px; }
.gfd-schedule-row {
  display: grid; grid-template-columns: 140px 1.6fr 1fr 1fr 160px;
  align-items: center; gap: 20px;
  background: var(--surface);
  border: 1px solid rgba(242,238,232,0.08); border-radius: 4px;
  padding: 22px 28px;
  transition: border-color 0.3s;
}
.gfd-schedule-row:hover { border-color: var(--accent); }
.gfd-schedule-row__time { font-family: var(--font-display); font-size: 24px; color: var(--accent); }
.gfd-schedule-row__name { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; letter-spacing: 0.02em; }
.gfd-schedule-row__detail { font-size: 13px; color: rgba(242,238,232,0.55); margin-top: 4px; }
.gfd-schedule-row__venue { font-size: 14px; color: rgba(242,238,232,0.7); }
.gfd-schedule-row__days { font-size: 13px; font-weight: 600; color: rgba(242,238,232,0.55); }

/* --------------------------------------------------------------------------
   17. Numbered steps (01 / 02 / 03)
   -------------------------------------------------------------------------- */
.gfd-step__head {
  display: flex; align-items: baseline; gap: 16px;
  border-top: 2px solid rgba(242,238,232,0.2); padding-top: 20px;
}
.gfd-step__head--accent { border-top-color: var(--accent); } /* first step only */
.gfd-step__num { font-family: var(--font-display); font-size: 56px; line-height: 1; color: var(--accent); }
.gfd-step__title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 26px; text-transform: uppercase; letter-spacing: 0.02em; }
.gfd-step__body { margin: 18px 0 0; font-size: 16px; line-height: 1.6; color: rgba(242,238,232,0.7); }

/* --------------------------------------------------------------------------
   18. Full-bleed CTA band (homepage "Own a gym?")
   -------------------------------------------------------------------------- */
.gfd-cta-band { position: relative; overflow: hidden; margin: 0 56px 120px; border-radius: 4px; }
.gfd-cta-band__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,11,9,0.95) 0%, rgba(12,11,9,0.75) 55%, rgba(12,11,9,0.35) 100%); }
.gfd-cta-band__content { position: relative; padding: 90px 72px; max-width: 720px; }
.gfd-cta-band__sub { margin: 24px 0 0; font-size: 17px; line-height: 1.6; color: rgba(242,238,232,0.8); max-width: 540px; }
.gfd-cta-band__ctas { display: flex; align-items: center; gap: 16px; margin-top: 36px; }

/* --------------------------------------------------------------------------
   19. Featured article (blog) + newsletter band
   -------------------------------------------------------------------------- */
.gfd-feature__content { position: absolute; left: 48px; right: 48px; bottom: 44px; pointer-events: none; }
.gfd-feature__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.gfd-feature__kicker { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(242,238,232,0.7); }
.gfd-feature__title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 54px; line-height: 1.02; text-transform: uppercase; max-width: 900px; }
.gfd-feature__sub { margin: 16px 0 0; font-size: 17px; line-height: 1.55; color: rgba(242,238,232,0.8); max-width: 640px; }

.gfd-newsletter {
  margin: 0 56px 100px;
  background: var(--accent); border-radius: 4px;
  padding: 64px 72px; color: #0C0B09;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.gfd-newsletter__title { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 48px; line-height: 1; text-transform: uppercase; }
.gfd-newsletter__sub { margin: 14px 0 0; font-size: 16px; font-weight: 600; opacity: 0.85; max-width: 560px; }

/* --------------------------------------------------------------------------
   20. Contact section + form (Advertise page)
   -------------------------------------------------------------------------- */
.gfd-contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.gfd-contact__intro { margin: 22px 0 0; font-size: 17px; line-height: 1.6; color: rgba(242,238,232,0.75); max-width: 440px; }
.gfd-contact__rows { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.gfd-contact-row { display: flex; align-items: baseline; gap: 14px; }
.gfd-contact-row__label { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(242,238,232,0.45); width: 70px; }
.gfd-contact-row__value { color: var(--fg); text-decoration: none; font-size: 17px; font-weight: 600; }
a.gfd-contact-row__value:hover { color: var(--accent); }
.gfd-contact-row__value--muted { color: rgba(242,238,232,0.8); font-weight: 400; }

.gfd-form-card { background: var(--surface); border: 1px solid rgba(242,238,232,0.1); border-radius: 4px; padding: 44px; }
.gfd-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.gfd-field { display: flex; flex-direction: column; gap: 8px; }
.gfd-field--full { grid-column: 1 / -1; }
.gfd-label { font-size: 12px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(242,238,232,0.55); }
.gfd-input {
  background: #0C0B09; border: 1px solid rgba(242,238,232,0.18); border-radius: 4px;
  padding: 15px 16px; font-size: 15px; color: var(--fg);
  font-family: var(--font-body); outline: none;
}
.gfd-input:focus { border-color: var(--accent); }
textarea.gfd-input { resize: vertical; }
.gfd-form__foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; margin-top: 6px; }
.gfd-form__hint { font-size: 13px; color: rgba(242,238,232,0.45); }

/* Success state (shown by enhance.js; markup ships with [hidden]) */
.gfd-form-success { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; padding: 40px 0; }
.gfd-form-success[hidden] { display: none; }
.gfd-form-success__title { font-family: var(--font-display); font-size: 40px; text-transform: uppercase; color: var(--accent); }
.gfd-form-success__text { margin: 0; font-size: 17px; line-height: 1.6; color: rgba(242,238,232,0.75); }
.gfd-form-success__reset {
  margin-top: 8px; cursor: pointer; color: var(--fg);
  font-size: 15px; font-weight: 600;
  border-bottom: 2px solid var(--accent); padding-bottom: 3px;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: var(--font-body);
}

/* --------------------------------------------------------------------------
   21. Footer (4-col)
   -------------------------------------------------------------------------- */
.gfd-footer {
  background: #0C0B09;
  border-top: 1px solid rgba(242,238,232,0.12);
  padding: 64px 56px 36px;
  font-family: var(--font-body); color: var(--fg);
}
.gfd-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; max-width: 1560px; margin: 0 auto; }
.gfd-footer__logo { font-family: var(--font-display); font-size: 30px; letter-spacing: 0.04em; color: var(--fg); text-decoration: none; }
.gfd-footer__blurb { margin: 18px 0 0; font-size: 15px; line-height: 1.6; color: rgba(242,238,232,0.6); max-width: 360px; }
.gfd-footer__contact { margin: 18px 0 0; font-size: 14px; color: rgba(242,238,232,0.5); }
.gfd-footer__col { display: flex; flex-direction: column; gap: 12px; }
.gfd-footer__heading { font-size: 12px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(242,238,232,0.45); margin-bottom: 6px; }
.gfd-footer__link { color: rgba(242,238,232,0.75); text-decoration: none; font-size: 15px; }
.gfd-footer__link:hover { color: var(--accent); }
.gfd-footer__bottom {
  max-width: 1560px; margin: 48px auto 0; padding-top: 24px;
  border-top: 1px solid rgba(242,238,232,0.08);
  display: flex; justify-content: space-between;
  font-size: 13px; color: rgba(242,238,232,0.4);
}

/* --------------------------------------------------------------------------
   22. Reduced motion
   Kill all looping/entry animations and transitions; make revealed
   content immediately visible.
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    animation-delay: 0s !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  html.js .gfd-reveal { opacity: 1; transform: none; }
  .gfd-marquee__track { animation: none; }
  .gfd-hero__img { animation: none; }
}

/* 5-column footer variant (existing site has 5 link groups; keeps design style) */
.gfd-footer__grid--5col { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; }
.gfd-footer__contact a { color: inherit; text-decoration: none; }

/* ===== Article/detail-page styles (promoted from blog article template) ===== */

    /* ═══════════════════════════════════════════════════════════════
       ARTICLE-BODY STYLES — reusable verbatim on every /blog/ article
       (gfd-breadcrumb, gfd-article-meta, gfd-article-wrap, gfd-article,
        gfd-article-lead, gfd-article-note, gfd-toc, gfd-infobox,
        gfd-article-cta, gfd-btn--dark-outline, gfd-table,
        gfd-article-related, gfd-banner__kicker, gfd-linkcard,
        gfd-section-sub, gfd-newsletter form additions)
       ═══════════════════════════════════════════════════════════════ */
    .gfd-breadcrumb { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; font-size: 13px; color: rgba(242,238,232,0.55); margin-bottom: 22px; position: relative; z-index: 2; }
    .gfd-breadcrumb a { color: rgba(242,238,232,0.55); text-decoration: none; transition: color 0.2s var(--ease-out); }
    .gfd-breadcrumb a:hover { color: var(--accent); }
    .gfd-breadcrumb span { color: rgba(242,238,232,0.4); }

    .gfd-article-meta { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; font-size: 14px; color: rgba(242,238,232,0.7); }
    .gfd-article-meta strong { color: var(--fg); font-weight: 700; }

    .gfd-article-wrap { padding: 0 56px; }
    .gfd-article { max-width: 760px; margin: 0 auto; padding: 64px 0 24px; font-family: var(--font-body); font-size: 18px; line-height: 1.7; color: rgba(242,238,232,0.82); }
    .gfd-article p { margin: 0 0 20px; }
    .gfd-article a { color: var(--accent); font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,90,31,0.4); transition: border-color 0.2s var(--ease-out); }
    .gfd-article a:hover { border-bottom-color: var(--accent); }
    .gfd-article strong { color: var(--fg); font-weight: 700; }
    .gfd-article h2 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 38px; line-height: 1.12; letter-spacing: 0.01em; color: var(--fg); margin: 60px 0 22px; padding-top: 30px; border-top: 1px solid rgba(242,238,232,0.12); }
    .gfd-article h3 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 23px; line-height: 1.2; letter-spacing: 0.01em; color: var(--fg); margin: 34px 0 14px; }
    .gfd-article ul, .gfd-article ol { margin: 0 0 22px; padding-left: 24px; }
    .gfd-article li { margin-bottom: 9px; }

    .gfd-article-lead { font-size: 20px; line-height: 1.75; color: rgba(242,238,232,0.9); border-left: 3px solid var(--accent); padding-left: 22px; }
    .gfd-article-note { font-size: 14px; line-height: 1.6; color: rgba(242,238,232,0.6); background: var(--surface); border: 1px solid rgba(242,238,232,0.1); border-radius: 4px; padding: 16px 20px; margin-bottom: 36px; }

    .gfd-toc { background: var(--surface); border: 1px solid rgba(242,238,232,0.12); border-radius: 4px; padding: 24px 28px; margin-bottom: 36px; }
    .gfd-toc__label { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin: 0 0 14px; }
    .gfd-toc ol { margin: 0; padding-left: 20px; }
    .gfd-toc li { font-size: 15px; margin-bottom: 7px; }
    .gfd-toc a { border-bottom: none; }

    .gfd-infobox { background: var(--surface); border: 1px solid rgba(242,238,232,0.12); border-left: 3px solid var(--accent); border-radius: 4px; padding: 24px 28px; margin: 30px 0; }
    .gfd-infobox__title { font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
    .gfd-infobox p, .gfd-infobox li { font-size: 16px; }
    .gfd-infobox p:last-child, .gfd-infobox ul:last-child { margin-bottom: 0; }

    .gfd-article-cta { background: var(--accent); color: var(--bg); border-radius: 4px; padding: 34px 36px; margin: 40px 0; }
    .gfd-article-cta h3 { color: var(--bg); margin: 0 0 10px; }
    .gfd-article-cta p { color: rgba(12,11,9,0.8); font-weight: 600; font-size: 16px; margin-bottom: 20px; }
    .gfd-article-cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .gfd-article-cta__btns a { border-bottom: none; }
    .gfd-btn--dark-outline { background: transparent; border: 1.5px solid rgba(12,11,9,0.55); color: var(--bg); font-size: 16px; font-weight: 700; }
    .gfd-btn--dark-outline:hover { border-color: var(--bg); }

    .gfd-table { width: 100%; border-collapse: collapse; margin: 26px 0 30px; font-size: 15px; }
    .gfd-table th { background: var(--accent); color: var(--bg); text-align: left; padding: 12px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
    .gfd-table td { padding: 12px 16px; border-bottom: 1px solid rgba(242,238,232,0.12); }
    .gfd-table tr:last-child td { border-bottom: none; }
    .gfd-table .gfd-table__hl td { color: var(--fg); font-weight: 700; }

    .gfd-article-related { background: var(--surface); border: 1px solid rgba(242,238,232,0.12); border-radius: 4px; padding: 28px; margin: 44px 0 8px; }
    .gfd-article-related__title { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 20px; letter-spacing: 0.02em; color: var(--fg); margin: 0 0 18px; }
    .gfd-article-related__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .gfd-article-related__item { display: flex; align-items: center; gap: 12px; font-size: 15px; font-weight: 600; line-height: 1.4; color: var(--fg); text-decoration: none; padding: 8px; border: 1px solid transparent; border-radius: 4px; transition: border-color 0.2s var(--ease-out); }
    .gfd-article-related__item:hover { border-color: var(--accent); }
    .gfd-article-related__item img { width: 80px; height: 60px; object-fit: cover; border-radius: 4px; flex-shrink: 0; }

    .gfd-banner__kicker { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(12,11,9,0.6); margin-bottom: 6px; }

    .gfd-linkcard { background: var(--surface); border: 1px solid rgba(242,238,232,0.1); border-radius: 4px; padding: 26px 28px; }
    .gfd-linkcard h4 { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; font-size: 18px; letter-spacing: 0.02em; color: var(--fg); margin: 0 0 14px; }
    .gfd-linkcard a { display: block; padding: 10px 0; border-bottom: 1px solid rgba(242,238,232,0.1); font-size: 15px; font-weight: 600; color: rgba(242,238,232,0.8); text-decoration: none; transition: color 0.2s var(--ease-out); }
    .gfd-linkcard a:last-child { border-bottom: none; }
    .gfd-linkcard a:hover { color: var(--accent); }

    .gfd-section-sub { font-size: 16px; color: rgba(242,238,232,0.65); margin: 14px 0 0; max-width: 640px; }

    .gfd-newsletter__badge { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; border: 1px solid rgba(12,11,9,0.35); border-radius: 999px; padding: 7px 16px; margin-bottom: 18px; }
    .gfd-newsletter__form { display: flex; gap: 12px; max-width: 460px; flex-wrap: wrap; margin-top: 8px; }
    .gfd-newsletter__input { flex: 1; min-width: 220px; padding: 15px 20px; border: none; border-radius: 999px; font-family: var(--font-body); font-size: 15px; background: var(--bg); color: var(--fg); }
    .gfd-newsletter__input::placeholder { color: rgba(242,238,232,0.5); }
  

/* "Read more" kickers on blog index cards (alias of gfd-link-more styling) */
.gfd-card__more, .gfd-feature__more { display: inline-block; margin-top: 10px; font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }

/* ===== Global 20% scale-down (site-wide "zoom out") =====
   Browsers that support CSS zoom (Chrome/Edge/Safari, Firefox 126+) render
   the whole site at 80%. vh-based hero is compensated so it stays full-bleed. */
html { zoom: 0.8; }
.gfd-hero { height: 125vh; min-height: 950px; }
