/* Misfits S+C - shared stylesheet (multi-page site) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:        oklch(70% 0.155 68);
  --amber-ink:    oklch(42% 0.140 68);
  --near-black:   oklch(12% 0.010 68);
  --near-black2:  oklch(9%  0.010 68);
  --off-white:    oklch(96% 0.006 68);
  --mid-ash:      oklch(52% 0.007 68);
  --dim-white:    oklch(78% 0.006 68);
  --rule-dark:    oklch(20% 0.010 68);
  --rule-light:   oklch(87% 0.006 68);
  --body-light:   oklch(30% 0.008 68);
  --muted-light:  oklch(56% 0.007 68);
  --on-amber:     oklch(12% 0.010 68);
  --label-amber:  oklch(22% 0.012 68);
  --img-ph:       oklch(22% 0.010 68);
  --px: clamp(1.25rem, 5.5vw, 5.5rem);
  --sy: clamp(4rem, 8vw, 7rem);
}

html { font-family: 'Barlow', Arial, sans-serif; font-size: 16px; color: var(--near-black); background: var(--off-white); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* Labels / eyebrows */
.lbl { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8125rem; line-height: 1; }
.lbl-dark { color: var(--label-amber); }
.lbl-amber, .lbl-ink { color: var(--amber); }
.lbl-muted { color: var(--mid-ash); }

/* Buttons */
.btn { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; text-decoration: none; padding: 0.7rem 1.15rem; border: none; cursor: pointer; transition: transform 0.15s cubic-bezier(0.2,0.8,0.3,1), background 0.15s; }
.btn-dark  { background: var(--near-black); color: var(--off-white); }
.btn-amber { background: var(--amber); color: var(--on-amber); }
.btn-ghost { background: transparent; color: var(--off-white); box-shadow: inset 0 0 0 2px var(--amber); }
.btn:hover { transform: translateY(-2px); }
.btn-lg { font-size: 1.0625rem; padding: 1rem 1.6rem; }

/* Nav */
.nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 1.1rem var(--px); background: var(--off-white); border-bottom: 1px solid var(--rule-light); position: sticky; top: 0; z-index: 10; }
.nav__logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.375rem; letter-spacing: -0.01em; text-decoration: none; }
.nav__links { list-style: none; display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; }
.nav__links a { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.85rem; text-decoration: none; color: var(--near-black); padding-bottom: 2px; border-bottom: 2px solid transparent; }
.nav__links a:hover { border-color: var(--amber); }
.nav__links a[aria-current="page"] { border-color: var(--amber); color: var(--amber-ink); }

/* Sections */
.sec { padding: var(--sy) var(--px); }
.sec-dark  { background: var(--near-black); color: var(--dim-white); }
.sec-dark2 { background: var(--near-black2); color: var(--dim-white); }
.sec-light { background: var(--off-white); color: var(--body-light); }
.sec-amber { background: var(--amber); color: var(--on-amber); }
.sec__eye { margin-bottom: 1rem; }
.sec__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 3.25rem); line-height: 0.98; letter-spacing: -0.01em; margin-bottom: 2rem; max-width: 20ch; }
.sec__title-on-dark { color: var(--off-white); }
.sec__title-on-light { color: var(--near-black); }
.sec__title-on-amber { color: var(--on-amber); }
.sec__lead { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); line-height: 1.55; max-width: 60ch; margin-bottom: 0.5rem; }
.lead-dark { color: var(--dim-white); }
.lead-light { color: var(--body-light); }
.lead-amber { color: var(--label-amber); }

/* Hero */
.hero { padding: var(--sy) var(--px) calc(var(--sy) + 1rem); }
.hero-amber { background: var(--amber); color: var(--on-amber); }
.hero__eyebrow { margin-bottom: 1.75rem; }
.hero__headline { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(2.75rem, 8.5vw, 6rem); line-height: 0.9; letter-spacing: -0.01em; margin-bottom: 1.75rem; max-width: 16ch; }
.hero__headline em { font-style: normal; color: var(--amber); }
.hero__body { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); line-height: 1.55; max-width: 60ch; color: var(--label-amber); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.25rem; }
.hero__scroll { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.95rem; text-decoration: none; color: var(--on-amber); border-bottom: 2px solid currentColor; padding-bottom: 2px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; } }
.hero__img { width: 100%; aspect-ratio: 3/4; background: var(--img-ph); overflow: hidden; }
.hero__img img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); display: block; }

/* Outcomes emphasis (light) */
.emph { font-style: normal; color: var(--amber); }

