/* ============================================================
   approach.css — "Coaching for organizations" page
   (approach hero, audience, needs, benefits, process, services,
   formats, footer "why work with me" list)
   ============================================================ */

/* ---- Hero band ---- */
.approach-hero {
  padding-block: var(--spacing-lg);
  background: var(--color-teal-bright);
  border-bottom: 8px solid var(--color-white);
}

.approach-hero h1 {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-teal-dark);
  margin-bottom: var(--spacing-xs);
  line-height: 1.2;
  max-width: 720px;
}

.approach-hero .approach-hero-subtitle {
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  max-width: 720px;
}

.approach-hero p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 720px;
  margin-bottom: 0;
}

/* ---- Two-column rows (audience / needs) ---- */
.approach-row {
  padding-block: var(--spacing-md);
}

.approach-row .container {
  display: grid;
  gap: var(--spacing-md);
  align-items: center;
}

/* Column order in markup: text, photo, balloon (balloon overlaps photo + hero row above) */
#approach-audience .container {
  grid-template-columns: 1.6fr 1fr;
}

#approach-audience .approach-photo {
  grid-column: 2;
  grid-row: 1;
}

#approach-audience .approach-quote-bubble {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  z-index: 2;
  align-self: start;
  justify-self: end;
  width: 55%;
  max-width: 220px;
  margin: calc(-1 * var(--spacing-lg) - 120px) calc(-1 * var(--spacing-sm)) 0 0;
}

/* Column order in markup: photo, text, balloon (balloon overlaps text + benefits row below) */
#approach-needs .container {
  grid-template-columns: 1fr 1.6fr;
}

#approach-needs .approach-photo {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
}

#approach-needs .approach-text {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
}

#approach-needs .approach-quote-bubble {
  grid-column: 1 / -1;
  grid-row: 1;
  position: relative;
  z-index: 2;
  align-self: end;
  justify-self: center;
  width: 55%;
  max-width: 220px;
  margin: 0 0 calc(-1 * var(--spacing-lg) - 100px) 0;
  transform: rotate(20deg);
}

/* Column order in markup: text, photo */
#approach-benefits .container {
  grid-template-columns: 1.6fr 1fr;
}

.approach-row h2 {
  font-size: 1.3rem;
  color: var(--color-teal-dark);
  margin-bottom: var(--spacing-sm);
}

.approach-row .approach-intro {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: var(--spacing-sm);
}

.approach-list li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.approach-list li::before {
  content: '\2013';
  position: absolute;
  left: 0;
  color: var(--color-accent-orange);
  font-weight: 700;
}

/* Grey background section uses round bullet points instead of orange dashes */
#approach-audience .approach-list li::before {
  content: '';
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-text-muted);
}

/* Benefits section list has no bullet markers */
#approach-benefits .approach-list li {
  padding-left: 0;
}

#approach-benefits .approach-list li::before {
  content: none;
}

#approach-audience .cta-button {
  margin-top: var(--spacing-sm);
  background: var(--color-accent-yellow);
  color: var(--color-text);
}

#approach-audience .cta-button:hover {
  background: var(--color-accent-orange);
  color: var(--color-white);
}

/* Needs section uses yellow round bullet points instead of orange dashes */
#approach-needs .approach-list li::before {
  content: '';
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-yellow);
}

.approach-photo {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.approach-quote-bubble {
  width: 100%;
  max-width: 200px;
  margin-inline: auto;
}

#approach-audience {
  background: color-mix(in srgb, var(--color-bg-light) 90%, black);
}

/* ---- Testimonial pull-quote (between audience and needs) ---- */
#approach-testimonial {
  background: var(--color-accent-yellow);
  padding-block: var(--spacing-md);
}

#approach-testimonial p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

#approach-testimonial .testimonial-author {
  font-style: normal;
  font-weight: 600;
}

#approach-needs {
  background: var(--color-white);
}

/* ---- Benefits ---- */
#approach-benefits {
  background: var(--color-teal-bright);
}

#approach-benefits .approach-list li strong {
  color: var(--color-teal-dark);
}

.approach-cta-row {
  margin-top: var(--spacing-md);
}

.approach-cta-row p {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

#approach-benefits .cta-button {
  background: var(--color-accent-yellow);
  color: var(--color-text);
}

#approach-benefits .cta-button:hover {
  background: var(--color-accent-orange);
  color: var(--color-white);
}

/* ---- Process ---- */
#approach-process {
  padding-block: var(--spacing-lg);
  background: var(--color-white);
}

.process-columns {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: var(--spacing-xs);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.process-col {
  display: flex;
  flex-direction: column;
  background: var(--color-teal-bright);
}

.process-col-header {
  padding: calc(var(--spacing-sm) * 1.9) var(--spacing-sm);
  text-align: center;
  font-size: 1.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-white);
}

