   :root {
      --bg: #faf7f2;
      --surface: #ffffff;
      --border: #e8e0d4;
      --accent: #b05e3a;
      --accent-light: #f5ece6;
      --text: #1c1814;
      --text-muted: #7a6e63;
      --text-dim: #b0a89e;
      --green: #4a7c59;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      background: var(--bg);
      color: var(--text);
      min-height: 100vh;
    }

    header {
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
      position: sticky;
      top: 0;
      z-index: 10;
    }

    .logo {
      font-family: 'Lora', serif;
      font-size: 20px;
      color: var(--text);
      text-decoration: none;
      letter-spacing: -0.3px;
    }

    .logo span { color: var(--accent); }

    nav a {
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      margin-left: 28px;
      font-weight: 400;
      transition: color 0.15s;
    }

    nav a:hover { color: var(--text); }
    nav a.active { color: var(--text); font-weight: 500; }

    .content {
      max-width: 560px;
      margin: 0 auto;
      padding: 56px 40px 80px;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
      text-decoration: none;
      margin-bottom: 36px;
      transition: color 0.15s;
    }

    .back-link:hover { color: var(--text); }

    .page-label {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--accent);
      margin-bottom: 12px;
    }

    h1 {
      font-family: 'Lora', serif;
      font-size: 34px;
      letter-spacing: -0.5px;
      margin-bottom: 8px;
    }

    .subtitle {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 40px;
      line-height: 1.5;
    }

    .field {
      margin-bottom: 20px;
    }

    .field label {
      display: block;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      margin-bottom: 7px;
    }

    .field .hint {
      font-size: 12px;
      color: var(--text-dim);
      margin-top: 5px;
    }

    .field input,
    .field textarea {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      color: var(--text);
      background: var(--bg);
      outline: none;
      transition: border-color 0.15s;
    }

    .field textarea {
      resize: vertical;
      min-height: 90px;
      line-height: 1.5;
    }

    .field input:focus,
    .field textarea:focus { border-color: var(--accent); }

    /* ── Divider ── */
    .or-divider {
      display: flex;
      align-items: center;
      gap: 12px;
      margin: 8px 0;
      color: var(--text-dim);
      font-size: 12px;
    }

    .or-divider::before, .or-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── Tags input ── */
    .tags-input-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      padding: 8px 10px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--bg);
      cursor: text;
      transition: border-color 0.15s;
      min-height: 42px;
      align-items: center;
    }

    .tags-input-wrap:focus-within { border-color: var(--accent); }

    .tag-chip {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 3px 10px;
      background: var(--accent-light);
      color: var(--accent);
      border-radius: 12px;
      font-size: 12px;
      font-weight: 500;
    }

    .tag-chip button {
      background: none;
      border: none;
      color: var(--accent);
      cursor: pointer;
      font-size: 14px;
      line-height: 1;
      padding: 0;
      opacity: 0.6;
    }

    .tag-chip button:hover { opacity: 1; }

    .tags-input-wrap input {
      border: none;
      background: transparent;
      outline: none;
      font-family: 'DM Sans', sans-serif;
      font-size: 13.5px;
      color: var(--text);
      min-width: 100px;
      flex: 1;
      padding: 2px 4px;
    }

    /* ── Submit ── */
    .btn-primary {
      width: 100%;
      padding: 12px;
      background: var(--accent);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 500;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.15s;
    }

    .btn-primary:hover { background: #96502f; }
    .btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

    .form-feedback {
      margin-top: 14px;
      font-size: 13.5px;
      text-align: center;
      min-height: 20px;
    }

    .form-feedback.success { color: var(--green); }
    .form-feedback.error { color: var(--accent); }

    .cc-note {
      margin-top: 20px;
      font-size: 12px;
      color: var(--text-dim);
      line-height: 1.5;
      text-align: center;
    }

    .hint-toggle {
      background: none;
      border: none;
      padding: 0;
      font-family: inherit;
      font-size: 12px;
      color: var(--accent);
      cursor: pointer;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .hosting-link {
      display: flex;
      align-items: baseline;
      gap: 8px;
      text-decoration: none;
      color: inherit;
      padding: 3px 0;
    }

    .hosting-link:hover .hosting-name { color: var(--accent); }

    .hosting-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      min-width: 90px;
      transition: color 0.15s;
    }

    .hosting-desc {
      font-size: 12px;
      color: var(--text-muted);
    }

    @media (max-width: 600px) {
      header { padding: 0 20px; }
      .content { padding: 40px 20px 60px; }
      h1 { font-size: 26px; }
    }

    .nav-auth {
      font-size: 14px;
      color: var(--text-muted);
      text-decoration: none;
      margin-left: 24px;
      font-weight: 500;
      color: var(--accent);
    }
    .nav-auth:hover { opacity: 0.8; }

    /* ── Footer ── */
    footer {
      border-top: 1px solid var(--border);
      background: var(--surface);
      padding: 28px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-left { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
    .footer-left a { color: var(--text-dim); text-decoration: none; }
    .footer-left a:hover { color: var(--text-muted); }
    .footer-right { display: flex; gap: 20px; }
    .footer-right a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
    .footer-right a:hover { color: var(--text-muted); }
    @media (max-width: 600px) { footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; } }