/* ============================================================
   Gym One Fitness — style.css
   Colors: #000 · #1a1a1a · #fff
   Fonts: Bebas Neue (headings) · Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700;900&display=swap');

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img  { max-width: 100%; display: block; }
a    { text-decoration: none; transition: color 0.2s, background 0.2s, border-color 0.2s; }
ul   { list-style: none; }

/* ---- Variables ---- */
:root {
  --black:      #000000;
  --dark:       #1a1a1a;
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --gray:       #888888;
  --light-gray: #e0e0e0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 400;
}
h1 { font-size: clamp(52px,  9vw, 112px); }
h2 { font-size: clamp(36px,  5vw,  64px); }
h3 { font-size: clamp(24px,  3vw,  38px); }
h4 { font-size: clamp(18px, 2.5vw, 26px); }

p { font-size: 1rem; line-height: 1.75; color: inherit; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.45); }

/* ---- Layout ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section           { padding: 6rem 0; }
.section--sm       { padding: 3.5rem 0; }
.section--white    { background: var(--white);     color: var(--dark);  }
.section--offwhite { background: var(--off-white); color: var(--dark);  }
.section--dark     { background: var(--dark);      color: var(--white); }
.section--black    { background: var(--black);     color: var(--white); }
.text-center       { text-align: center; }

/* Headings in dark sections */
.section--dark  h1, .section--dark  h2, .section--dark  h3, .section--dark  h4,
.section--black h1, .section--black h2, .section--black h3, .section--black h4 {
  color: var(--white);
}

/* ---- Divider ---- */
.divider {
  width: 48px;
  height: 3px;
  background: var(--black);
  border: none;
  margin: 0.75rem 0 2rem;
}
.divider--white  { background: var(--white); }
.divider--center { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  padding: 0.9rem 2.2rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  text-align: center;
}
.btn--red     { background: var(--white);  color: var(--black); border-color: var(--white); }
.btn--red:hover { background: transparent; border-color: var(--white); color: var(--white); }
.btn--white   { background: transparent; color: var(--white); border-color: var(--white); }
.btn--white:hover { background: var(--white); color: var(--black); }
.btn--black   { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black:hover { background: transparent; color: var(--black); }
.btn--outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: var(--white); }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 2px solid var(--black);
  height: 68px;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.nav__logo     { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo img { height: 46px; width: auto; display: block; }

.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 0.55rem 1rem;
  display: block;
}
.nav__links a:hover,
.nav__links a.active { background: var(--black); color: var(--white); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 9px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO (index)
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}
/* Decorative background "1" */
.hero::after {
  content: '1';
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(300px, 45vw, 600px);
  color: rgba(255,255,255,0.025);
  position: absolute;
  right: -2%;
  bottom: -10%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}
.hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 114px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__title em { font-style: normal; color: var(--white); }
.hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero__image { display: flex; align-items: center; justify-content: center; position: relative; }
.hero__image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero__image img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1) brightness(0.9);
  display: block;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #111;
}
.page-hero::after {
  content: attr(data-word);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(120px, 22vw, 300px);
  color: rgba(255,255,255,0.035);
  position: absolute;
  right: -1%;
  bottom: -12%;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.02em;
}
.page-hero h1         { color: var(--white); margin-bottom: 0.5rem; }
.page-hero p          { color: rgba(255,255,255,0.5); font-size: 1.1rem; max-width: 560px; }
.page-hero__line      { width: 52px; height: 3px; background: var(--white); margin: 1rem 0 1.25rem; }

/* ============================================================
   WHY GYM ONE — feature blocks
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--black);
  border-left: 2px solid var(--black);
}
.feature-block {
  padding: 3.5rem 2.5rem;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.feature-block__big {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 7.5vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.feature-block__tag {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1rem;
}
.feature-block p { font-size: 0.92rem; color: #555; line-height: 1.7; margin: 0; }

/* ============================================================
   MEMBERSHIP CARDS — preview (dark section, index)
   ============================================================ */
.membership-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.mcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.2s;
}
.mcard:hover { border-color: rgba(255,255,255,0.28); }
.mcard--featured { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.08); }
.mcard__badge {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  background: var(--white);
  color: var(--black);
  padding: 0.28rem 0.7rem;
  display: inline-block;
  align-self: flex-start;
}
.mcard__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1;
}
.mcard__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  color: var(--white);
}
.mcard__price sup  { font-size: 0.42em; vertical-align: super; }
.mcard__price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.28em;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: baseline;
}
.mcard__desc { font-size: 0.86rem; color: rgba(255,255,255,0.52); line-height: 1.65; flex: 1; }

/* ============================================================
   PLAN CARDS — memberships page (white background)
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.plan-card {
  background: var(--white);
  border: 2px solid var(--black);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow 0.2s;
}
.plan-card:hover { box-shadow: 6px 6px 0 var(--black); }
.plan-card--accent { border-top: 4px solid var(--black); }
.plan-card__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px);
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1;
}
.plan-card__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1;
  color: var(--black);
}
.plan-card__price sup  { font-size: 0.42em; vertical-align: super; }
.plan-card__price span {
  font-family: 'Inter', sans-serif;
  font-size: 0.28em;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: baseline;
}
.plan-card__desc { font-size: 0.88rem; color: #555; line-height: 1.65; flex: 1; }
.plan-card .btn  { align-self: flex-start; margin-top: 0.5rem; }

/* ============================================================
   SILVER SNEAKERS BAND
   ============================================================ */
.ss-band {
  background: var(--dark);
  border-top: 3px solid rgba(255,255,255,0.15);
  border-bottom: 3px solid rgba(255,255,255,0.15);
  padding: 2.75rem 0;
}
.ss-band__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ss-band__accent {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  color: var(--white);
  flex-shrink: 0;
  line-height: 1;
}
.ss-band__text h3  { font-size: clamp(22px, 3vw, 34px); color: var(--white); margin-bottom: 0.4rem; }
.ss-band__text p   { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; }