/* Contrast table (difference) */
.contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(1rem, 4vw, 3rem); margin-top: 1rem; }
.contrast__head { padding-bottom: 0.75rem; border-bottom: 1px solid var(--rule-light); }
.contrast__them, .contrast__us { padding: 1.5rem 0; border-bottom: 1px solid var(--rule-light); line-height: 1.5; }
.contrast__them { color: var(--muted-light); }
.contrast__us { color: var(--near-black); font-weight: 500; }

/* Program list (system) */
.program-list { list-style: none; display: grid; gap: 2.25rem; max-width: 62ch; min-width: 0; }

/* The System: two-column (program list + proof chart) */
.system-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 3rem; }
@media (min-width: 980px) {
  .system-grid { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
}

/* Proof chart (in The System) */
.proof { padding-top: 3rem; border-top: 1px solid var(--rule-dark); min-width: 0; }
@media (min-width: 980px) { .proof { padding-top: 0; border-top: none; position: sticky; top: 2rem; } }
.proof__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(1.75rem, 3.6vw, 2.75rem); line-height: 0.95; color: var(--off-white); margin-bottom: 0.6rem; }
.proof__title em { font-style: normal; color: var(--amber); }
.proof__lead { max-width: 60ch; color: var(--dim-white); margin-bottom: 1.9rem; font-size: 1.0625rem; line-height: 1.55; }
.proof__chartwrap { width: 100%; overflow-x: auto; }
.proof__chartwrap svg { display: block; width: 100%; height: auto; max-width: 1200px; }
.proof__legend { display: flex; flex-wrap: wrap; gap: 1rem 1.75rem; margin-top: 1.5rem; }
.proof-leg { display: flex; align-items: center; gap: 0.6rem; }
.proof-leg__swatch { width: 26px; height: 4px; border-radius: 2px; flex: 0 0 auto; }
.proof-leg__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.9rem; color: var(--off-white); }
.proof-leg__delta { font-size: 0.9rem; color: var(--dim-white); }
.proof-leg__delta b { color: var(--amber); }
.proof__note { margin-top: 1.5rem; font-size: 0.85rem; color: var(--mid-ash); max-width: 72ch; line-height: 1.5; }
.proof .grid-line { stroke: var(--rule-dark); stroke-width: 1; }
.proof .axis-label { font-family: 'Barlow', sans-serif; font-size: 13px; fill: var(--mid-ash); }
.proof .dot { opacity: 0.26; }
.proof .trend { fill: none; stroke-linecap: round; }
.proof .end-tag text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; }
/* When the chart condenses on small screens, scale its in-SVG labels up so they stay legible */
@media (max-width: 620px) {
  .proof .axis-label { font-size: 19px; }
}
.program-item { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.program-item__num { color: var(--amber); padding-top: 0.35rem; }
.program-item__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.35rem; line-height: 1.1; color: var(--off-white); margin-bottom: 0.5rem; }
.program-item__body { font-size: 1.0625rem; line-height: 1.6; }

/* Coach grid */
.coach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 2.75rem 2rem; margin-top: 2.75rem; }
.coach__photo { width: 100%; aspect-ratio: 4/5; background: var(--img-ph); margin-bottom: 1.1rem; overflow: hidden; }
/* object-position = how the photo is framed inside the card.
   1st number = horizontal (0% left … 100% right), 2nd = vertical (0% top … 100% bottom).
   Set per coach with --pos on each .coach__photo below. Default is centred. */
.coach__photo img { width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, 50% 50%); display: block; }
.coach__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; line-height: 1; color: var(--off-white); margin-bottom: 0.4rem; }
.coach__role { margin-bottom: 0.8rem; }
.coach__bio { font-size: 1rem; line-height: 1.55; color: var(--dim-white); }

/* Testimonials */
.testi-list { list-style: none; display: grid; gap: 2.5rem; grid-template-columns: 1fr; max-width: 70ch; }
@media (min-width: 800px) { .testi-list { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); max-width: none; } }
.testi__quote { font-size: 1.0625rem; line-height: 1.55; color: var(--near-black); margin-bottom: 1rem; }
.testi__attr { color: var(--muted-light); font-size: 0.95rem; }

/* On-the-floor clip grid */
.clip-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2.5rem; max-width: 460px; }
@media (min-width: 720px) { .clip-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: none; } }
.clip-card { position: relative; margin: 0; overflow: hidden; background: var(--near-black); border: 1px solid var(--rule-light); }
.clip { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }

