* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: #1f1c18;
  background: #fcfaf7;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, .featured-content h3, .featured-post-card h3, .about-box h2, .category-intro h1, .article-wrap h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid #9a6e42;
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.category-card-link:focus-visible,
.post-card:focus-visible {
  outline-offset: 4px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 250, 247, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eee6db;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 69px;
  height: 68px;
  object-fit: contain;
  border-radius: 15px;
  background: transparent;
  border: none;
  padding: 0;
}

.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.main-nav a {
  font-size: 0.96rem;
  color: #665f57;
}

.main-nav a:hover {
  color: #1f1c18;
}

.hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(circle at top right, rgba(213, 184, 147, 0.16), transparent 28%),
    linear-gradient(to bottom, #f8f2ea, #fcfaf7);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
}

.eyebrow,
.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9a6e42;
  margin: 0 0 12px;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.025em;
  max-width: 14ch;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  font-size: 1.06rem;
  color: #5f574f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  transition: 0.18s ease;
}

.btn-primary {
  color: #fff;
  background: #1f1c18;
}

.btn-primary:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-secondary {
  color: #1f1c18;
  background: #efe5d8;
}

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

.hero-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 32px;
  max-width: 460px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #eee4d7;
  color: #3d362e;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  min-width: 0;
}

.hero-tag-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #f5eadc;
  font-size: 1.15rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hero-tag[data-category="work-snacks"] .hero-tag-icon { background: #f5eadc; }
.hero-tag[data-category="travel-snacks"] .hero-tag-icon { background: #dcebe7; }
.hero-tag[data-category="fruit-snacks"] .hero-tag-icon { background: #fbe4e0; }
.hero-tag[data-category="sweet-cravings"] .hero-tag-icon { background: #ece1f5; }

.hero-tag-label {
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-tag:hover {
  transform: translateY(-2px);
  border-color: #d8c4a3;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(57, 37, 16, 0.06);
}

.hero-tag:hover .hero-tag-icon {
  transform: rotate(-6deg) scale(1.08);
}

.hero-image-card,
.featured-content,
.featured-visual,
.post-card,
.category-card,
.about-box,
.category-intro,
.category-post-card,
.article-wrap {
  border-radius: 26px;
  border: 1px solid #eee3d7;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(57, 37, 16, 0.04);
}

.hero-image-card {
  overflow: hidden;
  min-height: 420px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto 32px;
  padding-top: 8px;
  max-width: 720px;
}

.section-heading .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: #9a6e42;
}

.section-heading .section-label::before,
.section-heading .section-label::after {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #c8a878;
}

.section-heading h2 {
  margin: 0;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.06;
}

.section-link {
  font-weight: 700;
  color: #7c5431;
}

.section-read-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid #ead9c5;
  background: #fffaf2;
  color: #7c5431;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(57, 37, 16, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.section-read-all:hover {
  transform: translateY(-1px);
  border-color: #d8c4a3;
  box-shadow: 0 10px 22px rgba(57, 37, 16, 0.07);
}

.featured-section,
.latest-section,
.wire-section,
.categories-section,
.about-section {
  padding: 48px 0 18px;
}

.category-page,
.article-page {
  padding: 56px 0 24px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.featured-post-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: linear-gradient(180deg, #fffefb 0%, #fffaf2 100%);
}

.featured-post-card .post-card-image-link {
  aspect-ratio: 16 / 9;
  margin-bottom: 16px;
}

.featured-post-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(1.32rem, 1.8vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.featured-post-card p:not(.meta) {
  margin-bottom: 14px;
  color: #5b534b;
}

.featured-post-card .text-link {
  margin-top: auto;
}

.article-grid,
.category-grid {
  display: grid;
  gap: 16px;
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.post-card,
.category-card,
.about-box {
  padding: 20px;
}

.category-intro,
.category-post-card,
.article-wrap {
  padding: 24px;
}

.post-card h3,
.category-card h3,
.category-post-card h3 {
  margin: 10px 0 8px;
  line-height: 1.2;
}

.post-card {
  overflow: hidden;
}

.post-card-image-link {
  display: block;
  margin: -20px -20px 15px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f4ede4;
  border-bottom: 1px solid #eee3d7;
}

.post-card-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.post-card:hover .post-card-image {
  transform: scale(1.035);
}

.category-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.category-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 18px 16px;
  min-height: 126px;
}

.category-illustration::after {
  content: '';
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.04);
}

.category-illustration svg {
  width: 100%;
  max-width: 150px;
  height: auto;
}

.category-card[data-category="work-snacks"] .category-illustration {
  background: linear-gradient(135deg, #fdf6ea 0%, #f5eadc 100%);
}
.category-card[data-category="travel-snacks"] .category-illustration {
  background: linear-gradient(135deg, #ecf4f0 0%, #dcebe7 100%);
}
.category-card[data-category="fruit-snacks"] .category-illustration {
  background: linear-gradient(135deg, #fdf0ec 0%, #fbe4e0 100%);
}
.category-card[data-category="sweet-cravings"] .category-illustration {
  background: linear-gradient(135deg, #f4edfa 0%, #ece1f5 100%);
}
.category-card[data-category="comparisons"] .category-illustration {
  background: linear-gradient(135deg, #edf4f7 0%, #f6eadf 100%);
}

.category-card h3,
.category-card p,
.category-card .text-link {
  padding-left: 20px;
  padding-right: 20px;
}

.category-card h3 {
  margin-top: 18px;
}

.category-card .text-link {
  display: block;
  padding-bottom: 20px;
  margin-top: 4px;
}

.category-card-link:hover .category-illustration svg {
  transform: scale(1.05) rotate(-2deg);
  transition: transform 0.35s ease;
}

.category-illustration svg {
  transition: transform 0.35s ease;
}

.post-card h3,
.category-post-card h3 {
  font-size: 1.24rem;
}

.post-card p:not(.meta),
.category-card p {
  font-size: 0.95rem;
  line-height: 1.52;
  margin-bottom: 12px;
}

.post-card p,
.category-card p,
.about-box p,
.category-intro p,
.category-post-card p,
.article-wrap p,
.article-wrap li,
.meta {
  color: #5f574f;
}

.category-card-link:hover,
.post-card:hover {
  transform: translateY(-2px);
  transition: 0.18s ease;
}

.post-card-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.skeleton {
  display: block;
  background: linear-gradient(90deg, #f3ece2 0%, #faf4ea 50%, #f3ece2 100%);
  background-size: 200% 100%;
  border-radius: 8px;
  animation: skeleton-shimmer 1.4s ease-in-out infinite;
}

.skeleton-pill {
  width: 90px;
  height: 28px;
  border-radius: 999px;
}

.skeleton-meta {
  width: 140px;
  height: 12px;
}

.skeleton-title {
  width: 90%;
  height: 22px;
}

.skeleton-line {
  width: 100%;
  height: 12px;
}

.skeleton-line.short {
  width: 60%;
}

@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}

.latest-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 28px;
  border-radius: 26px;
  border: 1px dashed #e2d4bf;
  background: #fdf8f1;
  color: #8b6037;
  margin: 0;
}

.skeleton-image {
  width: 100%;
  min-height: 320px;
  border-radius: 26px;
}

.featured-article-skeleton {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.newsletter-section {
  padding: 34px 0 18px;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  border-radius: 26px;
  border: 1px solid #eee3d7;
  background:
    radial-gradient(circle at top right, rgba(213, 184, 147, 0.18), transparent 38%),
    linear-gradient(135deg, #fdf6ec 0%, #f6ead8 100%);
  box-shadow: 0 12px 34px rgba(57, 37, 16, 0.05);
}

.newsletter-copy h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.newsletter-copy p {
  margin: 0;
  color: #5f574f;
}

.newsletter-copy .section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.newsletter-cadence {
  color: #8b6037;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.newsletter-meta-dot {
  color: #b9a988;
}

.newsletter-lede {
  font-size: 1rem;
  line-height: 1.6;
  margin: 4px 0 18px !important;
  color: #3d3830 !important;
}

.newsletter-what {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  gap: 8px;
}

.newsletter-what li {
  font-size: 0.95rem;
  color: #3d3830;
  line-height: 1.5;
  padding-left: 22px;
  position: relative;
}

.newsletter-what li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: #8b6037;
  font-weight: 600;
}

.newsletter-what li strong {
  color: #1f1c18;
  font-weight: 600;
}

.newsletter-activity {
  font-size: 0.85rem !important;
  color: #6b6258 !important;
  margin: 0 !important;
  padding-top: 12px;
  border-top: 1px solid rgba(184, 159, 122, 0.25);
}

.text-link-quiet {
  color: #1f1c18;
  text-decoration: none;
  border-bottom: 1px solid #d8cbb3;
  padding-bottom: 1px;
  transition: border-color 0.18s ease;
}

.text-link-quiet:hover {
  border-bottom-color: #1f1c18;
}

.newsletter-trust {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  font-size: 0.8rem;
  color: #6b6258;
  line-height: 1.5;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: stretch;
}

.newsletter-input {
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #e2d4bf;
  background: #ffffff;
  color: #1f1c18;
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.newsletter-input::placeholder {
  color: #9a9388;
}

.newsletter-input:focus-visible {
  outline: none;
  border-color: #9a6e42;
  box-shadow: 0 0 0 3px rgba(154, 110, 66, 0.18);
}

.newsletter-submit {
  white-space: nowrap;
}

.newsletter-status {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: #5f574f;
}

.newsletter-status[data-state="error"] {
  color: #b34a3c;
}

.newsletter-status[data-state="success"] {
  color: #3a7a64;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #eee3d7;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-number {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: 1.65rem;
  font-weight: 600;
  color: #1f1c18;
  line-height: 1;
}

.about-stat-label {
  font-size: 0.78rem;
  color: #6b6258;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-cta {
  margin: 18px 0 0;
}

.legal-wrap {
  width: min(780px, 100%);
  margin: 0 auto;
  padding: 32px;
  border-radius: 26px;
  border: 1px solid #eee3d7;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(57, 37, 16, 0.04);
}

.legal-wrap .section-label {
  margin-bottom: 14px;
}

.legal-wrap h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 8px;
}

.legal-wrap .legal-meta {
  margin: 0 0 28px;
  font-size: 0.9rem;
  color: #8a8276;
}

.legal-wrap h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 32px 0 10px;
  line-height: 1.2;
}

.legal-wrap h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 22px 0 8px;
  color: #1f1c18;
}

.legal-wrap p,
.legal-wrap li {
  color: #4f4842;
  font-size: 0.98rem;
  line-height: 1.7;
}

.legal-wrap ul {
  padding-left: 20px;
  margin: 0 0 16px;
}

.legal-wrap li {
  margin-bottom: 6px;
}

.legal-wrap a {
  color: #7c5431;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-wrap a:hover {
  color: #1f1c18;
}

.legal-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eee6db;
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 20px 0 8px;
}

.about-team-card {
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eee3d7;
  background: #fdf8f1;
}

.about-team-card h3 {
  margin: 0 0 4px;
  font-size: 1.02rem;
}

.about-team-card .role {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a6e42;
  margin: 0 0 8px;
}

.about-team-card p:last-child {
  margin: 0;
  font-size: 0.92rem;
  color: #5f574f;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 16px 0 8px;
}

.about-principle {
  padding: 18px;
  border-radius: 16px;
  background: #fdf8f1;
  border: 1px solid #eee3d7;
}

.about-principle-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #9a6e42;
}

.about-principle h3 {
  margin: 6px 0 4px;
  font-size: 0.98rem;
}

.about-principle p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: #5f574f;
}

@media (max-width: 720px) {
  .legal-wrap {
    padding: 24px;
  }
  .about-team-grid,
  .about-principles {
    grid-template-columns: 1fr;
  }
}

.wire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width: 1100px) {
  .wire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .wire-grid {
    grid-template-columns: 1fr;
  }
}

.wire-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid #eee3d7;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(57, 37, 16, 0.04);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wire-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(57, 37, 16, 0.07);
}

.wire-card h3 {
  margin: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.12rem;
  line-height: 1.25;
  font-weight: 600;
}

.wire-card h3 a:hover {
  color: #7c5431;
}

.wire-source {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a6f4a;
}

.wire-source-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a878;
  flex-shrink: 0;
  animation: wire-pulse 2.4s ease-in-out infinite;
}

.wire-dot {
  color: #c8a878;
}

@keyframes wire-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .wire-source-dot { animation: none; }
}

