:root {
  --bg: #f6f2ea;
  --text-main: #2d2a26;
  --text-light: #6b6b6b;
  --primary: #6b524b;
  --accent: #bc955c;
  --link: #8d0b93;
  --font-body: 'Inter', sans-serif;
  --font-head: 'Open Sans', Helvetica, Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  background-color: var(--bg);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 19px;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--primary);
}

.page-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-editorial {
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(107, 82, 75, 0.1);
  margin-bottom: 3rem;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(107, 82, 75, 0.2);
  padding: 0.4em 1em;
  border-radius: 50px;
}

.nav-cta:hover {
  background: rgba(107, 82, 75, 0.05);
  border-color: var(--primary);
}

.article-header {
  margin-bottom: 3rem;
  text-align: center;
}

.article-kicker {
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--primary);
  margin: 0 0 1rem 0;
}

.author-meta {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.author-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
}

.content {
  margin-bottom: 4rem;
}

.content p {
  margin-bottom: 1.8rem;
}

.content > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.8rem;
  line-height: 0.85;
  padding-right: 12px;
  padding-top: 4px;
  color: var(--primary);
}

.content h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.content strong {
  font-weight: 700;
  color: #000;
}

.pull-quote {
  font-size: 1.4rem;
  line-height: 1.4;
  font-style: italic;
  color: var(--primary);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
  background: linear-gradient(to right, rgba(188,149,92,0.1), transparent);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
}

.signature-block {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.sig-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
}

.sig-role {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
}

.footer-cta {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(165,131,80,0.1);
  margin-bottom: 4rem;
  border: 1px solid rgba(165,131,80,0.2);
}

.footer-cta h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin: 0 0 0.5rem 0;
  color: var(--primary);
}

.footer-cta p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 0.8em 1.8em;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  background: #503d38;
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 5px 15px rgba(107, 82, 75, 0.2);
}

.simple-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  padding-bottom: 2rem;
  font-family: var(--font-head);
}

@media (max-width: 600px) {
  body {
    font-size: 17px;
  }
  .content > p:first-of-type::first-letter {
    font-size: 3.2rem;
  }
}