/* ===========================================================
   FitCove Studio — Mobile-first, boutique fitness studio theme
   =========================================================== */

:root {
  /* Color theme — swap these per-client */
  --color-bg: #FAF6EF;
  --color-bg-alt: #F2ECE0;
  --color-surface: #FFFFFF;
  --color-text: #262420;
  --color-text-muted: #6B655C;
  --color-accent: #2F4A3C;       /* deep forest green */
  --color-accent-light: #E7EEE8;
  --color-accent-dark: #203327;
  --color-border: #E4DDCF;
  --color-warn: #B45B3D;
  --color-good: #2F4A3C;
  --color-mid: #C79A3B;
  --color-bad: #B4402A;

  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(38,36,32,0.06);
  --shadow-md: 0 8px 30px rgba(38,36,32,0.10);
  --header-h: 64px;
  --bottom-bar-h: 68px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: var(--bottom-bar-h);
}

img { max-width: 100%; display: block; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; margin: 0; line-height: 1.15; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--color-accent); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--color-accent-dark); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-secondary { background: var(--color-accent-light); color: var(--color-accent-dark); }
.btn-secondary:hover { background: var(--color-accent); color: #fff; }
.btn-outline { background: transparent; color: var(--color-accent); border: 1.5px solid var(--color-accent); }
.btn-outline:hover { background: var(--color-accent); color: #fff; }
.btn-lg { min-height: 54px; padding: 0 30px; font-size: 1rem; width: 100%; }
.icon-wa { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(250,246,239,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(38,36,32,0.08); }
.header-inner {
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--color-accent-dark); }
.logo span { color: var(--color-warn); font-weight: 500; }
.desktop-nav { display: none; }
.desktop-join { display: none; }

.hamburger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
  background: transparent; border: none;
}
.hamburger span { width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.25s ease; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile full-screen menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 20px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 26px; }
.mobile-menu nav a { font-family: var(--font-heading); font-size: 1.6rem; color: var(--color-text); }
.mobile-menu-close {
  position: absolute; top: 16px; right: 16px;
  width: 48px; height: 48px;
  font-size: 2rem; line-height: 1;
  background: none; border: none; color: var(--color-text);
}
.mobile-menu-cta { margin-top: 10px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 8px; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  top: -80px; right: -100px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-media { position: relative; width: 100%; height: 62vh; min-height: 400px; max-height: 560px; overflow: hidden; z-index: 1; }
.hero-img-mobile { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-img-desktop { display: none; }
.hero-content { padding: 28px 20px 40px; text-align: center; }
.hero-content .eyebrow { justify-content: center; }
.eyebrow { color: var(--color-warn); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; font-weight: 600; margin: 0 0 10px; display: flex; align-items: center; gap: 8px; }
.section-head .eyebrow { justify-content: center; }
.eyebrow::before { content: ""; width: 18px; height: 2px; background: var(--color-warn); border-radius: 2px; }
.hero-content h1 { font-size: 2.3rem; color: var(--color-accent-dark); margin-bottom: 14px; }
.hero-sub { color: var(--color-text-muted); font-size: 1rem; line-height: 1.6; margin: 0 0 24px; max-width: 480px; margin-left: auto; margin-right: auto; }
.scroll-hint { display: block; margin: 20px auto 0; background: none; border: none; color: var(--color-text-muted); animation: bob 2s infinite; }
.scroll-hint svg { width: 22px; height: 22px; }
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(6px);} }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--color-accent-dark); padding: 22px 0; }
.trust-scroll {
  display: flex; gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 20px;
  scrollbar-width: none;
}
.trust-scroll::-webkit-scrollbar { display: none; }
.trust-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  min-width: 128px;
  text-align: center;
  color: #fff;
  padding: 0 14px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.trust-item:last-child { border-right: none; }
