/* ============================================================
   RAW — Inner page patterns (about, services, coaches,
   transformations, contact). Reusable across all sub-pages.
   ============================================================ */

/* ---- Page hero banner ---- */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img,
img.page-hero-bg { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, #0D0D0D 0%, rgba(13,13,13,0.92) 11%, rgba(13,13,13,0.55) 55%, rgba(13,13,13,0.42) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
  max-width: 900px;
}
.page-hero-content h1 { margin: 8px 0 0; }
.page-hero-content .lead { margin-top: 20px; }

/* ---- Intro block ---- */
.intro-narrow { max-width: 760px; }

/* ---- Numbered process steps ---- */
.process-steps { counter-reset: step; }
.process-step { position: relative; }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--color-gold);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 24px; margin-bottom: 10px; }
.process-step p { color: var(--color-text-muted); font-size: 15px; font-weight: 300; }

/* ---- Horizontal timeline (Assess → Plan → Execute → Transform) ---- */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute; top: 19px; left: 8%; right: 8%;
  height: 1px; background: var(--color-gold-line);
}
.timeline-step { text-align: center; position: relative; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  background: var(--color-black);
  color: var(--color-gold);
  display: grid; place-items: center;
  font-family: var(--font-display); font-size: 20px;
  margin: 0 auto 20px;
  position: relative; z-index: 1;
}
.timeline-step h3 { font-size: 22px; margin-bottom: 8px; }
.timeline-step p { color: var(--color-text-muted); font-size: 14px; font-weight: 300; }
@media (max-width: 767px) {
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline::before { display: none; }
}
@media (max-width: 420px) { .timeline { grid-template-columns: 1fr; } }

/* ---- Benefit blocks (icon + title + text) ---- */
.benefit { display: flex; flex-direction: column; gap: 6px; }
.benefit .icon-ring { width: 50px; height: 50px; margin-bottom: 16px; }
.benefit .icon-ring svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 21px; }
.benefit p { color: var(--color-text-muted); font-size: 14.5px; font-weight: 300; }

/* On light sections — remap cream text that sits directly on the cream bg */
.section--light .benefit p,
.section--light .value p,
.section--light .timeline-step p { color: rgba(13,13,13,0.6); }
.section--light .benefit h3,
.section--light .value h3,
.section--light .timeline-step h3 { color: var(--color-black); }
.section--light .process-step p { color: rgba(13,13,13,0.6); }
.section--light .process-step h3 { color: var(--color-black); }
/* Credential chips, form labels/notes, and social icons on a light/cream section */
.section--light .cred-row { opacity: 1; }
.section--light .cred-row .cred { color: var(--color-black); border-color: rgba(13,13,13,0.2); }
.section--light .form-field label { color: rgba(13,13,13,0.6); }
.section--light .form-note { color: rgba(13,13,13,0.55); }
/* Light-mode form inputs on a cream section */
.section--light .form-field input,
.section--light .form-field select,
.section--light .form-field textarea {
  background: #FCFAF4;
  color: var(--color-black);
  border-color: rgba(13,13,13,0.15);
}
.section--light .form-field input::placeholder,
.section--light .form-field textarea::placeholder { color: rgba(13,13,13,0.4); }
.section--light .form-field input:focus,
.section--light .form-field select:focus,
.section--light .form-field textarea:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200,164,90,0.22);
}
.section--light .footer-social a { color: rgba(13,13,13,0.55); border-color: rgba(13,13,13,0.15); }
.section--light .footer-social a:hover { color: var(--color-gold); border-color: var(--color-gold); }

/* ---- Vision / Mission cards ---- */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
@media (max-width: 767px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  background: var(--color-black-soft);
  border: 1px solid var(--color-gold-line);
  border-radius: var(--border-radius-md);
  padding: clamp(2rem, 4vw, 3rem);
}
.vm-card .eyebrow { margin-bottom: 14px; }
.vm-card p { color: var(--color-text-dim); font-size: 16.5px; line-height: 1.7; }

/* ---- Core value blocks ---- */
.value { text-align: center; }
.value .icon-ring { margin-inline: auto; }
.value h3 { font-size: 22px; }
.value p { color: var(--color-text-muted); font-size: 14px; font-weight: 300; margin-top: 6px; }

/* ---- Tag / conditions grid ---- */
.tag-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.tag {
  border: 1px solid var(--color-gold-line);
  border-radius: 100px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-dim);
  background: var(--color-black-soft);
  transition: border-color 0.25s, color 0.25s;
}
.tag:hover { border-color: var(--color-gold); color: var(--color-gold); }

