/* ── Waypoint Guides — Shared Blog & Content Page Styles ── */
:root {
  --green:   #3A6935;
  --green-d: #1A3818;
  --terra:   #C05535;
  --amber:   #E09838;
  --sand:    #FAF5EC;
  --sand-d:  #F0E8D8;
  --ink:     #1C1C1C;
  --mid:     #4A4A4A;
  --light:   #7A7A7A;
  --white:   #FFFFFF;
  --radius:  10px;
  --shadow:  0 4px 24px rgba(28,28,28,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--green-d);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.1rem); font-weight: 600; margin: 2.4rem 0 0.8rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); font-weight: 600; margin: 1.8rem 0 0.6rem; }
h4 { font-size: 1.05rem; font-weight: 600; margin: 1.4rem 0 0.5rem; }
p  { color: var(--mid); margin-bottom: 1.2rem; }
p:last-child { margin-bottom: 0; }
ul, ol { color: var(--mid); padding-left: 1.4rem; margin-bottom: 1.2rem; }
li { margin-bottom: 0.45rem; }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }
blockquote {
  border-left: 4px solid var(--terra);
  margin: 1.6rem 0;
  padding: 1rem 1.4rem;
  background: var(--sand);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink);
}
blockquote p { color: var(--ink); margin: 0; }

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,245,236,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(58,105,53,0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-d);
}
.nav-links { display: flex; align-items: center; gap: 24px; list-style: none; }
.nav-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); text-decoration: none; }
.btn-nav {
  background: var(--terra);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-nav:hover { background: #a84529; text-decoration: none; }
/* ── Mobile hamburger menu ── */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  z-index: 200;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-d);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0; bottom: 0;
  background: rgba(250,245,236,0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  padding: 40px 28px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-d);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .btn-nav-mobile {
  background: var(--terra);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  margin-top: 8px;
  transition: background 0.2s;
}
.mobile-menu .btn-nav-mobile:hover { background: #a84529; }

@media (max-width: 700px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .menu-toggle { display: flex; }
}

/* ── Article Layout ── */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.article-hero {
  background: var(--green-d);
  color: white;
  padding: 72px 0 60px;
}
.article-hero .article-wrap { }
.article-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}
.article-hero h1 {
  color: white;
  margin-bottom: 18px;
}
.article-hero .article-deck {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin-bottom: 24px;
}
.article-meta {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.article-meta span { display: flex; align-items: center; gap: 5px; }

.article-body {
  padding: 56px 0 80px;
}
.article-body > * { margin-bottom: 1.4rem; }

/* ── Inline CTA box ── */
.cta-box {
  background: var(--sand);
  border: 2px solid rgba(58,105,53,0.15);
  border-radius: 14px;
  padding: 32px 36px;
  margin: 2.8rem 0;
  text-align: center;
}
.cta-box h3 {
  color: var(--green-d);
  margin: 0 0 10px;
  font-size: 1.35rem;
}
.cta-box p {
  font-size: 0.95rem;
  color: var(--mid);
  margin: 0 0 20px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 14px rgba(192,85,53,0.25);
}
.btn-primary:hover { background: #a84529; transform: translateY(-1px); text-decoration: none; }
.cta-price-note {
  font-size: 0.8rem;
  color: var(--light);
  margin-top: 10px;
}

/* ── Callout / tip box ── */
.callout {
  background: rgba(58,105,53,0.07);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 1.6rem 0;
}
.callout p { margin: 0; color: var(--ink); font-size: 0.95rem; }
.callout strong { color: var(--green-d); }

.warning {
  background: rgba(192,85,53,0.07);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 1.6rem 0;
}
.warning p { margin: 0; color: var(--ink); font-size: 0.95rem; }

/* ── Trap / Tip cards ── */
.trap-card {
  border: 1px solid rgba(192,85,53,0.2);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 1.4rem 0;
  background: white;
}
.trap-card .trap-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 6px;
}
.trap-card h4 { color: var(--green-d); margin: 0 0 8px; }
.trap-card p { margin: 0; font-size: 0.93rem; }
.trap-card .instead {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--sand-d);
  font-size: 0.9rem;
}
.trap-card .instead strong { color: var(--green); }

/* ── FAQ section ── */
.article-faq { margin-top: 3rem; }
.article-faq h2 { margin-bottom: 1.4rem; }
.faq-item { border-bottom: 1px solid rgba(58,105,53,0.12); }
.faq-item:first-of-type { border-top: 1px solid rgba(58,105,53,0.12); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q:hover { color: var(--green); }
.faq-arrow { font-size: 1.1rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner { padding: 0 0 18px; font-size: 0.93rem; color: var(--mid); }

/* ── Footer ── */
.site-footer {
  background: var(--green-d);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.55); }
.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
@media (max-width: 768px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer-cols { grid-template-columns: 1fr; }
  .article-hero { padding: 48px 0 40px; }
  .cta-box { padding: 24px 20px; }
}
