/* ── Variables ─────────────────────────────────────────────── */
:root {
  --red:          #d4726a;
  --red-dark:     #c45f56;
  --red-light:    #fde8d8;
  --cream:        #fef6f0;
  --cream-alt:    #fef9f5;
  --surface:      #ffffff;
  --border:       #f0d8cc;
  --border-dark:  #dfc4b4;
  --text:         #3b2a2a;
  --text-mid:     #5c4444;
  --text-muted:   #9a8a84;
  --footer-bg:    #3b2a2a;
  --radius:       12px;
  --radius-lg:    20px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ────────────────────────────────────────────── */
.serif { font-family: 'Poppins', sans-serif; }
h1, h2, h3 { font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { font-weight: 400; }

/* ── Layout ────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding-top: 3.5rem; padding-bottom: 5rem; }
.section-sm { padding-top: 3rem; padding-bottom: 3rem; }

/* ── NAV ───────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(254,246,240,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(59,42,42,.08);
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--red); letter-spacing: .05em;
}
.nav-links {
  display: flex; align-items: center; gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  font-size: .88rem; font-weight: 400; letter-spacing: .04em;
  color: var(--text-mid); transition: color .2s;
}
.nav-links a:hover { color: var(--red); }
.nav-links .dropdown { position: relative; }
.nav-links .dropdown > a::after { content: ' ▾'; font-size: .7rem; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); padding-top: .75rem; min-width: 220px; z-index: 50;
}
.dropdown-menu-inner {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .5rem; box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.dropdown-menu a {
  display: block; padding: .55rem .9rem; border-radius: 8px;
  font-size: .85rem; color: var(--text-mid); transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--red-light); color: var(--red); }
.nav-links .dropdown:hover .dropdown-menu { display: block; }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-switch { display: flex; gap: .25rem; }
.lang-btn {
  font-size: .78rem; font-weight: 500; letter-spacing: .06em;
  padding: .3rem .55rem; border-radius: 6px; cursor: pointer;
  border: 1px solid transparent; background: transparent;
  color: var(--text-muted); transition: all .2s;
}
.lang-btn.active { background: var(--red); color: #fff; border-color: var(--red); }
.lang-btn:hover:not(.active) { color: var(--red); }

.btn-book-nav {
  font-size: .85rem; font-weight: 500;
  background: var(--red); color: #fff;
  padding: .5rem 1.1rem; border-radius: 8px;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-book-nav:hover { background: var(--red-dark); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: .25rem;
}
.nav-mobile-toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); transition: all .25s;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 5rem; padding-bottom: 3rem;
  background:
    linear-gradient(170deg, rgba(254,246,240,.92) 0%, rgba(253,232,216,.88) 30%, rgba(254,246,240,.85) 60%, rgba(253,214,189,.9) 100%),
    url('images/vingrs_gym.png') center/cover no-repeat;
}
.hero-logo-center {
  text-align: center; margin-bottom: 2.5rem;
}
.hero-logo-center img {
  height: 270px; width: auto; max-width: 100%;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 20%, rgba(212,114,106,.2) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(245,198,170,.4) 0%, transparent 60%);
}
.hero-bg::after {
  content: ''; position: absolute;
  top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,114,106,.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid { display: none; }
.hero-content {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--red);
}
.hero h1 {
  font-size: .8rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: .75rem; line-height: 1.4;
}
.hero-tagline-brand {
  font-family: 'Poppins', sans-serif; font-weight: 700; line-height: 1.15;
  font-size: clamp(2.2rem, 5vw, 3.8rem); color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-tagline-brand em { font-style: italic; color: var(--red); }
.hero-sub {
  font-size: 1.1rem; color: var(--text-mid); font-weight: 400;
  max-width: 480px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-trust {
  margin-top: 1.25rem; font-size: .85rem; font-weight: 500; color: var(--text-muted);
}
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red); color: #fff;
  font-weight: 600; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212,114,106,.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text-mid); font-weight: 500; font-size: 1rem;
  padding: .85rem 2rem; border-radius: 50px;
  border: 2px solid rgba(59,42,42,.2);
  transition: border-color .2s, background .2s, color .2s;
  cursor: pointer; background: transparent;
}
.btn-secondary:hover { border-color: var(--red); background: var(--red-light); color: var(--red); }

/* Hero info cards */
.hero-cards { display: flex; flex-direction: column; gap: 1rem; }
.hero-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,.6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(59,42,42,.06);
  transition: transform .2s, box-shadow .2s;
}
.hero-card:hover { transform: translateX(6px); box-shadow: 0 8px 25px rgba(59,42,42,.1); }
.hero-card-icon { font-size: 1.5rem; flex-shrink: 0; width: 44px; text-align: center; }
.hero-card-text { font-size: .95rem; font-weight: 600; color: var(--text); line-height: 1.55; }

/* Legacy hero-stats (keep hidden, replaced by cards) */
.hero-stats { display: none; }
.hero-stat-num { display: none; }
.hero-stat-label { display: none; }

/* ── SECTION LABELS ────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 20px; height: 2px; background: var(--red);
}
.section-title { color: var(--text); margin-bottom: 1rem; }
.section-title.dark { color: var(--text); }
.section-sub  { color: var(--text-mid); font-weight: 400; max-width: 540px; font-size: 1.05rem; }
.section-sub.dark { color: var(--text-mid); }

/* ── SERVICES GRID ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.service-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: pointer; display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232,22,42,.1);
}
.service-icon {
  font-size: 1.6rem; margin-bottom: 1rem;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: var(--red-light); border-radius: 10px;
}
.service-card h3 { color: var(--text); margin-bottom: .6rem; font-size: 1.25rem; }
.service-card p  { color: var(--text-mid); font-size: .9rem; font-weight: 400; flex: 1; }
.service-card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .85rem; color: var(--red); margin-top: 1.25rem;
  opacity: .75; transition: opacity .2s;
}
.service-card:hover .service-card-link { opacity: 1; }

/* ── ABOUT STRIP ───────────────────────────────────────────── */
.about-strip {
  background: var(--cream-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-text h2 { color: var(--text); margin-bottom: 1.25rem; }
.about-text p  { color: var(--text-mid); font-weight: 400; font-size: 1rem; margin-bottom: 1rem; line-height: 1.8; }
.about-callout {
  background: var(--red-light); border: 1px solid rgba(232,22,42,.2);
  border-left: 3px solid var(--red); border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem; margin-top: 1.5rem;
  color: var(--text); font-style: italic;
  font-family: 'Poppins', sans-serif; font-size: 1.2rem; line-height: 1.6;
}
.about-body p { color: var(--text-mid); font-weight: 400; line-height: 1.8; font-size: 1rem; margin-bottom: 1rem; }
.about-body p:last-child { margin-bottom: 0; }
.about-body .about-callout { margin-bottom: 0; }
.about-mission-title { font-size: 1.25rem; font-weight: 700; color: var(--text); margin: 2rem 0 .75rem; }
.about-goals { margin: .5rem 0 0 1.5rem; display: flex; flex-direction: column; gap: .35rem; }
.about-goals li { color: var(--text-mid); font-size: 1rem; line-height: 1.75; }
.about-videos {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin: 2rem 0;
}
.video-wrap {
  position: relative; padding-bottom: 56.25%; height: 0;
  overflow: hidden; border-radius: 12px;
}
.video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
@media (max-width: 640px) { .about-videos { grid-template-columns: 1fr; } }
.mission-points { display: flex; flex-direction: column; gap: 1.25rem; }
.mission-point {
  display: flex; gap: 1rem; align-items: flex-start;
}
.mission-point-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: .1rem;
}
.mission-point h4 { color: var(--text); font-size: .95rem; font-weight: 500; margin-bottom: .2rem; }
.mission-point p  { color: var(--text-mid); font-size: .87rem; font-weight: 400; }

/* ── PRICES (light section) ────────────────────────────────── */
.prices-section { background: var(--cream-alt); }
.prices-tabs {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.price-tab {
  padding: .5rem 1rem; border-radius: 8px; font-size: .85rem;
  font-weight: 500; cursor: pointer; transition: all .2s;
  border: 1px solid var(--border-dark); background: transparent; color: var(--text-mid);
}
.price-tab.active {
  background: var(--red); color: #fff; border-color: var(--red);
}
.price-tab:hover:not(.active) { background: var(--red-light); border-color: var(--red); color: var(--red); }
.prices-table { width: 100%; }
.price-row-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 0; border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.price-row-item:last-child { border-bottom: none; }
.price-label  { color: var(--text); font-size: 1rem; font-weight: 400; flex: 1; }
.price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 600; color: var(--red);
  white-space: nowrap;
}
.price-suffix { font-size: 1rem; color: var(--red); font-weight: 700; margin-left: .3rem; }
.prices-loading { text-align: center; padding: 2rem; color: var(--text-muted); font-size: .9rem; }
.insurance-note {
  margin-top: 1.5rem; padding: .9rem 1.1rem;
  background: var(--red-light); border: 1px solid rgba(232,22,42,.2); border-radius: 10px;
  font-size: .85rem; color: var(--red-dark); display: flex; align-items: center; gap: .6rem;
}

/* ── SERVICE PAGE LAYOUT ───────────────────────────────────── */
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "header specialists" "body specialists";
  column-gap: 3.5rem;
  align-items: start;
}
.svc-header { grid-area: header; min-width: 0; }
.svc-body   { grid-area: body;   min-width: 0; }
.svc-specialists {
  grid-area: specialists;
  position: sticky; top: 6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.svc-spec-label {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.svc-spec-card {
  display: flex; align-items: center; gap: 1rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-spec-card:last-child { border-bottom: none; padding-bottom: 0; }
.svc-spec-avatar {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: var(--red-light); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; overflow: hidden;
}
.svc-spec-avatar img { width: 100%; height: 100%; object-fit: cover; }
.svc-spec-name { font-size: .9rem; font-weight: 600; color: var(--text); }
.svc-spec-role { font-size: .78rem; color: var(--text-muted); margin-top: .15rem; }
@media (max-width: 860px) {
  .svc-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "specialists" "body";
  }
  .svc-specialists { position: static; margin-bottom: 2rem; }
}

/* ── PARTNERS ──────────────────────────────────────────────── */
.partners-block {
  margin-top: 3rem; padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}
.partners-label {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem;
}
.partners-logos {
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
}
.partners-logos img {
  height: 48px; width: auto; object-fit: contain;
  filter: grayscale(30%); opacity: .85; transition: opacity .2s, filter .2s;
}
.partners-logos img:hover { opacity: 1; filter: grayscale(0%); }

/* ── SCHEDULE ──────────────────────────────────────────────── */
.sports-pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem;
}
.sports-pill {
  padding: .45rem 1.1rem; border-radius: 99px; border: 1.5px solid var(--border);
  background: #fff; color: var(--text-mid); font-size: .85rem; font-weight: 500;
  cursor: pointer; transition: all .18s;
}
.sports-pill:hover { border-color: var(--red); color: var(--red); }
.sports-pill.active {
  background: var(--red); border-color: var(--red); color: #fff; font-weight: 600;
}
.sports-active-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 1rem 1.25rem;
}
.sports-active-card .schedule-row { border-bottom: 1px solid var(--border); padding: .5rem 0; }
.sports-active-card .schedule-row:last-child { border-bottom: none; }

.schedule-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem;
}
.schedule-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.schedule-card h4 { color: var(--text); font-size: 1rem; margin-bottom: .75rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.schedule-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .83rem; padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row .day { font-weight: 500; color: var(--text); }
.schedule-row .time { font-family: 'Poppins', sans-serif; font-size: .9rem; font-weight: 500; color: var(--red); }

/* ── TEAM ──────────────────────────────────────────────────── */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.team-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.25rem 15px;
  text-align: center; transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.team-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,22,42,.1); }
