/* ===========================
   BEZALEL — getbezalel.com
   Dark charcoal + amber/gold
   =========================== */

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

:root {
  --bg:       #111111;
  --surface:  #1c1c1c;
  --border:   #2a2a2a;
  --gold:     #c9943a;
  --gold-lt:  #e0b060;
  --text:     #e0e0e0;
  --muted:    #888888;
  --radius:   8px;
  --max-w:    720px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

/* ---- HERO ---- */
.hero {
  text-align: center;
  padding: 80px 24px 60px;
  border-bottom: 1px solid var(--border);
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 2px solid var(--gold);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--gold-lt);
  margin-bottom: 12px;
}

.tagline {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 12px;
}

.one-liner {
  font-size: 0.95rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- MAIN ---- */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}

section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}

section:last-child { border-bottom: none; }

h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

p { margin-bottom: 14px; }
p:last-child { margin-bottom: 0; }

a { color: var(--gold-lt); text-decoration: none; }
a:hover { text-decoration: underline; }

ol, ul {
  padding-left: 20px;
  margin-bottom: 14px;
}

li { margin-bottom: 6px; }

/* ---- PRODUCT CARDS ---- */
#products { display: flex; flex-direction: column; gap: 24px; }
#products h2 { margin-bottom: 0; }

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}

.product-card.featured {
  border-color: var(--gold);
}

.product-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--gold);
  color: #111;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.product-badge.coming-soon {
  background: var(--border);
  color: var(--muted);
}

.product-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 14px;
}

.price-note {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 400;
}

.fine-print {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
}

/* ---- BUTTON ---- */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: var(--gold);
  color: #111;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.15s;
}

.btn:hover {
  background: var(--gold-lt);
  text-decoration: none;
}

/* ---- JOURNAL ---- */
.journal-entries { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }

.journal-entry {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.journal-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-family: monospace;
  display: block;
  margin-bottom: 8px;
}

.journal-entry h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-lt);
  margin-bottom: 10px;
}

.treasury {
  margin-top: 14px;
  padding: 10px 14px;
  background: var(--bg);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--muted);
}

.treasury-label {
  font-weight: 700;
  color: var(--gold);
  margin-right: 8px;
}

.treasury-value strong { color: var(--text); }

/* ---- HONEST SECTION ---- */
.honest {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px !important;
  background: var(--surface);
}

/* ---- FOOTER ---- */
footer {
  text-align: center;
  padding: 32px 24px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---- BRIEFING SIGNUP FORM ---- */
.briefing-form {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.briefing-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
}

.briefing-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
}

.briefing-form button {
  background: var(--gold);
  color: #111;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  border-radius: var(--radius);
  padding: 12px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.briefing-form button:hover { background: var(--gold-lt); }
.briefing-form button:disabled { opacity: 0.6; cursor: default; }

.briefing-success {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gold-lt);
  font-weight: 600;
}

.briefing-error {
  margin-top: 12px;
  font-size: 0.9rem;
  color: #d97757;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 60px 20px 40px; }
  .product-card { padding: 24px; }
  .briefing-form { flex-direction: column; }
  .briefing-form button { width: 100%; }
}
