/* ===== READING PROGRESS ===== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ===== ANIMATIONS ===== */
@keyframes dropCapReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes leafDrift {
  0%,
  100% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(3deg) translateY(-6px);
  }
  75% {
    transform: rotate(-2deg) translateY(4px);
  }
}
@keyframes heroGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes blobDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(15px, -10px) scale(1.03);
  }
  66% {
    transform: translate(-10px, 8px) scale(0.97);
  }
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition:
    background 0.4s,
    box-shadow 0.4s,
    padding 0.4s,
    top 0.4s;
}
.nav.scrolled {
  background: rgba(251, 248, 245, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow:
    0 1px 3px rgba(45, 37, 32, 0.06),
    0 0 0 1px rgba(237, 232, 227, 0.5);
  padding: 10px 40px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-1);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}
.nav-links a:hover {
  color: var(--text-1);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}
.nav-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 16px rgba(196, 114, 90, 0.25);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  letter-spacing: 0.01em;
}
.nav-cta:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 20px rgba(196, 114, 90, 0.35);
}
.nav-cta:active {
  transform: scale(0.97);
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-1);
  border-radius: 1px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(251, 248, 245, 0.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-1);
  text-decoration: none;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.4s,
    transform 0.4s,
    color 0.2s;
}
.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a:hover {
  color: var(--primary);
}

/* ===== ARTICLE HERO ===== */
.article-hero {
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    var(--primary-light) 0%,
    var(--bg) 40%,
    var(--accent-light) 70%,
    var(--secondary-light) 100%
  );
  background-size: 200% 200%;
  animation: heroGradientShift 16s ease infinite;
}
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    rgba(251, 248, 245, 0.55) 0%,
    rgba(251, 248, 245, 0.4) 50%,
    rgba(251, 248, 245, 0.5) 100%
  );
}
.article-hero-botanical {
  position: absolute;
  top: 80px;
  right: -20px;
  width: 280px;
  height: 280px;
  pointer-events: none;
  opacity: 0.06;
  animation: leafDrift 12s ease-in-out infinite;
}
.article-hero-botanical-2 {
  position: absolute;
  bottom: -40px;
  left: -30px;
  width: 200px;
  height: 200px;
  pointer-events: none;
  opacity: 0.04;
  animation: leafDrift 15s ease-in-out infinite reverse;
}
.article-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
}
/* Side-by-side layout for fruit hero */
.article-hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 28px;
}
.article-hero-layout .article-hero-title {
  flex: 1;
  margin-bottom: 0;
}
.article-hero-fruit {
  flex-shrink: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}
.article-hero-fruit img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
  animation: fruitFloat 3s ease-in-out infinite;
}
@keyframes fruitFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.article-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 28px;
  text-shadow: 0 1px 3px rgba(251, 248, 245, 0.95);
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.breadcrumbs a {
  color: var(--text-1);
  text-decoration: none;
  transition: color 0.2s;
  text-shadow: 0 1px 3px rgba(251, 248, 245, 0.95);
}
.breadcrumbs a:hover {
  color: var(--primary);
}
.breadcrumbs .separator {
  font-size: 10px;
  opacity: 0.4;
}
.breadcrumbs .current {
  color: var(--text-2);
}

/* Category badge */
.article-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 10px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.badge-weekly {
  background: var(--primary-light);
  color: var(--primary);
}
.badge-guides {
  background: var(--secondary-light);
  color: #5a7e64;
}
.badge-symptoms {
  background: #ede4f5;
  color: #7e5ba5;
}
.badge-can-i {
  background: var(--accent-light);
  color: #a07b4f;
}
.badge-emotional {
  background: #f5e4e9;
  color: #a05a6e;
}
.badge-early-pregnancy {
  background: #e0eef5;
  color: #4a7b95;
}
.badge-partner {
  background: var(--secondary-light);
  color: var(--secondary);
}

/* Title */
.article-hero-title {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1.12;
  color: var(--text-1);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
  text-shadow:
    0 1px 2px rgba(251, 248, 245, 0.8),
    0 2px 8px rgba(251, 248, 245, 0.6);
}