/* ---- Stats bar ---- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  border-block: 1px solid var(--color-gold-line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}
@media (max-width: 639px) { .stats-bar { grid-template-columns: 1fr 1fr; } }

/* ---- Filter bar (transformations) ---- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 44px; }
.filter-btn {
  background: transparent;
  border: 1px solid var(--color-gold-line);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 11px 22px; border-radius: 100px; cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.filter-btn:hover { border-color: var(--color-gold); color: var(--color-gold); }
.filter-btn.active { background: var(--color-gold); color: var(--color-black); border-color: var(--color-gold); }

/* ---- Transformation grid (uniform cards) ---- */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .transform-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .transform-grid { grid-template-columns: 1fr; } }
.transform-grid .transform-card { flex: initial; }
.transform-card[hidden] { display: none; }

/* ---- Video testimonials ---- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 900px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  position: relative; aspect-ratio: 16/10; border-radius: var(--border-radius-sm);
  overflow: hidden; border: 1px solid var(--color-gold-line);
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card .play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(13,13,13,0.35);
}
.video-card .play span {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--color-gold); color: var(--color-black);
  display: grid; place-items: center; font-size: 22px;
  transition: transform 0.25s var(--ease-out);
}
.video-card:hover .play span { transform: scale(1.1); }

/* ---- Contact method cards ---- */
.contact-card {
  background: var(--color-black-soft);
  border: 1px solid var(--color-gold-line);
  border-radius: var(--border-radius-md);
  padding: 38px 32px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}
.contact-card:hover { border-color: var(--color-gold); transform: translateY(-5px); }
.contact-card .c-emoji { font-size: 34px; }
.contact-card h3 { font-size: 22px; margin: 14px 0 8px; }
.contact-card a, .contact-card p { color: var(--color-text-muted); font-size: 15px; }
.contact-card a:hover { color: var(--color-gold); }

/* ---- Map embed ---- */
.map-embed {
  border: 1px solid var(--color-gold-line);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 7;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg) contrast(0.9); }

/* ---- Studio hours ---- */
.hours-list { max-width: 460px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--color-gold-line);
  color: var(--color-text-dim); font-size: 15px;
}
.hours-list li span:last-child { color: var(--color-gold); font-weight: 600; }

/* ---- Credential logos row ---- */
.cred-row { display: flex; flex-wrap: wrap; gap: 40px; align-items: center; justify-content: center; opacity: 0.75; }
.cred-row .cred {
  font-family: var(--font-display); font-size: 24px; letter-spacing: 0.05em;
  color: var(--color-text-muted); padding: 12px 20px;
  border: 1px solid var(--color-gold-line); border-radius: var(--border-radius-sm);
}

/* ---- CTA banner ---- */
.cta-banner {
  background:
    radial-gradient(ellipse at center, rgba(200,164,90,0.08), transparent 60%),
    var(--color-black);
  border-block: 1px solid var(--color-gold-line);
  text-align: center;
  padding-block: clamp(4rem, 9vw, 7rem);
}
.cta-banner h2 { font-size: clamp(40px, 7vw, 72px); }
.cta-banner .lead { margin: 16px auto 32px; }

/* ---- Coach card with profile button ---- */
.coach-card .coach-body .btn-ghost { margin-top: 18px; font-size: 12px; padding: 11px 22px; }
.coach-certs { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.coach-certs span {
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--color-gold); border: 1px solid var(--color-gold-line);
  border-radius: 100px; padding: 4px 12px;
}

/* ---- Modal (coach profile) ---- */
.modal {
  position: fixed; inset: 0; z-index: 1100;
  display: grid; place-items: center; padding: var(--gutter);
  background: rgba(6,6,6,0.8); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.modal.open { opacity: 1; visibility: visible; }
.modal-box {
  background: var(--color-black-soft); border: 1px solid var(--color-gold-line);
  border-radius: var(--border-radius-md); max-width: 640px; width: 100%;
  padding: clamp(2rem, 4vw, 3rem); position: relative;
  max-height: 88vh; overflow-y: auto;
  transform: translateY(16px); transition: transform 0.3s var(--ease-out);
}
.modal.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 18px; right: 20px; background: none; border: none;
  color: var(--color-gold); font-size: 30px; line-height: 1; cursor: pointer;
}
