/*
Theme Name: Cinderlith Storefront
Theme URI: https://cinderlithgaming.com
Description: Minimal restrained launch placeholder for Cinderlith Gaming.
Author: Cinderlith Gaming
Version: 0.1.0
Text Domain: cinderlith-storefront
Requires at least: 6.8
Requires PHP: 8.2
*/

:root {
  --ink: #1a1a1a;
  --paper: #f7f4ef;
  --accent: #3d5a45;
  --muted: #5c5c5c;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}
.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header, .site-footer {
  padding: 1.25rem 1.5rem;
}
.site-header {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.brand {
  font-size: 1.35rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: none;
}
.site-main {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
}
.hero {
  max-width: 36rem;
  text-align: left;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 650;
  margin: 0 0 0.75rem;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.site-footer {
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
