:root {
  /* Big Sur Peak LLC brand tokens */
  --ink: #1E160C;
  --terra: #7A4F2E;
  --ember: #C4622A;
  --gold: #D4943A;
  --stone: #C4B49A;
  --sand: #F5F0E8;

  /* RavenRei brand tokens (current live "Editorial Bold" palette) */
  --rr-bg: #FAF7F0;
  --rr-ink: #0A0A08;
  --rr-accent: #C4451C;
  --rr-amber: #C9963A;
  --rr-muted: #6B6858;
  --rr-border: #D8D3C4;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

a { color: var(--ember); }

.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--stone);
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 30px; height: 28px; }
.brand span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
}
nav.site-nav a {
  margin-left: 22px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 400;
  font-family: 'Syne', sans-serif;
}
nav.site-nav a:hover { color: var(--ember); }

/* Hero */
.hero {
  padding: 90px 0 70px;
  text-align: center;
}
.hero img.mark {
  width: 110px;
  height: auto;
  margin-bottom: 28px;
}
.eyebrow {
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--terra);
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  margin: 0 0 18px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.hero p.lede {
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.08rem;
  color: var(--terra);
}

/* Sections */
section {
  padding: 56px 0;
  border-top: 1px solid var(--stone);
}
section h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin: 0 0 18px;
}
.about p { max-width: 680px; }

/* Flagship product card */
.product-card {
  background: var(--rr-bg);
  border: 1.5px solid var(--rr-ink);
  padding: 40px;
  color: var(--rr-ink);
  font-family: 'DM Sans', sans-serif;
}
.product-card .rr-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--rr-accent);
  margin-bottom: 10px;
}
.product-card .rr-name {
  font-family: 'Fraunces', serif;
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0 0 4px;
}
.product-card .rr-name .rei { color: var(--rr-amber); }
.product-card .rr-tagline {
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--rr-muted);
  margin: 0 0 20px;
}
.product-card p.rr-desc {
  max-width: 560px;
  margin: 0 0 22px;
}
.rr-link {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--rr-ink);
  border-bottom: 1.5px solid var(--rr-accent);
  padding-bottom: 2px;
}
.rr-link:hover { color: var(--rr-accent); }

/* Founder */
.founder {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  max-width: 680px;
}
.founder-initial {
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--sand);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

/* Contact */
.contact a.email {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
}
.contact a.email:hover { color: var(--ember); }

/* Footer */
footer {
  border-top: 1px solid var(--stone);
  padding: 26px 0 40px;
  font-size: 0.82rem;
  color: var(--terra);
}

@media (max-width: 560px) {
  nav.site-nav a { margin-left: 14px; font-size: 0.82rem; }
  .product-card { padding: 26px; }
  .founder { flex-direction: column; }
}