/* Subtitle */
.article-hero-subtitle {
  font-size: 19px;
  line-height: 1.65;
  color: var(--text-2);
  max-width: 620px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
  text-shadow:
    0 1px 2px rgba(251, 248, 245, 0.9),
    0 2px 6px rgba(251, 248, 245, 0.7);
}

/* Author row */
.article-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.article-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.article-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
  border: 2px solid var(--surface);
  box-shadow: 0 2px 8px rgba(45, 37, 32, 0.08);
  overflow: hidden;
}
.article-author-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
}
.article-author-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.article-meta-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  opacity: 0.5;
}
.article-meta-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  text-shadow: 0 1px 3px rgba(251, 248, 245, 0.9);
}
.article-meta-info span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.article-meta-info svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* Share in hero meta row */
.hero-share {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

/* ===== ARTICLE BODY ===== */
.article-wrapper {
  display: flex;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 40px 80px;
  position: relative;
}

/* Table of Contents sidebar */
.article-toc {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  align-self: flex-start;
  padding-top: 8px;
}
.toc-label {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--primary);
  opacity: 0.4;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.toc-list a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-3);
  text-decoration: none;
  padding: 8px 0 8px 16px;
  border-left: 2px solid var(--border-light);
  display: block;
  transition:
    color 0.25s,
    border-color 0.25s;
  line-height: 1.4;
}
.toc-list a:hover {
  color: var(--text-1);
  border-left-color: var(--accent);
}
.toc-list a.active {
  color: var(--primary);
  border-left-color: var(--primary);
  font-weight: 700;
}

/* Share — sidebar */
.toc-share {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.toc-share-label {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-share-label::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}
.share-icons {
  display: flex;
  gap: 8px;
}
.share-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s;
  text-decoration: none;
}
.share-icon:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-2px);
}
.share-icon svg {
  width: 16px;
  height: 16px;
}
.share-icon.copied {
  background: var(--secondary-light);
  color: var(--secondary);
}

/* Share — end of article */
.article-share {
  margin: 48px 0 0;
  padding: 32px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 20px;
}
.article-share-text {
  flex: 1;
}
.article-share-title {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-1);
  margin-bottom: 4px;
}
.article-share-subtitle {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.5;
}
.share-icons-inline {
  display: flex;
  gap: 8px;
}
.share-icon-lg {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s,
    transform 0.25s,
    border-color 0.25s;
  text-decoration: none;
}
.share-icon-lg:hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(196, 114, 90, 0.2);
  transform: translateY(-2px);
}
.share-icon-lg svg {
  width: 18px;
  height: 18px;
}
.share-icon-lg.copied {
  background: var(--secondary-light);
  color: var(--secondary);
  border-color: rgba(123, 158, 135, 0.2);
}

/* Copy tooltip */
.share-icon[data-tooltip]::after,
.share-icon-lg[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  color: var(--surface);
  background: var(--text-1);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.share-icon[data-tooltip]:hover::after,
.share-icon-lg[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.share-icon,
.share-icon-lg {
  position: relative;
}

/* Main content */
.article-content {
  flex: 1;
  min-width: 0;
  max-width: 720px;
}

/* Typographic styles */
.article-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-1);
  margin: 56px 0 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  scroll-margin-top: 100px;
}
.article-content h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--text-1);
  margin: 40px 0 14px;
  line-height: 1.25;
}
.article-content p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 24px;
}
.article-content ul,
.article-content ol {
  margin: 0 0 28px 4px;
  padding-left: 20px;
}
.article-content li {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 10px;
  padding-left: 6px;
}
.article-content li::marker {
  color: var(--primary);
}
.article-content strong {
  color: var(--text-1);
  font-weight: 700;
}
.article-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--primary-light);
  text-underline-offset: 3px;
  text-decoration-thickness: 2px;
  transition:
    color 0.25s,
    text-decoration-color 0.25s;
}
.article-content a:hover {
  color: var(--primary-dark);
  text-decoration-color: var(--primary);
}

