/* ══════════════════════════════════════════
   VISCERAL BLOOM — Brand Kit Stylesheet
   Kendra Thorne · v1.0 · March 2026
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400&family=Space+Mono:wght@400;700&display=swap');

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

:root {
  /* Base palette */
  --bg: #faf8f5;
  --bg-warm: #f5f1ec;
  --text: #1a1a1a;
  --text-mid: #5a5550;
  --text-light: #9a938b;
  --accent: #2a2520;
  --rule: #ddd6cc;
  --rule-light: #ebe6df;

  /* Accent colors */
  --plum: #7a6570;
  --sage: #6a8c5e;
  --terracotta: #a0715a;
  --goldenrod: #b8943e;

  /* Gradient */
  --gradient-accent: linear-gradient(90deg, var(--plum), var(--sage), var(--terracotta), var(--goldenrod));

  /* Typography */
  --serif: 'Crimson Pro', Georgia, serif;
  --mono: 'Space Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--serif);
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVIGATION ── */
nav {
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav .mark {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
nav .mark:hover { color: var(--text-mid); }
nav .links {
  display: flex;
  gap: 32px;
}
nav .links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
}
nav .links a:hover { color: var(--text); }
nav .links a.active { color: var(--goldenrod); }

/* ── HERO ── */
.hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 48px 40px;
  text-align: center;
  min-height: 60vh;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(42px, 7vw, 80px);
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero .rule {
  width: 60px;
  height: 2px;
  background: var(--gradient-accent);
  margin: 0 auto 24px;
  border-radius: 1px;
}
.hero .tagline {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 48px;
}
.hero .tag-item { white-space: nowrap; }
.hero .tag-item + .tag-item::before {
  content: ' · ';
  letter-spacing: 2px;
}
.hero .statement {
  max-width: 560px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
}

/* ── FEATURED / SECTION BLOCKS ── */
.section-block {
  padding: 64px 48px;
  text-align: center;
}
.section-block.warm {
  background: var(--bg-warm);
  border-top: 1px solid var(--rule-light);
  border-bottom: 1px solid var(--rule-light);
}
.section-block .label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.section-block h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-block .subtitle {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.section-block .description {
  max-width: 520px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
}
.section-block p + p {
  margin-top: 20px;
}

/* ── PLATE TAGS ── */
.plate-seq {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.plate-seq span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--rule);
  color: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s;
}
.plate-seq span:hover {
  border-color: var(--text-mid);
  color: var(--text-mid);
}
/* Plate accent colors */
.plate-seq .plate-plum { border-color: var(--plum); color: var(--plum); }
.plate-seq .plate-sage { border-color: var(--sage); color: var(--sage); }
.plate-seq .plate-terra { border-color: var(--terracotta); color: var(--terracotta); }
.plate-seq .plate-gold { border-color: var(--goldenrod); color: var(--goldenrod); }

/* ── CONTACT ── */
.contact {
  padding: 48px;
  text-align: center;
  border-top: 1px solid var(--rule-light);
}
.contact .label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.contact .links-row {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.contact a {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--text-mid);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
}
.contact a:hover {
  color: var(--goldenrod);
  border-bottom-color: var(--goldenrod);
}

/* ── FOOTER ── */
footer {
  padding: 32px 48px;
  text-align: center;
}
footer p {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--text-light);
}

/* ── GRADIENT BAR ── */
.gradient-bar {
  height: 3px;
  background: var(--gradient-accent);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.8s ease forwards;
}
.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.25s; }
.fade-in:nth-child(3) { animation-delay: 0.4s; }
.fade-in:nth-child(4) { animation-delay: 0.55s; }
.fade-in:nth-child(5) { animation-delay: 0.7s; }

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

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 20px 24px; flex-direction: column; gap: 12px; }
  nav .links { gap: 20px; }
  .hero { padding: 60px 24px 32px; min-height: 50vh; }
  .hero .tagline { display: flex; flex-direction: column; gap: 6px; align-items: center; }
  .hero .tag-item + .tag-item::before { content: none; }
  .hero .statement { font-size: 16px; }
  .section-block { padding: 48px 24px; }
  .contact { padding: 36px 24px; }
  .plate-seq { gap: 6px; }
  .plate-seq span { padding: 5px 10px; font-size: 8px; }
  footer { padding: 24px; }
}
