:root {
  --stone: #F5F2EE; --stone-dark: #EAE5DF;
  --ink: #1A1714; --ink-mid: #3D3830; --ink-light: #7A7269;
  --gold: #B8945A; --gold-light: #D4AE7A; --gold-pale: #F0E6D4;
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --nav-height: 72px; --page-padding: 48px;
  --shadow-soft: 0 20px 50px rgba(26, 23, 20, 0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--stone); color: var(--ink); font-size: 16px; line-height: 1.7; font-weight: 300; }

.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header .nav { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: var(--nav-height); padding: 0 var(--page-padding); background: rgba(245,242,238,0.95); border-bottom: 1px solid rgba(184,148,90,0.2); backdrop-filter: blur(14px); }
.header .logo { display: flex; align-items: center; text-decoration: none; color: inherit; min-width: 0; }
.header .logo-mono { display: flex; align-items: baseline; line-height: 1; }
.header .logo-mono-N, .header .logo-mono-d { font-family: var(--serif); font-size: 40px; font-weight: 300; line-height: 1; }
.header .logo-mono-N { color: var(--ink); letter-spacing: -0.01em; }
.header .logo-mono-d { font-style: italic; color: var(--gold); }
.header .logo-divider { width: 1px; height: 32px; background: rgba(184,148,90,0.35); margin: 0 16px; }
.header .logo-text-wrap { display: flex; flex-direction: column; gap: 3.2px; }
.header .logo-text-name { font-family: var(--serif); font-size: 17px; font-weight: 400; color: var(--ink); letter-spacing: 0.07em; line-height: 1; white-space: nowrap; }
.header .logo-text-sub { font-family: var(--sans); font-size: 8px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-light); white-space: nowrap; }
.header .menu-button { display: none; border: 0; background: transparent; color: var(--ink); font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em; cursor: pointer; }
.header .nav-panel { display: flex; }
.header .nav-links { display: flex; align-items: center; gap: 36px; margin: 0; padding: 0; list-style: none; }
.header .nav-link { font-family: var(--sans); font-size: 12px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mid); text-decoration: none; transition: color 0.2s ease; }
.header .nav-link:hover, .header .nav-link.active { color: var(--gold); }
.header .nav-cta { display: inline-flex; align-items: center; padding: 10px 22px; background: var(--ink); color: var(--stone); border-radius: 2px; text-decoration: none; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px; transition: background 0.2s ease; }
.header .nav-cta:hover { background: var(--gold); }

.article-hero {
  padding: calc(var(--nav-height) + 60px) 80px 60px;
  background: var(--stone-dark);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center;
}
.article-hero .meta-line { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.article-hero .meta-line a { color: var(--gold); text-decoration: none; }
.article-hero .meta-line a:hover { text-decoration: underline; }
.article-hero h1 { font-family: var(--serif); font-weight: 300; font-size: clamp(40px, 4.5vw, 64px); line-height: 1.1; color: var(--ink); margin-bottom: 24px; }
.article-hero h1 em { font-style: italic; color: var(--gold); }
.article-hero .subtitle { font-size: 18px; color: var(--ink-mid); line-height: 1.7; max-width: 520px; }
.article-hero .byline { margin-top: 32px; font-size: 13px; letter-spacing: 0.08em; color: var(--ink-light); }
.article-hero .byline strong { color: var(--ink); font-weight: 500; }
.article-hero .cover { aspect-ratio: 4/3; background: var(--stone); overflow: hidden; border-radius: 2px; box-shadow: var(--shadow-soft); }
.article-hero .cover img { width: 100%; height: 100%; object-fit: cover; display: block; }

.article-body { max-width: 760px; margin: 0 auto; padding: 80px 32px 100px; }
.article-body p, .article-body li { font-size: 17px; line-height: 1.85; color: var(--ink-mid); margin-bottom: 20px; }
.article-body h2 { font-family: var(--serif); font-weight: 400; font-size: 30px; line-height: 1.3; color: var(--ink); margin-top: 48px; margin-bottom: 20px; }
.article-body h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; color: var(--ink); margin-top: 36px; margin-bottom: 12px; }
.article-body h2 em, .article-body h3 em { font-style: italic; color: var(--gold); }
.article-body ul { list-style: none; padding-left: 0; margin-bottom: 20px; }
.article-body ul li { position: relative; padding-left: 24px; }
.article-body ul li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.article-body .lead { font-family: var(--serif); font-style: italic; font-size: 22px; line-height: 1.6; color: var(--ink); margin-bottom: 32px; }
.article-body .callout { border-left: 3px solid var(--gold); background: var(--gold-pale); padding: 24px 28px; margin: 32px 0; font-family: var(--serif); font-style: italic; font-size: 20px; line-height: 1.6; color: var(--ink); }
.article-body .solution { background: var(--stone-dark); padding: 14px 20px; border-radius: 2px; margin: -6px 0 24px; font-size: 16px; color: var(--ink-mid); }
.article-body .solution strong { color: var(--ink); }

