/* ============================================
   NURAYA — engagement-type.css
   Loaded on engagement-type.html (and the 3 duplicate
   engagement pages once built).
   ============================================ */

/* ============================================
   1. ENGAGEMENT HERO — light strip with back link
   ============================================ */
.engagement-hero {
  background: var(--offwhite);
  padding: calc(var(--space-2xl) + 2rem) 0 var(--space-xl);
}

.engagement-hero__inner {
  max-width: 780px;
}

.engagement-hero__back {
  display: inline-block;
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: var(--space-md);
  transition: color 0.25s ease;
}

.engagement-hero__back:hover {
  color: var(--forest);
}

.engagement-hero__title {
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0.75rem 0 1.5rem;
}

.engagement-hero__lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.65;
  color: var(--muted);
  max-width: 640px;
}

/* ============================================
   1b. JOURNEY MAP — wide diagram between hero
   and the first stage band. Sits on the same
   off-white surface as the first stage band so
   the visual flows into the journey below.
   ============================================ */
.engagement-journey-map {
  background: var(--offwhite);
  padding: var(--space-lg) 0 0;
}

.engagement-journey-map__inner {
  max-width: 800px;
  margin: 0 auto;
}

.engagement-journey-map__inner img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ============================================
   2. STAGE BAND — alternating horizontal bands
   35/65 split: left (number + title + summary),
   right (description + key activities + draws-from).
   ============================================ */
.stage-band {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.stage-band--alt {
  background: var(--dew);
}

.stage-band__grid {
  display: grid;
  grid-template-columns: 35fr 65fr;
  gap: 3rem;
  align-items: start;
}

.stage-band__left { }

.stage-band__number {
  font-size: 2rem;
  font-weight: 500;
  color: var(--amber);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
}

.stage-band__title {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--forest);
  margin: 0 0 0.75rem;
}

.stage-band__summary {
  font-size: var(--fs-body);
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
  max-width: 320px;
}

.stage-band__right { }

.stage-band__desc {
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.75;
  color: var(--ink);
  margin: 0 0 1.75rem;
}

.stage-band__activities-label {
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.stage-band__activities {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stage-band__activities li {
  position: relative;
  padding-left: 1.25rem;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
}

.stage-band__activities li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--amber);
}

.stage-band__draws-from {
  padding-top: 1.25rem;
  border-top: 1px solid var(--rule);
  font-size: var(--fs-caption);
  line-height: 1.6;
  color: var(--ink);
}

.stage-band__draws-from-label {
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 0.5rem;
}

.stage-band__draws-from a {
  color: var(--ink);
  border-bottom: 1px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.stage-band__draws-from a:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.stage-band__draws-from-dot {
  margin: 0 0.5rem;
  color: var(--muted);
  user-select: none;
}

/* ============================================
   3. PARTNERSHIP CONNECTION — Butter Cream editorial
   ============================================ */
.partnership-connection {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

.partnership-connection__inner {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.partnership-connection__header {
  text-align: center;
  margin-bottom: 2rem;
}

.partnership-connection p {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.partnership-connection__actions {
  margin-top: 2rem;
  text-align: center;
}

/* ============================================
   4. RELATED SERVICES — small pillar cards
   Reuses .adjacent-pillars / .adjacent-pillar from components.css.
   ============================================ */
.related-services {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.related-services__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .stage-band__grid { gap: 2rem; }
}

@media (max-width: 768px) {
  .engagement-hero { padding: calc(var(--space-xl) + 2rem) 0 var(--space-lg); }
  .engagement-hero__title { font-size: clamp(2rem, 7vw, 3rem); }

  .stage-band { padding: var(--space-lg) 0; }
  .stage-band__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .stage-band__summary { max-width: none; }

  .partnership-connection { padding: var(--space-lg) 0; }
  .related-services { padding: var(--space-lg) 0; }
}

@media (max-width: 480px) {
  .stage-band__number { font-size: 1.6rem; }
  .stage-band__title { font-size: 1.4rem; }
}
