:root {
  --bg: #0b0b0c;
  --bg-elev: #131316;
  --bg-card: #18181c;
  --line: #2a2a30;
  --text: #ece8df;
  --text-dim: #9a958a;
  --gold: #c8a96a;
  --gold-bright: #d9bd84;
  --gold-deep: #8c7546;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-bright); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Header */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 11, 12, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  gap: 24px;
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.brand:hover { color: var(--text); }
.brand .gold { color: var(--gold); }
.nav {
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.nav a:hover { color: var(--gold); }
.nav a[aria-current="page"] { color: var(--gold); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.header-phone {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.header-phone:hover { color: var(--gold-bright); }
.header-cta {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a1407;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 6px;
  transition: transform 0.1s, box-shadow 0.2s;
}
.header-cta:hover {
  color: #1a1407;
  box-shadow: 0 6px 18px -6px rgba(200,169,106,0.5);
  transform: translateY(-1px);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 20px 0 0;
  background: var(--bg);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.breadcrumbs li {
  display: flex;
  align-items: center;
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 10px;
  color: var(--line);
}
.breadcrumbs a {
  color: var(--text-dim);
  transition: color 0.15s;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs li[aria-current="page"] { color: var(--text); }

/* Eyebrow / shared */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  padding: 6px 12px;
  border: 1px solid var(--gold-deep);
  border-radius: 999px;
}

/* Journal hero */
.journal-hero {
  padding: 50px 0 60px;
  background:
    radial-gradient(1000px 500px at 80% -10%, rgba(200, 169, 106, 0.10), transparent 60%),
    var(--bg);
}
.journal-hero h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.journal-hero h1 em { color: var(--gold); font-style: italic; font-weight: 500; }
.journal-hero .lede {
  font-size: 19px;
  color: var(--text-dim);
  max-width: 640px;
}

/* Articles grid */
.articles-section {
  padding: 30px 0 80px;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.article-card {
  display: block;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 26px;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.article-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  color: var(--text);
}
.article-card .article-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.article-card h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.article-card p {
  color: var(--text-dim);
  font-size: 15px;
  margin-bottom: 18px;
}
.article-card .read-link {
  display: inline-block;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.04em;
  font-weight: 500;
}

/* Article page */
.article-hero {
  padding: 40px 0 30px;
}
.article-hero .article-meta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.article-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  max-width: 880px;
}
.article-hero .article-sub {
  color: var(--text-dim);
  font-size: 18px;
  max-width: 720px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 24px 70px;
  font-size: 17px;
  color: var(--text);
}
.article-body p {
  margin-bottom: 22px;
  color: var(--text);
}
.article-body p strong {
  color: var(--text);
}
.article-body h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 44px 0 16px;
  color: var(--text);
}
.article-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--gold);
}
.article-body ul, .article-body ol {
  margin: 0 0 22px 22px;
  color: var(--text);
}
.article-body li {
  margin-bottom: 8px;
}
.article-body a {
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,106,0.3);
  transition: border-color 0.15s;
}
.article-body a:hover { border-bottom-color: var(--gold-bright); }
.article-body blockquote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text-dim);
}

/* Inline CTA in article */
.inline-cta {
  background: var(--bg-elev);
  border: 1px solid var(--gold-deep);
  border-radius: 12px;
  padding: 28px 26px;
  margin: 36px 0;
  text-align: center;
}
.inline-cta h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.inline-cta p { color: var(--text-dim); font-size: 15px; margin-bottom: 18px; }
.inline-cta a {
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 100%);
  color: #1a1407;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 6px;
  border-bottom: 0;
}
.inline-cta a:hover { color: #1a1407; }

/* Related articles */
.related {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.related .section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.related h2 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 36px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.related-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 22px;
  color: var(--text);
  transition: border-color 0.2s, transform 0.2s;
}
.related-card:hover {
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  color: var(--text);
}
.related-card .article-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.related-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 80px 0;
  background:
    radial-gradient(800px 300px at 50% 50%, rgba(200,169,106,0.12), transparent 70%),
    var(--bg);
}
.cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  margin-bottom: 18px;
}
.cta-band p { color: var(--text-dim); font-size: 17px; margin-bottom: 24px; }
.cta-phone {
  display: inline-block;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--gold);
  padding: 14px 32px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  transition: background 0.2s;
}
.cta-phone:hover { background: rgba(200,169,106,0.08); }

/* Footer */
footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 30px;
  color: var(--text-dim);
  font-size: 14px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand { font-family: var(--serif); font-size: 18px; color: var(--text); }

/* Mobile */
@media (max-width: 960px) {
  .nav { display: none; }
}
@media (max-width: 860px) {
  .journal-hero { padding: 30px 0 40px; }
  .header-phone { display: none; }
  .header-cta { font-size: 12px; padding: 8px 14px; letter-spacing: 0.04em; }
  .brand { font-size: 20px; }
  .header-inner { padding: 14px 20px; gap: 12px; }
  .article-body { font-size: 16px; padding: 24px 20px 50px; }
  .article-body h2 { font-size: 26px; }
}