/* Pricing tiers */
.tiers { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1rem; }
@media (min-width: 760px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier { border: 1px solid var(--rule-light); padding: 2rem 1.75rem; display: flex; flex-direction: column; background: var(--off-white); }
.tier-feature { background: var(--near-black); border-color: var(--near-black); color: var(--dim-white); }
.tier__name { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.9rem; color: var(--amber-ink); margin-bottom: 1rem; }
.tier-feature .tier__name { color: var(--amber); }
.tier__price { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 3rem; line-height: 0.9; color: var(--near-black); }
.tier-feature .tier__price { color: var(--off-white); }
.tier__per { font-size: 1rem; color: var(--muted-light); margin-bottom: 1.25rem; }
.tier-feature .tier__per { color: var(--dim-white); }
.tier__desc { line-height: 1.55; margin-bottom: 1.5rem; flex: 1; color: var(--body-light); }
.tier-feature .tier__desc { color: var(--dim-white); }
.tier .btn { text-align: center; }
.tier__actions { display: flex; flex-direction: column; gap: 0.85rem; }
.tier__alt { text-align: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.78rem; text-decoration: none; }
.tier__alt:hover { text-decoration: underline; }

/* Offer / included list */
.offer-items { list-style: none; display: grid; gap: 0; max-width: 60ch; }
.offer-item { display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; border-top: 1px solid var(--rule-light); }
.offer-item:last-child { border-bottom: 1px solid var(--rule-light); }
.offer-item__val { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--amber-ink); white-space: nowrap; }
.offer-price { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: clamp(4rem, 12vw, 7rem); line-height: 0.85; }

/* Steps (first-timers / how it works) */
.steps { list-style: none; display: grid; gap: 2rem; max-width: 60ch; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; }
.step__num { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; letter-spacing: 0.1em; font-size: 0.8125rem; color: var(--amber); padding-top: 0.35rem; }
.step__title { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.35rem; line-height: 1.1; margin-bottom: 0.5rem; }
.step__body { font-size: 1.0625rem; line-height: 1.6; }

/* Q&A blocks */
.qa { display: grid; gap: 2.25rem; max-width: 62ch; }
.qa__item { border-top: 1px solid var(--rule-light); padding-top: 1.5rem; }
.qa__q { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.4rem; line-height: 1.1; margin-bottom: 0.6rem; }
.qa__a { font-size: 1.0625rem; line-height: 1.65; }

/* FAQ accordion */
.faq-wrap { max-width: 62ch; }
.faq-wrap details { border-top: 1px solid var(--rule-light); padding: 1.25rem 0; }
.faq-wrap details:last-child { border-bottom: 1px solid var(--rule-light); }
.faq-wrap summary { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.25rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; color: var(--near-black); }
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after { content: '+'; color: var(--amber); font-weight: 800; }
.faq-wrap details[open] summary::after { content: '-'; }
.faq-body { margin-top: 0.9rem; line-height: 1.65; color: var(--body-light); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 820px) { .contact-grid { grid-template-columns: 1.2fr 0.8fr; } }
.form { display: grid; gap: 1.1rem; max-width: 40rem; }
.form label { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; color: var(--label-amber); display: block; margin-bottom: 0.4rem; }
.form input, .form textarea { width: 100%; font-family: 'Barlow', sans-serif; font-size: 1rem; padding: 0.85rem 1rem; border: 1px solid var(--rule-light); background: var(--off-white); border-radius: 0; color: var(--near-black); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px oklch(70% 0.155 68 / 0.2); }
.form textarea { min-height: 8rem; resize: vertical; }
.form__status { font-size: 0.95rem; line-height: 1.5; padding: 0.85rem 1rem; border: 1px solid var(--rule-light); }
.form__status--ok { border-color: var(--amber); color: var(--near-black); background: oklch(70% 0.155 68 / 0.12); }
.form__status--err { border-color: oklch(55% 0.19 25); color: oklch(45% 0.19 25); background: oklch(55% 0.19 25 / 0.08); }
.contact-aside p { line-height: 1.6; margin-bottom: 1.25rem; }
.contact-aside .lbl { display: block; margin-bottom: 0.4rem; }

/* Footer */
.footer { background: var(--near-black2); color: var(--dim-white); padding: var(--sy) var(--px) 2.5rem; }
.footer__inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; }
.footer__logo { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.5rem; text-decoration: none; color: var(--off-white); display: inline-block; margin-bottom: 0.75rem; }
.footer__tagline { color: var(--mid-ash); max-width: 30ch; line-height: 1.5; margin-bottom: 1.25rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.95rem; }
.footer__links a { text-decoration: none; color: var(--dim-white); }
.footer__nav { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem; }
.footer__nav a { font-family: 'Barlow Condensed', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem; text-decoration: none; color: var(--mid-ash); }
.footer__nav a:hover { color: var(--amber); }
.footer__hours-time { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 1.75rem; line-height: 1.1; color: var(--off-white); }
.footer__copy { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--rule-dark); font-size: 0.85rem; color: var(--mid-ash); }

/* Utility */
.placeholder { color: var(--near-black); background: rgba(0,0,0,0.10); padding: 0.05em 0.4em; font-style: italic; }
.center-cta { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