.trust-num { display: block; font-family: var(--font-heading); font-size: 1.6rem; font-weight: 600; }
.trust-label { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ---------- Section shell ---------- */
.section { position: relative; padding: 56px 20px; max-width: 1200px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 30px; }
.section-head h2 { font-size: 1.7rem; color: var(--color-accent-dark); }
.section-sub { color: var(--color-text-muted); margin-top: 8px; }

/* Full-bleed tinted band without breaking the centered max-width layout.
   The tint lives on a pseudo-element pinned to the section's own top/bottom,
   so it can never bleed into neighboring sections. */
.section.band-alt { z-index: 0; }
.section.band-alt::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--color-bg-alt);
  z-index: -1;
}

/* ---------- Why cards ---------- */
.why-cards { display: flex; flex-direction: column; gap: 16px; }
.why-card {
  width: 100%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.why-icon {
  flex: 0 0 auto;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-accent);
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.1rem; }
.why-card p { margin: 0; color: var(--color-text-muted); font-size: 0.92rem; line-height: 1.55; }

/* ---------- Programs (swipeable) ---------- */
.programs-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.programs-scroll::-webkit-scrollbar { display: none; }
.program-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  padding: 0;
}
.program-card img { width: 100%; height: 150px; object-fit: cover; transition: transform 0.4s ease; }
.program-card:hover img { transform: scale(1.06); }
.program-card-body { padding: 16px; }
.program-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.program-teaser { color: var(--color-text-muted); font-size: 0.88rem; margin: 0; }
.program-detail {
  max-height: 0; overflow: hidden;
  color: var(--color-text-muted); font-size: 0.88rem; line-height: 1.5;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.program-card[aria-expanded="true"] .program-detail { max-height: 200px; margin-top: 10px; }

/* ---------- Tools ---------- */
.tools-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 20px;
  scrollbar-width: none;
}
.tools-tabs::-webkit-scrollbar { display: none; }
.tool-tab {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.tool-tab.active { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }

.tool-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
}
.tool-panel h3 { font-size: 1.2rem; margin-bottom: 18px; }

.field-row { margin-bottom: 16px; }
.field-row label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); margin-bottom: 6px; }
.field-row input, .field-row select, .field-row textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--color-bg);
  color: var(--color-text);
}
.field-row textarea { padding: 12px 14px; min-height: 90px; resize: vertical; }
.field-row input:focus, .field-row select:focus, .field-row textarea:focus {
  outline: none; border-color: var(--color-accent);
}

