/* AB Still — abstill.com
   Single stylesheet for all pages. Ovo ships in weight 400 only:
   scale, tracking and italics carry hierarchy; never fake bold. */

@font-face {
  font-family: 'Ovo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/Ovo-Regular.woff2') format('woff2');
}

:root {
  --bg:        #f7f5f2;
  --ink:       #1a1916;
  --ink-muted: #6b6860;
  --rule:      #d9d5cf;
  --accent:    #2a3d2e;
  --font:      'Ovo', Georgia, serif;
  --max-w:     640px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 18px; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header, main, footer {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Header ── */
header {
  padding-top: 3rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: baseline;
  justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
header .wordmark {
  font-weight: 400; font-size: 1.05rem; letter-spacing: 0.08em;
  text-decoration: none; color: var(--ink);
}
nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
nav a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  color: var(--ink-muted); transition: color 0.2s;
}
nav a:hover { color: var(--accent); }
nav a[aria-current="page"] { color: var(--ink); }

main { flex: 1; padding-top: 4rem; padding-bottom: 5rem; }

/* ── Landing ── */
main.landing { padding-top: 5rem; }
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--ink-muted); margin-bottom: 1.25rem;
}
.hero-name {
  font-size: clamp(2.6rem, 7.5vw, 4rem); font-weight: 400;
  line-height: 1.08; letter-spacing: 0.02em; margin-bottom: 2rem; color: var(--ink);
}
.hero-rule { width: 2rem; height: 1px; background: var(--accent); margin-bottom: 2rem; }
.hero-tagline {
  font-size: 1.1rem; font-weight: 400; font-style: italic;
  color: var(--ink-muted); line-height: 1.65;
}

/* ── Inner pages ── */
.page-title {
  font-size: clamp(2rem, 5.5vw, 2.8rem); font-weight: 400;
  letter-spacing: 0.02em; margin-bottom: 0.75rem; color: var(--ink);
}
.page-title.solo { margin-bottom: 2.5rem; }
.page-lede {
  font-size: 1.05rem; font-weight: 400; font-style: italic;
  color: var(--ink-muted); margin-bottom: 3rem; line-height: 1.7;
}

h2 {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--accent);
  margin-top: 3rem; margin-bottom: 1.25rem;
  padding-bottom: 0.45rem; border-bottom: 1px solid var(--rule);
}
h2:first-of-type { margin-top: 0; }
h3 {
  font-size: 1.05rem; font-weight: 400; letter-spacing: 0.01em; font-style: italic;
  margin-top: 1.5rem; margin-bottom: 0.5rem; color: var(--ink);
}
p { font-size: 0.95rem; font-weight: 400; margin-bottom: 0.75rem; line-height: 1.75; }
main a { color: var(--accent); text-underline-offset: 0.2em; transition: opacity 0.2s; }
main a:hover { opacity: 0.7; }

/* ── Practice lists (About) ── */
ul.practice-list { list-style: none; padding-left: 0; margin-bottom: 0.25rem; }
ul.practice-list > li {
  font-size: 0.93rem; font-weight: 400;
  padding: 0.6rem 0 0.6rem 1.2rem; position: relative;
  border-bottom: 1px solid var(--rule); line-height: 1.7;
}
ul.practice-list > li:last-child { border-bottom: none; }
ul.practice-list > li::before { content: '—'; position: absolute; left: 0; color: var(--ink-muted); }

ul.sub-bullets { list-style: none; padding-left: 0.75rem; margin-top: 0.4rem; margin-bottom: 0.2rem; }
ul.sub-bullets li {
  font-size: 0.88rem; font-weight: 400; color: var(--ink-muted);
  padding: 0.15rem 0 0.15rem 1rem; position: relative; line-height: 1.65;
}
ul.sub-bullets li::before {
  content: '*'; position: absolute; left: 0; color: var(--rule);
  font-size: 0.8rem; line-height: 1.8;
}
ul.practice-list strong {
  font-weight: 400; font-size: 0.95rem; letter-spacing: 0.01em; color: var(--ink);
  text-decoration: underline; text-decoration-color: var(--rule); text-underline-offset: 0.2em;
}

.callout {
  margin-top: 1rem; padding: 1.25rem 1.5rem;
  border-left: 2px solid var(--accent); background: rgba(42, 61, 46, 0.04);
}
.callout p { font-size: 1.05rem; font-style: italic; color: var(--ink); margin: 0; }

/* ── Contact ── */
.contact-line { display: flex; align-items: baseline; gap: 1.25rem; }
.contact-label {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-muted); min-width: 3.5rem;
}
.contact-value a {
  font-size: 1.05rem; font-weight: 400; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--rule); padding-bottom: 0.05em;
  transition: border-color 0.2s, color 0.2s;
}
.contact-value a:hover { color: var(--accent); border-color: var(--accent); opacity: 1; }

/* ── Terms ── */
.terms-section { margin-bottom: 2.5rem; }
.terms-section h2 { margin-top: 0; margin-bottom: 0.75rem; padding-bottom: 0.4rem; display: flex; align-items: baseline; gap: 0.5rem; }
.section-number {
  font-style: italic; font-weight: 400; font-size: 0.78rem;
  color: var(--ink-muted); letter-spacing: 0; text-transform: none;
}
.terms-section p { font-size: 0.93rem; }
.terms-section p:last-child { margin-bottom: 0; }

/* ── Footer ── */
footer {
  padding-top: 2rem; padding-bottom: 2.5rem;
  border-top: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 0.68rem; font-weight: 400; color: var(--ink-muted); letter-spacing: 0.03em; }
.footer-nav { display: flex; gap: 1.25rem; }
.footer-nav a {
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink-muted); transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }

@media (max-width: 480px) {
  header { flex-direction: column; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media print {
  body { background: #fff; color: #000; }
  nav, .footer-nav { display: none; }
}
