/* JOURNAL — Article styles for Golden Ridge Estate insights
   Shares the master palette with the homepage (Georgia serif, cream, orange) */

:root {
  --ink: #1c1813;
  --ink-soft: #3a3128;
  --cream: #f8f4ed;
  --cream-warm: #ede4d2;
  --rule: #d9cdba;
  --orange: #c66a1f;
  --gold: #f4be7a;
  --muted: #6b5d4a;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* HEADER NAV — mirrors homepage */
.j-nav {
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 50;
}
.j-nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.j-nav__brand {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.j-nav__brand strong { color: var(--orange); font-weight: 700; }
.j-nav__links { display: flex; gap: 1.6rem; align-items: center; }
.j-nav__links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.j-nav__links a.j-nav__cta {
  background: var(--ink);
  color: var(--cream);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.j-nav__links a.j-nav__cta:hover { background: var(--orange); color: #fff; }

/* ARTICLE LAYOUT */
.j-article {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.6rem 4rem;
}

.j-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 1rem;
}

.j-article h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.j-meta {
  display: flex;
  gap: 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin: 0 0 2.4rem;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1.4rem;
}
.j-meta strong { color: var(--ink); font-weight: 600; }

.j-lede {
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 1.6rem;
  font-style: italic;
}

.j-article p { font-size: 1.02rem; margin: 0 0 1.2rem; color: var(--ink-soft); }
.j-article a { color: var(--orange); text-decoration: underline; text-decoration-thickness: 0.5px; text-underline-offset: 3px; }

.j-article h2 {
  font-size: 1.5rem;
  margin: 2.6rem 0 0.9rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.j-article h3 {
  font-size: 1.18rem;
  margin: 1.6rem 0 0.6rem;
  font-weight: 700;
}

.j-tldr {
  background: var(--cream-warm);
  border-left: 3px solid var(--orange);
  padding: 1.1rem 1.3rem;
  margin: 1.8rem 0 2.2rem;
  font-size: 0.98rem;
  line-height: 1.55;
}
.j-tldr strong { color: var(--ink); font-weight: 700; }

/* COMPARISON TABLE */
.j-table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0 2rem;
  border: 1px solid var(--rule);
}
.j-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: #fff;
}
.j-table th,
.j-table td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.j-table thead th {
  background: var(--ink);
  color: var(--cream);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.j-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  background: var(--cream-warm);
  width: 32%;
}
.j-table tr:last-child td { border-bottom: none; }

/* FAQ */
.j-faq details {
  border-bottom: 1px solid var(--rule);
  padding: 0.9rem 0;
}
.j-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  list-style: none;
  padding-right: 1.4rem;
  position: relative;
}
.j-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: -2px;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 400;
}
.j-faq details[open] summary::after { content: "−"; }
.j-faq details p { margin: 0.7rem 0 0; font-size: 0.98rem; color: var(--ink-soft); }

/* CALL-TO-ACTION */
.j-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 2.4rem 1.8rem;
  margin: 3rem 0 1rem;
  text-align: center;
}
.j-cta h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  font-weight: 400;
}
.j-cta p { color: #d9cdba; font-size: 0.98rem; margin: 0 0 1.3rem; }
.j-cta a {
  display: inline-block;
  background: var(--orange);
  color: #fff !important;
  padding: 0.85rem 1.6rem;
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
}

/* AUTHOR BYLINE */
.j-author {
  background: var(--cream-warm);
  padding: 1.4rem 1.5rem;
  margin: 2.4rem 0 1rem;
  border-radius: 6px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}
.j-author strong { color: var(--ink); }

/* FOOTER */
.j-footer {
  border-top: 1px solid var(--rule);
  padding: 2.2rem 1.6rem;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  background: var(--cream);
}
.j-footer a { color: var(--ink); text-decoration: none; margin: 0 0.6rem; }

/* JOURNAL INDEX */
.j-index {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 1.6rem 4rem;
}
.j-index h1 {
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.j-index__sub {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 2.6rem;
  max-width: 36rem;
}
.j-card {
  border-top: 1px solid var(--rule);
  padding: 1.6rem 0;
  display: grid;
  grid-template-columns: 4.6rem 1fr;
  gap: 1.6rem;
  text-decoration: none;
  color: var(--ink);
}
.j-card:last-child { border-bottom: 1px solid var(--rule); }
.j-card__date {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 0.2rem;
}
.j-card h2 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.j-card p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}
