/* ── Design Tokens ─────────────────────────────────── */
:root {
  --black:  #0a0a0a;
  --white:  #ffffff;
  --gold:   rgba(252, 207, 3, 0.55);
  --gold-dark: rgba(201, 164, 0, 0.55);
  --gold-gradient: linear-gradient(135deg, rgba(252, 207, 3, 0.55) 0%, rgba(201, 164, 0, 0.55) 100%);
  --section-pad: clamp(3rem, 7vw, 6rem);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ───────────────────────────────────────── */
.gold-divider {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold-gradient);
  border-radius: 2px;
  margin: 0.75rem auto 1.5rem;
}
.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* Scroll-reveal: elements start hidden */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 1. NAVIGATION ─────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1rem, 4vw, 3rem);
  height: 64px;
}

.nav-logo {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.nav-logo span { color: var(--gold); }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Navbar CTA button */
.nav-cta {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  background: var(--gold-gradient);
  color: var(--black);
  white-space: nowrap;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}
.nav-cta:hover { filter: none; opacity: 0.85; transform: none; }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid #e0e0e0;
  flex-direction: column;
  padding: 1.5rem clamp(1rem, 4vw, 3rem);
  gap: 1.25rem;
  z-index: 999;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: var(--black);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.nav-drawer a.active { color: var(--gold); }

/* ── 2. HERO ───────────────────────────────────────── */
#hero {
  padding-top: 64px; /* navbar height */
  background: var(--white);
}

/* Hero text block — above the carousel */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 5rem;
  position: relative;
  background-image: url('photos/Sue_108 2-1\.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}
.hero-content > * {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  max-width: 800px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.6;
}
.hero-tagline {
  color: var(--gold) !important;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 0.25rem !important;
}
.btn {
  display: inline-block;
  padding: 0.85rem 2.25rem;
  background: var(--gold-gradient);
  color: var(--black);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: filter var(--transition), transform var(--transition);
}
.btn:hover { filter: brightness(1.1); transform: translateY(-2px); }
.hero-cta .btn:not(.btn-outline):hover { filter: none; opacity: 0.8; transform: translateY(-2px); }
.hero-cta {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* Photo grid gallery — below the hero text */
.hero-gallery-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: fit-content;
  margin: 0 auto 4rem;
  padding: 18px; /* space for gold to show on all sides */
}
.hero-gallery-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-gradient);
  opacity: 0.3;
  border-radius: var(--radius);
  z-index: 0;
}
.hero-gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 340px 340px;
  grid-template-rows: 240px 240px;
  gap: 8px;
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.gallery-item {
  width: 340px;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}
.gallery-item:hover { opacity: 0.88; }

/* ── 3. ABOUT ───────────────────────────────────────── */
#about {
  padding: var(--section-pad) clamp(1rem, 6vw, 4rem);
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  max-width: 1100px;
  margin: 3rem auto 0;
}
.about-photo-wrap {
  position: relative;
}
.about-photo-wrap img,
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.about-photo-placeholder {
  background: linear-gradient(135deg, #e8e8e8 0%, #d0d0d0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1.1rem;
}
/* Gold accent border on photo */
.about-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80%;
  height: 80%;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}
.about-text h2 { text-align: left; }
.about-text .gold-divider { margin-left: 0; }
.about-text p {
  color: #333;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Certification badges */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}
.cert-badge {
  border: 2px solid var(--gold);
  background: var(--white);
  border-radius: var(--radius);
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.cert-badge .cert-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* ── Trainer Story ──────────────────────────────────── */
.trainer-story {
  background: var(--black);
  padding: var(--section-pad) clamp(1rem, 6vw, 4rem);
  margin-top: var(--section-pad);
}

.trainer-pullquote {
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
  line-height: 1.4;
  font-style: italic;
  border: none;
  padding: 0;
  position: relative;
}
.trainer-pullquote::before {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}
.trainer-pullquote::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold-gradient);
  margin: 1.5rem auto 0;
  border-radius: 2px;
}

