/* =========================================
   EDEN FITNESS — MAIN STYLESHEET
   Premium Health Club, Ealing, London
   ========================================= */

/* --- Google Fonts Import (single family) --- */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400;1,9..40,500&display=swap');

/* --- Design Tokens --- */
:root {
  --black:         #0A0A0A;
  --black-deep:    #050505;
  --charcoal:      #1A1A1A;
  --charcoal-mid:  #2A2A2A;
  --charcoal-light:#3A3A3A;
  --off-white:     #F7F4EF;
  --light-grey:    #F2F2F2;
  --mid-grey:      #E0E0E0;
  --gold:          #C8A052;
  --gold-light:    #DDB96B;
  --gold-pale:     #F5EDDA;
  --white:         #FFFFFF;
  --text-muted:    #666666;
  --text-light:    #999999;
  --border:        #E0E0E0;
  --shadow-sm:     0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:     0 20px 60px rgba(0,0,0,0.22);
  --shadow-gold:   0 8px 32px rgba(200,160,82,0.22);
  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font:          'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height:    80px;

  /* ── Typography Scale ── */
  --text-2xs:      0.65rem;   /* 10.4px — badges, accreditation chips          */
  --text-xs:       0.72rem;   /* 11.5px — eyebrows, col headings, card tags     */
  --text-sm:       0.8rem;    /* 12.8px — buttons, form labels, meta            */
  --text-base:     0.9rem;    /* 14.4px — inputs, card body, secondary copy     */
  --text-md:       1rem;      /* 16px   — standard body / h5                    */
  --text-lg:       1.1rem;    /* 17.6px — lead / intro paragraphs               */
  --text-xl:       1.25rem;   /* 20px   — h4 / card titles                      */

  /* ── Font Weights ── */
  --weight-normal:   400;
  --weight-medium:   500;
  --weight-semibold: 600;
  --weight-bold:     700;

  /* ── Line Heights ── */
  --leading-tight:   1.2;     /* headings                                       */
  --leading-snug:    1.5;     /* subheadings, card titles                       */
  --leading-normal:  1.7;     /* general body                                   */
  --leading-relaxed: 1.75;    /* paragraph copy                                 */
  --leading-loose:   1.8;     /* lead / intro text                              */

  /* ── Letter Spacing ── */
  --tracking-tight:   -0.01em; /* headings                                      */
  --tracking-normal:   0em;    /* body                                          */
  --tracking-wide:     0.06em; /* subtle labels                                 */
  --tracking-wider:    0.12em; /* buttons                                       */
  --tracking-widest:   0.2em;  /* eyebrows, uppercase caps                      */

  /* ── Semantic Colours ── */
  --color-error:   #C0392B;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: var(--leading-normal);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--charcoal);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem);      font-weight: var(--weight-medium); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem);         font-weight: var(--weight-medium); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem);     font-weight: var(--weight-medium); }
h4 { font-size: var(--text-xl);                   font-weight: var(--weight-semibold); line-height: var(--leading-snug); }
h5 { font-size: var(--text-md);                   font-weight: var(--weight-semibold); line-height: var(--leading-snug); }

p {
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}

.eyebrow {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: var(--text-lg);
  line-height: var(--leading-loose);
  color: var(--text-muted);
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: rgba(255,255,255,0.72);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3 {
  color: var(--white);
}

.section--gold {
  background: var(--gold-pale);
}

.section--white {
  background: var(--white);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-2 > * { min-width: 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 2px;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
  max-width: 100%;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(200,160,82,0.35);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--charcoal-mid);
  transform: translateY(-1px);
}

.btn-green {
  background: var(--black);
  color: var(--white);
}
.btn-green:hover {
  background: var(--charcoal-mid);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-sm);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: var(--text-xs);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,160,82,0.12);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(5,5,5,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav__inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  flex-shrink: 0;
}

.nav__logo-name {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  color: var(--white);
  letter-spacing: 0.05em;
}

.nav__logo-tag {
  font-family: var(--font);
  font-size: var(--text-2xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav__link {
  position: relative;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 0.75rem;
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.75rem; right: 0.75rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav__item {
  position: relative;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(5,5,5,0.98);
  border: 1px solid rgba(200,160,82,0.18);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all 0.25s ease;
  pointer-events: none;
  backdrop-filter: blur(14px);
}

.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav__dropdown a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  color: rgba(255,255,255,0.78);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav__dropdown a:hover {
  background: rgba(200,160,82,0.1);
  color: var(--gold);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(5,5,5,0.99);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(200,160,82,0.15);
  max-height: calc(100vh - var(--nav-height));
  overflow-y: auto;
  z-index: 999;
}

.nav__mobile.open {
  display: block;
}

.nav__mobile a {
  display: block;
  padding: 0.85rem 1rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.nav__mobile a:hover { color: var(--gold); padding-left: 1.5rem; }

/* Promo Bar */
.promo-bar {
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 0.6rem 2.5rem 0.6rem 1rem; /* right padding leaves room for close btn */
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1001;
  top: 0;
}

.promo-bar strong { font-weight: var(--weight-bold); }

.promo-bar__close {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 1rem;
  line-height: 1;
  padding: 0.35rem 0.5rem;
  opacity: 0.65;
  transition: opacity 0.2s;
  border-radius: 4px;
  flex-shrink: 0;
}
.promo-bar__close:hover,
.promo-bar__close:focus-visible {
  opacity: 1;
  background: rgba(0,0,0,0.12);
  outline: none;
}

/* Sticky CTA Bar */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 990;
  background: var(--black);
  border-top: 1px solid rgba(200,160,82,0.25);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__text {
  font-family: var(--font);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  font-weight: var(--weight-normal);
}

.sticky-cta__text strong {
  color: var(--white);
  font-weight: var(--weight-semibold);
}

/* =====================================================
   HERO — Editorial split layout
   Black left | decorative ring right | watermark text
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 7rem;
}

/* Large faded "EDEN" watermark */
.hero::before {
  content: 'EDEN';
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font);
  font-size: clamp(14rem, 24vw, 30rem);
  font-weight: var(--weight-bold);
  color: rgba(200,160,82,0.04);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  letter-spacing: -0.04em;
}

/* Subtle radial glow */
.hero::after {
  content: '';
  position: absolute;
  left: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 60vw;
  height: 80vh;
  background: radial-gradient(ellipse at center, rgba(200,160,82,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

/* Label line + text above headline */
.hero__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero__label-line {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero__label-text {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Stacked headline */
.hero__title {
  font-family: var(--font);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: var(--weight-medium);
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
  letter-spacing: -0.02em;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__subtitle {
  font-family: var(--font);
  color: rgba(255,255,255,0.58);
  font-size: 1rem;
  line-height: var(--leading-loose);
  max-width: 480px;
  margin-bottom: 2.5rem;
  font-weight: var(--weight-normal);
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---- Decorative ring (right column) ---- */
.hero__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero__ring-wrap {
  position: relative;
  width: clamp(260px, 26vw, 360px);
  height: clamp(260px, 26vw, 360px);
}

/* Outer rotating ring */
.hero__ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(200,160,82,0.3);
  border-radius: 50%;
  animation: ringRotate 40s linear infinite;
}

/* Inner ring (static, thinner) */
.hero__ring::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(200,160,82,0.1);
  border-radius: 50%;
}

/* Dot that travels around the ring */
.hero__ring::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(200,160,82,0.6);
}

@keyframes ringRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Static content centred inside the ring */
.hero__ring-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.hero__ring-stat {
  text-align: center;
}

.hero__ring-num {
  display: block;
  font-family: var(--font);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: var(--weight-semibold);
  color: var(--gold);
  line-height: 1;
}

.hero__ring-num sup {
  font-size: 1rem;
  font-weight: var(--weight-normal);
}

.hero__ring-label {
  display: block;
  font-family: var(--font);
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-top: 0.3rem;
}

.hero__ring-sep {
  width: 32px;
  height: 1px;
  background: rgba(200,160,82,0.25);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font);
  font-size: var(--text-2xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Section Headers --- */
.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

.section-header__title {
  margin-bottom: 1rem;
}

.section-header__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 1.25rem;
}

.section-header--center .section-header__divider {
  margin-left: auto;
  margin-right: auto;
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.card__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
}

.card__body {
  padding: 1.75rem;
}

.card__tag {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.card__title {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0.75rem;
}

.card__text {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-muted);
}

/* Dark card variant */
.card--dark {
  background: var(--black);
  color: var(--white);
}

.card--dark h3,
.card--dark h4 {
  color: var(--white);
}

.card--dark p,
.card--dark .card__text {
  color: rgba(255,255,255,0.68);
}

/* --- Facility Highlights Grid --- */
.facility-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.facility-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}

.facility-icon:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(200,160,82,0.12);
  transform: translateY(-3px);
}

.facility-icon__icon {
  width: 56px;
  height: 56px;
  background: var(--light-grey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.facility-icon:hover .facility-icon__icon {
  background: var(--gold-pale);
}

.facility-icon__name {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.03em;
  color: var(--charcoal);
  line-height: 1.3;
}

/* --- Stats / Social Proof --- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
}

.stat__number {
  font-family: var(--font);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--weight-semibold);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat__label {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Stars */
.stars {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--gold);
}

/* --- Membership Table --- */
.membership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  border-color: var(--charcoal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.plan-card--featured {
  background: var(--black);
  border-color: var(--gold);
  color: var(--white);
}

.plan-card--featured h3,
.plan-card--featured h4 {
  color: var(--white);
}

.plan-card--featured p {
  color: rgba(255,255,255,0.68);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-card__name {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.plan-card__price {
  font-family: var(--font);
  font-size: 2.8rem;
  font-weight: var(--weight-medium);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0.25rem;
}

.plan-card__price span {
  font-size: var(--text-lg);
  font-weight: var(--weight-normal);
  opacity: 0.7;
}

.plan-card__period {
  font-family: var(--font);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: var(--text-light);
  margin-bottom: 1.75rem;
}

.plan-card--featured .plan-card__period {
  color: rgba(255,255,255,0.5);
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  flex: 1;
}

.plan-card__feature {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.plan-card--featured .plan-card__feature {
  color: rgba(255,255,255,0.78);
}

.plan-card__feature::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--light-grey);
  color: var(--charcoal);
  border-radius: 50%;
  font-size: var(--text-2xs);
  font-weight: var(--weight-bold);
  flex-shrink: 0;
}

.plan-card--featured .plan-card__feature::before {
  background: rgba(200,160,82,0.18);
  color: var(--gold-light);
}

/* CTA button always pinned to bottom of card */
.plan-card > .btn {
  margin-top: auto;
}

/* --- Comparison Table --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--black);
  color: var(--white);
  padding: 1rem 1.25rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table th:last-child {
  border-right: none;
}

.comparison-table td {
  padding: 0.9rem 1.25rem;
  font-family: var(--font);
  font-size: var(--text-base);
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  color: var(--charcoal);
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: var(--weight-medium);
  color: var(--charcoal);
  background: var(--white);
}

.comparison-table td:last-child {
  border-right: none;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
  background: var(--off-white);
}

.comparison-table tr:nth-child(even) td:first-child {
  background: var(--off-white);
}

.check { color: var(--charcoal); font-size: 1rem; }
.cross { color: var(--color-error); font-size: var(--text-base); }

/* --- Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gallery-grid--large .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: var(--text-sm);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-item:hover .gallery-item__placeholder::after {
  content: '↗';
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1rem;
  color: var(--gold);
}

/* Gallery — real photography */
.gallery-item--pool       { background: url('https://images.unsplash.com/photo-1519315901367-f34ff9154487?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--spa        { background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--gym        { background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--spin       { background: url('https://images.unsplash.com/photo-1483721310020-03333e577078?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--class      { background: url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--relax      { background: url('https://images.unsplash.com/photo-1544161515-4ab6ce6db874?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--cardio     { background: url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }
.gallery-item--functional { background: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=900&h=600&fit=crop&q=80') center/cover no-repeat; }

/* Hide emoji/text overlays inside gallery placeholders */
.gallery-item__placeholder { display: none !important; }
.card__image-placeholder > * { display: none !important; }

/* --- Timetable Widget --- */
.timetable-wrapper {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.timetable-filters {
  display: flex;
  gap: 0.5rem;
  padding: 1.5rem;
  background: var(--off-white);
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.timetable-embed {
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 3rem;
  background: var(--white);
}

.timetable-embed__icon { font-size: 3rem; opacity: 0.3; }
.timetable-embed__text { font-family: var(--font); font-size: 1rem; color: var(--text-muted); text-align: center; }
.timetable-embed__note { font-family: var(--font); font-size: var(--text-sm); color: var(--text-light); }

/* --- Eden TV --- */
.eden-tv-hero {
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.eden-tv-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 30% 50%, rgba(200,160,82,0.07) 0%, transparent 70%);
}

.tv-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.tv-logo__icon {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.tv-logo__text {
  font-family: var(--font);
  font-size: 2rem;
  font-weight: var(--weight-semibold);
  color: var(--white);
}

.tv-logo__text em {
  font-style: italic;
  color: var(--gold);
}

/* ── TV mockup device visual ── */
.tv-mockup-wrap {
  margin-top: 4rem;
  position: relative;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tv-mockup-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,160,82,0.2);
  border-radius: var(--radius-xl);
  padding: 0 1.5rem;
  aspect-ratio: 16 / 8;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.tv-mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0.5rem;
  box-sizing: border-box;
}

.tv-mockup-card {
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-width: 0;
}

.tv-mockup-label {
  font-size: var(--text-2xs);
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tv-mockup-badge {
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(200,160,82,0.15);
  border: 1px solid rgba(200,160,82,0.3);
  border-radius: 20px;
  padding: 0.35rem 1rem;
  font-size: var(--text-xs);
  color: var(--gold-light);
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* Mobile: 2-column grid, auto aspect-ratio to fit inside box */
@media (max-width: 640px) {
  .tv-mockup-box {
    aspect-ratio: unset;
    padding: 1rem 1rem 2.5rem;
    min-height: 200px;
  }
  .tv-mockup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.25rem;
  }
  .tv-mockup-card {
    aspect-ratio: 4 / 3;
  }
  .tv-mockup-label {
    font-size: var(--text-2xs);
  }
  .tv-mockup-badge {
    font-size: var(--text-2xs);
    padding: 0.3rem 0.75rem;
    white-space: normal;
    text-align: center;
    width: max-content;
    max-width: 90%;
  }
}

.tv-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem;
}

.tv-category {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,160,82,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.tv-category:hover {
  background: rgba(200,160,82,0.09);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.tv-category__icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.tv-category__name {
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}

.tv-class-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
}

.tv-class-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.tv-class-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(200,160,82,0.14);
}

.tv-class-card__thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
}

.tv-class-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  background: rgba(0,0,0,0.35);
}

.tv-class-card__play::after {
  content: '▶';
  font-size: 2rem;
  color: var(--white);
}

.tv-class-card:hover .tv-class-card__play {
  opacity: 1;
}

.tv-class-card__body {
  padding: 1.25rem;
}

.tv-class-card__tag {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.tv-class-card__title {
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  line-height: var(--leading-snug);
  color: var(--white);
  margin-bottom: 0.35rem;
}

.tv-class-card__meta {
  font-family: var(--font);
  font-size: var(--text-sm);
  line-height: var(--leading-normal);
  color: rgba(255,255,255,0.48);
}

/* --- Trainer Cards --- */
.trainer-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.trainer-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.trainer-card__photo {
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.trainer-card__photo-placeholder {
  display: none; /* hidden — replaced by background-image on parent */
}

.trainer-card__body {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.trainer-card__name {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: var(--weight-semibold);
  margin-bottom: 0.25rem;
}

.trainer-card__role {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.trainer-card__bio {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Trainer photo backgrounds — real photography */
.trainer-photo--1 { background: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=600&h=800&fit=crop&q=80') center top/cover no-repeat; }
.trainer-photo--2 { background: url('https://images.unsplash.com/photo-1518310383802-640c2de311b2?w=600&h=800&fit=crop&q=80') center top/cover no-repeat; }
.trainer-photo--3 { background: url('https://images.unsplash.com/photo-1506629082955-511b1aa562c8?w=600&h=800&fit=crop&q=80') center top/cover no-repeat; }
.trainer-photo--4 { background: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?w=600&h=800&fit=crop&q=80') center top/cover no-repeat; }

/* --- Forms --- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--charcoal);
  box-shadow: 0 0 0 3px rgba(10,10,10,0.08);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

/* --- Contact — equal-height columns on desktop --- */
@media (min-width: 901px) {
  .contact-main-grid {
    align-items: stretch;
  }
  .contact-form-col {
    display: flex;
    flex-direction: column;
  }
  .contact-form-col form {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  /* Push send button area to bottom of form */
  .contact-form-col form > button,
  .contact-form-col form > p {
    margin-top: auto;
  }
  .contact-sidebar {
    display: flex;
    flex-direction: column;
  }
  .contact-find-us {
    flex: 1;
  }
}

/* --- Contact — Opening Hours full-width row below both columns --- */
@media (min-width: 901px) {
  .contact-hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 3rem;
  }
  /* Remove bottom border from last item in each column */
  .contact-hours-grid > div:nth-child(6),
  .contact-hours-grid > div:last-child {
    border-bottom: none;
  }
}

/* --- Contact --- */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(200,160,82,0.12);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item__label {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-info-item__value {
  font-family: var(--font);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  line-height: var(--leading-snug);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-family: var(--font);
  font-size: var(--text-sm);
}

.hours-item__day { color: rgba(255,255,255,0.55); }
.hours-item__time { color: var(--gold-light); font-weight: var(--weight-medium); }

/* Map Placeholder */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #111 0%, #0a0a0a 100%); /* fallback — overridden by inline bg on about.html */
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  color: rgba(255,255,255,0.9);
  font-family: var(--font);
  font-size: var(--text-base);
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';   /* hidden — about.html uses a real photo background */
  display: none;
}

.map-embed {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: none;
}

/* --- Blog --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card__image {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.blog-card__category {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.blog-card__title {
  font-family: var(--font);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  margin-bottom: 0.75rem;
  color: var(--charcoal);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

.blog-card__excerpt {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.25rem;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  color: var(--text-light);
}

/* Blog image backgrounds — all dark, no green */
/* Blog image backgrounds — real photography */
.blog-img--1 { background: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=800&h=450&fit=crop&q=80') center/cover no-repeat; font-size: 0 !important; color: transparent; }
.blog-img--2 { background: url('https://images.unsplash.com/photo-1483721310020-03333e577078?w=800&h=450&fit=crop&q=80') center/cover no-repeat; font-size: 0 !important; color: transparent; }
.blog-img--3 { background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=800&h=450&fit=crop&q=80') center/cover no-repeat; font-size: 0 !important; color: transparent; }
.blog-img--4 { background: url('https://images.unsplash.com/photo-1545389336-cf090694435e?w=800&h=450&fit=crop&q=80') center/cover no-repeat; font-size: 0 !important; color: transparent; }
.blog-img--5 { background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=800&h=450&fit=crop&q=80') center/cover no-repeat; font-size: 0 !important; color: transparent; }
.blog-img--6 { background: url('https://images.unsplash.com/photo-1512621776951-a57141f2eefd?w=800&h=450&fit=crop&q=80') center/cover no-repeat; font-size: 0 !important; color: transparent; }

/* --- Page Hero (sub-pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + 5rem);
  padding-bottom: 4rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Subtle gold glow on page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 70% at 85% 50%, rgba(200,160,82,0.05) 0%, transparent 70%);
}

.page-hero::after {
  display: none;
}

/* .page-hero--dark::after and --white::after removed — arc hidden globally */

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero__subtitle {
  font-family: var(--font);
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 600px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}

.breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { color: rgba(255,255,255,0.28); }

/* --- Feature List --- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.feature-item__icon {
  width: 44px;
  height: 44px;
  background: var(--light-grey);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-item__text { min-width: 0; flex: 1; overflow-wrap: break-word; }
.feature-item__text h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.feature-item__text p  { font-size: var(--text-base); line-height: 1.6; }

/* Dark variant */
.feature-item--light .feature-item__icon { background: rgba(200,160,82,0.1); }
.feature-item--light .feature-item__text h4 { color: var(--white); }
.feature-item--light .feature-item__text p  { color: rgba(255,255,255,0.62); }

/* --- GP Referral / Medical --- */
.pathway-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  counter-reset: steps;
}

.pathway-step {
  counter-increment: steps;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition);
}

.pathway-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.pathway-step::before {
  content: counter(steps, decimal-leading-zero);
  display: block;
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: var(--weight-medium);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.pathway-step h4 { margin-bottom: 0.5rem; }
.pathway-step p  { font-size: var(--text-base); }

/* --- Spin Page --- */
.spin-class-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  transition: var(--transition);
}

.spin-class-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.spin-class-card__bg {
  position: absolute;
  inset: 0;
}

.spin-class-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.spin-class-card__content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.spin-class-card__tag {
  display: inline-block;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.spin-class-card__title {
  font-family: var(--font);
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 1.8rem);
  font-weight: var(--weight-medium);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: 0.5rem;
}

.spin-class-card__subtitle {
  font-family: var(--font);
  color: rgba(255,255,255,0.72);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: 1.25rem;
}

/* Spin BGs — dark, no green */
.spin-bg--power { background: linear-gradient(135deg, #0d0a1a 0%, #1a1030 100%); }
.spin-bg--rhythm { background: linear-gradient(135deg, #0a0d1a 0%, #101530 100%); }
.spin-bg--prime  { background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); }

/* Spin accent lights */
.spin-bg--power::after {
  content: ''; position: absolute;
  top: 20%; left: 30%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(150,50,200,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.spin-bg--rhythm::after {
  content: ''; position: absolute;
  bottom: 20%; right: 20%;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(50,100,200,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.spin-bg--prime::after {
  content: ''; position: absolute;
  top: 30%; left: 20%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,160,82,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* --- About Values --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
}

.value-card__icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.value-card__number {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-card h3 { margin-bottom: 1rem; font-size: 1.4rem; }
.value-card p  { font-size: var(--text-base); line-height: var(--leading-relaxed); }

.value-card--mental   { background: var(--light-grey); }
.value-card--physical { background: var(--black); }
.value-card--physical h3, .value-card--physical p { color: var(--white); }
.value-card--physical p { color: rgba(255,255,255,0.7); }
.value-card--emotional { background: var(--gold-pale); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 1.5rem;
  z-index: 980;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.38);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.48);
}

.whatsapp-float__tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-float__tooltip {
  opacity: 1;
}

/* --- Footer --- */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-tight);
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__brand-tag {
  font-family: var(--font);
  font-size: var(--text-2xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: block;
}

.footer__desc {
  font-family: var(--font);
  font-size: var(--text-base);
  color: rgba(255,255,255,0.55);
  line-height: var(--leading-relaxed);
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.footer__socials {
  display: flex;
  gap: 0.75rem;
}

.footer__social {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
}

.footer__social:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.footer__col-title {
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  cursor: pointer;
}

.footer__link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
}

.footer__contact-item strong {
  color: var(--gold-light);
  font-weight: var(--weight-semibold);
}

.footer__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 2rem 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-family: var(--font);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-family: var(--font);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer__legal a:hover { color: rgba(255,255,255,0.65); }

.footer__accreditations {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accreditation-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 0.4rem 0.75rem;
  font-family: var(--font);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  color: rgba(255,255,255,0.45);
}

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Classes category cards — 3-per-row on desktop, centre-aligned content ── */
.classes-category-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}
.classes-category-grid > div {
  text-align: center;
}
.classes-category-grid > div ul {
  align-items: center;
  list-style: none;
}

/* --- Decorative elements --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  display: block;
}

.gold-line--center { margin: 0 auto; }

.section-number {
  font-family: var(--font);
  font-size: 8rem;
  font-weight: var(--weight-bold);
  color: rgba(200,160,82,0.05);
  position: absolute;
  right: 0;
  top: -1rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.quote-block {
  border-left: 3px solid var(--gold);
  padding-left: 1.75rem;
  margin: 2rem 0;
}

.quote-block p {
  font-family: var(--font);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  font-family: var(--font);
  font-size: var(--text-sm);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.75rem;
  font-style: normal;
}

/* CTA Banner */
.cta-banner {
  border-radius: var(--radius-xl);
  background: var(--black);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,160,82,0.08) 0%, transparent 60%);
  border-radius: 50%;
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto 2rem; }

/* Ribbon / badge */
.ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(200,160,82,0.1);
  border: 1px solid rgba(200,160,82,0.28);
  border-radius: 20px;
  padding: 0.4rem 1rem;
  font-family: var(--font);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-wide);
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

/* Schema.org hidden data */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font);
  font-weight: var(--weight-semibold);
  padding: 0.5rem 1rem;
  font-size: var(--text-base);
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* --- Responsive --- */
@media (max-width: 1100px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .nav__links {
    gap: 0;
  }

  .nav__link {
    padding: 0.5rem 0.5rem;
    font-size: var(--text-xs);
  }
}

@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--large .gallery-item:first-child { grid-column: span 2; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn { display: none; }
  .nav__actions .btn:last-child { display: inline-flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__deco { display: none; }
  .hero__title { font-size: clamp(2.8rem, 8vw, 4rem); }
}

@media (max-width: 640px) {
  :root { --nav-height: 70px; }

  html { overflow-x: hidden; }

  /* ═══════════════════════════════════════════════
     PROMO BAR — compact on mobile
  ═══════════════════════════════════════════════ */
  .promo-bar {
    font-size: var(--text-xs);
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    line-height: 1.4;
  }

  /* ═══════════════════════════════════════════════
     TYPOGRAPHY SCALE
  ═══════════════════════════════════════════════ */
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2rem); }
  h3 { font-size: 1.25rem; }
  h4 { font-size: 1.05rem; }
  .eyebrow { font-size: 0.62rem; letter-spacing: var(--tracking-widest); }
  .lead { font-size: 0.95rem; line-height: var(--leading-normal); }

  /* ═══════════════════════════════════════════════
     SECTION SPACING
  ═══════════════════════════════════════════════ */
  .section { padding: clamp(2.5rem, 6vw, 4rem) 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header--center { max-width: 100%; margin-bottom: 2rem; }
  .section-header__divider { margin-top: 1rem; }
  .section-header--center .section-header__divider { margin-left: auto; margin-right: auto; }

  /* ═══════════════════════════════════════════════
     PAGE HERO (inner pages)
  ═══════════════════════════════════════════════ */
  .page-hero { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 3rem; }
  /* .page-hero::after already hidden globally */
  .page-hero__subtitle { max-width: 100%; font-size: 0.95rem; line-height: var(--leading-normal); }

  /* ═══════════════════════════════════════════════
     MAIN HERO (home page)
  ═══════════════════════════════════════════════ */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 1.5rem);
    padding-bottom: 3.5rem;
  }
  .hero__scroll { display: none; }
  .hero__inner { gap: 1.75rem; }

  /* Scale down hero title — overrides its own clamp(3.2rem,5.5vw,5.5rem) */
  .hero__title {
    font-size: clamp(2.2rem, 9vw, 2.8rem);
    margin-bottom: 1.25rem;
    gap: 0.04em;
  }
  .hero__label { margin-bottom: 1.5rem; }
  .hero__label-text { white-space: normal; }
  .hero__subtitle {
    font-size: 0.92rem;
    line-height: var(--leading-relaxed);
    margin-bottom: 1.75rem;
    max-width: 100%;
  }
  .hero__ctas { flex-direction: column; gap: 0.75rem; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  /* Restore stats ring as horizontal strip on mobile */
  .hero__deco {
    display: flex !important;
    margin-top: 0;
  }
  .hero__ring-wrap {
    position: static;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(200,160,82,0.18);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
  }
  .hero__ring { display: none; }
  .hero__ring-content {
    position: static;
    display: flex !important;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 0;
  }
  .hero__ring-stat { flex: 1; text-align: center; }
  .hero__ring-sep {
    width: 1px;
    height: 32px;
    background: rgba(200,160,82,0.22);
    flex-shrink: 0;
  }
  .hero__ring-num { font-size: 1.75rem; display: block; }
  .hero__ring-label { font-size: 0.57rem; letter-spacing: var(--tracking-wider); margin-top: 0.2rem; display: block; }

  /* ═══════════════════════════════════════════════
     CTA GROUPS — stack button pairs full-width
  ═══════════════════════════════════════════════ */
  .cta-group { flex-direction: column !important; align-items: stretch !important; }
  .cta-group .btn { width: 100% !important; justify-content: center !important; text-align: center; }

  /* ═══════════════════════════════════════════════
     BUTTONS
  ═══════════════════════════════════════════════ */
  .btn { white-space: normal; }
  .btn-lg { text-align: center; padding: 1rem 1.75rem; }
  .grid-2 > .fade-up { text-align: center; }

  /* ═══════════════════════════════════════════════
     GRIDS
  ═══════════════════════════════════════════════ */
  .grid-2 { gap: 1.5rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .membership-grid { grid-template-columns: 1fr; }
  .pathway-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr !important; gap: 0.75rem; }
  .gallery-grid--large .gallery-item:first-child { grid-column: span 1 !important; }

  /* ═══════════════════════════════════════════════
     FACILITY ICONS
  ═══════════════════════════════════════════════ */
  .facility-icons { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .classes-category-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .facility-icon { padding: 1.25rem 0.75rem; }
  .facility-icon__icon { width: 48px; height: 48px; font-size: 1.3rem; margin-bottom: 0.75rem; }
  .facility-icon__name { font-size: var(--text-xs); }

  /* ═══════════════════════════════════════════════
     FEATURE ITEMS (icon + heading + text rows)
  ═══════════════════════════════════════════════ */
  .feature-item { gap: 0.75rem; }
  .feature-item__icon { flex-shrink: 0; width: 38px; height: 38px; font-size: 1rem; }
  .feature-item__text { min-width: 0; flex: 1; overflow-wrap: break-word; }

  /* ═══════════════════════════════════════════════
     TRUST / STATS BARS — horizontal scroll strip
  ═══════════════════════════════════════════════ */
  .trust-bar,
  .stats-bar {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    justify-content: flex-start !important;
    padding: 0 1rem;
    gap: 1.5rem !important;
  }
  .trust-bar::-webkit-scrollbar,
  .stats-bar::-webkit-scrollbar { display: none; }
  .trust-bar__divider,
  .stats-bar__divider { display: none; }
  .trust-bar > div,
  .stats-bar > div { white-space: nowrap; flex-shrink: 0; }

  /* ═══════════════════════════════════════════════
     VALUE CARDS (About page pillars)
  ═══════════════════════════════════════════════ */
  .value-card { padding: 2rem 1.5rem; }
  .value-card__icon { font-size: 2.5rem; margin-bottom: 1rem; }
  .value-card h3 { font-size: 1.2rem; }

  /* ═══════════════════════════════════════════════
     TRAINER / TEAM CARDS
  ═══════════════════════════════════════════════ */
  .trainer-card__photo { aspect-ratio: 1 !important; }
  .trainer-card__body { padding: 1rem; }
  .trainer-card__name { font-size: 0.95rem; }
  .trainer-card__bio { font-size: var(--text-sm); line-height: 1.55; }

  /* ═══════════════════════════════════════════════
     STATS SECTION
  ═══════════════════════════════════════════════ */
  .stat { padding: 1.75rem 1rem; }
  .stat__number { font-size: clamp(2rem, 7vw, 2.8rem); }

  /* ═══════════════════════════════════════════════
     PLAN CARDS (Membership)
  ═══════════════════════════════════════════════ */
  .plan-card { padding: 2rem 1.25rem; }
  .plan-card__price { font-size: 2.2rem; }

  /* ═══════════════════════════════════════════════
     CTA BANNER
  ═══════════════════════════════════════════════ */
  .cta-banner { grid-template-columns: 1fr !important; padding: 2.5rem 1.5rem; }
  .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .cta-banner p { font-size: var(--text-sm); margin-bottom: 1.5rem; }

  /* ═══════════════════════════════════════════════
     EDEN TV CATEGORIES
  ═══════════════════════════════════════════════ */
  .tv-categories { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; max-width: 100% !important; }
  .tv-category { padding: 1.25rem 0.75rem; }
  .tv-category__icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
  .tv-category__name { font-size: var(--text-xs); }

  /* ═══════════════════════════════════════════════
     SPIN CLASS CARDS
  ═══════════════════════════════════════════════ */
  .spin-class-card { min-height: 260px; }
  .spin-class-card__title { font-size: 1.5rem; }

  /* ═══════════════════════════════════════════════
     TIMETABLE FILTERS
  ═══════════════════════════════════════════════ */
  .timetable-filters { padding: 1rem; gap: 0.4rem; }
  .filter-btn { padding: 0.35rem 0.85rem; font-size: var(--text-xs); }

  /* ═══════════════════════════════════════════════
     COMPARISON TABLE — horizontal scroll
  ═══════════════════════════════════════════════ */
  .comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .comparison-table { min-width: 480px; }
  .comparison-table th, .comparison-table td { padding: 0.7rem 0.6rem; font-size: var(--text-sm); }

  /* ═══════════════════════════════════════════════
     PATHWAY STEPS (GP Referral)
  ═══════════════════════════════════════════════ */
  .pathway-step { padding: 1.5rem 1.25rem; }
  .pathway-step::before { display: none !important; }

  /* ═══════════════════════════════════════════════
     BLOG CARDS
  ═══════════════════════════════════════════════ */
  .blog-card__title { font-size: 1rem; }
  .blog-card__body { padding: 1.25rem; }

  /* ═══════════════════════════════════════════════
     MAP PLACEHOLDER
  ═══════════════════════════════════════════════ */
  .map-placeholder { height: 260px !important; border-radius: var(--radius-lg) !important; }

  /* ═══════════════════════════════════════════════
     HOURS GRID (Contact page)
  ═══════════════════════════════════════════════ */
  .hours-grid { grid-template-columns: 1fr; }

  /* ═══════════════════════════════════════════════
     QUOTE BLOCK
  ═══════════════════════════════════════════════ */
  .quote-block p { font-size: 1.05rem; }
  .quote-block { padding-left: 1.25rem; }

  /* ═══════════════════════════════════════════════
     DECORATIVE SECTION NUMBER
  ═══════════════════════════════════════════════ */
  .section-number { font-size: 5rem; }

  /* ═══════════════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════════════ */
  .footer { padding: 3rem 0 2rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem; }
  .footer__brand-name { font-size: 1.5rem; }
  .footer__desc { max-width: 100%; }
  .footer__accreditations { flex-wrap: wrap; gap: 0.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 0.75rem; }
  .footer__legal { justify-content: center; }

  /* ═══════════════════════════════════════════════
     STICKY CTA BAR
  ═══════════════════════════════════════════════ */
  .sticky-cta { flex-direction: column; padding: 0.75rem 1rem; gap: 0.5rem; }
  .sticky-cta .btn { width: 100%; justify-content: center; }
  .sticky-cta__text { font-size: var(--text-sm); text-align: center; }

  /* ═══════════════════════════════════════════════
     WHATSAPP FLOAT — move up above sticky CTA
  ═══════════════════════════════════════════════ */
  .whatsapp-float { bottom: 135px; width: 48px; height: 48px; font-size: 1.25rem; }

  /* ═══════════════════════════════════════════════
     MOBILE CENTRE ALIGNMENT
     Applies to all section content; preserves
     form elements and comparison tables left-aligned
  ═══════════════════════════════════════════════ */

  /* Global text centre for section content */
  .section,
  .page-hero { text-align: center; }

  /* Headings everywhere on mobile */
  h1, h2, h3, h4 { text-align: center; }

  /* Eyebrow labels */
  .eyebrow { display: block; text-align: center; }

  /* Lead / body copy inside sections */
  .lead,
  .section p,
  .page-hero p,
  .page-hero__subtitle,
  .hero__subtitle { text-align: center; }

  /* Section headers & dividers */
  .section-header { text-align: center; }
  .section-header__divider { margin-left: auto; margin-right: auto; }

  /* Hero content */
  .hero__label { text-align: center; }
  .hero__title { text-align: center; }

  /* Feature items — stack icon above text, centre both */
  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-item__icon { margin-bottom: 0.5rem; }
  .feature-item__text { text-align: center; }

  /* Card bodies */
  .card__body,
  .card__body p,
  .card__title { text-align: center; }

  /* Value cards */
  .value-card,
  .value-card h3,
  .value-card p { text-align: center; }

  /* Trainer / team card bodies */
  .trainer-card__body,
  .trainer-card__name,
  .trainer-card__role,
  .trainer-card__bio { text-align: center; }
  .trainer-card__body a { display: block; text-align: center; }

  /* Stats section */
  .stat { text-align: center; }
  .stat__number,
  .stat__label { text-align: center; }

  /* Plan cards */
  .plan-card { text-align: center; }
  .plan-card__tier,
  .plan-card__price,
  .plan-card__desc { text-align: center; }
  .plan-card ul { text-align: left; padding-left: 0; list-style: none; }

  /* CTA banner */
  .cta-banner,
  .cta-banner h2,
  .cta-banner p { text-align: center; }
  .cta-banner .cta-group { justify-content: center; }

  /* Pathway steps */
  .pathway-step { text-align: center; }
  .pathway-step h3,
  .pathway-step p { text-align: center; }

  /* Blog cards */
  .blog-card__body,
  .blog-card__title,
  .blog-card__excerpt,
  .blog-card__meta { text-align: center; }

  /* TV category cards */
  .tv-category,
  .tv-category__name { text-align: center; }

  /* Quote blocks — centre and drop left border */
  .quote-block { text-align: center; border-left: none; padding-left: 0; padding-top: 1.25rem; }
  .quote-block::before { display: block; text-align: center; margin-bottom: 0.5rem; }

  /* Footer columns — centre all direct children of footer grid */
  .footer__grid > div { text-align: center; }
  .footer__brand-name,
  .footer__brand-tag,
  .footer__desc { text-align: center; }
  .footer__socials { justify-content: center; }
  .footer__col-title { text-align: center; }
  .footer__links { align-items: center; display: flex; flex-direction: column; }
  .footer__contact-item { justify-content: center; text-align: center; }

  /* Blog featured article — stack image above text */
  .blog-featured-grid { grid-template-columns: 1fr !important; }
  .blog-featured-grid > div:last-child { padding: 1.5rem !important; }
  .blog-featured-grid > div:last-child h2 { font-size: clamp(1.2rem, 5vw, 1.5rem) !important; text-align: center; }
  .blog-featured-grid > div:last-child p { text-align: center; }

  /* ── Preserve left-alignment for UX-critical elements ── */
  .form-label,
  .form-group,
  .form-input,
  .form-textarea,
  .form-select { text-align: left; }

  /* ═══════════════════════════════════════════════
     FORM SELECT — larger text & arrow on mobile
  ═══════════════════════════════════════════════ */
  .form-textarea {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .form-textarea::-webkit-scrollbar { display: none; }

  .form-select {
    font-size: var(--text-base);
    color: var(--charcoal);
    padding: 0.875rem 2.75rem 0.875rem 1rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 20px 20px;
  }
  .comparison-table th,
  .comparison-table td { text-align: center; }
  .timetable-filters { text-align: left; }
  .nav__links,
  .promo-bar { text-align: center; }
  .nav__logo { text-align: left; }

  /* ═══════════════════════════════════════════════
     SPRING WELCOME PACK — centre on mobile
  ═══════════════════════════════════════════════ */
  section[aria-label="Spring Welcome Pack offer"] .container > div {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }
  section[aria-label="Spring Welcome Pack offer"] .container > div > div:first-child {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  section[aria-label="Spring Welcome Pack offer"] .btn {
    width: 100%;
    justify-content: center;
  }

  /* ═══════════════════════════════════════════════
     CONTACT INFO ITEMS — fixed 213px width on mobile
  ═══════════════════════════════════════════════ */
  .contact-info-item {
    width: 213px !important;
    max-width: 213px !important;
    box-sizing: border-box !important;
    text-align: left !important;
    align-items: flex-start;
    overflow: hidden;
  }
  /* Text wrapper (the plain div holding label + value) */
  .contact-info-item > div:last-child {
    width: 155.63px !important;
    max-width: 155.63px !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }
  .contact-info-item__label,
  .contact-info-item__value {
    text-align: left !important;
    width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .contact-info-item__icon {
    flex-shrink: 0;
    align-self: flex-start;
    margin-top: 2px;
  }

  /* ═══════════════════════════════════════════════
     NEWSLETTER FORM — centre-align on mobile
  ═══════════════════════════════════════════════ */
  section[aria-labelledby="newsletter-heading"] form {
    justify-content: center !important;
    align-items: center !important;
  }
  section[aria-labelledby="newsletter-heading"] form input[type="email"] {
    text-align: center;
  }
  section[aria-labelledby="newsletter-heading"] form .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  /* ═══════════════════════════════════════════════
     ABOUT — Story section (matches grid collapse breakpoint)
  ═══════════════════════════════════════════════ */

  /* Text column: fixed 300px on mobile */
  .grid-2 > .fade-up.story-text-col,
  .story-text-col {
    width: 300px !important;
    max-width: 300px !important;
    min-width: 0 !important;
    overflow: hidden !important;
    text-align: left !important;
    overflow-wrap: break-word;
    word-break: break-word;
    box-sizing: border-box !important;
  }
  .story-text-col p,
  .story-text-col h2 {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
    white-space: normal;
  }

  /* Quote column: bounded to grid cell */
  .story-quote-col {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
  }

  /* Quote card: drop fixed aspect-ratio, reduce padding */
  .story-quote-card {
    aspect-ratio: auto !important;
    padding: 2rem 1.25rem !important;
    gap: 1.5rem !important;
  }

  /* Quote headline: smaller clamp on mobile */
  .story-quote-text {
    font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  /* Stats row: allow wrapping on narrow screens */
  .story-quote-stats {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 1rem !important;
  }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print styles */
@media print {
  .nav, .sticky-cta, .whatsapp-float, .promo-bar { display: none !important; }
  body { padding-top: 0; }
}