/* Tables */
.article-content table {
  width: 100%;
  margin: 28px 0;
  border-collapse: collapse;
  font-size: 15px;
}
.article-content thead th {
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  padding: 12px 16px;
  border-bottom: 2px solid var(--border);
  text-align: left;
}
.article-content tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-2);
}
.article-content tbody tr:hover {
  background: var(--border-light);
}

/* Drop cap on first paragraph */
.article-content > p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4.2em;
  float: left;
  line-height: 0.78;
  margin-right: 10px;
  margin-top: 6px;
  color: var(--primary);
  animation: dropCapReveal 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Pull quote */
.pull-quote {
  margin: 48px 0 48px -20px;
  padding: 28px 32px 28px 28px;
  border-left: 3px solid var(--primary);
  background: linear-gradient(135deg, var(--primary-light), transparent 80%);
  border-radius: 0 16px 16px 0;
  position: relative;
}
.pull-quote::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  pointer-events: none;
}
.pull-quote p {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--text-1);
  line-height: 1.5;
  margin-bottom: 8px;
}
.pull-quote cite {
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Info box / callout */
.info-box {
  margin: 36px 0;
  padding: 28px 28px 28px 64px;
  background: var(--secondary-light);
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(123, 158, 135, 0.15);
}
.info-box::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%237B9E87' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 16v-4'/%3E%3Cpath d='M12 8h.01'/%3E%3C/svg%3E");
  background-size: contain;
}
.info-box h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--secondary);
  margin-bottom: 8px;
}
.info-box p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 0;
}

/* Tip box */
.tip-box {
  margin: 36px 0;
  padding: 28px 28px 28px 64px;
  background: var(--accent-light);
  border-radius: 16px;
  position: relative;
  border: 1px solid rgba(212, 165, 116, 0.15);
}
.tip-box::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 28px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23D4A574' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2z'/%3E%3C/svg%3E");
  background-size: contain;
}
.tip-box h4 {
  font-family: var(--font-display);
  font-size: 18px;
  color: #a07b4f;
  margin-bottom: 8px;
}
.tip-box p {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 0;
}

/* Disclaimer */
.article-disclaimer {
  font-size: 14px;
  color: var(--text-3);
  font-style: italic;
  margin-bottom: 32px;
  padding: 16px 20px;
  background: var(--border-light);
  border-radius: 12px;
  line-height: 1.6;
}