.team-avatar {
  width: min(154px, calc(100% - 1.5rem)); height: 0;
  padding-bottom: min(154px, calc(100% - 1.5rem));
  border-radius: 50%; margin: 0 auto 1.25rem;
  background: var(--red-light); border: 3px solid var(--border);
  position: relative;
  overflow: hidden;
}
.team-avatar-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 2.5rem; color: var(--red);
}
.team-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card-name { color: var(--text); font-size: 1rem; font-weight: 600; margin-bottom: .25rem; }
.team-card-role { color: var(--text-muted); font-size: .85rem; font-weight: 400; }
.team-card-bio  { color: var(--text-mid); font-size: .82rem; font-weight: 400; margin-top: .6rem; line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.team-card-bio.expanded { display: block; overflow: visible; }
.team-bio-wrap { position: relative; }
.team-bio-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3rem;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}
.team-bio-more {
  display: block; padding-top: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--red); letter-spacing: .01em;
  cursor: pointer; background: none; border: none;
}
.team-bio-more:hover { text-decoration: underline; }

/* ── NEWS ──────────────────────────────────────────────────── */
.news-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.news-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.news-card:hover { border-color: var(--red); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,22,42,.1); }
/* News image stack */
.news-img-stack {
  position: relative; padding: 0 8px 8px 0; /* room for layers */
}
.news-img-stack--multi { cursor: pointer; }
.news-img-stack--multi:hover .stack-front { opacity: .92; }
.stack-layer {
  position: absolute; border-radius: var(--radius) var(--radius) 0 0;
  background: var(--border-dark);
}
.stack-back {
  bottom: 0; left: 8px; right: 0; top: 8px; z-index: 0;
  background: #e0cfc9;
}
.stack-mid {
  bottom: 4px; left: 4px; right: 0; top: 4px; z-index: 1;
  background: #eadad5;
}
.stack-front {
  position: relative; z-index: 2;
  width: 100%; height: 220px; object-fit: cover; display: block;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: opacity .2s;
}
.stack-count {
  position: absolute; bottom: 16px; right: 16px; z-index: 3;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  padding: .2rem .6rem; border-radius: 99px; pointer-events: none;
}
.news-card .news-date  { padding: 1.25rem 1.75rem 0; font-size: .78rem; color: var(--text-muted); letter-spacing: .04em; }
.news-card .news-title { padding: .5rem 1.75rem 0; }
.news-card .news-body  { padding: .5rem 0 0; }
.news-body-wrap { position: relative; padding: .5rem 1.75rem 0; }
.news-body-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3.5rem;
  background: linear-gradient(transparent, var(--surface));
  pointer-events: none;
}
.news-read-more {
  display: block; padding: .4rem 1.75rem 1.5rem;
  font-size: .82rem; font-weight: 600; color: var(--red); letter-spacing: .01em;
}

