/* ============================================
   THE UNPERFORMING COACH — MAIN STYLESHEET
   ============================================ */

/* ---- Custom Properties ---- */
:root {
  --cream:        #F5F0EB;
  --cream-light:  #FAF7F4;
  --black:        #1A1A1A;
  --black-hover:  #333333;
  --pink:         #F2B8C6;
  --pink-alpha:   rgba(242, 184, 198, 0.65);
  --grey:         #A39E99;
  --border:       #E5E0DB;

  --font-head: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width:        720px;
  --wide-width:       960px;
  --container-pad:    32px;

  --section-gap:      140px;
  --para-gap:         28px;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--black);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.2;
}

p {
  margin-bottom: var(--para-gap);
}

p:last-child {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

strong {
  font-weight: 600;
}

/* ---- The Pink Highlighter ----
   Mimics a physical highlighter: covers the lower ~60% of the line.
   Used 2-3 times per page maximum. Never on buttons or backgrounds. */
.highlight {
  background-image: linear-gradient(
    transparent 38%,
    var(--pink-alpha) 38%
  );
  padding: 0 4px;
  margin: 0 -4px;
}

/* ---- Containers ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.container--wide {
  max-width: var(--wide-width);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ---- Sections ---- */
.section {
  padding: var(--section-gap) 0;
}

.section--alt {
  background-color: var(--cream-light);
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 20px var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: var(--black);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.15s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--black);
}

.nav__links a.active {
  font-weight: 500;
}

/* Mobile hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background-color: var(--black);
  transition: all 0.25s ease;
  transform-origin: center;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  background-color: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 14px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  letter-spacing: 0.02em;
}

.btn:hover {
  background-color: var(--black-hover);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-size: 15px;
  color: var(--black);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
  padding-bottom: 1px;
}

.link-arrow:hover {
  border-bottom-color: var(--black);
}

/* ---- Split layout (text + portrait photo) ----
   Used for: hero, about header, coaching section, for-companies section.
   Portrait photos always go to the side - never stretched full-width. */
.split {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}

.split__text {
  flex: 1;
  min-width: 0;
}

.split__photo {
  flex: 0 0 300px;
}

.split__photo--wide {
  flex: 0 0 360px;
}

.split__photo--narrow {
  flex: 0 0 260px;
}

.split__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Photo band (full-width within content column) ----
   Used for landscape photos and silhouettes with scenic backgrounds.
   Always within the 720px content width. */
.photo-band {
  max-width: var(--max-width);
  margin: 0 auto 56px;
  padding: 0 var(--container-pad);
}

.photo-band img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.photo-band--tall img {
  height: 480px;
  object-position: center 65%;
}

/* ---- Hero ---- */
.hero {
  padding: 100px 0 120px;
}

.hero__headline {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 36px;
}

.hero__subline {
  font-size: 18px;
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 48px;
  font-family: var(--font-body);
}

.hero__note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  margin-top: 18px;
}

/* ---- Recognition Section ---- */
.recognition__intro {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 72px;
  text-align: center;
}

.recognition__statements {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  margin-bottom: 80px;
}

.recognition__statement {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 400;
  text-align: center;
  line-height: 1.4;
  max-width: 460px;
}

.recognition__close {
  text-align: center;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey);
}

/* ---- Section Headline ---- */
.section__headline {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 40px;
}

/* ---- Body text ---- */
.body-text {
  font-family: var(--font-body);
}

.body-text p {
  margin-bottom: var(--para-gap);
}

.body-text p:last-child {
  margin-bottom: 0;
}

/* ---- Page Header ---- */
.page-header {
  padding: 80px 0;
}

.page-header__headline {
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 28px;
}

.page-header__subline {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  max-width: 520px;
}

/* ---- Offer Cards (homepage) ---- */
.offers {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--border);
}

.offer-card {
  background-color: var(--cream);
  padding: 48px;
}

.offer-card--primary {
  background-color: var(--cream-light);
  padding: 64px 48px;
}

.offer-card__name {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  margin-bottom: 18px;
}

.offer-card--primary .offer-card__name {
  font-size: clamp(20px, 2.8vw, 28px);
}

.offer-card__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 560px;
}

/* ---- What's Included (coaching page) ---- */
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.included-item {
  border-left: 2px solid var(--border);
  padding-left: 28px;
}

.included-item strong {
  font-family: var(--font-body);
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
  font-size: 16px;
}

.included-item p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 0;
}

/* ---- Pricing ---- */
.pricing-block {
  border-top: 2px solid var(--black);
  padding-top: 56px;
}

.pricing__amount {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}

.pricing__note {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 0;
}

.pricing__body {
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 16px;
  max-width: 560px;
  line-height: 1.8;
}

