/* Williamson Turf Co. — Journal shared styles */
:root {
  --bg: #07140e;
  --bg-2: #0b1d15;
  --surface: #102a1f;
  --surface-2: #163528;
  --border: rgba(212, 175, 55, 0.18);
  --border-strong: rgba(212, 175, 55, 0.35);
  --emerald: #2fb37a;
  --emerald-2: #4ed29b;
  --gold: #d4af37;
  --gold-2: #e8c870;
  --text: #f3efe3;
  --muted: #b9c4bd;
  --soft: #8b9a92;
  --max: 1180px;
  --radius: 14px;
  --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.6);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; letter-spacing: -0.01em; line-height: 1.2; margin: 0 0 0.6em; color: var(--text); }
h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin-top: 1.8em; }
h3 { font-size: 1.25rem; margin-top: 1.4em; }
p { margin: 0 0 1.1em; color: var(--muted); }
a { color: var(--gold-2); text-decoration: none; }
a:hover { color: var(--gold); }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 20, 14, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--max); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: 10px; font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--text); font-weight: 600; }
.brand-mark { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--gold)); display: inline-block; position: relative; }
.brand-mark::after { content: ""; position: absolute; inset: 5px; border-radius: 50%; background: var(--bg); }
.brand-mark::before { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; transform: translate(-50%, -50%); border-radius: 50%; background: linear-gradient(135deg, var(--emerald-2), var(--gold-2)); z-index: 1; }
.nav-links { display: none; gap: 28px; align-items: center; font-size: 0.95rem; }
.nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--text); }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 18px; border: 1px solid var(--border-strong); border-radius: 999px; color: var(--gold-2); font-weight: 500; font-size: 0.95rem; }
.nav-cta:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold); }
@media (min-width: 860px) { .nav-links { display: flex; } }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-2);
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.04);
  margin-bottom: 24px;
}
.eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }

/* Blog index hero */
.journal-hero {
  position: relative;
  padding: 80px 0 50px;
  overflow: hidden;
  text-align: center;
}
.journal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(47, 179, 122, 0.18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: -1;
}
.journal-hero h1 { margin-bottom: 16px; }
.journal-hero h1 em { font-style: italic; color: var(--gold-2); font-weight: 500; }
.journal-hero p { max-width: 640px; margin: 0 auto 0; font-size: 1.1rem; }

/* Article grid */
.article-grid-section { padding: 60px 0 100px; }
.article-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px) { .article-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .article-grid { grid-template-columns: 1fr 1fr 1fr; } }
.article-card {
  display: flex; flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  transition: transform 0.2s ease, border-color 0.2s ease;
  color: var(--text);
}
.article-card:hover { transform: translateY(-4px); border-color: var(--border-strong); color: var(--text); }
.article-card .tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 14px; }
.article-card h2 { font-size: 1.25rem; margin: 0 0 12px; line-height: 1.3; }
.article-card p { font-size: 0.95rem; margin: 0 0 18px; flex-grow: 1; }
.article-card .read-more { font-size: 0.9rem; color: var(--gold-2); font-weight: 500; }
.article-card .read-more::after { content: " →"; transition: margin-left 0.15s ease; }
.article-card:hover .read-more { color: var(--gold); }

/* Article page */
.article-hero {
  padding: 70px 0 30px;
  position: relative;
}
.article-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 80% -20%, rgba(47, 179, 122, 0.12), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  z-index: -1;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.85rem; color: var(--soft); margin-bottom: 18px; }
.article-meta .tag { color: var(--gold-2); letter-spacing: 0.16em; text-transform: uppercase; }
.article-hero h1 { max-width: 820px; margin: 0 0 18px; }
.article-hero .lede { max-width: 720px; font-size: 1.15rem; color: var(--muted); }
.breadcrumbs { font-size: 0.85rem; color: var(--soft); margin-bottom: 24px; }
.breadcrumbs a { color: var(--muted); }
.breadcrumbs a:hover { color: var(--gold-2); }
.breadcrumbs span { margin: 0 8px; color: var(--soft); }

.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 30px 0 70px;
  font-size: 1.05rem;
}
.article-body p { color: var(--muted); }
.article-body ul, .article-body ol { color: var(--muted); padding-left: 22px; margin-bottom: 1.2em; }
.article-body li { margin-bottom: 0.5em; }
.article-body strong { color: var(--text); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 6px 20px;
  margin: 24px 0;
  color: var(--text);
  font-style: italic;
  background: rgba(212, 175, 55, 0.04);
  border-radius: 4px;
}
.article-body h2 { color: var(--text); }
.article-body h3 { color: var(--gold-2); font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; letter-spacing: 0; }

/* Inline article CTA */
.article-cta {
  margin: 50px 0 20px;
  padding: 32px 30px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-strong);
  text-align: center;
}
.article-cta h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin: 0 0 8px; color: var(--text); }
.article-cta p { margin: 0 0 20px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.98rem; cursor: pointer; border: 1px solid transparent; transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease; text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-2) 100%); color: #06140d; border-color: transparent; box-shadow: 0 12px 30px -10px rgba(47, 179, 122, 0.55); }
.btn-primary:hover { transform: translateY(-1px); color: #06140d; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover { background: rgba(212, 175, 55, 0.08); color: var(--gold-2); }

/* Related */
.related { padding: 50px 0 80px; border-top: 1px solid var(--border); background: var(--bg-2); }
.related h2 { font-size: 1.6rem; margin-bottom: 28px; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .related-grid { grid-template-columns: 1fr 1fr 1fr; } }
.related-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}
.related-card:hover { border-color: var(--border-strong); color: var(--text); }
.related-card .tag { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 8px; display: block; }
.related-card h3 { font-size: 1.05rem; margin: 0; line-height: 1.35; color: var(--text); }

/* Footer */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 50px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; align-items: start; margin-bottom: 30px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-grid h4 { font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin: 0 0 14px; font-weight: 600; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 0.95rem; display: block; margin-bottom: 8px; }
.footer-bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--soft); font-size: 0.85rem; }
