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

:root {
  --bg:      #f9f7f4;
  --surface: #ffffff;
  --border:  #e5e1db;
  --text:    #1a1815;
  --muted:   #7a746c;
  --accent:  #b45309;
  --font:    Georgia, 'Times New Roman', serif;
  --sans:    'Segoe UI', system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

/* Header */
header {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 32px;
  background: var(--surface);
  border-bottom: 2px solid var(--text);
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.01em;
}

nav { display: flex; gap: 20px; margin-left: auto; }

nav a {
  color: var(--muted);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.15s;
}

nav a:hover { color: var(--text); }

/* Main */
main {
  flex: 1;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 24px 64px;
}

/* Article */
.meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 16px;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  border-left: 3px solid var(--border);
  padding-left: 16px;
}

/* Byline */
.byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  font-family: var(--sans);
  font-size: 0.85rem;
}

.byline .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--border);
  color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.byline strong { display: block; color: var(--text); }
.byline span   { color: var(--muted); font-size: 0.78rem; }

/* Image */
article img {
  width: 100%;
  border-radius: 4px;
  margin-bottom: 36px;
  display: block;
}

/* Body copy */
h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 36px 0 12px;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: #2d2a26;
  margin-bottom: 18px;
}

blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: #f1ece5;
  border-left: 4px solid var(--accent);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text);
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
}

/* Footer */
footer {
  display: flex;
  justify-content: space-between;
  padding: 16px 32px;
  border-top: 1px solid var(--border);
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--surface);
}
