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

:root {
  --black: #0a0a0a;
  --off-white: #f7f6f3;
  --warm-white: #faf9f6;
  --mid: #888;
  --border: #e2e0db;
  --sans: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── NAVBAR ─────────────────────────────────────────── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6%;
  position: sticky;
  top: 0;
  background: rgba(250,249,246,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

nav ul { display:flex; list-style:none; gap:36px; }
nav a {
  text-decoration: none;
  color: var(--black);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s;
}
nav a:hover { opacity: 1; }

/* ─── ARTICLE HEADER ─────────────────────────────────── */
.article-head { padding: 90px 6% 50px; max-width: 820px; }

.back-link {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.3s;
}
.back-link:hover { color: var(--black); }

.eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 22px;
}

.article-head h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 4.4vw, 58px);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.article-head h1 em { font-style: normal; font-weight: 800; }

.standfirst {
  font-size: 17px;
  color: #555;
  font-weight: 300;
  line-height: 1.85;
  max-width: 620px;
}

.article-meta {
  padding: 20px 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
}

/* ─── ARTICLE BODY ───────────────────────────────────── */
.article { padding: 70px 6% 90px; max-width: 780px; }

.article h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin: 56px 0 20px;
}
.article h2:first-child { margin-top: 0; }

.article h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin: 36px 0 14px;
}

.article p {
  font-size: 16.5px;
  color: #444;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 22px;
}

.article ul, .article ol { margin: 0 0 24px 20px; }
.article li {
  font-size: 16.5px;
  color: #444;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 12px;
}

.article strong { font-weight: 600; color: var(--black); }

.article a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s;
}
.article a:hover { border-color: var(--black); }

.article blockquote {
  margin: 36px 0;
  padding: 4px 0 4px 28px;
  border-left: 2px solid var(--black);
}
.article blockquote p {
  font-family: 'Nunito', sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--black);
  margin: 0;
}

/* price / data table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 32px;
  font-size: 15px;
}
.data-table th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
  padding: 0 16px 12px 0;
  border-bottom: 1px solid var(--border);
}
.data-table td {
  padding: 16px 16px 16px 0;
  border-bottom: 1px solid var(--border);
  color: #444;
  font-weight: 300;
  vertical-align: top;
}
.data-table td:first-child {
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  color: var(--black);
}
.table-scroll { overflow-x: auto; }

/* callout */
.callout {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 28px 30px;
  margin: 36px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout .callout-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 12px;
}

/* ─── CTA ────────────────────────────────────────────── */
.article-cta {
  padding: 90px 6%;
  background: var(--black);
  color: #fff;
  text-align: center;
}
.article-cta h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.article-cta h2 em { font-style: normal; font-weight: 800; }
.article-cta p {
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
}
.btn-primary {
  display: inline-block;
  padding: 14px 36px;
  background: #fff;
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.btn-primary:hover { opacity: 0.85; }

/* ─── JOURNAL INDEX ──────────────────────────────────── */
.journal-head { padding: 90px 6% 60px; max-width: 860px; }
.journal-head h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.journal-head h1 em { font-style: normal; font-weight: 800; }
.journal-head p {
  font-size: 17px;
  color: #555;
  font-weight: 300;
  line-height: 1.85;
  max-width: 600px;
}

.post-list { padding: 0 6% 40px; border-top: 1px solid var(--border); }
.post-row {
  display: block;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.post-row .cat {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 14px;
}
.post-row h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-bottom: 14px;
  max-width: 760px;
}
.post-row h2 em { font-style: normal; font-weight: 800; }
.post-row p {
  font-size: 15.5px;
  color: #555;
  font-weight: 300;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 18px;
}
.post-row .more {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.post-row:hover .more { opacity: 1; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer {
  padding: 32px 6%;
  background: #050505;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
footer .footer-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
footer p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s ease, transform .85s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; } }

@media (max-width: 900px) {
  footer { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  nav ul { display: none; }
  .article-head, .journal-head { padding: 60px 5% 40px; }
  .article, .post-list, .article-cta, .article-meta { padding-left: 5%; padding-right: 5%; }
}
