@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --paper: #fffdf9;
  --cream: #f8f1e8;
  --ink: #4a3a32;
  --muted: #6f625c;
  --line: rgba(74, 58, 50, 0.12);
  --rose: #d98fa8;
  --brown: #5c463a;
  --shadow: 0 20px 50px rgba(74, 58, 50, 0.09);
}

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

body {
  background:
    radial-gradient(circle at top right, rgba(217, 143, 168, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, var(--cream) 100%);
  color: var(--ink);
  font-family: Inter, sans-serif;
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 92%);
  margin: 0 auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

nav {
  min-height: 122px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 112px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 21px;
  border: 1px solid var(--brown);
  background: var(--brown);
  color: #fff;
  font-weight: 700;
}

.btn.secondary {
  background: transparent;
  color: var(--brown);
}

.article-hero {
  padding: 58px 0 26px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 500;
  line-height: 1.1;
}

h1 {
  max-width: 870px;
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.4vw, 4.5rem);
  letter-spacing: -0.045em;
}

.post-meta {
  color: var(--muted);
  font-size: 0.98rem;
}

.author-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 17px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.author-dot {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brown);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
}

.hero-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  margin-top: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.article-body {
  padding: 22px 0 44px;
}

.article-body p {
  margin-bottom: 19px;
}

.article-body .lead {
  font-size: 1.14rem;
  color: var(--muted);
}

.article-body h2 {
  margin: 38px 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.article-body ul {
  margin: 0 0 20px 20px;
}

.article-body li {
  margin-bottom: 10px;
}

.pullquote {
  margin: 32px 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  color: #8b5a39;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.35;
  box-shadow: var(--shadow);
}

.insight-box {
  margin: 30px 0;
  padding: 25px;
  background: rgba(217, 143, 168, 0.09);
  border: 1px solid rgba(217, 143, 168, 0.22);
}

.insight-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.cta-panel {
  width: min(840px, 92%);
  margin: 26px auto 76px;
  padding: 36px;
  background: linear-gradient(135deg, rgba(217, 143, 168, 0.12), rgba(255, 255, 255, 0.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-panel p {
  margin-bottom: 20px;
  color: var(--muted);
}

footer {
  padding: 28px 0;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  nav {
    min-height: 92px;
  }

  .logo img {
    height: 82px;
  }

  .nav-links {
    display: none;
  }

  .hero-image {
    height: 280px;
  }

  .cta-panel {
    padding: 26px;
  }
}