.wire-card-skeleton {
  gap: 12px;
}

.wire-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid #eee6db;
  font-size: 0.86rem;
  color: #8a8276;
}

.wire-status {
  font-style: italic;
}

.site-footer {
  margin-top: 56px;
  padding: 56px 0 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(154, 110, 66, 0.06), transparent 35%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe2 100%);
  border-top: 1px solid #e8dcc5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 320px;
}

.footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: contain;
}

.footer-brand {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0;
  color: #1f1c18;
}

.footer-tagline {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: #6b6258;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: #ffffff;
  border: 1px solid #e8dcc5;
  color: #6b6258;
  transition: transform 0.18s ease, color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  color: #1f1c18;
  border-color: #c8a878;
  background: #fffdf8;
}

.footer-col .footer-heading {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a6e42;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-list a {
  font-size: 0.94rem;
  color: #5f574f;
  transition: color 0.18s ease;
}

.footer-list a:hover {
  color: #1f1c18;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e8dcc5;
}

.footer-bottom .footer-meta {
  margin: 0;
  font-size: 0.86rem;
  color: #8a8276;
}

.footer-craft {
  font-style: italic;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    max-width: 480px;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 9px;
  border-radius: 6px;
  background: #f5eadc;
  color: #8b6037;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid transparent;
}

.pill::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: currentColor;
  flex-shrink: 0;
}

