/* jonaugustvoice.com - placeholder site */

:root {
  --paper: #f5efe3;
  --paper-raised: #faf6ec;
  --ink: #241c10;
  --ink-soft: #4a4133;
  --muted: #8a7c63;
  --line: #ddd1bb;
  --gold: #a86f2d;
  --btn-bg: #241c10;
  --btn-fg: #f5efe3;
  --quote: rgba(168, 111, 45, 0.14);
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #1c1610;
    --paper-raised: #241d15;
    --ink: #f0e7d6;
    --ink-soft: #cfc3ab;
    --muted: #9c8d72;
    --line: #3a3226;
    --gold: #c9964a;
    --btn-bg: #f0e7d6;
    --btn-fg: #1c1610;
    --quote: rgba(201, 150, 74, 0.12);
  }
}

* { box-sizing: border-box; }

html { color-scheme: light dark; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--gold); }
a:hover { color: var(--ink); }

.page {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 28px 40px;
  position: relative;
}

/* Oversized quote-mark motif */
.quote-mark {
  position: absolute;
  top: -34px;
  left: 6px;
  font-family: 'Playfair Display', serif;
  font-size: 240px;
  line-height: 1;
  color: var(--quote);
  pointer-events: none;
  user-select: none;
}

/* Hero */
header { padding-top: 80px; position: relative; }

.kicker {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(58px, 16vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
}

.role {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(22px, 6vw, 30px);
  line-height: 1.3;
  margin: 40px 0 0;
}

.tagline .pun {
  font-style: italic;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}

/* Bio */
.bio {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 40px 0 0;
}

/* Demos */
.demos {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin: 0;
}

.reel {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper-raised);
}

.reel .play {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.reel .play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid var(--gold);
  border-top: 7.5px solid transparent;
  border-bottom: 7.5px solid transparent;
  margin-left: 3px;
}

.reel .meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.reel h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: inherit;
}

.reel .status {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* When a real player drops in, it replaces .play + .status */
.reel audio { width: 100%; }

/* Contact */
.contact {
  display: block;
  margin-top: 44px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  text-align: center;
  padding: 18px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: opacity 0.15s ease;
}

.contact:hover { color: var(--btn-fg); opacity: 0.88; }

/* Footer */
footer {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 640px) {
  .page { padding: 0 32px 56px; }
  header { padding-top: 104px; }
  .quote-mark { font-size: 300px; top: -40px; }
}
