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

    *, *::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;
      display: flex;
      flex-direction: column;
    }

    

    /* ── Header ── */
    header {
      border-bottom: 1px solid var(--border);
      background: var(--surface);
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .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); }

    /* ── Hero ── */
    .hero {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 40px;
    }

    .hero-inner {
      max-width: 560px;
      text-align: center;
    }

    .eyebrow {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 3px;
      color: var(--accent);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.5s ease 0.1s forwards;
    }

    h1 {
      font-family: 'Lora', serif;
      font-size: 52px;
      line-height: 1.1;
      letter-spacing: -1px;
      color: var(--text);
      margin-bottom: 20px;
      opacity: 0;
      animation: fadeUp 0.5s ease 0.2s forwards;
    }

    h1 em {
      font-style: italic;
      color: var(--accent);
    }

    .tagline {
      font-size: 17px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 36px;
      opacity: 0;
      animation: fadeUp 0.5s ease 0.3s forwards;
    }

    .cta-group {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.5s ease 0.4s forwards;
    }

    .btn-primary {
      display: inline-block;
      padding: 12px 28px;
      background: var(--accent);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.15s, transform 0.1s;
    }

    .btn-primary:hover {
      background: #96502f;
      transform: translateY(-1px);
    }

    .btn-secondary {
      display: inline-block;
      padding: 12px 28px;
      background: transparent;
      color: var(--text-muted);
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 400;
      border-radius: 8px;
      border: 1px solid var(--border);
      text-decoration: none;
      transition: border-color 0.15s, color 0.15s;
    }

    .btn-secondary:hover {
      border-color: var(--text-muted);
      color: var(--text);
    }

    /* ── Divider ── */
    .divider {
      width: 40px;
      height: 1px;
      background: var(--border);
      margin: 48px auto 0;
      opacity: 0;
      animation: fadeUp 0.5s ease 0.5s forwards;
    }

    /* ── Stats strip ── */
    .stats {
      border-top: 1px solid var(--border);
      background: var(--surface);
      padding: 28px 40px;
      display: flex;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.5s ease 0.5s forwards;
    }

    .stat {
      text-align: center;
    }

    .stat-value {
      font-family: 'Lora', serif;
      font-size: 26px;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .stat-label {
      font-size: 11px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-dim);
      margin-top: 2px;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(10px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 600px) {
      header { padding: 0 20px; }
      h1 { font-size: 36px; }
      .hero { padding: 60px 20px; }
      .stats { padding: 24px 20px; gap: 32px; }
    }

    .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; } }