.pill[data-category="work-snacks"] {
  background: #faf1e3;
  color: #8b6037;
  border-color: #ecdcc1;
}

.pill[data-category="travel-snacks"] {
  background: #e5f0ec;
  color: #3a7a64;
  border-color: #cde0d8;
}

.pill[data-category="fruit-snacks"] {
  background: #fdece8;
  color: #b34a3c;
  border-color: #f5d4cc;
}

.pill[data-category="sweet-cravings"] {
  background: #f1e7f8;
  color: #6e4a99;
  border-color: #ddcce8;
}

.pill[data-category="snack-trends"] {
  background: #eaf1f6;
  color: #4f6f85;
  border-color: #d4e2ea;
}

.meta {
  margin: 12px 0 0;
  font-size: 0.92rem;
}

.about-box h2,
.article-wrap h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.category-intro {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: 28px;
  margin-bottom: 36px;
  background: none;
  border: 1px solid transparent;
  box-shadow: 0 16px 40px rgba(57, 37, 16, 0.06);
}

.category-intro[data-category="work-snacks"] {
  background: linear-gradient(135deg, #fdf6ea 0%, #f5eadc 100%);
  border-color: #ecdcc1;
}
.category-intro[data-category="travel-snacks"] {
  background: linear-gradient(135deg, #ecf4f0 0%, #dcebe7 100%);
  border-color: #cde0d8;
}
.category-intro[data-category="fruit-snacks"] {
  background: linear-gradient(135deg, #fdf0ec 0%, #fbe4e0 100%);
  border-color: #f5d4cc;
}
.category-intro[data-category="sweet-cravings"] {
  background: linear-gradient(135deg, #f4edfa 0%, #ece1f5 100%);
  border-color: #ddcce8;
}

.category-intro::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.category-intro .back-link {
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  font-size: 0.92rem;
  position: relative;
  z-index: 1;
}

.category-intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 1;
}

.category-intro .section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}

.category-intro .section-label::before,
.category-intro .section-label::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.category-intro h1 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  font-weight: 600;
  margin: 0 0 18px;
}

.category-intro-text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #4f4842;
  max-width: 540px;
  margin: 0;
}