/* Lightbox */
.news-lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  align-items: center; justify-content: center;
}
.news-lightbox.open { display: flex; }
.news-lightbox-backdrop {
  position: absolute; inset: 0; background: rgba(0,0,0,.88); cursor: zoom-out;
}
.lb-img-wrap {
  position: relative; z-index: 1; max-width: 90vw; max-height: 90vh;
  display: flex; align-items: center; justify-content: center;
}
.lb-img-wrap img {
  max-width: 90vw; max-height: 85vh; object-fit: contain;
  border-radius: var(--radius); display: block;
}
.lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem; z-index: 2;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 1.75rem; width: 42px; height: 42px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background .15s;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  background: rgba(255,255,255,.12); border: none; color: #fff;
  font-size: 2.5rem; width: 48px; height: 48px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1; transition: background .15s;
}
.lb-nav:hover { background: rgba(255,255,255,.25); }
.lb-prev { left: 1.25rem; }
.lb-next { right: 1.25rem; }
.lb-counter {
  position: absolute; bottom: 1.25rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .85rem; z-index: 2;
}
.news-card { cursor: pointer; }
.news-title { color: var(--text); font-size: 1.2rem; margin-bottom: .6rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.news-body  { color: var(--text-mid); font-size: .9rem; font-weight: 400; line-height: 1.7; }
.news-body--clamp { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ── NEWS MODAL ────────────────────────────────────────────── */
.news-modal {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(0,0,0,.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.news-modal.open { display: flex; }
.nm-inner {
  position: relative; background: var(--surface);
  border-radius: var(--radius-lg); max-width: 860px; width: 100%;
  height: min(82vh, 580px);
  display: flex; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.nm-img {
  flex: 0 0 45%; position: relative;
  background: var(--cream-alt);
  display: flex; flex-direction: column; overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.nm-img .nm-main-img {
  flex: 1; min-height: 0;
  width: 100%; height: 100%; object-fit: contain; display: block; cursor: pointer;
}
.nm-img-strip {
  flex-shrink: 0;
  display: flex; gap: .35rem; padding: .5rem; overflow-x: auto;
  background: rgba(0,0,0,.35);
}
.nm-img-strip img { width: 44px; height: 44px; flex-shrink: 0; object-fit: cover; border-radius: 5px; cursor: pointer; opacity: .65; transition: opacity .2s, outline .2s; }
.nm-img-strip img:hover { opacity: 1; }
.nm-img-strip img.active { opacity: 1; outline: 2px solid #fff; }
.nm-text { flex: 1; padding: 2rem; overflow-y: auto; display: flex; flex-direction: column; gap: .75rem; }
.nm-date  { font-size: .78rem; color: var(--text-muted); letter-spacing: .04em; }
.nm-title { font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1.3; }
.nm-body  { font-size: .95rem; color: var(--text-mid); line-height: 1.8; white-space: pre-wrap; }
.nm-close {
  position: absolute; top: .75rem; right: .75rem; z-index: 10;
  background: rgba(0,0,0,.4); color: #fff; border: none;
  width: 44px; height: 44px; border-radius: 50%; font-size: 1.25rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.nm-close:hover { background: rgba(0,0,0,.65); }
@media (max-width: 640px) {
  .nm-inner { flex-direction: column; height: min(90vh, 680px); }
  .nm-img { flex: 0 0 45%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
}

/* ── SERVICE PAGE IMAGE+TEXT SPLIT ROWS ─────────────────────── */
.svc-split-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin: 1.75rem 0; align-items: start;
}
.svc-split-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,.1); display: block;
}
.svc-split-content { display: flex; flex-direction: column; gap: .6rem; }
@media (max-width: 640px) {
  .svc-split-row { grid-template-columns: 1fr; gap: 1rem; }
  .svc-split-row--right .svc-split-img { order: -1; }
}

/* ── SERVICE PAGE IMAGE GALLERY ─────────────────────────────── */
.svc-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: .6rem;
  margin-bottom: 2rem;
}
.svc-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 10px; cursor: zoom-in; display: block;
  transition: opacity .2s;
}
.svc-gallery img:hover { opacity: .88; }

/* ── ALTERNATING SPLIT IMAGE BLOCKS ────────────────────────── */
.img-split-section {
  margin: 2.5rem 0;
}
.img-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1rem;
  min-height: 340px;
}
.img-split-img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  cursor: zoom-in;
  display: block;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}
.img-split-img:hover { transform: scale(1.04); }
.img-split-fill {
  background: linear-gradient(140deg, var(--cream) 0%, #e8d5c8 100%);
  min-height: 340px;
  position: relative;
}
.img-split-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(192,57,43,.06) 0%, transparent 60%),
    radial-gradient(circle at 75% 25%, rgba(192,57,43,.04) 0%, transparent 50%);
}
/* Content side with text */
.img-split-content {
  display: flex;
  align-items: center;
  padding: 3rem 2.5rem;
  background: var(--surface);
}
.img-split-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  white-space: pre-wrap;
}
/* Image on the right (odd index) */
.img-split-row.right .img-split-fill,
.img-split-row.right .img-split-content { order: 1; }
.img-split-row.right .img-split-img     { order: 2; }
/* Image on the left (even index) */
.img-split-row.left  .img-split-fill,
.img-split-row.left  .img-split-content { order: 2; }
.img-split-row.left  .img-split-img     { order: 1; }
@media (max-width: 700px) {
  .img-split-row {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
    min-height: 0;
  }
  .img-split-img { min-height: 260px; }
  .img-split-fill { display: none; }
  .img-split-content { padding: 1.5rem; }
}