.process-col-insight .process-col-header {
  background: var(--color-teal-dark);
}

.process-col-coaching .process-col-header {
  background: var(--color-teal);
}

.process-col-impact .process-col-header {
  background: var(--color-text-muted);
}

.process-col-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm);
  text-align: center;
}

/* Insight & Impact: two cards side by side, as vertical columns, flush against header and edges */
.process-col-insight .process-col-body,
.process-col-impact .process-col-body {
  flex-direction: row;
  gap: 0;
  padding: 0;
}

.process-col-intro {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--color-text);
}

.process-card {
  flex: 1;
  min-width: 0;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: var(--spacing-sm);
  box-shadow: var(--shadow);
}

/* First two (Insight) and last two (Impact) cards: uniform teal-bright background, no card chrome */
.process-col-insight .process-card,
.process-col-impact .process-card {
  background: var(--color-teal-bright);
  border-radius: 0;
  box-shadow: none;
  padding-top: calc(var(--spacing-sm) + var(--spacing-md));
}

.process-col-insight .process-card h3,
.process-col-impact .process-card h3 {
  color: #000;
  line-height: 1.2;
  min-height: 2.4em;
}

.process-col-insight .process-card p,
.process-col-impact .process-card p {
  color: #000;
}

/* White separator between the two stacked cards in each of these columns */
.process-col-insight .process-card:first-child,
.process-col-impact .process-card:first-child {
  border-right: 5px solid var(--color-white);
}

.process-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--spacing-xs);
  object-fit: contain;
}

.process-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 0.35rem;
}

/* Focus / Reflection / Transformation cards carry an icon, centered */
.process-sub-cards .process-card {
  text-align: center;
  border-radius: 0;
  box-shadow: none;
  padding-left: var(--spacing-xs);
  padding-right: var(--spacing-xs);
}

.process-card p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 0;
}

/* Coaching: three cards side by side, as vertical columns */
.process-sub-cards {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex: 1;
  margin: 0 calc(var(--spacing-sm) * -1) calc(var(--spacing-sm) * -1);
}

/* ---- Services (coaching offer carousel) ---- */
#approach-services {
  padding-block: var(--spacing-lg);
  background: var(--color-white);
}

.services-carousel {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.services-track-wrapper {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-track-wrapper::-webkit-scrollbar {
  display: none;
}

.services-track {
  display: flex;
  gap: var(--spacing-sm);
}

.service-pill {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--spacing-xs);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  background: var(--color-bg-light);
}

/* Cycle grey / orange / green tints, matching the mock-up */
.service-pill:nth-child(3n+2) {
  background: color-mix(in srgb, var(--color-accent-yellow) 35%, white);
}

.service-pill:nth-child(3n+3) {
  background: color-mix(in srgb, var(--color-accent-green) 25%, white);
  color: var(--color-teal-dark);
}

/* ---- Prev / next arrow buttons ---- */
.services-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-teal);
  border-radius: 50%;
  background: none;
  color: var(--color-teal);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.services-arrow:hover {
  background: var(--color-teal);
  color: var(--color-white);
}

/* ---- Dot navigation ---- */
.services-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: var(--spacing-md);
}

.services-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: background 0.2s;
}

.services-dot.active {
  background: var(--color-teal);
}

/* ---- Formats footer note (below the reused working-images figure row) ---- */
#approach-formats {
  padding-block: var(--spacing-lg);
  background: var(--color-white);
}

/* ---- Footer "why work with me" list ---- */
.footer-why-list li {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}

/* ---- Responsive ---- */
@media (max-width: 767px) {
  #approach-audience .container,
  #approach-needs .container,
  #approach-benefits .container {
    grid-template-columns: 1fr;
  }

  /* Stack consistently as: photo, balloon, text */
  .approach-photo {
    order: 1;
  }

  .approach-quote-bubble {
    order: 2;
    max-width: 160px;
  }

  .approach-text {
    order: 3;
  }

  /* Undo desktop overlap so the balloon stacks normally on mobile */
  #approach-audience .approach-photo,
  #approach-audience .approach-quote-bubble,
  #approach-needs .approach-photo,
  #approach-needs .approach-text,
  #approach-needs .approach-quote-bubble {
    grid-column: auto;
    grid-row: auto;
  }

  #approach-audience .approach-quote-bubble,
  #approach-needs .approach-quote-bubble {
    position: static;
    z-index: auto;
    align-self: auto;
    justify-self: auto;
    width: 100%;
    max-width: 160px;
    margin: 0;
  }

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

  .process-col-insight .process-col-body,
  .process-col-impact .process-col-body,
  .process-sub-cards {
    flex-direction: column;
  }

  .service-pill {
    width: 120px;
    height: 120px;
    font-size: 0.8rem;
  }

  .services-arrow {
    width: 2rem;
    height: 2rem;
    font-size: 0.95rem;
  }
}