.category-intro-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-intro-illustration svg {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(57, 37, 16, 0.12));
}

@media (max-width: 880px) {
  .category-intro {
    padding: 40px 32px;
  }
  .category-intro-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .category-intro-illustration {
    order: -1;
  }
  .category-intro-illustration svg {
    max-width: 200px;
  }
}

@media (max-width: 720px) {
  .category-intro {
    padding: 32px 24px;
    margin-bottom: 24px;
  }
  .category-intro::before {
    width: 160px;
    height: 160px;
    top: -50px;
    right: -50px;
  }
  .category-intro h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }
}

.category-post-grid {
  display: grid;
  gap: 18px;
}

.articles-page {
  padding: 56px 0 24px;
}

.articles-intro {
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0) 32%),
    linear-gradient(135deg, #f7eef8 0%, #eaf5fb 52%, #fff3e3 100%);
  border-color: #eadde8;
}

.articles-tools {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}

.article-search-card,
.articles-filter-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid #eee3d7;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(57, 37, 16, 0.04);
}

.article-search-label,
.articles-filter-label {
  display: block;
  margin-bottom: 10px;
  color: #8a7768;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.article-search-input {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #e2d4bf;
  background: #fffaf5;
  color: #1f1c18;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.article-search-input::placeholder {
  color: #9a9388;
}