.pricing__body p {
  margin-bottom: 20px;
}

.pricing__body p:last-child {
  margin-bottom: 0;
}

/* ---- FAQ Accordion ---- */
.faq {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  padding: 28px 0;
  font-family: var(--font-body);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--grey);
  flex-shrink: 0;
  line-height: 1.5;
  margin-top: 1px;
}

.faq-item[open] > summary::after {
  content: '−';
}

.faq-answer {
  padding: 4px 0 36px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  max-width: 580px;
}

.faq-answer p {
  margin-bottom: 20px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.faq-answer a:hover {
  border-bottom-color: var(--black);
}

/* ---- Three Scenes (about page) ---- */
.scenes {
  display: flex;
  flex-direction: column;
}

.scene {
  border-top: 1px solid var(--border);
  padding: 56px 0;
}

.scene:last-child {
  border-bottom: 1px solid var(--border);
}

.scene__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 24px;
}

.scene__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
}

.scene__body p {
  margin-bottom: 20px;
}

.scene__body p:last-child {
  margin-bottom: 0;
}

/* ---- Credentials ---- */
.credentials {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

.credentials p {
  margin-bottom: 20px;
}

.credentials p:last-child {
  margin-bottom: 0;
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.credentials-list li {
  font-family: var(--font-body);
  font-size: 16px;
  padding-left: 20px;
  position: relative;
}

.credentials-list li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--grey);
}

/* ---- Service Cards (for-companies) ---- */
.services {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background-color: var(--border);
}

.service-card {
  background-color: var(--cream);
  padding: 48px;
}

.service-card__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 14px;
}

.service-card__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 560px;
}

.service-card__price {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  font-weight: 500;
}

/* ---- Testimonials ---- */
.testimonials {
  display: flex;
  flex-direction: column;
}

.testimonial {
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.testimonial:last-child {
  border-bottom: 1px solid var(--border);
}

.testimonial__text {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 22px;
}

.testimonial__attribution {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
}

.testimonial__attribution strong {
  color: var(--black);
  font-weight: 500;
}

/* ---- Pillars (community page) ---- */
.pillars {
  display: flex;
  flex-direction: column;
}

.pillar {
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

.pillar:last-child {
  border-bottom: 1px solid var(--border);
}

.pillar__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 10px;
}

.pillar__body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
}

/* ---- How it Works ---- */
.how-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.how-item {
  border-left: 2px solid var(--border);
  padding-left: 28px;
}

.how-item strong {
  font-family: var(--font-body);
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.how-item p {
  font-family: var(--font-body);
  font-size: 16px;
  margin-bottom: 0;
}

/* ---- Forms ---- */
.form-input,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background-color: #FFFFFF;
  border: 1px solid var(--border);
  padding: 14px 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.15s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--grey);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--black);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-inline {
  display: flex;
}

.form-inline .form-input {
  flex: 1;
  border-right: none;
}

.form-consent {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey);
  margin-top: 14px;
  margin-bottom: 0;
}

.form-feedback {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  margin-top: 14px;
  padding: 10px 14px;
  border-radius: 6px;
}

.form-feedback.is-error {
  background-color: #FBE9EC;
  color: #8B2A36;
  border: 1px solid #F2C4CE;
}

.form-feedback.is-success {
  background-color: #EDF6EE;
  color: #2F6B3A;
  border: 1px solid #C7E2CC;
}

.form-success {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin-top: 32px;
  padding: 18px 22px;
  background-color: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--pink);
  border-radius: 6px;
  max-width: 480px;
  color: var(--black);
}

.form-note {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey);
  margin-top: 16px;
}

.waitlist-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
}

.waitlist-checkbox input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.waitlist-checkbox label {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  cursor: pointer;
}

/* ---- CTA Section ---- */
.cta-section {
  text-align: center;
}

.cta-section .section__headline {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .body-text {
  max-width: 400px;
  margin: 0 auto;
}

.secondary-cta {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  text-decoration: none;
  margin-top: 20px;
  text-align: center;
}

.secondary-cta a {
  color: var(--black);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.secondary-cta a:hover {
  border-bottom-color: var(--black);
}

.inline-link {
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.inline-link:hover {
  border-bottom-color: var(--black);
}

/* ---- Footer ---- */
.footer {
  background-color: var(--cream-light);
  border-top: 1px solid var(--border);
  padding: 80px var(--container-pad) 56px;
}

.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__brand {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 10px;
}

.footer__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 56px;
  line-height: 1.6;
  max-width: 400px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 32px;
}

.footer__nav a {
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.15s ease;
}

.footer__nav a:hover {
  color: var(--black);
}

.footer__social {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
}

.footer__social a {
  font-family: var(--font-body);
  font-size: 14px;
  text-decoration: none;
  color: var(--grey);
  transition: color 0.15s ease;
}

.footer__social a:hover {
  color: var(--black);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey);
}

/* ---- Three Paths grid (homepage) ---- */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--border);
  margin-top: 48px;
}

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

