/* StudioDOX bulletins — typography & brand aligned with index.html; light (white) document surface */

:root {
  --bg: #f0ebe0;
  --bg-elevated: #e6e0d4;
  --line: #cec8b8;
  --text: #1a1c12;
  --muted: #5a6b5c;
  --accent: #a07c10;
  --accent-soft: rgba(160, 124, 16, 0.10);
  --brand-studio: #4a6b4c;
  --brand-dox: #1f5c85;
  --ink-strong: #1a1c12;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  min-height: 100vh;
}

/* No grain on white surface (index uses grain on dark only) */
.grain { display: none !important; }

a { color: #8a7220; text-decoration: none; }
a:hover { color: var(--ink-strong); text-decoration: underline; text-underline-offset: 0.2em; }

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  text-decoration: none;
  color: inherit;
}

.logo-mark {
  width: 84px;
  height: auto;
  display: block;
}

.logo {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text);
  margin: 0;
}

.brand-word {
  white-space: nowrap;
  font-family: 'Instrument Serif', Georgia, serif;
  letter-spacing: 0.04em;
}

.brand-word .studio { color: var(--brand-studio); }
.brand-word .dox { color: var(--brand-dox); }

a.brand:hover { text-decoration: none; }

nav { display: flex; gap: 1.75rem; font-size: 0.9rem; font-weight: 500; }
nav a { color: var(--muted); text-decoration: none; }
nav a:hover { color: var(--text); }

@media (max-width: 640px) {
  header { flex-direction: column; gap: 1rem; align-items: flex-start; }
  nav { flex-wrap: wrap; gap: 0.75rem 1.25rem; }
}

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary { background: var(--accent); color: var(--ink-strong); }
.btn-primary:hover { background: #d4ae30; text-decoration: none; color: var(--ink-strong); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--muted); text-decoration: none; color: var(--text); }

.bulletin-main {
  padding: 3rem 0 4rem;
  max-width: 42rem;
}

.bulletin-main .section-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a7b18;
  margin-bottom: 0.5rem;
}

.bulletin-main h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--ink-strong);
}

.bulletin-main .tagline {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.btn-row--after-lead {
  margin-top: 0;
  margin-bottom: 0;
}

.bulletin-body {
  margin-top: 2rem;
}

.bulletin-section h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 400;
  margin: 2rem 0 0.65rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--accent);
  line-height: 1.25;
  color: var(--ink-strong);
}

.bulletin-section:first-child h2 {
  margin-top: 0;
}

.bulletin-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.97rem;
  list-style-type: disc;
}

.bulletin-list li {
  margin-bottom: 0.6rem;
}

.bulletin-list li:last-child {
  margin-bottom: 0;
}

.bulletin-list q {
  font-style: normal;
}

.bulletin-agent-intro {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0 0 0.85rem;
  max-width: 38rem;
  line-height: 1.55;
}

.bulletin-footnote {
  margin-top: 2.25rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--muted);
}

footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
