/* ─────────────────────────────────────────────────────────────────
   barteknowak.com root holding page — styles.css
   Single-screen layout. Same brand tokens as the Etch landing page,
   but no header chrome, no nav, no pricing — just identity and the
   current-work card. Dark-only.
   ───────────────────────────────────────────────────────────────── */

:root {
  --bg:          #121417;
  --surface:     #1A1D21;
  --surface-2:   #21252A;
  --border:      #2A2F36;
  --text:        #E6E8EB;
  --text-muted:  #7A869A;
  --text-faint:  #4F5560;
  --primary:     #20C9B7;
  --accent:      #E3B04B;

  --font-serif:  'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:   'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --radius-md:   14px;
  --radius-lg:   18px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
svg { display: block; }

.link {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid rgba(32, 201, 183, 0.35);
}
.link:hover { border-bottom-color: var(--primary); }

/* MAIN — full-height, centered single card ──────────────────────── */
.root-main {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 3rem 1.25rem;
}
.root-card {
  width: 100%;
  max-width: 620px;
}

/* IDENTITY block ────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.5rem;
}
h1 {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 1.25rem;
}
.bio {
  color: var(--text-muted);
  margin: 0 0 3rem;
  max-width: 30em;
}

/* CURRENT-WORK label + card ─────────────────────────────────────── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 0.75rem;
}

.work-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.05s ease, background 0.15s ease;
}
.work-card:hover {
  border-color: rgba(32, 201, 183, 0.5);
  background: var(--surface-2);
}
.work-card:active { transform: translateY(1px); }

.work-card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: block;
}

.work-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
}
.work-card-body p {
  margin: 0 0 0.75rem;
  color: var(--text-muted);
}
.work-card-cta {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* FOOTER ────────────────────────────────────────────────────────── */
.root-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.root-footer p { margin: 0; }

/* REDUCED MOTION ────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; }
}