@media (max-width: 720px) {
  .paths,
  .paths--two {
    grid-template-columns: 1fr;
  }
}

.path-item {
  background-color: var(--cream);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
}

.path-item__name {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
  min-height: 2.6em; /* reserve space for 2 lines so body text starts at same position across all cards */
}

.path-item__body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 0;
}

.path-item .link-arrow {
  margin-top: auto;
  padding-top: 20px;
}

/* ---- Problem lines (homepage section 2) ---- */
.problem {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 540px;
}

.problem p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Reset page features ---- */
.reset-features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 8px;
}

.reset-feature {
  border-left: 2px solid var(--border);
  padding-left: 28px;
}

.reset-feature strong {
  font-family: var(--font-body);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.reset-feature p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 0;
}

/* ---- Minimal nav (lead magnet pages) ---- */
.nav--minimal .nav__links,
.nav--minimal .nav__toggle,
.nav--minimal .nav__cta {
  display: none;
}

/* ---- Nav CTA (all pages) ---- */
.nav__cta {
  padding: 9px 20px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

/* ---- Stakes (coaching page section 2) ---- */
.stakes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stake {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  padding: 12px 0 12px 16px;
  border-left: 3px solid var(--pink);
  font-style: italic;
  list-style: none;
}

/* ---- How Steps (coaching page section 5) ---- */
.how-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-top: 8px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.how-step__number {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: var(--pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  flex-shrink: 0;
  user-select: none;
}

.how-step__content {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  padding-top: 4px;
}

/* ---- Doubts / Objections (coaching page sections 6 and 9 share these) ---- */
.doubts {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.doubt-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.doubt-item__question {
  font-family: var(--font-body);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 16px;
  line-height: 1.5;
}

.doubt-item__question::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

.doubt-item__answer {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
}

/* ---- Launch bonus callout ---- */
.launch-bonus {
  margin-top: 32px;
  padding: 20px 24px;
  background-color: rgba(242, 184, 198, 0.18);
  border-left: 3px solid var(--pink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
}

/* ---- Guarantee ---- */
.guarantee {
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
  max-width: 520px;
}

/* ---- Pricing includes list ---- */
.pricing__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
}

.pricing__includes li {
  padding-left: 20px;
  position: relative;
}

.pricing__includes li::before {
  content: '-';
  position: absolute;
  left: 0;
  color: var(--grey);
}

/* ---- Spacing helpers ---- */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .split {
    gap: 48px;
  }

  .split__photo--wide {
    flex: 0 0 300px;
  }
}

/* Mid-range: tighten photo columns so text doesn't get squeezed */
@media (max-width: 860px) {
  .split {
    gap: 36px;
  }

  .split__photo--wide {
    flex: 0 0 240px;
  }

  .split__photo {
    flex: 0 0 220px;
  }

  .split__photo--narrow {
    flex: 0 0 200px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-gap:   88px;
    --container-pad: 20px;
  }

  body {
    font-size: 16px;
  }

  /* Hide nav CTA on mobile (redundant with hero CTA) */
  .nav__cta {
    display: none;
  }

  /* Three paths stacks on mobile */
  .paths {
    grid-template-columns: 1fr;
  }

  /* Mobile nav: fullscreen overlay */
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background-color: var(--cream);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 199;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    font-size: 20px;
  }

  .nav__toggle {
    display: flex;
  }

  /* Split: stack vertically */
  .split {
    flex-direction: column !important;
    gap: 40px;
  }

  .split__photo,
  .split__photo--wide,
  .split__photo--narrow {
    flex: 0 0 auto;
    width: 100%;
    max-width: 320px;
  }

  /* Hero */
  .hero {
    padding: 72px 0 88px;
  }

  .hero__subline {
    font-size: 17px;
    max-width: 100%;
  }

  /* Offer cards */
  .offer-card,
  .offer-card--primary {
    padding: 40px 28px;
  }

  /* Service cards */
  .service-card {
    padding: 40px 28px;
  }

  /* Page header */
  .page-header {
    padding: 64px 0 56px;
  }

  /* Pricing */
  .pricing-block {
    padding-top: 40px;
  }

  /* Inline form stacks */
  .form-inline {
    flex-direction: column;
  }

  .form-inline .form-input {
    border-right: 1px solid var(--border);
  }

  .form-inline .btn {
    width: 100%;
    text-align: center;
  }

  /* Photo band */
  .photo-band img {
    height: 280px;
  }

  .photo-band--tall img {
    height: 320px;
  }

  /* Testimonials */
  .testimonial {
    padding: 40px 0;
  }

  /* Scene */
  .scene {
    padding: 48px 0;
  }

  /* Recognition */
  .recognition__statements {
    gap: 40px;
    margin-bottom: 64px;
  }

  /* Footer */
  .footer {
    padding: 64px var(--container-pad) 48px;
  }

  /* Buttons */
  .btn {
    padding: 14px 32px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 72px;
  }

  .offer-card,
  .offer-card--primary {
    padding: 36px 20px;
  }

  .service-card {
    padding: 36px 20px;
  }

  .recognition__statement {
    font-size: 17px;
  }
}

/* ---- /camps hub stacked cards ---- */
.camps-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.camps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  min-height: 240px;
  padding: 48px 44px;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.camps-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 26, 24, 0.08);
}

