  /* ============================================================
     DARAA — FOUNDING SALON WAITLIST
     Single-file landing + reservation + live counter.
     Deploy anywhere that serves static HTML (Vercel, Netlify,
     GitHub Pages, S3). Edit CONFIG block below before deploy.
     ============================================================ */

  :root {
    /* Brand */
    --berry: #F04406;          /* primary */
    --berry-dark: #0F0F0F;     /* deep ink (matches logo bg) */
    --rose: #FF671B;           /* secondary */
    --cream: #FFEAD4;          /* light-primary */
    --cream-light: #FFF8EF;    /* surface */
    --gold: #4A6AFF;           /* blue accent (used for live-dot + gold touches) */
    --sage: #73BA9B;           /* psychology accent — trust/calm */
    --ink: #1A1A1A;
    --mute: #6B6B6B;
    --line: #F4DFC6;
    --success: #73BA9B;
    --error: #C0392B;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(240, 68, 6, 0.08);
    --shadow-lg: 0 12px 40px rgba(240, 68, 6, 0.18);
  }

  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
    background: var(--cream-light);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  .serif { font-family: 'Georgia', 'Times New Roman', serif; }

  /* Nav */
  .nav {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1120px;
    margin: 0 auto;
  }
  .wordmark {
    display: inline-flex;
    align-items: center;
    line-height: 1;
  }
  .wordmark svg { height: 36px; width: auto; display: block; }
  .wordmark--footer svg { height: 30px; }
  /* Footer shows the logo on dark — the SVG uses #F04406, which reads great on black */
  .nav-right { font-size: 13px; color: var(--mute); }

  /* Hero */
  .hero {
    max-width: 1120px;
    margin: 24px auto 0;
    padding: 48px 24px 40px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--berry);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 12px;
    background: var(--cream);
    border-radius: 999px;
    margin-bottom: 20px;
  }
  h1 {
    font-family: Georgia, serif;
    font-size: 48px;
    line-height: 1.08;
    margin: 0 0 16px;
    color: var(--berry-dark);
    letter-spacing: -0.01em;
  }
  h1 .accent { color: var(--berry); display: block; }
  .lede {
    font-size: 18px;
    color: var(--ink);
    margin: 0 0 24px;
    max-width: 520px;
  }
  .meta-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--mute);
  }
  .meta-row strong { color: var(--berry); font-weight: 700; }

  /* Form card */
  .form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    position: relative;
  }
  .counter-pill {
    position: absolute;
    top: -14px;
    left: 24px;
    background: var(--berry);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 7px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(240, 68, 6, 0.35);
  }
  .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
  }
  .form-card h2 {
    font-family: Georgia, serif;
    margin: 6px 0 6px;
    color: var(--berry-dark);
    font-size: 22px;
  }
  .form-card .sub {
    color: var(--mute);
    font-size: 14px;
    margin: 0 0 20px;
  }

  /* Spots bar */
  .spots {
    display: flex;
    gap: 6px;
    margin: 18px 0 22px;
  }
  .spot {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: var(--line);
    transition: background 0.3s ease;
  }
  .spot.taken { background: var(--berry); }
  .spots-label {
    font-size: 13px;
    color: var(--mute);
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
  }
  .spots-label strong { color: var(--berry-dark); }

  label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
    margin-top: 14px;
  }
  input, select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  input:focus, select:focus {
    outline: none;
    border-color: var(--berry);
    box-shadow: 0 0 0 3px rgba(240, 68, 6, 0.14);
  }

  .btn {
    display: inline-block;
    width: 100%;
    background: var(--berry);
    color: #fff;
    border: 0;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 18px;
    transition: background 0.15s ease, transform 0.1s ease;
    font-family: inherit;
  }
  .btn:hover { background: var(--berry-dark); }
  .btn:active { transform: translateY(1px); }
  .btn:disabled { background: var(--mute); cursor: not-allowed; }

  .form-footer {
    font-size: 12px;
    color: var(--mute);
    margin-top: 14px;
    text-align: center;
  }

  /* How-it-works section */
  .section {
    max-width: 1120px;
    margin: 80px auto 0;
    padding: 0 24px;
  }
  .section h3 {
    font-family: Georgia, serif;
    font-size: 32px;
    color: var(--berry-dark);
    margin: 0 0 32px;
    text-align: center;
  }
  .steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .step {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
  }
  .step-num {
    font-family: Georgia, serif;
    font-size: 42px;
    color: var(--berry);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
  }
  .step h4 {
    font-family: Georgia, serif;
    margin: 0 0 8px;
    font-size: 19px;
    color: var(--berry-dark);
  }
  .step p {
    margin: 0;
    font-size: 14px;
    color: var(--ink);
    line-height: 1.55;
  }

  /* Benefits */
  .benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 36px;
    margin-top: 24px;
  }
  .benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .benefit .arrow {
    color: var(--berry);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
  }
  .benefit h5 {
    margin: 0 0 4px;
    font-size: 15px;
    color: var(--berry-dark);
    font-weight: 700;
  }
  .benefit p { margin: 0; font-size: 14px; color: var(--ink); }

  /* Owner band */
  .owner-band {
    background: linear-gradient(135deg, #0F0F0F 0%, #2A0D00 100%);
    border-radius: 16px;
    padding: 44px 48px;
    position: relative;
    overflow: hidden;
  }
  .owner-band::before {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(240, 68, 6, 0.35) 0%, transparent 70%);
    pointer-events: none;
  }
  .owner-band__copy { position: relative; z-index: 1; }
  .owner-band .eyebrow { margin-bottom: 0; }
  .owner-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
  }
  .owner-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 234, 212, 0.14);
    border-radius: 10px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  .owner-item strong {
    color: var(--berry);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .owner-item span { color: var(--cream); font-size: 13.5px; line-height: 1.5; }

  /* FAQ */
  details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 10px;
    cursor: pointer;
  }
  details[open] { box-shadow: var(--shadow); }
  summary {
    font-weight: 600;
    color: var(--berry-dark);
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: "+";
    color: var(--berry);
    font-size: 22px;
    font-weight: 300;
    transition: transform 0.2s ease;
  }
  details[open] summary::after { content: "\2212"; }
  details p {
    margin: 12px 0 0;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.6;
  }

  /* Footer */
  footer {
    margin-top: 100px;
    padding: 36px 24px;
    background: var(--berry-dark);
    color: var(--cream);
    text-align: center;
    font-size: 13px;
  }
  footer a { color: var(--gold); text-decoration: none; }

  /* Success state */
  .success-state {
    display: none;
    text-align: center;
    padding: 12px 0;
  }
  .success-state.show { display: block; }
  .form-state.hide { display: none; }

  .big-num {
    font-family: Georgia, serif;
    font-size: 96px;
    font-weight: 700;
    color: var(--berry);
    line-height: 0.95;
    margin: 20px 0 8px;
  }
  .big-num .of {
    font-size: 28px;
    color: var(--rose);
    font-weight: 400;
  }
  .success-sub {
    color: var(--mute);
    font-size: 14px;
    margin-bottom: 28px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .next-steps {
    text-align: left;
    background: var(--cream-light);
    border-radius: 8px;
    padding: 20px;
    margin-top: 22px;
  }
  .next-steps h5 {
    font-family: Georgia, serif;
    margin: 0 0 10px;
    font-size: 15px;
    color: var(--berry-dark);
  }
  .next-steps ol {
    margin: 0;
    padding-left: 20px;
    font-size: 13.5px;
    color: var(--ink);
  }
  .next-steps li { margin-bottom: 6px; }

  .error-msg {
    color: var(--error);
    font-size: 13px;
    margin-top: 10px;
    display: none;
  }
  .error-msg.show { display: block; }

  /* Mobile */
  @media (max-width: 820px) {
    .hero { grid-template-columns: 1fr; gap: 36px; padding: 24px 20px 20px; }
    h1 { font-size: 36px; }
    .steps { grid-template-columns: 1fr; }
    .benefits { grid-template-columns: 1fr; }
    .form-card { padding: 24px; }
    .big-num { font-size: 72px; }
    .owner-band { padding: 28px 24px; }
    .owner-benefits { grid-template-columns: 1fr; }
  }
