:root {
  --black: #111111;
  --rose: #C78A9A;
  --beige: #E6D7CF;
  --bg: #F7F3F0;
  --text: #2B2B2B;
  --white: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Arial, sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }
h1,h2,h3,h4 { font-family: Georgia, 'Times New Roman', serif; }

/* NAV */
nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}
.nav-logo {
  height: 80px;
  width: 145px;
  object-fit: contain;
  background: linear-gradient(135deg, #1e1e1e 0%, #111111 100%);
  border-radius: 14px;
  padding: 8px 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(199,138,154,0.35), 0 0 0 2px rgba(199,138,154,0.5);
  transition: box-shadow 0.25s;
}
.nav-logo:hover {
  box-shadow: 0 6px 24px rgba(199,138,154,0.55), 0 0 0 2px rgba(199,138,154,0.8);
}
.nav-brand-text { display: flex; flex-direction: column; text-align: left; }
.nav-brand-name { font-family: Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--black); line-height: 1.1; text-align: left; }
.nav-brand-sub { font-size: 0.62rem; color: var(--rose); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; margin-top: 3px; line-height: 1.35; text-align: left; }
.nav-links { display: flex; gap: 2px; list-style: none; flex-wrap: wrap; }
.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 7px 9px;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); background: rgba(199,138,154,0.1); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; }

/* PAGES */
.page { display: none; }
.page.active { display: block; }

section { padding: 72px 40px; }
.section-label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--rose); font-weight: 700; margin-bottom: 10px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--black); line-height: 1.15; margin-bottom: 16px; }
.divider { width: 44px; height: 3px; background: var(--rose); border-radius: 3px; margin: 16px 0; }
.divider.center { margin: 16px auto; }
.center { text-align: center; }

