/* ═══════════════════════════════════════════════════════════
   James Oler — Coming Soon Page
   Modern Farmhouse theme (consistent with John Oler site)
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg: #f6f1ea;
    --bg-alt: #efe7db;
    --bg-card: #fffdfa;
    --bg-hover: #f3ece0;
    --border: #e3d9cb;
    --border-strong: #d3c5b1;
    --text: #3e3630;
    --text-strong: #2b241e;
    --text-dim: #8a7b6b;
    --primary: #5f6f52;
    --primary-hover: #4e5d43;
    --accent: #b4835a;
    --green: #6b8e5a;
    --red: #b14a3b;
    --yellow: #c89b3c;
    --radius: 14px;
    --shadow: 0 4px 18px rgba(96, 74, 49, 0.08);
    --shadow-hover: 0 8px 26px rgba(96, 74, 49, 0.16);
    --font-head: 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    background-image:
        radial-gradient(rgba(148, 118, 82, 0.05) 1px, transparent 1px),
        linear-gradient(175deg, var(--bg) 0%, var(--bg-alt) 100%);
    background-size: 14px 14px, 100% 100%;
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.65;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, .brand, .section-title, .stat-value {
    font-family: var(--font-head);
    color: var(--text-strong);
    letter-spacing: -0.01em;
}

/* ─── Content ─────────────────────────────────────────── */
.content { max-width: 600px; margin: 0 auto; padding: 4rem 1.75rem; width: 100%; flex: 1; display: flex; flex-direction: column; align-items: center; }

/* ─── Coming Soon ────────────────────────────────────── */
.coming-soon { text-align: center; width: 100%; }

.logo { margin-bottom: 2rem; }
.logo-svg { width: 100px; height: 100px; }

.coming-soon h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); font-weight: 700; margin-bottom: 0.5rem; line-height: 1.15; }

.tagline { font-size: clamp(1.25rem, 3vw, 1.5rem); color: var(--primary); font-weight: 500; margin-bottom: 2rem; letter-spacing: 0.02em; }

.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--primary), var(--accent)); border-radius: 2px; margin: 0 auto 2rem; }

.description { font-size: 1.1rem; color: var(--text); line-height: 1.7; margin-bottom: 2.5rem; max-width: 400px; margin-left: auto; margin-right: auto; }

.links { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }

.link-btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; transition: all 0.18s; border: 2px solid transparent;
}
.link-btn:not(.secondary) { background: var(--primary); color: #fdfbf7; border-color: var(--primary); }
.link-btn:not(.secondary):hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-hover); }
.link-btn.secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.link-btn.secondary:hover { background: var(--bg-hover); }

/* ─── Notify Form ────────────────────────────────────── */
.notify-form { padding-top: 2rem; border-top: 1px solid var(--border); }
.notify-text { color: var(--text-dim); font-size: 0.95rem; margin-bottom: 1rem; }
.email-form { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.email-form input {
    padding: 0.75rem 1rem; background: #fffefb; border: 1px solid var(--border-strong);
    border-radius: 10px; color: var(--text-strong); font-size: 0.95rem; font-family: var(--font-body);
    min-width: 250px; max-width: 300px;
}
.email-form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(95,111,82,0.15); }
.notify-btn {
    padding: 0.75rem 1.5rem; background: var(--primary); color: #fdfbf7; font-weight: 600;
    border: none; border-radius: 10px; cursor: pointer; font-size: 0.95rem; font-family: var(--font-body);
    transition: all 0.18s;
}
.notify-btn:hover { background: var(--primary-hover); transform: translateY(-1px); }
.notify-message { margin-top: 1rem; font-size: 0.9rem; min-height: 1.4em; }
.notify-message.success { color: var(--green); }
.notify-message.error { color: var(--red); }

/* ─── Footer ─────────────────────────────────────────── */
.footer { text-align: center; color: var(--text-dim); font-size: 0.82rem; padding: 1.5rem; border-top: 1px solid var(--border); background: var(--bg-card); margin-top: auto; width: 100%; }
.footer a { color: var(--primary); text-decoration: none; }
.footer a:hover { text-decoration: underline; }

/* ─── Animations ─────────────────────────────────────── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.coming-soon > * { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.coming-soon > *:nth-child(1) { animation-delay: 0.1s; }
.coming-soon > *:nth-child(2) { animation-delay: 0.2s; }
.coming-soon > *:nth-child(3) { animation-delay: 0.3s; }
.coming-soon > *:nth-child(4) { animation-delay: 0.4s; }
.coming-soon > *:nth-child(5) { animation-delay: 0.5s; }
.coming-soon > *:nth-child(6) { animation-delay: 0.6s; }
.coming-soon > *:nth-child(7) { animation-delay: 0.7s; }