.segmented { display: flex; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.seg-btn { flex: 1; min-height: 48px; border: none; background: var(--color-bg); color: var(--color-text-muted); font-weight: 600; }
.seg-btn.active { background: var(--color-accent); color: #fff; }

.tool-calc-btn { width: 100%; margin-top: 4px; margin-bottom: 18px; }

.tool-result { background: var(--color-accent-light); border-radius: var(--radius-md); padding: 18px; margin-bottom: 18px; }
.result-value { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.result-value span:first-child { font-family: var(--font-heading); font-size: 2rem; color: var(--color-accent-dark); }
.result-tag { color: var(--color-text-muted); font-size: 0.9rem; }
.result-note { margin: 0; color: var(--color-text-muted); font-size: 0.88rem; }

.gauge { height: 10px; border-radius: 999px; background: linear-gradient(to right, var(--color-mid), var(--color-good), var(--color-mid), var(--color-bad)); position: relative; margin-bottom: 8px; }
.gauge-marker { position: absolute; top: -4px; width: 4px; height: 18px; background: var(--color-text); border-radius: 2px; left: 0%; transition: left 0.4s ease; }
.gauge-fill { display: none; }
.gauge-labels { display: flex; justify-content: space-between; font-size: 0.7rem; color: var(--color-text-muted); }

.tool-cta {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--color-warn);
  color: #fff;
  font-weight: 600;
  font-size: 0.92rem;
}

/* ---------- Trainers ---------- */
.trainers-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.trainers-scroll::-webkit-scrollbar { display: none; }
.trainer-card {
  flex: 0 0 62%;
  scroll-snap-align: start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: left;
  padding: 0 0 16px;
}
.trainer-card img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s ease; }
.trainer-card:hover img { transform: scale(1.06); }
.trainer-card h3 { font-size: 1.05rem; margin: 14px 16px 2px; }
.trainer-spec { color: var(--color-warn); font-size: 0.82rem; font-weight: 600; margin: 0 16px; }
.trainer-bio {
  max-height: 0; overflow: hidden;
  color: var(--color-text-muted); font-size: 0.85rem; line-height: 1.5;
  margin: 0 16px; transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.trainer-card[aria-expanded="true"] .trainer-bio { max-height: 160px; margin-top: 10px; }

/* ---------- Plans ---------- */
.plans-stack { display: flex; flex-direction: column; gap: 18px; }
.plan-card {
  position: relative;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
}
.plan-card.popular { border-color: var(--color-accent); box-shadow: var(--shadow-md); }
.popular-badge {
  position: absolute; top: -12px; left: 22px;
  background: var(--color-accent); color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 12px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.plan-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.plan-price { font-family: var(--font-heading); font-size: 1.7rem; color: var(--color-accent-dark); margin: 0 0 16px; }
.plan-price span { font-family: var(--font-body); font-size: 0.85rem; color: var(--color-text-muted); font-weight: 400; }
.plan-features { margin-bottom: 20px; }
.plan-features li { padding-left: 26px; position: relative; margin-bottom: 8px; color: var(--color-text-muted); font-size: 0.92rem; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent); font-weight: 700; }
.plan-card .btn { width: 100%; }

/* ---------- Testimonials ---------- */
.testi-carousel { position: relative; }
.testi-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-card {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 24px 30px;
  text-align: center;
}
.testi-card::before {
  content: "\201C";
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: var(--color-accent-light);
  line-height: 1;
}
.testi-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; position: relative; border: 3px solid var(--color-accent-light); }
.testi-quote { position: relative; font-family: var(--font-heading); font-size: 1.05rem; line-height: 1.5; color: var(--color-text); margin: 0 0 14px; }
.testi-name { color: var(--color-warn); font-weight: 600; font-size: 0.9rem; margin: 0; }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.testi-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--color-border); border: none; padding: 0; }
.testi-dots button.active { background: var(--color-accent); width: 22px; border-radius: 4px; }