.article-footer-nav { max-width: 760px; margin: 0 auto; padding: 0 32px 80px; display: flex; justify-content: space-between; align-items: center; gap: 20px; border-top: 1px solid rgba(184,148,90,0.2); }
.article-footer-nav a { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); text-decoration: none; padding-top: 32px; transition: color 0.2s ease; }
.article-footer-nav a:hover { color: var(--gold); }

.cta-band { background: var(--gold); padding: 80px 24px; text-align: center; }
.cta-band h2 { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.btn-white { display: inline-block; background: var(--white); color: var(--gold); padding: 14px 34px; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; border-radius: 2px; font-weight: 500; transition: all 0.25s; }
.btn-white:hover { background: var(--ink); color: var(--white); }

.newsletter { background: var(--ink); padding: 80px; text-align: center; }
.section-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 400; margin-bottom: 16px; }
.newsletter-title { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--stone); margin-bottom: 12px; }
.newsletter-sub { font-size: 15px; color: rgba(245,242,238,0.6); margin-bottom: 40px; }
.newsletter-form { display: flex; gap: 0; max-width: 500px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 14px 20px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-right: none; color: var(--stone); font-family: var(--sans); font-size: 14px; outline: none; font-weight: 300; }
.newsletter-input::placeholder { color: rgba(245,242,238,0.35); }
.newsletter-input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.newsletter-btn { background: var(--gold); color: var(--white); border: none; padding: 14px 28px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; font-weight: 400; transition: background 0.2s; white-space: nowrap; }
.newsletter-btn:hover { background: var(--gold-light); }
.newsletter-privacy { font-size: 12px; color: rgba(245,242,238,0.35); margin-top: 16px; }
.newsletter-status { margin-top: 16px; font-size: 14px; color: rgba(245,242,238,0.85); }
.newsletter-status.is-success { color: #d7f0d1; }
.newsletter-status.is-error { color: #ffd3cb; }

footer { background: #111009; padding: 40px 80px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-logo { font-family: var(--serif); font-size: 18px; font-weight: 300; color: rgba(245,242,238,0.7); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 32px; }
.footer-links a { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(245,242,238,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-copy { font-size: 12px; color: rgba(245,242,238,0.3); }

@media (max-width: 1024px) {
  .article-hero { padding: calc(var(--nav-height) + 48px) 48px 48px; grid-template-columns: 1fr; gap: 40px; }
  .article-hero .cover { aspect-ratio: 16/10; }
}
@media (max-width: 960px) {
  .header .menu-button { display: inline-flex; }
  .header .nav-panel { position: absolute; top: calc(var(--nav-height) - 1px); left: 0; right: 0; display: none; padding: 0 20px 20px; background: rgba(245,242,238,0.98); border-bottom: 1px solid rgba(184,148,90,0.2); }
  .header .nav-panel.nav-panel-open { display: block; }
  .header .nav-links { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; background: var(--white); box-shadow: var(--shadow-soft); }
  .header .nav-link, .header .nav-cta { display: block; text-align: center; padding: 14px 16px; }
}
@media (max-width: 800px) {
  :root { --page-padding: 16px; }
  .header .logo-text-wrap { display: none; }
  .header .logo-divider { margin: 0 0 0 12px; }
}
@media (max-width: 768px) {
  .article-hero { padding: calc(var(--nav-height) + 32px) 24px 32px; }
  .article-body { padding: 56px 20px 72px; }
  .article-body p, .article-body li { font-size: 16px; }
  .article-body h2 { font-size: 26px; }
  .newsletter { padding: 64px 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input { border-right: 1px solid rgba(255,255,255,0.15); border-bottom: none; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .cta-band { padding: 64px 24px; }
}