/* ── TEAM MODAL ────────────────────────────────────────────── */
.team-card--clickable { cursor: pointer; }
.tm-inner {
  position: relative; background: var(--surface);
  border-radius: var(--radius-lg); max-width: 680px; width: 100%;
  height: 420px;
  display: flex; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.tm-photo {
  flex: 0 0 280px; width: 280px; align-self: stretch;
  background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem; font-weight: 700; color: var(--red);
}
.tm-inner .nm-text { flex: 1; min-height: 0; overflow-y: auto; }
.tm-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
@media (max-width: 560px) {
  .tm-inner {
    flex-direction: column; height: min(88vh, 560px);
  }
  .tm-photo {
    flex: 0 0 280px; width: 100%; height: 280px; align-self: auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    font-size: 2.5rem;
  }
  .tm-inner .nm-text { flex: 1; min-height: 0; overflow-y: auto; }
}

/* ── CTA BAND ──────────────────────────────────────────────── */
.cta-band {
  background: var(--red); text-align: center; padding: 5rem 1.5rem;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p  { color: rgba(255,255,255,.85); font-weight: 400; margin-bottom: 2rem; font-size: 1.05rem; }
.btn-cta-dark {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #fff; color: var(--red);
  font-weight: 600; font-size: 1rem;
  padding: .9rem 2rem; border-radius: 10px;
  transition: background .2s, transform .15s;
  border: none; cursor: pointer;
}
.btn-cta-dark:hover { background: var(--cream); transform: translateY(-2px); }
.cta-phone {
  display: block; margin-top: 1.25rem;
  font-size: .9rem; color: rgba(255,255,255,.8); font-weight: 400;
}
.cta-phone a { color: #fff; font-weight: 600; }

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-location-photo {
  margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden;
  max-height: 360px;
}
.contact-location-photo img {
  width: 100%; height: 360px; object-fit: cover; object-position: center 30%;
  display: block;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0;
  background: var(--red-light); border: 1px solid rgba(232,22,42,.2);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-item h4 { color: var(--text); font-size: .9rem; font-weight: 600; margin-bottom: .2rem; font-family: 'Poppins', sans-serif; }
.contact-item p, .contact-item a { color: var(--text-mid); font-size: .9rem; font-weight: 400; display: block; }
.contact-item a:hover { color: var(--red); }
.transport-list { margin-top: .4rem; }
.transport-list li {
  font-size: .83rem; color: var(--text-mid); font-weight: 400;
  padding: .2rem 0; list-style: none; display: flex; align-items: center; gap: .4rem;
}
.transport-list li::before { content: '→'; color: var(--red); font-size: .7rem; }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form label {
  display: block; font-size: .78rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: .35rem;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: .7rem .9rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text); font-family: 'Poppins', sans-serif;
  font-size: .95rem; transition: border-color .2s, box-shadow .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--text-muted); opacity: .7; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232,22,42,.1);
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form select option { background: #fff; }
.contact-form textarea { resize: vertical; min-height: 100px; }
.form-terms {
  font-size: .78rem; color: var(--text-muted); display: flex;
  align-items: flex-start; gap: .5rem;
}
.form-terms input { width: auto; }
.form-success {
  background: var(--red-light); border: 1px solid rgba(232,22,42,.25);
  border-radius: 10px; padding: 1.25rem; text-align: center;
  color: var(--red-dark); display: none;
}

/* ── FLOATING CALL BUTTON ──────────────────────────────────── */
.float-call {
  display: none;
}
@media (max-width: 768px) {
  .float-call {
    display: flex; align-items: center; gap: .6rem;
    position: fixed; bottom: 1.25rem; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--red); color: #fff;
    padding: .75rem 1.75rem; border-radius: 99px;
    font-weight: 600; font-size: .95rem; text-decoration: none;
    box-shadow: 0 4px 20px rgba(212,114,106,.45);
    z-index: 90; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: opacity .35s ease, transform .35s ease;
  }
  .float-call.visible {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .float-call:hover { background: var(--red-dark); }
}

/* ── FOOTER ────────────────────────────────────────────────── */
footer {
  background: var(--footer-bg);
  border-top: none;
  padding: 3rem 1.5rem 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem;
  max-width: 1100px; margin: 0 auto; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand { margin-bottom: .6rem; }
.footer-tagline { color: #888; font-size: .88rem; font-weight: 400; max-width: 280px; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Poppins', sans-serif; }
.footer-col a, .footer-col p {
  display: block; color: #888; font-size: .85rem;
  font-weight: 400; padding: .2rem 0; transition: color .2s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1100px; margin: 1.5rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: #666;
}

/* ── Mobile nav drawer ─────────────────────────────────────── */
.mobile-menu {
  display: flex; position: fixed; inset: 0; z-index: 99;
  background: #fff; padding: 5rem 1.5rem 2rem;
  flex-direction: column; gap: .5rem; overflow-y: auto;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .28s ease, transform .28s ease, visibility .28s;
}
.mobile-menu.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu a {
  display: block; padding: .75rem 0; font-size: 1.1rem;
  color: var(--text-mid); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-book {
  margin-top: 1.5rem; text-align: center;
}

/* ── Page sections (SPA routing) ───────────────────────────── */
.page { display: none; }
.page.active { display: block; }

/* ── Service page components ───────────────────────────────── */
.svc-section-head {
  display: block;
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--red);
  margin: 2rem 0 .75rem;
}
.svc-list { list-style: none; margin: 0; padding: 0; }
.svc-list li {
  display: flex; gap: .75rem; align-items: flex-start;
  color: var(--text-mid); font-size: .9rem; font-weight: 400;
  padding: .4rem 0; border-bottom: 1px solid var(--border);
  line-height: 1.6;
}
.svc-list li::before { content: '-'; color: var(--red); flex-shrink: 0; margin-top: .05rem; }
.svc-list li strong { color: var(--text); font-weight: 600; }
.svc-list li:last-child { border-bottom: none; }

.svc-prices { margin-top: .25rem; }
.svc-price-group {
  font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted);
  margin: 1.5rem 0 .5rem; padding-bottom: .4rem;
  border-bottom: 1px solid var(--border);
}
.svc-price-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: .75rem 0; border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.svc-price-row:last-child { border-bottom: none; }
.svc-price-label { color: var(--text); font-size: .95rem; font-weight: 400; line-height: 1.4; }
.svc-price-meta { font-size: .82rem; color: var(--text-muted); margin-top: .2rem; font-weight: 400; }
.svc-price-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: var(--red);
  white-space: nowrap; flex-shrink: 0;
}
.svc-price-amount small { font-size: .8rem; font-weight: 500; }

.specialist-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  margin: .5rem 0 1rem; display: flex; gap: 1rem; align-items: flex-start;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
.specialist-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--red-light); display: flex; align-items: center;
  justify-content: center; font-family: 'Poppins', sans-serif;
  font-size: 1.1rem; color: var(--red); border: 2px solid var(--border);
}
.specialist-name { color: var(--text); font-size: 1rem; font-weight: 600; margin-bottom: .15rem; }
.specialist-role { font-size: .82rem; color: var(--text-muted); margin-bottom: .5rem; }
.specialist-bio { font-size: .85rem; color: var(--text-mid); font-weight: 400; line-height: 1.7; }

.insurance-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--red-light); border: 1px solid rgba(232,22,42,.2);
  border-radius: 8px; padding: .6rem 1rem; font-size: .85rem;
  color: var(--red-dark); margin-top: 1rem;
}