/* In-person: Algarve photo + soft pink overlay */
.camps-card--photo {
  background-image: url('/assets/camps.jpeg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.camps-card--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(242, 184, 198, 0.48);
  pointer-events: none;
}

.camps-card--photo > * {
  position: relative;
  z-index: 1;
}

/* Online: cream, clean, bordered */
.camps-card--minimal {
  background-color: var(--cream);
  border: 1px solid var(--border);
  color: var(--black);
}

.camps-card__title {
  font-family: var(--font-head);
  font-size: clamp(24px, 3.2vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 14px;
}

.camps-card__title-aside {
  font-weight: 400;
  color: var(--grey);
  font-size: 0.7em;
  margin-left: 6px;
}

.camps-card--photo .camps-card__title-aside {
  color: rgba(255, 255, 255, 0.85);
}

.camps-card__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.camps-card__detail {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.85;
}

.camps-card__cta {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 5px;
  align-self: flex-start;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.camps-card--photo .camps-card__cta {
  color: #ffffff;
}

.camps-card--minimal .camps-card__cta {
  color: var(--black);
}

.camps-help {
  max-width: 720px;
  margin: 80px auto 0;
  text-align: center;
}

.camps-help p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--grey);
  margin: 0 0 20px;
}

.camps-help p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .camps-card {
    padding: 28px 20px;
    min-height: 200px;
    gap: 24px;
  }

  .camps-help {
    margin-top: 56px;
  }
}

/* ============================================
   DESIGN REFRESH — pink accents, cards, FAQ dots
   ============================================ */

/* ---- Three paths: card-style with featured ---- */
.paths {
  background-color: transparent;
  gap: 16px;
}

.path-item {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px 24px;
  border: 1px solid var(--border);
  position: relative;
}

.path-item--featured {
  border: 2px solid var(--pink);
}

.path-tag {
  display: inline-block;
  background: var(--pink);
  color: var(--black);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---- Lead magnet section card (homepage) ---- */
.lead-magnet-section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  text-align: center;
  margin: 40px auto 0;
  max-width: 640px;
}

.lead-magnet-section .body-text,
.lead-magnet-section h2 {
  text-align: center;
}

.lead-magnet-section form {
  margin-left: auto;
  margin-right: auto;
}

.lead-magnet-section .form-consent {
  text-align: left;
}

@media (max-width: 600px) {
  .lead-magnet-section {
    padding: 28px 20px;
  }
}

/* ---- Pricing accent line under the price ---- */
.price-accent {
  width: 40px;
  height: 3px;
  background: var(--pink);
  margin: 12px 0 16px;
  border-radius: 2px;
}

/* ---- "What you get" pink checkmarks variant ---- */
.included-list--checks {
  gap: 20px;
}

.included-list--checks .included-item {
  border-left: none;
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.included-list--checks .included-item::before {
  content: '✓';
  color: var(--pink);
  font-size: 16px;
  min-width: 18px;
  margin-right: 0;
  flex-shrink: 0;
  font-weight: 600;
  line-height: 1.5;
  padding-top: 2px;
}

.included-list--checks .included-item > * {
  flex: 1;
}

/* ---- FAQ summary: pink dot before question ---- */
.faq-item summary::before {
  content: '';
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
  margin-right: 10px;
  margin-top: 10px;
  flex-shrink: 0;
}

/* Doubt-item__question is a <p>, not flex — make it flex so dot aligns */
.doubt-item__question {
  display: flex;
  align-items: flex-start;
}

.doubt-item__question::before {
  margin-top: 8px;
}

/* ---- Coaching session photo band (between doubts and pricing) ---- */
.coaching-session-photo {
  margin: 80px auto;
  max-width: var(--max-width);
  padding: 0 var(--container-pad);
}

.coaching-session-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 720px) {
  .coaching-session-photo {
    margin: 56px auto;
  }
}
