/* brettowens.com — single stylesheet. No external fonts, no trackers. */

:root {
  --ink: #1a1a1a;
  --muted: #555;
  --accent: #0b5c4f;
  --accent-hover: #0a4a40;
  --line: #e4e4e4;
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --maxw: 44rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* Header / nav */
.site-header {
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.brand {
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: 0.01em;
}
nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
}
nav a:hover, nav a[aria-current="page"] { color: var(--ink); }

/* Main */
main { padding: 3rem 0; }

h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.subhead {
  font-size: 1.2rem;
  color: var(--muted);
  margin: 0 0 2rem;
}

p { margin: 0 0 1.2rem; }

.bio p { margin-bottom: 1.3rem; }

/* Headshot placeholder block (swap for <img> when brett-owens.jpg arrives) */
.headshot,
.headshot-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 28%;
  float: right;
  margin: 0 0 1rem 1.5rem;
}
.headshot-placeholder {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #c2c2bd;
  letter-spacing: 0.05em;
}

/* CTA */
.cta {
  display: block;
  margin: 2.5rem 0 0;
  padding: 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-align: center;
}
.cta a.button {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  line-height: 1.3;
}
.cta a.button:hover { background: var(--accent-hover); }

/* Book page */
.book-subtitle {
  font-size: 1.25rem;
  color: var(--muted);
  font-style: italic;
  margin: 0 0 1.5rem;
}
.book-note {
  font-weight: 600;
  color: var(--ink);
}

/* Contact page */
.contact-email {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .wrap { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* Mobile */
@media (max-width: 480px) {
  body { font-size: 17px; }
  h1 { font-size: 1.9rem; }
  main { padding: 2rem 0; }
  .headshot,
  .headshot-placeholder {
    float: none;
    display: flex;
    margin: 0 auto 1.5rem;
    width: 150px;
    height: 150px;
  }
  nav ul { gap: 1rem; }
  .site-header .wrap { justify-content: center; }
}
