    :root {
      --forest:      #1b3515;
      --green:       #4a7c3f;
      --amber:       #9c6f25;
      --parchment:   #f5ede0;
      --parchment-2: #ede3d2;
      --parchment-3: #e2d6c2;
      --ink:         #1c1915;
      --ink-mid:     #443e35;
      --muted:       #7a6f60;
      --border:      #cfc4b2;
      --serif:       'Playfair Display', Georgia, serif;
      --sans:        'Roboto', system-ui, sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: var(--sans);
      background: #e8e0d0;
      background-image: radial-gradient(circle, rgba(156,111,37,0.12) 1px, transparent 1px);
      background-size: 22px 22px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    /* Topbar — logo only, no nav */
    .topbar {
      background: var(--forest);
      border-bottom: 2px solid rgba(156,111,37,0.45);
      padding: 0 1.5rem;
      height: 52px;
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }
    .logo { display: flex; align-items: center; gap: 0.55rem; text-decoration: none; }
    .logo-mark { width: 26px; height: 26px; flex-shrink: 0; }
    .logo-word { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: #e8ddbf; letter-spacing: 0.01em; }

    /* Sign-in area */
    .signin-wrap {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3rem 1.5rem 4rem;
    }
    .signin-card {
      background: var(--parchment);
      border: 1px solid var(--parchment-3);
      border-radius: 8px;
      padding: 2.25rem 2rem 2rem;
      width: 100%;
      max-width: 400px;
      box-shadow: 0 2px 12px rgba(27,53,21,0.07);
    }
    .signin-eyebrow {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 0.5rem;
    }
    .signin-title {
      font-family: var(--serif);
      font-style: italic;
      font-size: 1.65rem;
      font-weight: 600;
      color: var(--ink);
      margin-bottom: 1.75rem;
      line-height: 1.2;
    }
