/* ============================================================
   05 — PROCESS — Proceso de 4 fases, Manifesto, MVV, CTA final
   ============================================================ */

/* ============== PROCESS ============== */
.process {
    padding: 140px 48px; max-width: 1400px; margin: 0 auto;
  }
  .process-head {
    display: grid; grid-template-columns: 320px 1fr;
    gap: 100px; margin-bottom: 80px; align-items: end;
  }
  .process-head .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px; font-style: italic;
    color: var(--red); line-height: 1;
  }
  .process-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5.5vw, 68px);
    font-weight: 300; line-height: 1.05; letter-spacing: -0.02em;
  }
  .process-head h2 em { font-style: italic; color: var(--red); }

  .process-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
  }
  .process-grid::before {
    content: ''; position: absolute;
    top: 34px; left: 40px; right: 40px;
    height: 1px; background: var(--line); z-index: 0;
  }
  .process-step { padding: 0 24px 0 0; position: relative; z-index: 1; }
  .process-step .dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--red); margin-top: 28px; margin-bottom: 40px;
    position: relative;
  }
  .process-step .dot::after {
    content: ''; position: absolute; inset: -8px;
    border: 1px solid var(--red); border-radius: 50%; opacity: 0.3;
  }
  .process-step .phase {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px; font-style: italic;
    color: var(--muted); letter-spacing: 0.1em; margin-bottom: 12px;
  }
  .process-step h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 400; letter-spacing: -0.01em;
    margin-bottom: 14px; line-height: 1.15;
  }
  .process-step p { font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

  @media (max-width: 900px) {
    .process { padding: 80px 20px; }
    .process-head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; }
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    .process-grid::before { display: none; }
    .process-step { padding: 0; border-left: 1px solid var(--line); padding-left: 24px; }
    .process-step .dot { margin-top: 4px; margin-bottom: 20px; margin-left: -30px; }
  }

/* ============== MANIFESTO ============== */
.manifesto {
    background: var(--ink); color: var(--paper);
    padding: 140px 48px; position: relative; overflow: hidden;
  }
  .manifesto::before {
    content: 'AA'; position: absolute;
    top: -120px; right: -40px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 620px; font-style: italic;
    color: rgba(255,255,255,0.03); line-height: 1;
    font-weight: 300; pointer-events: none;
  }
  .manifesto-inner { max-width: 1200px; margin: 0 auto; position: relative; }
  .manifesto .eyebrow {
    color: rgba(255,255,255,0.5);
    margin-bottom: 32px; display: block;
  }
  .manifesto h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 300; line-height: 1.2; letter-spacing: -0.02em;
    max-width: 900px; margin-bottom: 64px;
  }
  .manifesto h2 em { font-style: italic; color: var(--bone); }
  .manifesto h2 strong { font-weight: 400; color: #fff; }

  .mvv {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: rgba(255,255,255,0.12);
  }
  .mvv-item { background: var(--ink); padding: 40px 32px; }
  .mvv-item .label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic;
    color: var(--red); margin-bottom: 20px; letter-spacing: 0.05em;
  }
  .mvv-item h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 400; letter-spacing: -0.01em;
    line-height: 1.3; color: var(--paper);
  }

  @media (max-width: 900px) {
    .manifesto { padding: 80px 20px; }
    .mvv { grid-template-columns: 1fr; }
  }

/* ============== CTA ============== */
.cta {
    padding: 160px 48px 100px;
    text-align: center; background: var(--paper); position: relative;
  }
  .cta-inner { max-width: 960px; margin: 0 auto; }
  .cta .mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px; font-style: italic;
    color: var(--red); margin-bottom: 32px; letter-spacing: 0.1em;
  }
  .cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 7.5vw, 104px);
    font-weight: 300; line-height: 1; letter-spacing: -0.025em;
    margin-bottom: 48px;
  }
  .cta h2 em { font-style: italic; color: var(--red); }
  .cta h2 .block { display: block; }
  .cta-sub {
    font-size: 17px; color: var(--ink-soft);
    max-width: 560px; margin: 0 auto 48px; line-height: 1.7;
  }
  .cta-btn {
    display: inline-block; background: var(--ink); color: var(--paper);
    padding: 22px 56px;
    font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
    text-decoration: none; font-weight: 400;
    position: relative; overflow: hidden; transition: color 0.4s;
    border: none; cursor: pointer; font-family: inherit;
  }
  .cta-btn span { position: relative; z-index: 2; }
  .cta-btn::before {
    content: ''; position: absolute; inset: 0;
    background: var(--red); transform: translateY(101%);
    transition: transform 0.4s ease;
  }
  .cta-btn:hover::before { transform: translateY(0); }
  .cta-alt { margin-top: 32px; font-size: 13px; color: var(--muted); }
  .cta-alt a {
    color: var(--ink); text-decoration: underline;
    text-underline-offset: 4px; text-decoration-thickness: 1px;
    transition: color 0.3s;
  }
  .cta-alt a:hover { color: var(--red); }