/* Content image placeholder */
.article-image {
  margin: 40px 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.article-image-placeholder {
  width: 100%;
  height: 340px;
  background: linear-gradient(
    135deg,
    var(--primary-light) 0%,
    var(--accent-light) 50%,
    var(--secondary-light) 100%
  );
  background-size: 200% 200%;
  animation: heroGradientShift 12s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.article-image-placeholder::after {
  content: '';
  width: 80px;
  height: 80px;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8 C43 18, 52 22, 58 32 C64 42, 56 54, 40 58 C24 54, 16 42, 22 32 C28 22, 37 18, 40 8Z' fill='none' stroke='rgba(255,255,255,0.3)' stroke-width='1'/%3E%3Ccircle cx='40' cy='35' r='4' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: contain;
  opacity: 0.6;
}
.article-image-caption {
  font-family: var(--font-accent);
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  padding: 12px 0 0;
  font-weight: 500;
}

/* Section divider */
.content-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 56px 0;
  color: var(--border);
}
.content-divider::before,
.content-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.content-divider svg {
  width: 20px;
  height: 20px;
  opacity: 0.3;
}

/* ===== INLINE WAITLIST CTA ===== */
.article-cta {
  margin: 56px 0;
  padding: 40px;
  background: var(--primary-light);
  border-radius: 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 114, 90, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.article-cta-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--text-1);
  margin-bottom: 10px;
  position: relative;
}
.article-cta-title em {
  color: var(--primary);
  font-style: italic;
}
.article-cta-desc {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.article-cta-note {
  font-size: 12px;
  color: var(--text-3);
  position: relative;
}

/* ===== RELATED ARTICLES ===== */
.related-section {
  padding: 80px 40px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}
.related-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}
.related-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-1);
}
.related-view-all {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.related-view-all:hover {
  gap: 10px;
}
.related-view-all svg {
  width: 14px;
  height: 14px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.35s;
  display: block;
}
.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(45, 37, 32, 0.1);
}
.article-card-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.article-card-img-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8 C43 18, 52 22, 58 32 C64 42, 56 54, 40 58 C24 54, 16 42, 22 32 C28 22, 37 18, 40 8Z' fill='none' stroke='rgba(255,255,255,0.12)' stroke-width='0.8'/%3E%3Ccircle cx='40' cy='35' r='3' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 100px 100px;
  background-position: center;
}
.article-card:hover .article-card-img-bg {
  transform: scale(1.06);
}
.article-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 8px;
}
.article-card-body {
  padding: 20px;
}
.article-card-title {
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.35;
}
.article-card-excerpt {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.article-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--text-1);
  position: relative;
  overflow: hidden;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-accent {
  height: 2px;
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--accent),
    var(--secondary),
    var(--accent),
    var(--primary)
  );
  background-size: 200% 100%;
  animation: footerGradient 8s ease infinite;
}
@keyframes footerGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.footer-main {
  padding: 64px 40px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--bg);
  margin-bottom: 10px;
}
.footer-brand-name span {
  color: var(--primary);
}
.footer-brand-desc {
  font-size: 14px;
  color: rgba(181, 173, 165, 0.65);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(251, 248, 245, 0.05);
  border: 1px solid rgba(251, 248, 245, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(181, 173, 165, 0.5);
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.footer-social:hover {
  background: rgba(196, 114, 90, 0.12);
  color: var(--primary);
  border-color: rgba(196, 114, 90, 0.2);
  transform: translateY(-2px);
}
.footer-col-title {
  font-family: var(--font-accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(181, 173, 165, 0.4);
  margin-bottom: 20px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-col-links a {
  font-size: 14px;
  color: rgba(251, 248, 245, 0.55);
  text-decoration: none;
  transition: color 0.25s;
  font-weight: 400;
}
.footer-col-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  margin: 48px 40px 0;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(181, 173, 165, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(181, 173, 165, 0.35);
  font-family: var(--font-accent);
  letter-spacing: 0.01em;
}
.footer-made {
  font-size: 12px;
  color: rgba(181, 173, 165, 0.35);
  font-family: var(--font-accent);
  letter-spacing: 0.01em;
}
.footer-botanical {
  position: absolute;
  bottom: -40px;
  right: -20px;
  z-index: 1;
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: 0.02;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .article-toc {
    display: none;
  }
  .article-wrapper {
    max-width: 760px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }
  .nav.scrolled {
    padding: 10px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }

  .article-hero {
    padding: 110px 20px 50px;
  }
  .article-hero-title {
    font-size: 34px;
  }
  .article-hero-subtitle {
    font-size: 16px;
  }
  .article-hero-botanical {
    display: none;
  }
  .article-hero-botanical-2 {
    display: none;
  }
  .article-hero-layout {
    flex-direction: column;
    gap: 20px;
  }
  .article-hero-fruit {
    text-align: center;
  }
  .article-hero-fruit img {
    width: 120px;
  }

  .article-meta-row {
    gap: 14px;
  }
  .article-meta-divider {
    display: none;
  }

  .article-wrapper {
    padding: 40px 20px 60px;
  }
  .article-content h2 {
    font-size: 26px;
    margin-top: 44px;
  }
  .article-content h3 {
    font-size: 20px;
  }
  .article-content p {
    font-size: 16px;
  }
  .article-content li {
    font-size: 15px;
  }

  .pull-quote {
    margin-left: 0;
  }
  .pull-quote p {
    font-size: 19px;
  }

  .article-image-placeholder {
    height: 220px;
  }

  .article-cta {
    padding: 32px 20px;
    margin: 40px 0;
  }
  .article-cta-title {
    font-size: 22px;
  }

  .article-share {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px;
  }
  .share-icons-inline {
    justify-content: center;
  }

  .related-section {
    padding: 60px 20px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-main {
    padding: 48px 20px 0;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    margin: 36px 20px 0;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .article-hero-title {
    font-size: 28px;
  }
  .breadcrumbs {
    font-size: 11px;
  }
  .article-content > p:first-of-type::first-letter {
    font-size: 3.4em;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}
