/* ============================================
   NURAYA — how-we-partner.css
   Loaded on how-we-partner.html only.
   ============================================ */

/* ============================================
   1. PARTNER HERO — Deep Forest, sibling of services hero
   ============================================ */
.partner-hero {
  background: var(--forest);
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-2xl) 0 var(--space-xl);
}

.partner-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 280px solid transparent;
  border-right: 280px solid transparent;
  border-bottom: 600px solid rgba(169, 103, 23, 0.04);
  pointer-events: none;
}

.partner-hero::after {
  content: '';
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 140px solid transparent;
  border-right: 140px solid transparent;
  border-bottom: 400px solid rgba(169, 103, 23, 0.03);
  pointer-events: none;
}

.partner-hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.partner-hero__headline {
  font-size: var(--fs-display);
  font-weight: 500;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.partner-hero__lead {
  font-size: var(--fs-lead);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(242, 228, 206, 0.65);
  max-width: 580px;
  margin-bottom: 2.5rem;
}

.partner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   2. PARTNERSHIP MODEL — Understand → Design → Build → Sustain
   Reuses .framework spine from components.css with
   longer descriptions + pricing subtexts under each phase.
   ============================================ */
.partnership-model {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

/* Longer descriptions on this page need room — override the
   homepage-tuned max-width constraint scoped to this section only. */
.partnership-model .framework__desc {
  max-width: none;
}

.phase-subtext {
  margin-top: 0.5rem;
  font-size: var(--fs-caption);
  font-style: italic;
  color: var(--muted);
  line-height: 1.5;
}

/* ============================================
   3. SHARED SUCCESS — editorial prose + inline pullquote
   ============================================ */
.shared-success {
  background: var(--cream);
  padding: var(--space-xl) 0;
}

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

.shared-success__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.shared-success p:last-of-type {
  margin-bottom: 0;
}

/* ============================================
   4. ENGAGEMENT TYPES — 2×2 grid of full cards
   Distinct from .journey-card (Services page teasers).
   ============================================ */
.engagement-types {
  background: var(--offwhite);
  padding: var(--space-xl) 0;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.engagement-card {
  background: var(--dew);
  border-left: 3px solid var(--amber);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-left-width 0.2s ease;
}

.engagement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(4, 45, 34, 0.08);
  border-left-width: 6px;
}

.engagement-card__icon {
  display: block;
  width: 48px;
  height: 48px;
  margin-bottom: 0.5rem;
}

.engagement-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
}

.engagement-card__number {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--amber);
  text-transform: uppercase;
}

.engagement-card__title {
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--forest);
  line-height: 1.25;
  margin: 0;
}

.engagement-card__desc {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  margin: 0;
}

.engagement-card__delivery-label {
  font-size: var(--fs-caption);
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.engagement-card__deliverables {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

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

.engagement-card__cta {
  margin-top: auto;
  align-self: flex-start;
}

/* ============================================
   5. DISCOVERY SESSION — narrow column + numbered steps
   ============================================ */
.discovery-section {
  background: var(--dew);
  padding: var(--space-xl) 0;
}

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

.discovery-section__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.discovery-section p {
  font-size: var(--fs-body);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.discovery-steps {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.discovery-steps__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.discovery-steps__number {
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--amber);
  line-height: 1;
  min-width: 2.5rem;
}

.discovery-steps__body {
  flex: 1;
}

.discovery-steps__label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  display: block;
  margin-bottom: 0.25rem;
}

.discovery-steps__desc {
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .engagement-grid { gap: 1.5rem; }
  .engagement-card { padding: 2rem; }
}

@media (max-width: 768px) {
  .partner-hero { min-height: 55vh; }
  .partner-hero__headline { font-size: clamp(2.2rem, 7vw, 3.5rem); }

  .engagement-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .discovery-steps__number { font-size: 1.5rem; min-width: 2rem; }
}

@media (max-width: 480px) {
  .partner-hero__actions { flex-direction: column; align-items: stretch; }
  .partner-hero__actions .btn { width: 100%; text-align: center; }

  .engagement-card { padding: 1.75rem; }

  .discovery-steps__item { gap: 1rem; }
}
