
    /* ── PAGE LAYOUT ───────────────────────────────────── */
    .contact-page {
      min-height: calc(100vh - var(--nav-h));
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    /* ── LEFT — sticky info panel ──────────────────────── */
    .contact-aside {
      background: var(--ink);
      color: var(--cream);
      padding: 5rem 4rem 5rem 3rem;
      display: flex;
      flex-direction: column;
      gap: 0;
      position: sticky;
      top: var(--nav-h);
      height: calc(100vh - var(--nav-h));
      overflow-y: auto;
    }
    .contact-aside-title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 3.5vw, 3.5rem);
      font-weight: 300;
      line-height: 1.05;
      color: var(--cream);
      margin-bottom: 1.5rem;
    }
    .contact-aside-sub {
      font-size: 1rem;
      color: rgba(245,240,232,0.6);
      line-height: 1.7;
      margin-bottom: 3rem;
      max-width: 320px;
    }

    .aside-block {
      border-top: 1px solid rgba(245,240,232,0.12);
      padding-top: 1.5rem;
      margin-bottom: 1.75rem;
    }
    .aside-block-label {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(245,240,232,0.4);
      margin-bottom: 0.6rem;
      display: block;
    }
    .aside-block p {
      font-size: 0.92rem;
      color: rgba(245,240,232,0.75);
      line-height: 1.65;
    }

    .aside-instagram {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: rgba(245,240,232,0.75);
      border: 1px solid rgba(245,240,232,0.2);
      padding: 0.65rem 1.1rem;
      border-radius: 2px;
      transition: all 0.2s;
      text-decoration: none;
      margin-top: 0.5rem;
    }
    .aside-instagram:hover {
      background: rgba(245,240,232,0.08);
      color: var(--cream);
      border-color: rgba(245,240,232,0.4);
    }
    .aside-instagram svg { width: 16px; height: 16px; }

    /* ── RIGHT — form panel ────────────────────────────── */
    .contact-form-panel {
      padding: 5rem 4rem 5rem 3rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* Step indicator */
    .form-steps {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 3rem;
      align-items: center;
    }
    .form-step-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--border);
      transition: background 0.3s, transform 0.3s;
    }
    .form-step-dot.done { background: var(--ink-light); }
    .form-step-dot.active {
      background: var(--ink);
      transform: scale(1.4);
    }
    .form-step-label {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-left: 0.5rem;
    }

    /* ── STEP 1: Subject selector ──────────────────────── */
    .step { display: none; }
    .step.active { display: block; }

    .step-question {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 2.5vw, 2.2rem);
      font-weight: 300;
      color: var(--ink);
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    .subject-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    .subject-btn {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.3rem;
      padding: 1.25rem 1.25rem;
      border: 1px solid var(--border);
      background: transparent;
      cursor: pointer;
      text-align: left;
      border-radius: 2px;
      transition: all 0.18s;
      font-family: var(--font-body);
    }
    .subject-btn:hover {
      border-color: var(--ink-mid);
      background: var(--warm);
    }
    .subject-btn.selected {
      border-color: var(--ink);
      background: var(--ink);
      color: var(--cream);
    }
    .subject-btn-title {
      font-size: 0.95rem;
      font-weight: 500;
      color: inherit;
      display: block;
    }
    .subject-btn-desc {
      font-size: 0.78rem;
      color: var(--ink-light);
      display: block;
      line-height: 1.4;
      transition: color 0.18s;
    }
    .subject-btn.selected .subject-btn-desc { color: rgba(245,240,232,0.6); }
    .subject-btn:hover .subject-btn-desc { color: var(--ink-mid); }

    /* ── STEP 2: Details form ──────────────────────────── */
    .form-fields { display: flex; flex-direction: column; gap: 1.5rem; }

    .field-group { position: relative; }
    .field-label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--ink-light);
      margin-bottom: 0.5rem;
    }
    .field-input {
      width: 100%;
      background: transparent;
      border: none;
      border-bottom: 1.5px solid var(--border);
      padding: 0.6rem 0;
      font-family: var(--font-body);
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--ink);
      outline: none;
      transition: border-color 0.2s;
      border-radius: 0;
      -webkit-appearance: none;
    }
    .field-input::placeholder { color: var(--ink-light); font-weight: 300; }
    .field-input:focus { border-bottom-color: var(--ink); }

    textarea.field-input {
      resize: none;
      min-height: 120px;
      line-height: 1.6;
    }

    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    /* Oeuvre field — shown conditionally */
    .field-oeuvre { display: none; }
    .field-oeuvre.visible { display: block; }

    /* ── STEP 3: Confirmation ──────────────────────────── */
    .confirm-icon {
      width: 56px; height: 56px;
      border-radius: 50%;
      border: 1.5px solid var(--ink);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      font-size: 1.4rem;
    }
    .confirm-title {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 300;
      margin-bottom: 0.75rem;
    }
    .confirm-text {
      font-size: 1rem;
      color: var(--ink-mid);
      line-height: 1.7;
      max-width: 380px;
      margin-bottom: 2rem;
    }

    /* ── NAV BETWEEN STEPS ─────────────────────────────── */
    .step-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 2.5rem;
      gap: 1rem;
    }
    .step-back {
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--ink-light);
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      font-family: var(--font-body);
      transition: color 0.2s;
    }
    .step-back:hover { color: var(--ink); }
    .step-next {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.85rem 2rem;
      background: var(--ink);
      color: var(--cream);
      border: none;
      cursor: pointer;
      border-radius: 1px;
      transition: background 0.2s, transform 0.1s;
    }
    .step-next:hover { background: var(--accent); }
    .step-next:active { transform: scale(0.98); }
    .step-next:disabled { opacity: 0.4; cursor: not-allowed; }
    .step-next .arrow { transition: transform 0.2s; }
    .step-next:hover .arrow { transform: translateX(3px); }

    /* Newsletter opt-in in step 2 */
    .nl-optin {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 1rem;
      background: var(--warm);
      border-radius: 2px;
      cursor: pointer;
    }
    .nl-optin input[type="checkbox"] {
      margin-top: 2px;
      flex-shrink: 0;
      width: 16px; height: 16px;
      cursor: pointer;
      accent-color: var(--ink);
    }
    .nl-optin-text {
      font-size: 0.88rem;
      color: var(--ink-mid);
      line-height: 1.5;
      cursor: pointer;
    }

    /* Sending animation */
    @keyframes spin { to { transform: rotate(360deg); } }
    .sending-icon {
      display: inline-block;
      width: 16px; height: 16px;
      border: 2px solid rgba(245,240,232,0.3);
      border-top-color: var(--cream);
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
    }

    /* ── FLOATING CONTACT BUTTON (all pages) ───────────── */
    .float-contact {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 90;
      background: var(--ink);
      color: var(--cream);
      border: none;
      border-radius: 28px;
      padding: 0.85rem 1.5rem;
      font-family: var(--font-body);
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      box-shadow: 0 4px 20px rgba(28,26,22,0.18);
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }
    .float-contact:hover {
      background: var(--accent);
      transform: translateY(-2px);
    }
    .float-contact svg { width: 15px; height: 15px; }

    /* ── RESPONSIVE ────────────────────────────────────── */
    @media (max-width: 900px) {
      .contact-page { grid-template-columns: 1fr; }
      .contact-aside {
        position: static;
        height: auto;
        padding: 3rem 2rem;
      }
      .contact-aside-title { font-size: 2rem; }
      .contact-form-panel { padding: 3rem 2rem; }
    }
    @media (max-width: 640px) {
      .subject-grid { grid-template-columns: 1fr; }
      .field-row { grid-template-columns: 1fr; gap: 1.5rem; }
      .contact-form-panel { padding: 2rem 1.25rem; }
      .contact-aside { padding: 2.5rem 1.25rem; }
      .float-contact { bottom: 1.25rem; right: 1.25rem; }
    }