/* valorous.us */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #111a14; --fg: #e8e4d8; --brass: #a87d3a; --moss: #2e4a33;
  --faded: rgba(232,228,216,0.42); --rule: rgba(168,125,58,0.25);
}
[data-theme="light"] {
  --bg: #e8e4d8; --fg: #111a14; --brass: #7a5a20; --moss: #4a7a50;
  --faded: rgba(17,26,20,0.42); --rule: rgba(122,90,32,0.25);
}
html { font-size: 16px; }
body {
  background-color: var(--bg); background-image: url('parchment-speckle-dark.jpg');
  background-repeat: repeat; background-size: 512px 512px;
  color: var(--fg); font-family: 'Spectral', Georgia, serif;
  min-height: 100vh; display: flex; flex-direction: column; overflow-x: hidden;
}
[data-theme="light"] body { background-image: url('parchment-speckle-light.jpg'); }

/* HEADER */
header { padding: 2rem 2.5rem; border-bottom: 1px solid var(--rule); display: flex; justify-content: space-between; align-items: center; }
.header-inner { display: flex; align-items: baseline; gap: 0.9rem; }
.wordmark { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg); opacity: 0.88; }
.header-sep { font-family: 'Barlow Condensed', sans-serif; color: var(--brass); opacity: 0.5; font-weight: 300; }
.sub-mark { font-family: 'Spectral', serif; font-size: 0.78rem; font-style: italic; color: var(--faded); letter-spacing: 0.04em; }
.toggle-btn { background: none; border: 1px solid var(--rule); color: var(--brass); font-family: 'Spectral', serif; font-size: 0.6rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.3rem 0.7rem; cursor: pointer; opacity: 0.55; }
.toggle-btn:hover { opacity: 1; border-color: var(--brass); }

/* HERO */
.hero { padding: 7rem 2.5rem 5rem; border-bottom: 1px solid var(--rule); }
.hero-inner { max-width: 700px; }
.pre-heading { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass); opacity: 0.8; margin-bottom: 1.6rem; }
h1 { font-family: 'Spectral', serif; font-weight: 300; font-size: clamp(2.6rem, 6.5vw, 5rem); line-height: 1.08; color: var(--fg); letter-spacing: -0.015em; }
h1 em { font-style: italic; color: var(--fg); opacity: 0.55; }

/* BODY COPY */
.body-copy { padding: 5rem 2.5rem 6rem; flex: 1; }
.content-col { max-width: 620px; }
.drop-cap { font-size: 2.3rem; line-height: 1.75; color: var(--fg); opacity: 0.85; margin-bottom: 1.8rem; font-weight: 400; }
.body-copy p { font-size: 2.1rem; line-height: 1.9; color: var(--fg); opacity: 0.58; margin-bottom: 1.6rem; font-weight: 300; }
.body-copy p em { font-style: italic; opacity: 1; color: var(--fg); }
blockquote { margin: 3rem 0; padding: 0 0 0 1.6rem; border-left: 3px solid var(--brass); font-size: 1.18rem; font-style: italic; line-height: 1.75; color: var(--fg); opacity: 0.72; font-weight: 300; }
.divider { display: flex; align-items: center; gap: 0.8rem; margin: 3rem 0 2.5rem; }
.pip { font-size: 0.6rem; color: var(--brass); opacity: 0.6; }
.rule-line { height: 1px; width: 3rem; background: var(--rule); }
.status-note { font-family: 'Space Mono', monospace; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--fg); opacity: 0.18; margin-bottom: 0 !important; }

/* FOOTER */
footer { padding: 1.8rem 2.5rem; border-top: 1px solid var(--rule); }
.copy { font-size: 0.65rem; letter-spacing: 0.08em; opacity: 0.2; font-family: 'Space Mono', monospace; }

/* ANIMATION */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.content-col { animation: fadeUp 0.8s 0.1s ease both; }