/* ---------- Gallery ---------- */
.gallery-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll img {
  flex: 0 0 72%;
  scroll-snap-align: start;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-scroll img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.lightbox {
  position: fixed; inset: 0; background: rgba(20,18,15,0.94);
  z-index: 80; display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 85vh; border-radius: var(--radius-md); }
.lightbox-close { position: absolute; top: 16px; right: 16px; width: 48px; height: 48px; background: none; border: none; color: #fff; font-size: 2rem; }

/* ---------- Contact ---------- */
.map-wrap { border-radius: var(--radius-md); overflow: hidden; margin-bottom: 10px; }
.map-open-link { display: inline-block; color: var(--color-accent); font-weight: 600; font-size: 0.9rem; margin-bottom: 24px; }
.contact-details { margin-bottom: 28px; }
.contact-details p { color: var(--color-text-muted); margin: 0 0 14px; }
.contact-line { display: flex; align-items: center; gap: 10px; min-height: 44px; color: var(--color-text); font-weight: 600; margin-bottom: 6px; }
.contact-line svg { width: 20px; height: 20px; color: var(--color-accent); flex-shrink: 0; }

.hours-collapsible { margin-top: 16px; border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; }
.hours-collapsible summary { min-height: 48px; display: flex; align-items: center; padding: 0 16px; font-weight: 600; cursor: pointer; background: var(--color-surface); }
.hours-collapsible ul { padding: 0 16px 16px; }
.hours-collapsible li { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px solid var(--color-border); color: var(--color-text-muted); font-size: 0.9rem; }
.hours-collapsible li:first-child { border-top: none; }

.contact-form { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 24px 20px; }
.form-status { margin-top: 10px; color: var(--color-accent); font-weight: 600; font-size: 0.9rem; }

/* ---------- Sticky bottom bar ---------- */
.sticky-bottom-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  height: var(--bottom-bar-h);
  background: var(--color-surface);
  box-shadow: 0 -4px 20px rgba(38,36,32,0.12);
  padding: 8px 10px calc(env(safe-area-inset-bottom, 0px) + 8px);
  gap: 10px;
}
.sticky-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 48px;
}
.sticky-btn svg { width: 20px; height: 20px; }
.sticky-wa { background: #25D366; color: #fff; }
.sticky-call { background: var(--color-accent); color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-accent-dark); color: rgba(255,255,255,0.85); padding: 36px 20px calc(36px + var(--bottom-bar-h)); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 14px; text-align: center; }
.footer-logo { color: #fff; }
.footer-logo span { color: var(--color-warn); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.88rem; opacity: 0.85; }
.footer-social a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
.footer-social svg { width: 18px; height: 18px; }
.footer-contact, .footer-copy { font-size: 0.8rem; opacity: 0.65; margin: 0; }

/* ===========================================================
   Tablet / Desktop scale-up (mobile-first: min-width queries)
   =========================================================== */
@media (min-width: 720px) {
  .desktop-nav { display: flex; gap: 28px; }
  .desktop-nav a { font-weight: 600; font-size: 0.95rem; color: var(--color-text-muted); }
  .desktop-nav a:hover { color: var(--color-accent); }
  .desktop-join { display: inline-flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
  body { padding-bottom: 0; }
  .sticky-bottom-bar { display: none; }

  .hero { display: grid; grid-template-columns: 1fr 1fr; align-items: center; max-width: 1200px; margin: 0 auto; padding: 40px 40px 60px; gap: 40px; }
  .hero-media { order: 2; height: 480px; border-radius: var(--radius-lg); }
  .hero-img-mobile { display: none; }
  .hero-img-desktop { display: block; width: 100%; height: 100%; object-fit: cover; }
  .hero-content { order: 1; text-align: left; padding: 0; }
  .hero-content .eyebrow { justify-content: flex-start; }
  .hero-content h1 { font-size: 3.2rem; }
  .hero-sub { margin-left: 0; }
  .btn-lg { width: auto; }
  .scroll-hint { margin-left: 0; }

  .trust-scroll { justify-content: center; overflow: visible; padding: 0 40px; }
  .trust-item { min-width: 160px; }

  .why-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
  .why-card { flex: 0 1 300px; }
  .why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--color-accent); }

  .programs-scroll { overflow: visible; flex-wrap: wrap; justify-content: center; }
  .program-card { flex: 0 0 30%; transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

  .tool-panel { max-width: 560px; margin: 0 auto; }
  .tools-tabs { justify-content: center; }

  .trainers-scroll { overflow: visible; flex-wrap: wrap; justify-content: center; }
  .trainer-card { flex: 0 0 22%; transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .trainer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

  .plans-stack { flex-direction: row; align-items: stretch; }
  .plan-card { flex: 1; display: flex; flex-direction: column; transition: transform 0.25s ease, box-shadow 0.25s ease; }
  .plan-card .btn { margin-top: auto; }
  .plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
  .plan-card.popular:hover { transform: translateY(-8px); }

  .gallery-scroll img { flex: 0 0 30%; height: 260px; }

  .contact { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
  .contact .section-head { grid-column: 1 / -1; }
  .map-wrap iframe { height: 340px; }
}

@media (min-width: 1000px) {
  .hero-content h1 { font-size: 3.6rem; }
  .why-card { flex-basis: 208px; }
  .program-card { flex: 0 0 18%; }
}