.trainer-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trainer-story-block h3 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.trainer-story-block p {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .trainer-story-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── 4. SERVICES ────────────────────────────────────── */
#services {
  padding: var(--section-pad) clamp(1rem, 6vw, 4rem);
  background: #111;
  position: relative;
  overflow: hidden;
}
.services-bg {
  position: absolute;
  inset: 0;
  display: flex;
  z-index: 0;
  opacity: 0.35;
}
.services-bg img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#services > *:not(.services-bg) {
  position: relative;
  z-index: 1;
}
#services .section-title { color: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 3rem auto 0;
  justify-content: center;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 4px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(255,215,0,0.15);
  border-top-color: var(--gold);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}
.service-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex: 1;
}
.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold-dark);
  margin-bottom: 1.25rem;
}
.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

/* ── 5. TESTIMONIALS ────────────────────────────────── */
#testimonials {
  padding: var(--section-pad) clamp(1rem, 6vw, 4rem);
  background: #f0ece4;
}

.t-outer {
  max-width: 1100px;
  margin: 3rem auto 0;
}

.review-cta {
  max-width: 600px;
  margin: 3.5rem auto 0;
}
.review-cta-inner {
  background: var(--black);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.review-cta-stars {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}
.review-cta-inner h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.review-cta-inner p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.review-cta-inner .btn {
  display: inline-block;
}

.t-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.t-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--black);
  background: transparent;
  color: var(--black);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.t-btn:hover { background: var(--black); color: var(--white); }

.t-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.t-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.45s ease;
}

.t-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.t-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.t-quote { color: #444; font-size: 0.95rem; line-height: 1.75; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 0.875rem; }
.t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #222;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.t-name { font-weight: 700; font-size: 0.95rem; color: var(--black); }
.t-meta { color: #888; font-size: 0.8rem; }

.t-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.5rem;
}
.t-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  padding: 0;
  transition: background var(--transition), transform var(--transition);
}
.t-dot.active { background: var(--black); transform: scale(1.3); }

/* ── 6. CONTACT + FOOTER ────────────────────────────── */
#contact {
  background: var(--white);
  padding: var(--section-pad) clamp(1rem, 6vw, 4rem);
}
#contact .section-title { color: var(--black); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.contact-info h3 { color: var(--gold-dark); font-size: 1.3rem; margin-bottom: 1rem; }
.contact-info p { color: #555; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #333;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.contact-detail .icon { color: var(--gold); font-size: 1.1rem; }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  color: #333;
  font-size: 0.85rem;
  font-weight: 600;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid #ccc;
  border-radius: var(--radius);
  color: var(--black);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  min-height: 44px;
  transition: border-color var(--transition);
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--white); }

.form-submit {
  align-self: flex-start;
  padding: 0.9rem 2.5rem;
  font-size: 1rem;
}
.form-status {
  font-size: 0.9rem;
  color: var(--gold-dark);
  min-height: 1.2em;
}
.draft-notice {
  font-size: 0.78rem;
  color: #888;
}

/* Footer */
footer {
  background: #f0ece4;
  padding: 2rem clamp(1rem, 6vw, 4rem);
  border-top: 1px solid #ddd8ce;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-logo { color: var(--black); font-size: 1.2rem; font-weight: 700; }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #777; font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: #999; font-size: 0.8rem; width: 100%; text-align: center; margin-top: 0.5rem; }

/* Social icons */
.social-links { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 0.9rem;
  transition: border-color var(--transition), color var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .t-btn { width: 40px; height: 40px; font-size: 1.4rem; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-text h2,
  .about-text .gold-divider { text-align: center; margin-left: auto; }
  .about-photo-wrap::after { display: none; }

  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  .services-grid { grid-template-columns: 1fr; }

  /* t-card width set inline by React */

  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  footer { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }

  .hero-gallery-wrap { width: 92%; padding: 14px; }
  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px;
  }
  .gallery-item { width: 100%; height: 160px; }
}
