/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f2ede4;
  color: #1a1a1a;
  line-height: 1.7;
  font-size: 17px;
  padding-bottom: 80px; /* space for sticky bar */
}

/* =============================================
   NAV
   ============================================= */
.topnav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: #f2ede4;
  border-bottom: 1px solid #ddd5c5;
}

.brand {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #1a1a1a;
  text-decoration: none;
  letter-spacing: -0.3px;
}

.brand-bold { font-weight: 700; color: #2d5a27; }

.nav-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: #888;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
}

.nav-links a:hover { color: #2d5a27; }

/* =============================================
   ARTICLE LAYOUT
   ============================================= */
.article-wrap {
  padding: 56px 20px 60px;
}

.article-container {
  max-width: 680px;
  margin: 0 auto;
}

/* =============================================
   LABEL
   ============================================= */
.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2d5a27;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* =============================================
   HEADLINE
   ============================================= */
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

h1 em {
  font-style: italic;
  color: #2d5a27;
}

/* =============================================
   BYLINE
   ============================================= */
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2d5a27;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.byline-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
}

.dot { color: #999; margin: 0 2px; }

.brand-link {
  color: #2d5a27;
  text-decoration: none;
  font-weight: 600;
}

.meta {
  font-size: 12px;
  color: #888;
}

/* =============================================
   DIVIDERS
   ============================================= */
.divider {
  border: none;
  border-top: 1px solid #ddd5c5;
  margin: 24px 0 32px;
}

.section-rule {
  border: none;
  border-top: 1px solid #ddd5c5;
  margin: 36px 0;
}

/* =============================================
   ARTICLE BODY
   ============================================= */
.article-body p {
  margin-bottom: 20px;
  color: #2a2a2a;
  font-size: 17px;
  line-height: 1.75;
}

/* =============================================
   DROP CAP
   ============================================= */
.drop-cap {
  float: left;
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 0.75;
  margin: 8px 8px 0 0;
  color: #2d5a27;
}

/* =============================================
   WHAT'S INCLUDED BOX
   ============================================= */
.included-box {
  border: 1px solid #ddd5c5;
  border-radius: 10px;
  padding: 24px;
  background: #faf7f2;
  margin: 32px 0;
}

.included-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px;
  color: #888 !important;
  text-transform: uppercase;
  margin-bottom: 18px !important;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #e8e0d4;
}

.included-item:last-child { border-bottom: none; padding-bottom: 0; }

.included-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.included-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.included-text strong {
  font-size: 15px;
  color: #1a1a1a;
}