/* HERO */
.hero {
  background: var(--black);
  color: var(--white);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(199,138,154,0.16) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-logo-wrap {
  width: 360px;
  height: 200px;
  background: #000;
  border-radius: 24px;
  border: 2px solid var(--rose);
  box-shadow: 
    0 0 28px rgba(199,138,154,0.55),
    0 0 70px rgba(199,138,154,0.2),
    inset 0 0 20px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-logo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(199,138,154,0.08) 0%, transparent 60%);
  border-radius: 22px;
  z-index: 0;
  pointer-events: none;
}
.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  border-radius: 18px;
}
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase; color: var(--rose); margin-bottom: 18px; font-weight: 600; width: 100%; text-align: center; }
.hero-eyebrow span { display: inline; }
.hero-eyebrow span + span::before { content: ' '; }
.hero h1 { font-size: clamp(2.2rem, 5.5vw, 4.5rem); color: var(--white); line-height: 1.08; margin-bottom: 18px; font-weight: 700; }
.hero h1 span { color: var(--rose); }
.hero-tagline { font-size: clamp(1.1rem, 2.4vw, 1.55rem); color: var(--beige); font-style: italic; margin-bottom: 38px; letter-spacing: 1px; }
.hero-tagline span { display: inline; }
.hero-tagline span + span::before { content: ' '; }
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FOUNDER NOTE */
.founder-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto 18px;
  padding: 8px 16px;
  text-align: center;
}
.founder-badge .founder-name { font-family: Georgia, serif; font-size: 1rem; color: var(--beige); letter-spacing: 1px; }
.founder-badge .founder-highlight { color: var(--rose); font-weight: 700; }
.founder-badge .founder-role { font-family: Georgia, serif; font-size: 0.82rem; color: var(--rose); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
@media (max-width: 560px) {
  .hero-eyebrow span { display: block; }
  .hero-eyebrow span + span::before { content: none; }
  .hero-eyebrow span:first-child { margin-bottom: 4px; }
  .hero-tagline span { display: block; }
  .hero-tagline span + span::before { content: none; }
  .hero-tagline span:first-child { margin-bottom: 2px; }
  .founder-badge { padding: 6px 12px; gap: 6px; }
}

/* BUTTONS */
.btn-primary {
  background: var(--rose);
  color: var(--white);
  padding: 13px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 2px solid var(--rose);
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: transparent; color: var(--rose); }
.btn-wa {
  background: #25D366;
  color: var(--white);
  padding: 13px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 2px solid #25D366;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-wa:hover { opacity: 0.85; }
.wa-icon { width: 20px; height: 20px; }

/* INTRO */
.intro-strip { background: var(--beige); padding: 56px 40px; text-align: center; }
.intro-strip p { font-size: clamp(0.95rem, 2vw, 1.18rem); line-height: 1.9; max-width: 760px; margin: 0 auto; }

/* COUNTERS */
.counter-section {
  background: var(--black);
  padding: 68px 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.counter-item { text-align: center; padding: 26px 70px; border-right: 1px solid rgba(255,255,255,0.1); flex: 1; min-width: 200px; }
.counter-item:last-child { border-right: none; }
.counter-num { font-family: Georgia, serif; font-size: clamp(2.8rem, 5vw, 4.2rem); color: var(--rose); font-weight: 700; line-height: 1; margin-bottom: 10px; }
.counter-label { color: var(--beige); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; }

/* MOTIVATIONAL */
.motive-section { background: var(--rose); padding: 76px 40px; text-align: center; color: var(--white); }
.motive-section h2 { font-size: clamp(1.8rem, 3.8vw, 3rem); margin-bottom: 22px; font-style: italic; }
.motive-section p { font-size: 0.97rem; line-height: 1.9; max-width: 700px; margin: 0 auto; opacity: 0.92; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.services-grid.four-up { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px 22px;
  border: 1px solid rgba(199,138,154,0.18);
  transition: all 0.28s;
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--rose); transform: scaleX(0); transition: transform 0.28s; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { box-shadow: 0 14px 44px rgba(199,138,154,0.18); transform: translateY(-4px); }
.service-icon { width: 40px; height: 40px; background: rgba(199,138,154,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.15rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--black); }
.service-card p { color: #777; font-size: 0.84rem; line-height: 1.6; margin-bottom: 12px; }
.service-list { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.service-list li { background: rgba(199,138,154,0.1); color: var(--rose); padding: 4px 11px; border-radius: 20px; font-size: 0.72rem; font-weight: 600; }

/* OUR GYM (compact highlights) */
.gym-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 900px; margin: 30px auto 0; }
.gym-highlight {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(199,138,154,0.18);
  padding: 22px 18px;
  text-align: center;
  transition: all 0.28s;
}
.gym-highlight:hover { box-shadow: 0 12px 32px rgba(199,138,154,0.18); transform: translateY(-3px); }
.gym-highlight-icon { width: 42px; height: 42px; margin: 0 auto 12px; background: rgba(199,138,154,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.gym-highlight h4 { font-size: 0.98rem; margin-bottom: 6px; color: var(--black); }
.gym-highlight p { font-size: 0.8rem; color: #777; line-height: 1.6; }
@media (max-width: 700px) { .gym-highlights { grid-template-columns: 1fr; max-width: 420px; } }


.fees-section { background: var(--beige); }
.fees-grid { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.fees-card {
  background: var(--white);
  border-radius: 18px;
  padding: 34px 28px;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 210px;
  border: 2px solid transparent;
  transition: all 0.28s;
}
.fees-card:hover { border-color: var(--rose); transform: translateY(-6px); box-shadow: 0 18px 46px rgba(199,138,154,0.22); }
.fees-card.featured { background: var(--black); }
.fees-duration { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; }
.fees-price { font-family: Georgia, serif; font-size: 2.8rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 6px; }
.fees-card.featured .fees-price { color: var(--rose); }
.fees-unit { font-size: 0.78rem; color: #aaa; margin-bottom: 22px; }
.fees-card.featured .fees-unit { color: rgba(230,215,207,0.55); }
.fees-enroll {
  background: var(--rose);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all 0.2s;
  border: 2px solid var(--rose);
  display: inline-block;
}
.fees-enroll:hover { background: transparent; color: var(--rose); }
.fees-card.featured .fees-enroll:hover { color: var(--rose); }
.savings-badge {
  display: inline-block;
  background: rgba(199,138,154,0.15);
  color: var(--rose);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.fees-card.featured .savings-badge { background: rgba(199,138,154,0.25); }

/* PAGE HERO */
.page-hero { background: var(--black); padding: 76px 40px 56px; text-align: center; color: var(--white); }
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: rgba(230,215,207,0.7); font-size: 0.85rem; letter-spacing: 2.5px; text-transform: uppercase; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; max-width: 1060px; margin: 0 auto; }
.about-text p { color: #666; line-height: 1.85; margin-bottom: 16px; font-size: 0.96rem; }
.founded-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--beige); padding: 12px 20px; border-radius: 10px; margin-top: 10px; }
.founded-badge span { font-size: 0.88rem; font-weight: 700; color: var(--black); }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; max-width: 1200px; margin: 0 auto; }
.gallery-ph { aspect-ratio: 1; background: var(--beige); border-radius: 12px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #bbb; font-size: 0.82rem; border: 2px dashed rgba(199,138,154,0.4); gap: 8px; }
.gallery-ph .icon { font-size: 2rem; }

/* TRANSFORMS */
.transform-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.transform-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid rgba(199,138,154,0.2); }
.transform-text { padding: 16px 18px; }
.transform-text h4 { font-size: 1.05rem; margin-bottom: 5px; }
.transform-text p { font-size: 0.82rem; color: #888; line-height: 1.6; }

/* TESTIMONIALS */
.test-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.test-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid rgba(199,138,154,0.18);
  position: relative;
}
.test-card::before { content: '"'; position: absolute; top: -8px; left: 20px; font-size: 4.5rem; color: rgba(199,138,154,0.18); font-family: Georgia, serif; line-height: 1; }
.stars { color: #F5A623; margin-bottom: 12px; font-size: 0.9rem; }
.google-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 0.72rem; color: #888; margin-bottom: 12px; }
.test-card p { color: #666; line-height: 1.75; font-size: 0.9rem; margin-bottom: 16px; }
.test-name { font-weight: 700; font-size: 0.88rem; color: var(--black); }
.test-meta { font-size: 0.75rem; color: var(--rose); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; max-width: 1100px; margin: 0 auto; align-items: start; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.c-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(199,138,154,0.12); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.c-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--rose); margin-bottom: 3px; }
.c-value { font-size: 0.93rem; color: var(--text); line-height: 1.6; }
.c-value a { color: var(--rose); text-decoration: none; }
.timing-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 6px; }
.timing-badge { background: rgba(199,138,154,0.1); border-radius: 8px; padding: 10px 16px; }
.t-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--rose); margin-bottom: 3px; }
.t-time { font-size: 0.9rem; font-weight: 600; color: var(--black); }
.map-embed { width: 100%; height: 240px; border-radius: 12px; border: none; margin-top: 22px; }

/* FORM */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 7px; color: var(--black); text-transform: uppercase; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid rgba(199,138,154,0.3);
  border-radius: 8px;
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 96px; }

/* SOCIAL ICONS */
.social-strip { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 16px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.2s;
}
.insta-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
}
.insta-btn:hover { opacity: 0.88; transform: scale(1.03); }
.wa-btn-social {
  background: #25D366;
  color: #fff;
}
.wa-btn-social:hover { opacity: 0.88; transform: scale(1.03); }

/* FOOTER */
footer { background: var(--black); color: var(--beige); padding: 56px 40px 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; max-width: 1100px; margin: 0 auto 36px; }
.footer-logo-wrap { 
  width: 160px; 
  height: 80px; 
  background: #000;
  border-radius: 12px; 
  border: 1.5px solid rgba(199,138,154,0.5);
  box-shadow: 0 0 16px rgba(199,138,154,0.25);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  padding: 4px 8px; 
  margin-bottom: 16px; 
}
.footer-logo-wrap img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain;
  border-radius: 8px;
}
.footer-name { font-family: Georgia, serif; font-size: 1.1rem; color: var(--white); margin-bottom: 8px; font-weight: 700; }
.footer-tagline { font-size: 0.8rem; color: rgba(230,215,207,0.6); font-style: italic; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.f-social {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  transition: all 0.2s;
}
.f-insta { background: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%); color: #fff; }
.f-wa { background: #25D366; color: #fff; }
.f-insta:hover, .f-wa:hover { opacity: 0.85; transform: scale(1.05); }
.f-social svg { width: 15px; height: 15px; fill: #fff; }
.footer-col h4 { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(230,215,207,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; cursor: pointer; }
.footer-col ul li a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; max-width: 1100px; margin: 0 auto; font-size: 0.78rem; color: rgba(230,215,207,0.4); flex-wrap: wrap; gap: 8px; }

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.45);
  transition: all 0.28s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* REVIEW FORM */
.review-form-wrap { background: var(--white); border-radius: 16px; padding: 38px; max-width: 580px; margin: 48px auto 0; border: 1px solid rgba(199,138,154,0.2); }
.review-form-wrap h3 { margin-bottom: 8px; font-size: 1.5rem; }
.note-text { font-size: 0.85rem; color: #999; margin-bottom: 22px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 10px 18px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 18px; box-shadow: 0 16px 36px rgba(0,0,0,0.1); gap: 10px; }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 16px; font-size: 0.85rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .nav-links a:last-child { border-bottom: none; }
  .hamburger { display: flex; }
  section { padding: 56px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .counter-item { padding: 22px 28px; }
  .services-grid.four-up { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .counter-section { flex-direction: column; }
  .counter-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .counter-item:last-child { border-bottom: none; }
  .fees-grid { flex-direction: column; align-items: center; }
  .fees-card { max-width: 100%; }
}