.article-search-input:focus-visible {
  outline: none;
  border-color: #9a6e42;
  box-shadow: 0 0 0 3px rgba(154, 110, 66, 0.16);
}

.articles-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-filter-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid #ead9c5;
  background: #fffaf5;
  color: #5f574f;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.article-filter-button::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.38;
}

.article-filter-button:hover,
.article-filter-button.is-active {
  transform: translateY(-1px);
  border-color: #d8c4a3;
  background: #fff3df;
  color: #7c5431;
}

.article-filter-button[data-category="fruit-snacks"].is-active {
  background: #fdece8;
  color: #b34a3c;
  border-color: #f5d4cc;
}

.article-filter-button[data-category="sweet-cravings"].is-active {
  background: #f1e7f8;
  color: #6e4a99;
  border-color: #ddcce8;
}

.article-filter-button[data-category="travel-snacks"].is-active {
  background: #e5f0ec;
  color: #3a7a64;
  border-color: #cde0d8;
}

.article-filter-button[data-category="work-snacks"].is-active {
  background: #faf1e3;
  color: #8b6037;
  border-color: #ecdcc1;
}

.article-filter-button[data-category="snack-trends"].is-active {
  background: #eaf1f6;
  color: #4f6f85;
  border-color: #d4e2ea;
}

.articles-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 0 0 18px;
  color: #6b6258;
  font-size: 0.95rem;
}

.all-articles-grid {
  margin-top: 0;
}

.all-article-card {
  display: flex;
  flex-direction: column;
}

.all-article-card .text-link {
  margin-top: auto;
}

.articles-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 34px;
  border-radius: 24px;
  border: 1px dashed #e2d4bf;
  background: #fffaf2;
  text-align: center;
  color: #7c6250;
}

.back-link,
.text-link {
  display: inline-block;
  font-weight: 700;
  color: #7c5431;
}

.article-wrap {
  width: min(780px, 100%);
  margin: 0 auto;
}

.article-wrap h2 {
  margin-top: 36px;
  margin-bottom: 12px;
  font-size: 1.55rem;
  color: #1f1c18;
}

.article-wrap ul {
  padding-left: 20px;
}