/* ============================================================
   PERSONAL TRAINING TEASER
   ============================================================ */
.pt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.pt-deco {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 16vw, 220px);
  line-height: 0.88;
  color: var(--light-gray);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-deco {
  background: var(--black);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 460px;
}
.about-deco__bg {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 180px);
  color: rgba(255,255,255,0.05);
  line-height: 1;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  padding: 1rem;
  text-align: center;
}
.about-deco__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2.5rem;
}
.about-deco__content h3 {
  font-size: clamp(28px, 4vw, 52px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.about-deco__content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.1);
  border-left: 1px solid rgba(255,255,255,0.1);
}
.about-stat {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.about-stat__number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.about-stat__label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-item { margin-bottom: 2rem; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.35rem;
}
.contact-info-value { font-size: 1.1rem; font-weight: 600; color: var(--dark); display: block; }
.contact-info-note  { font-size: 0.84rem; color: var(--gray); margin-top: 0.3rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: 0;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit .btn    { width: 100%; font-size: 1.1rem; padding: 1.1rem; }

.form-success {
  display: none;
  background: var(--dark);
  border: 2px solid var(--white);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  font-size: 0.95rem;
}

/* ============================================================
   CANCEL LINK
   ============================================================ */
.cancel-wrap {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid var(--light-gray);
  margin-top: 0.5rem;
}
.cancel-wrap a {
  font-size: 0.85rem;
  color: var(--gray);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cancel-wrap a:hover { color: var(--dark); }

/* ============================================================
   FIND US STRIP (home page)
   ============================================================ */
.find-us {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.find-us__address,
.find-us__hours { flex: 1; min-width: 200px; }
.find-us__street {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.find-us__sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .find-us { gap: 2.5rem; }
  .find-us__hours { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 2rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4.5rem 0 0;
  border-top: 3px solid #111;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1140px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
}
.footer__logo a   { display: inline-block; }
.footer__logo img { height: 68px; width: auto; margin-bottom: 1.25rem; }
.footer__tagline  { font-size: 0.85rem; color: rgba(255,255,255,0.32); line-height: 1.75; font-style: italic; }
.footer__heading  {
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.footer__links li  { margin-bottom: 0.6rem; }
.footer__links a   { font-size: 0.85rem; color: rgba(255,255,255,0.42); font-family: 'Inter', sans-serif; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  line-height: 2;
  font-style: normal;
}
.footer__address a { color: rgba(255,255,255,0.42); }
.footer__address a:hover { color: var(--white); }
.footer__bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 1.25rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
}
.footer__credit {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.74rem;
  color: rgba(255,255,255,0.2);
}
.footer__credit a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer__credit a:hover { color: var(--white); }

/* Footer social icons */
.footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s, border-color 0.2s;
}
.footer__social-link:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

/* Contact page social links */
.contact-social { display: flex; gap: 0.75rem; margin-top: 1.75rem; flex-wrap: wrap; }
.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: border-color 0.2s, color 0.2s;
}
.contact-social-link:hover { border-color: #1a1a1a; color: #000; }

/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */
@media (max-width: 768px) {

  /* Nav */
  .nav { height: auto; min-height: 60px; overflow: visible; }
  .nav__inner { padding: 0 1.25rem; min-height: 60px; }
  .nav__logo img { height: 34px; }
  .nav__toggle { display: flex; margin-right: -4px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    padding: 0.5rem 0 1rem;
    gap: 0;
    z-index: 1000;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  }
  .nav__links.open { display: flex; }
  .nav__links li   { width: 100%; }
  .nav__links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.65rem 1.5rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--light-gray);
  }
  .nav__links li:last-child a { border-bottom: none; }

  /* Container & sections */
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }

  /* Hero */
  .hero { min-height: auto; padding: 4rem 0 4.5rem; }
  .hero::after { display: none; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem;
    text-align: center;
  }
  .hero__image { order: -1; }
  .hero__image img { max-width: 220px; margin: 0 auto; }
  .hero__image::before { display: none; }
  .hero__btns { justify-content: center; flex-direction: column; align-items: stretch; }
  .hero__btns .btn { width: 100%; }
  .eyebrow { text-align: center; }

  /* Page hero */
  .page-hero { padding: 3.5rem 0 2.75rem; }
  .page-hero::after { display: none; }

  /* Feature blocks */
  .feature-row { grid-template-columns: 1fr; border-left: none; }
  .feature-block { padding: 2.5rem 1.5rem; border-left: 2px solid var(--black); }

  /* Membership preview & plans */
  .membership-preview { grid-template-columns: 1fr; gap: 1rem; }
  .plans-grid { grid-template-columns: 1fr; }

  /* Silver Sneakers band */
  .ss-band__inner { flex-direction: column; align-items: flex-start; padding: 0 1.25rem; gap: 0.75rem; }

  /* PT section */
  .pt-inner { grid-template-columns: 1fr; gap: 2rem; }
  .pt-deco  { font-size: 80px; text-align: center; line-height: 1; }

  /* About */
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-deco  { max-width: 100%; aspect-ratio: auto; min-height: 260px; }
  .about-stats { grid-template-columns: 1fr; border-left: none; }
  .about-stat  { border-left: 1px solid rgba(255,255,255,0.1); padding: 2rem 1.5rem; }

  /* Contact */
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer { padding: 3.5rem 0 0; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 0 1.25rem;
    margin-bottom: 2.25rem;
  }
  .footer__bottom { padding: 1.25rem; flex-direction: column; text-align: center; }
  .footer__credit { position: static; transform: none; }
}
