/* ============================================================
   THE PRESTON HOLLOW COMPOUND — Article pages shared styles
   Matches the microsite design system (Fraunces + Newsreader)
   ============================================================ */

:root {
  --paper: #faf7f2;
  --paper-warm: #f3ede2;
  --paper-deep: #ebe3d4;
  --ink: #1a1612;
  --ink-soft: #3a342c;
  --ink-mute: #6b6359;
  --stone: #8b7d6b;
  --terracotta: #a0593c;
  --terracotta-deep: #7a3f2a;
  --gold: #b08d57;
  --rule: rgba(26, 22, 18, 0.15);
  --rule-faint: rgba(26, 22, 18, 0.08);
  --serif-display: "Fraunces", "Times New Roman", Georgia, serif;
  --serif-body: "Newsreader", "Iowan Old Style", Georgia, serif;
  --max-prose: 720px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif-body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--terracotta); color: var(--paper); }
a { color: var(--terracotta-deep); text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule-faint);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.nav-back {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  transition: color 0.2s;
}
.nav-back:hover { color: var(--terracotta); }
@media (max-width: 720px) {
  .nav { padding: 14px 22px; }
  .nav-brand { font-size: 12px; letter-spacing: 0.12em; }
  .nav-back { font-size: 11px; }
}

/* ---------- ARTICLE HEADER ---------- */
.article-header {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 80px 24px 40px;
  text-align: left;
}
.article-eyebrow {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 28px;
}
.article-title {
  font-family: var(--serif-display);
  font-weight: 300;
  font-size: clamp(34px, 5.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.article-standfirst {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--ink-soft);
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .article-header { padding: 48px 22px 32px; }
}

/* ---------- ARTICLE BODY ---------- */
.article-body {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 20px 24px 80px;
}
.article-body h2 {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: clamp(26px, 3.2vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 56px 0 20px;
  color: var(--ink);
}
.article-body h3 {
  font-family: var(--serif-display);
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.2;
  margin: 40px 0 14px;
  color: var(--terracotta-deep);
}
.article-body p {
  margin-bottom: 22px;
  color: var(--ink-soft);
}
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body em { font-style: italic; }

.article-body ul {
  margin: 0 0 22px 0;
  padding-left: 0;
  list-style: none;
}
.article-body li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}
.article-body li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 14px;
  width: 6px;
  height: 6px;
  background: var(--terracotta);
  border-radius: 50%;
}

/* Drop cap on first paragraph */
.article-body > p:first-of-type::first-letter {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 68px;
  line-height: 0.8;
  float: left;
  padding: 8px 12px 0 0;
  color: var(--terracotta);
}

/* Pull quote */
.pull-quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.3;
  color: var(--terracotta-deep);
  border-left: 2px solid var(--terracotta);
  padding: 8px 0 8px 28px;
  margin: 40px 0;
}

/* ---------- PROPERTY CARD (footer of each article) ---------- */
.property-card {
  max-width: var(--max-prose);
  margin: 0 auto 80px;
  padding: 40px;
  background: var(--paper-warm);
  border: 1px solid var(--rule-faint);
  position: relative;
}
.property-card::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px;
  width: 32px; height: 32px;
  border-top: 2px solid var(--terracotta);
  border-left: 2px solid var(--terracotta);
}
.property-card-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 16px;
}
.property-card-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.property-card p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.property-card-cta {
  display: inline-block;
  background: var(--ink);
  color: var(--paper);
  padding: 14px 32px;
  font-family: var(--serif-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.3s;
}
.property-card-cta:hover { background: var(--terracotta-deep); color: var(--paper); }
@media (max-width: 720px) {
  .property-card { padding: 28px 22px; margin-bottom: 56px; }
}

/* ---------- RELATED ARTICLES ---------- */
.related {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.related-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.related-item {
  display: block;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule-faint);
  color: var(--ink);
  transition: color 0.2s;
}
.related-item:hover { color: var(--terracotta); }
.related-item-title {
  font-family: var(--serif-display);
  font-weight: 400;
  font-size: 19px;
  margin-bottom: 4px;
}
.related-item-desc {
  font-size: 14px;
  color: var(--ink-mute);
}

/* ---------- DISCLAIMER ---------- */
.disclaimer {
  max-width: var(--max-prose);
  margin: 0 auto;
  padding: 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-mute);
  font-style: italic;
  border-top: 1px solid var(--rule-faint);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--ink);
  color: rgba(250, 247, 242, 0.6);
  padding: 50px 40px;
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
}
.footer a { color: var(--gold); }
.footer-brand {
  font-family: var(--serif-display);
  font-size: 18px;
  color: var(--paper);
  margin-bottom: 12px;
}