.included-sub {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.price-strike {
  font-size: 13px;
  color: #bbb;
  text-decoration: line-through;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================
   CALLOUT BOX
   ============================================= */
.callout-box {
  background: #eef4ec;
  border-left: 3px solid #2d5a27;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 28px 0;
}

.callout-box p {
  font-size: 15px !important;
  color: #2a3a28 !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}

/* =============================================
   BLOCKQUOTE
   ============================================= */
blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(18px, 3.5vw, 24px);
  line-height: 1.5;
  color: #2a2a2a;
  text-align: center;
  padding: 28px 24px;
  margin: 36px 0;
  border-top: 2px solid #1a1a1a;
  border-bottom: 2px solid #1a1a1a;
}

/* =============================================
   LIST
   ============================================= */
.article-list {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.article-list li {
  margin-bottom: 14px;
  color: #2a2a2a;
  font-size: 17px;
  line-height: 1.75;
}

.article-list li strong { color: #1a1a1a; }

/* =============================================
   CTA BOX
   ============================================= */
.cta-box {
  background: #1e3d1a;
  border-radius: 12px;
  padding: 36px 32px;
  text-align: center;
  margin: 40px 0;
}

.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.cta-box p {
  font-size: 15px !important;
  color: #b8d4b5 !important;
  margin-bottom: 22px !important;
  line-height: 1.5 !important;
}

.cta-btn {
  display: inline-block;
  background: #c9a227;
  color: #1a1a1a;
  text-decoration: none;
  padding: 15px 36px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: background 0.15s ease, transform 0.1s ease;
}

.cta-btn:hover {
  background: #e0b52e;
  transform: translateY(-1px);
}

.cta-note {
  font-size: 12px !important;
  color: #7a9978 !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

/* =============================================
   COOKIE CONSENT BANNER (GDPR compliance)
   ============================================= */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  z-index: 9999;
  border-top: 2px solid #2d5a27;
}

.cookie-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  flex: 1;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
  margin: 0;
  min-width: 200px;
}

.cookie-inner p a { color: #8bc48a; }

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btns button {
  padding: 9px 20px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

#cookie-accept {
  background: #2d5a27;
  color: #fff;
}

#cookie-accept:hover { background: #3a7233; }

#cookie-decline {
  background: transparent;
  color: #999;
  border: 1px solid #444 !important;
}

#cookie-decline:hover { color: #ccc; }

/* =============================================
   FTC DISCLOSURE LINE (required above content)
   ============================================= */
.disclosure-line {
  font-size: 12px !important;
  color: #aaa !important;
  margin-bottom: 20px !important;
  line-height: 1.4 !important;
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.legal-date {
  font-size: 13px;
  color: #999;
  margin-bottom: 36px;
}

.legal-body h2 {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 32px 0 10px;
}

.legal-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-body ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-body ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-body a { color: #2d5a27; }

/* =============================================
   FOOTER LINKS
   ============================================= */
.footer-links {
  margin-top: 10px;
  font-size: 12px;
}

.footer-links a {
  color: #888;
  text-decoration: none;
}

.footer-links a:hover { color: #aaa; text-decoration: underline; }

.footer-links span { color: #555; margin: 0 6px; }

/* =============================================
   SECTION HEADINGS
   ============================================= */
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}

/* =============================================
   SOCIAL PROOF ROW
   ============================================= */
.proof-row {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 48px 0 0;
  padding: 32px 0;
  border-top: 1px solid #ddd5c5;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
  flex: 1;
  min-width: 140px;
}

.proof-num {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: #2d5a27;
  line-height: 1.2;
}

.proof-label {
  font-size: 12px;
  color: #888;
  margin-top: 4px;
  line-height: 1.4;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: #ddd5c5;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .proof-row { flex-direction: column; gap: 20px; }
  .proof-divider { width: 40px; height: 1px; }
  .proof-item { padding: 0; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #1a1a1a;
  padding: 24px 20px;
}

.site-footer p {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* =============================================
   STICKY BOTTOM BAR
   ============================================= */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  padding: 14px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 999;
  border-top: 2px solid #c9a227;
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sticky-text strong {
  font-size: 14px;
  color: #fff;
}

.sticky-text span {
  font-size: 12px;
  color: #888;
}

.sticky-btn {
  display: inline-block;
  background: #1e3d1a;
  color: #fff;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #2d5a27;
  transition: background 0.15s;
}

.sticky-btn:hover { background: #2d5a27; }

/* =============================================
   PATTERN INTERRUPT
   ============================================= */
.article-image {
  margin: 28px 0;
}
.article-image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.article-image figcaption {
  font-size: 13px;
  color: #888;
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

.pattern-interrupt {
  background: #fff8ee;
  border: 1px solid #e8d8b0;
  border-left: 3px solid #c9a227;
  border-radius: 0 8px 8px 0;
  padding: 18px 20px;
  margin: 24px 0 12px;
}

.pattern-interrupt p {
  font-size: 15px !important;
  color: #3a2e1a !important;
  margin-bottom: 0 !important;
  line-height: 1.65 !important;
}

/* =============================================
   SKIP LINK
   ============================================= */
.skip-link {
  font-size: 13px;
  color: #2d5a27;
  text-decoration: none;
  font-weight: 500;
  opacity: 0.75;
  display: inline-block;
  margin-bottom: 24px;
}

.skip-link:hover { opacity: 1; text-decoration: underline; }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 520px) {
  .topnav { padding: 14px 16px; flex-wrap: wrap; gap: 10px; }
  .nav-tagline { display: none; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .article-wrap { padding: 36px 16px 50px; }

  h1 { font-size: 26px; }

  .drop-cap { font-size: 56px; }

  .included-box { padding: 18px 16px; }

  .cta-box { padding: 28px 20px; }

  .cta-btn { display: block; text-align: center; padding: 15px 20px; }

  blockquote { font-size: 18px; padding: 22px 16px; }

  .sticky-inner { gap: 12px; }

  .sticky-text span { display: none; }

  .sticky-btn { padding: 10px 18px; font-size: 13px; }
}