@media (max-width: 980px) {
  .hero-grid,
  .featured-grid,
  .featured-article,
  .article-grid,
  .articles-tools,
  .newsletter-box {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .newsletter-box {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding: 56px 0 42px;
  }

  .hero-image-card,
  .featured-visual {
    min-height: 260px;
  }

  .featured-content,
  .category-intro,
  .category-post-card,
  .article-wrap {
    padding: 22px;
  }

  .post-card,
  .category-card,
  .about-box {
    padding: 18px;
  }

  .post-card-image-link {
    margin: -18px -18px 14px;
  }

  .category-grid {
    gap: 12px;
  }

  .category-card {
    padding: 0;
    border-radius: 20px;
  }

  .category-illustration {
    min-height: 92px;
    padding: 12px 10px 10px;
  }

  .category-illustration::after {
    left: 14px;
    right: 14px;
  }

  .category-illustration svg {
    max-width: 112px;
  }

  .category-card h3,
  .category-card p,
  .category-card .text-link {
    padding-left: 14px;
    padding-right: 14px;
  }

  .category-card h3 {
    margin: 14px 0 6px;
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .category-card p {
    margin: 0 0 8px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .category-card .text-link {
    padding-bottom: 16px;
    margin-top: 0;
    font-size: 0.86rem;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 1.65rem;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }

  .about-stat-number {
    font-size: 1.38rem;
  }

  .about-stat-label {
    font-size: 0.68rem;
  }
}

/* ---------- Editorial autolinks ---------- */
a.autolink {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(139, 96, 55, 0.5);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}

a.autolink:hover {
  text-decoration-color: currentColor;
}

/* ---------- About page (editorial standards + team footnote) ---------- */
.about-standards {
  list-style: none;
  padding: 0;
  margin: 16px 0 28px 0;
  display: grid;
  gap: 14px;
}

.about-standards li {
  padding: 14px 16px 14px 18px;
  background: #faf6ef;
  border-left: 3px solid #d8cbb3;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.6;
  color: #3d3830;
}

.about-standards li strong {
  color: #1f1c18;
  display: inline;
}

.about-team-footnote {
  margin-top: 18px;
  padding: 14px 18px;
  background: #f5edde;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #3d3830;
  line-height: 1.55;
}

.about-team-footnote a {
  color: #1f1c18;
  text-decoration: underline;
  text-decoration-color: #b9a988;
  text-underline-offset: 3px;
}

/* ---------- Expanded-post elements (lede, comparison table, post FAQ) ---------- */
.article-wrap .lede,
.article .lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: #1f1c18;
  margin: 0 0 22px 0;
  padding: 16px 18px;
  background: #faf6ef;
  border-left: 3px solid #8b6037;
  border-radius: 6px;
  font-weight: 500;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin: 16px 0 28px 0;
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 540px;
}

.comparison-table th,
.comparison-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid #ece4d6;
  vertical-align: top;
  color: #3d3830;
}

.comparison-table thead th {
  background: #f5edde;
  color: #1f1c18;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.comparison-table tbody tr:hover {
  background: #fdfaf3;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #1f1c18;
}

/* Post FAQ uses the same visual treatment as the Category FAQ below.
   See `.post-faq, .category-faq` block for the shared rules. */

/* ---------- Cluster banner (Part of: X guide) ---------- */
.cluster-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  margin: 0 0 32px 0;
  background: linear-gradient(135deg, #f5edde 0%, #ebe1ca 100%);
  border-left: 3px solid #8b6037;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #5c4a2e;
}

.cluster-banner-label {
  font-weight: 500;
  letter-spacing: 0.01em;
}

.cluster-banner-link {
  color: #1f1c18;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}

.cluster-banner-link:hover {
  border-bottom-color: #1f1c18;
}


/* ---------- Post byline (author + dates) ---------- */
.post-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #6b6258;
  margin: 4px 0 28px 0;
  line-height: 1.6;
}

.post-byline a {
  color: #1f1c18;
  text-decoration: none;
  border-bottom: 1px solid #d8cbb3;
  transition: border-color 0.18s ease;
}

.post-byline a:hover {
  border-bottom-color: #1f1c18;
}

.byline-author {
  color: #1f1c18;
  font-weight: 500;
}

.byline-sep {
  color: #b5ada1;
}

.byline-published,
.byline-published time {
  color: #6b6258;
}

.byline-updated {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #f3eadb;
  color: #5c4a2e;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.byline-updated time {
  color: inherit;
  font-weight: 600;
}

/* ---------- Category overview (pillar prose) ---------- */
.category-overview {
  width: min(780px, 100%);
  margin: 32px auto 48px;
}

.category-overview h2 {
  margin: 0 0 16px 0;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: #1f1c18;
}

.category-overview h3 {
  margin: 28px 0 12px 0;
  font-size: 1.1rem;
  letter-spacing: -0.005em;
  color: #1f1c18;
}

.category-overview p {
  margin: 0 0 16px 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #3d3830;
}

.category-overview p:last-child {
  margin-bottom: 0;
}

.category-overview a {
  color: #1f1c18;
  text-decoration: underline;
  text-decoration-color: #d8cbb3;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.18s ease;
}

.category-overview a:hover {
  text-decoration-color: #1f1c18;
}

/* ---------- FAQ section (shared by category, post, about, comparisons hub) ----------
   Width is locked to the article body (min(780px, 100%)) so the section visually
   aligns with the article above it. FAQ items render as individual cards. */
.post-faq,
.category-faq {
  width: min(780px, 100%);
  margin: 64px auto 24px;
  padding-top: 56px;
  border-top: 1px solid #eee3d7;
}

.post-faq > h2,
.category-faq > h2 {
  margin: 0 0 28px;
  text-align: center;
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #1f1c18;
}

.post-faq > h2::before,
.category-faq > h2::before {
  content: 'FAQ';
  display: block;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a6e42;
}

/* Each FAQ item is its own card — matches the site's card pattern
   (white bg, soft beige border, ~14px radius, gentle hover/open state). */
.faq-item {
  background: #ffffff;
  border: 1px solid #eee3d7;
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: #d8cbb3;
}

.faq-item[open] {
  border-color: #d8cbb3;
  box-shadow: 0 6px 18px rgba(57, 37, 16, 0.06);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #1f1c18;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color 0.18s ease;
}

.faq-item summary:hover {
  color: #7c5431;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid #8b7e69;
  border-bottom: 1.5px solid #8b7e69;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.22s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.faq-item p {
  margin: 14px 0 0 0;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #3d3830;
}

.faq-item p a {
  color: #1f1c18;
  text-decoration: underline;
  text-decoration-color: #d8cbb3;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .post-faq,
  .category-faq {
    margin-top: 48px;
    padding-top: 40px;
  }
  .faq-item {
    padding: 16px 18px;
  }
}

/* ---------- Breadcrumb (SSR) ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #6b6258;
  margin: 0 0 18px 0;
  line-height: 1.4;
}

.breadcrumb a {
  color: #6b6258;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.breadcrumb a:hover {
  color: #1f1c18;
  border-bottom-color: currentColor;
}

.breadcrumb [aria-current="page"] {
  color: #1f1c18;
  font-weight: 500;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.breadcrumb-sep {
  color: #b5ada1;
}

/* ---------- Related articles (SSR) ---------- */
/* Keep Reading / cluster member block — reuses .section-heading +
   .article-grid + .post-card patterns. Width is locked to the article
   body (min(780px, 100%)) so the section aligns horizontally with the
   article and FAQ above it. */
.related-articles {
  width: min(780px, 100%);
  margin: 72px auto 32px;
  padding-top: 56px;
  border-top: 1px solid #eee3d7;
}

.related-articles .section-heading {
  margin-bottom: 32px;
}

.related-articles .section-heading-sub {
  margin: 12px auto 0;
  color: #6b6258;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 560px;
}

/* At 780px the 3-column grid is tight. Collapse to 2-column on the
   narrower section width so each card has breathing room, then stack
   on mobile. */
.related-articles .article-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 1100px) {
  .related-articles .article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .related-articles {
    margin-top: 56px;
    padding-top: 40px;
  }
  .related-articles .article-grid {
    grid-template-columns: 1fr;
  }
}