.svc-note {
  color: var(--text-mid); font-size: .85rem; margin-top: 1rem;
  padding: .75rem 1rem; background: var(--cream-alt);
  border-radius: 8px; border-left: 3px solid var(--red);
  line-height: 1.6;
}

/* Sports page price grid */
.sports-price-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem; margin-top: 1rem;
}
.sports-price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,.04);
}
.sports-price-card-title {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--text-mid); margin-bottom: .75rem;
  padding-bottom: .5rem; border-bottom: 2px solid var(--red);
}
.sports-price-tiers {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  gap: .5rem; margin-top: .25rem;
}
.sports-price-tier {
  text-align: center; padding: .6rem .4rem;
  background: var(--red-light); border-radius: 6px;
}
.sports-price-tier-label { font-size: .75rem; color: var(--text-muted); font-weight: 400; }
.sports-price-tier-amount {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700; color: var(--red);
}
.sports-price-note {
  font-size: .75rem; color: var(--text-muted); margin-top: .6rem;
}

/* ── Photo upload ── */
.photo-upload-wrap { display: flex; gap: .75rem; align-items: flex-start; }
.photo-preview {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border); background: var(--cream-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--text-muted); text-align: center; overflow: hidden;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
input[type=file] {
  padding: .4rem .5rem; font-size: .85rem; cursor: pointer;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-right .btn-book-nav { display: none; }
  .nav-mobile-toggle { display: flex; }
  .page[style*="padding-top"] { padding-top: 2rem !important; }
  .hero-content { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-logo-center img { height: 180px; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { text-align: center; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
  .footer-grid > div:last-child  { grid-column: 1/-1; }
  .form-row { grid-template-columns: 1fr; }
  .lang-switch { display: flex; }
  .specialist-card { flex-direction: column; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .prices-tabs { gap: .35rem; }
  .price-tab { font-size: .78rem; padding: .4rem .7rem; }
  .sports-price-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .news-grid { grid-template-columns: 1fr; }
  .hero-content { gap: 1.75rem; }
  .btn-primary, .btn-secondary { font-size: .9rem; padding: .75rem 1.5rem; }
}
