/* Public blog + campaign landing content */

.mk-page {
  --mk-max: 720px;
  padding-bottom: 3rem;
}

.mk-hero {
  position: relative;
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(1.5rem, 3vw, 2.5rem);
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(217, 108, 61, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(90, 143, 110, 0.1), transparent 50%),
    linear-gradient(180deg, #fff8f0 0%, #fffaf5 100%);
  border-bottom: 1px solid var(--brand-border, #ecd9c8);
}

.mk-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--food-sage, #5a8f6e);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.mk-feed-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--food-terracotta, #d96c3d);
  text-decoration: none;
}

.mk-feed-link:hover {
  color: var(--dark, #3d2e1f);
  text-decoration: underline;
}

.mk-title {
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark, #3d2e1f);
  margin-bottom: 0.75rem;
}

.mk-lead {
  font-size: var(--text-lg);
  color: var(--text-theme-3, #6b5c4f);
  max-width: 36rem;
  margin-bottom: 0;
}

.mk-meta {
  font-size: var(--text-sm);
  color: var(--text-theme-3);
  margin-top: 0.75rem;
}

.mk-article,
.mk-landing-body {
  max-width: var(--mk-max);
  margin: 0 auto;
  padding: 2rem 0 1rem;
}

.bodyContainer:has(.mk-landing-page) {
  padding-top: var(--header-height, 72px) !important;
}

.mk-prose {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--text-black);
}

.mk-prose h2,
.mk-prose h3 {
  font-weight: 700;
  margin-top: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--dark);
}

.mk-prose p {
  margin-bottom: 1rem;
}

.mk-prose ul,
.mk-prose ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.mk-prose li {
  margin-bottom: 0.4rem;
}

.mk-prose a {
  color: var(--primary, #d96c3d);
  font-weight: 600;
}

.mk-cta-bar {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--brand-radius, 16px);
  background: linear-gradient(135deg, rgba(217, 108, 61, 0.08), rgba(90, 143, 110, 0.1));
  border: 1px solid var(--brand-border);
  text-align: center;
}

.mk-cta-bar p {
  margin-bottom: 1rem;
  color: var(--text-theme-3);
}

.mk-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border-radius: var(--brand-radius);
  border: 1px solid var(--brand-border);
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.mk-post-card:hover {
  border-color: rgba(217, 108, 61, 0.45);
  box-shadow: var(--brand-shadow);
  transform: translateY(-2px);
  color: inherit;
}

.mk-post-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #fff8f0;
}

.mk-post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}

.mk-post-card:hover .mk-post-card__media img {
  transform: scale(1.04);
}

.mk-post-card__body {
  padding: 1.15rem 1.25rem 1.3rem;
}

.mk-post-card__kw {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--food-sage);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}

.mk-post-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.mk-post-card__excerpt {
  font-size: var(--text-sm);
  color: var(--text-theme-3);
  margin-bottom: 0;
}

.mk-blog {
  max-width: 52rem;
  margin: 0 auto;
}

.mk-blog-date {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-theme-3, #6b5c4f);
  margin-bottom: 0.35rem;
}

.mk-blog-featured {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--brand-border, #ecd9c8);
  text-decoration: none;
  color: inherit;
}

.mk-blog-featured:hover {
  color: inherit;
}

.mk-blog-featured__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--brand-radius, 16px);
  background: #fff8f0;
}

.mk-blog-featured__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mk-blog-featured__kicker {
  margin: 0 0 0.35rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--food-terracotta, #d96c3d);
}

.mk-blog-featured__title {
  font-size: clamp(1.45rem, 1.2rem + 1vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark, #3d2e1f);
  margin: 0.25rem 0 0.6rem;
}

.mk-blog-featured:hover .mk-blog-featured__title {
  color: var(--primary, #d96c3d);
}

.mk-blog-featured__excerpt {
  font-size: var(--text-md);
  color: var(--text-theme-3, #6b5c4f);
  margin: 0 0 0.85rem;
}

.mk-blog-read {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--food-terracotta, #d96c3d);
}

.mk-blog-month {
  margin-bottom: 1.75rem;
}

.mk-blog-month__title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark, #3d2e1f);
  margin: 0 0 0.75rem;
  padding-bottom: 0.45rem;
  border-bottom: 2px solid var(--brand-border, #ecd9c8);
}

.mk-blog-stream {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mk-blog-row {
  display: grid;
  grid-template-columns: 4.25rem minmax(0, 1fr);
  gap: 0.85rem 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--brand-border, #ecd9c8);
  text-decoration: none;
  color: inherit;
}

.mk-blog-row:hover {
  color: inherit;
}

.mk-blog-row__date {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--food-sage, #5a8f6e);
  padding-top: 0.15rem;
}

.mk-blog-row__copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.mk-blog-row__title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark, #3d2e1f);
}

.mk-blog-row:hover .mk-blog-row__title {
  color: var(--primary, #d96c3d);
}

.mk-blog-row__excerpt {
  font-size: var(--text-sm);
  color: var(--text-theme-3, #6b5c4f);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mk-blog-pager {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--brand-border, #ecd9c8);
}

.mk-blog-pager__side--end {
  text-align: right;
}

.mk-blog-pager__link {
  font-weight: 700;
  color: var(--food-terracotta, #d96c3d);
  text-decoration: none;
}

.mk-blog-pager__link:hover {
  text-decoration: underline;
  color: var(--dark, #3d2e1f);
}

.mk-blog-pager__link--disabled {
  color: var(--text-theme-3, #6b5c4f);
  font-weight: 600;
  pointer-events: none;
}

.mk-blog-related {
  max-width: var(--mk-max, 720px);
  margin: 0 auto 1rem;
  padding-top: 0.5rem;
}

.mk-blog-related h2 {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
}

.mk-blog-related .mk-blog-row__title {
  font-size: 1.05rem;
}

@media (min-width: 768px) {
  .mk-blog-featured {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    align-items: center;
  }
}

/* Blog post — full-bleed image hero */
.mk-article-page {
  padding-bottom: 3rem;
}

.mk-article-hero {
  position: relative;
  isolation: isolate;
  min-height: min(52vh, 420px);
  display: flex;
  align-items: flex-end;
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(1.75rem, 3.5vw, 2.75rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(217, 108, 61, 0.12), transparent 55%),
    linear-gradient(180deg, #fff8f0 0%, #fffaf5 100%);
  border-bottom: 1px solid var(--brand-border, #ecd9c8);
}

.mk-article-hero--has-media {
  min-height: min(62vh, 520px);
  border-bottom: 0;
}

.mk-article-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mk-article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.03);
  animation: mk-article-ken 16s ease-out forwards;
}

@keyframes mk-article-ken {
  from { transform: scale(1.08); }
  to { transform: scale(1.03); }
}

.mk-article-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(40, 28, 18, 0.2) 0%, rgba(40, 28, 18, 0.28) 35%, rgba(255, 250, 245, 0.55) 62%, #fffaf5 88%);
}

.mk-article-hero__content {
  position: relative;
  z-index: 2;
  max-width: 44rem;
  animation: mk-article-rise 0.65s ease-out both;
}

.mk-article-hero--has-media .mk-article-hero__content {
  padding: 1.15rem 1.25rem 1.25rem;
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.96);
  border: 1px solid rgba(236, 217, 200, 0.95);
  box-shadow: 0 10px 28px rgba(61, 46, 31, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@keyframes mk-article-rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.mk-article-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--food-sage, #5a8f6e);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.mk-article-hero__eyebrow a {
  color: inherit;
  text-decoration: none;
}

.mk-article-hero__eyebrow a:hover {
  color: var(--primary, #d96c3d);
}

.mk-article-hero__title {
  font-size: clamp(1.85rem, 1.35rem + 1.5vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--dark, #3d2e1f);
  margin: 0 0 0.75rem;
}

.mk-article-hero__lead {
  font-size: clamp(1.05rem, 1rem + 0.2vw, 1.2rem);
  line-height: 1.45;
  color: var(--text-theme-3, #6b5c4f);
  margin: 0 0 0.65rem;
  max-width: 38rem;
}

.mk-article-hero__meta {
  font-size: var(--text-sm);
  color: var(--text-theme-3, #6b5c4f);
  margin: 0;
}

.mk-article-page .mk-article {
  padding-top: 1.25rem;
}

@media (max-width: 767.98px) {
  .mk-article-hero--has-media {
    min-height: min(58vh, 460px);
    align-items: flex-end;
  }

  .mk-article-hero--has-media .mk-article-hero__content {
    padding: 1rem 1.05rem 1.1rem;
    max-width: 100%;
  }

  .mk-article-hero__veil {
    background:
      linear-gradient(180deg, rgba(40, 28, 18, 0.18) 0%, rgba(255, 250, 245, 0.45) 48%, #fffaf5 78%);
  }

  .mk-article-hero__img {
    object-position: center center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mk-article-hero__img,
  .mk-article-hero__content,
  .mk-post-card__media img {
    animation: none;
    transition: none;
  }

  .mk-post-card:hover .mk-post-card__media img {
    transform: none;
  }
}

.mk-landing-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  text-align: center;
}

.mk-landing-hero .mk-title {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.mk-landing-hero .mk-lead {
  margin-left: auto;
  margin-right: auto;
}

.mk-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.mk-benefits {
  list-style: none;
  padding: 0;
  margin: 1.5rem auto 0;
  max-width: 28rem;
  text-align: left;
}

.mk-benefits li {
  position: relative;
  padding: 0.65rem 0.75rem 0.65rem 2.25rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--brand-border);
}

.mk-benefits li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  color: var(--food-sage);
}

/* Campaign landing — overlay CTA on the hero photo (always tappable, no scroll) */
.mk-landing-page {
  padding-bottom: 3rem;
}

.mk-landing-hero-full {
  position: relative;
  isolation: isolate;
  min-height: min(calc(100dvh - var(--header-height, 72px)), 560px);
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 4vw, 3rem) 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(217, 108, 61, 0.14), transparent 55%),
    linear-gradient(180deg, #fff8f0 0%, #fffaf5 100%);
}

.mk-landing-hero-full__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mk-landing-hero-full__media picture,
.mk-landing-hero-full__img {
  width: 100%;
  height: 100%;
  display: block;
}

.mk-landing-hero-full__media picture {
  position: absolute;
  inset: 0;
}

.mk-landing-hero-full__img {
  object-fit: cover;
  object-position: center;
}

.mk-landing-hero-full__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 250, 245, 0.88) 0%, rgba(255, 250, 245, 0.62) 46%, rgba(255, 250, 245, 0.22) 100%),
    linear-gradient(180deg, rgba(61, 46, 31, 0.08) 0%, rgba(61, 46, 31, 0.12) 100%);
}

.mk-landing-hero-full__content {
  position: relative;
  z-index: 2;
  max-width: 34rem;
  padding: 1.15rem 1.2rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 250, 245, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 48px rgba(61, 46, 31, 0.16);
  backdrop-filter: blur(10px);
}

.mk-landing-hero-full__title {
  font-size: clamp(1.7rem, 1.25rem + 1.6vw, 2.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--dark, #3d2e1f);
  margin: 0 0 0.7rem;
}

.mk-landing-hero-full__lead {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  line-height: 1.45;
  color: var(--text-theme-3, #6b5c4f);
  margin: 0 0 1.1rem;
  max-width: 32rem;
}

.mk-landing-hero-full__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: stretch;
}

.mk-landing-hero-full__cta,
.mk-landing-page .lp-btn--lg {
  min-height: 48px;
  min-width: 10.5rem;
}

.mk-landing-hero-full--has-media .lp-btn--ghost {
  background: #fff;
  border-color: rgba(61, 46, 31, 0.14);
}

.mk-landing-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.85rem;
  list-style: none;
  margin: 0.9rem 0 0;
  padding: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #5a8f6e;
}

.mk-landing-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.mk-landing-trust li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #5a8f6e;
}

.mk-landing-steps {
  margin: 0 0 2rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border: 1px solid var(--brand-border, #ecd9c8);
  border-radius: 16px;
}

.mk-landing-steps h2,
.mk-landing-app h2 {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.mk-landing-steps__list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.mk-landing-steps__list li {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.mk-landing-steps__list li:last-child {
  margin-bottom: 0;
}

.mk-landing-steps__num {
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #d96c3d;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
}

.mk-landing-steps__list strong {
  display: block;
  margin-bottom: 0.2rem;
}

.mk-landing-steps__list p {
  margin: 0;
  color: var(--text-theme-3, #6b5c4f);
  font-size: 0.95rem;
}

.mk-landing-app {
  margin: 0 0 2rem;
}

.mk-landing-app__lead {
  margin: 0 0 1rem;
  color: var(--text-theme-3, #6b5c4f);
}

.mk-landing-app__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mk-landing-app__grid figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #f3ebe3;
}

.mk-landing-app__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  display: block;
}

.mk-landing-sticky-cta {
  display: none;
}

@media (min-width: 992px) {
  .mk-landing-hero-full__content {
    text-align: left;
  }

  .mk-landing-hero-full__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .mk-landing-hero-full {
    min-height: 0;
    align-items: flex-end;
    padding: 1rem 0 1.25rem;
  }

  .mk-landing-hero-full__veil {
    background:
      linear-gradient(180deg, rgba(255, 248, 240, 0.18) 0%, rgba(255, 250, 245, 0.55) 42%, rgba(255, 250, 245, 0.9) 100%);
  }

  .mk-landing-hero-full__content {
    max-width: none;
    text-align: center;
  }

  .mk-landing-hero-full__actions {
    justify-content: center;
  }

  .mk-landing-hero-full__cta {
    flex: 1 1 100%;
  }

  .mk-landing-trust {
    justify-content: center;
  }

  .mk-landing-app__grid {
    gap: 0.5rem;
  }

  .mk-landing-page {
    padding-bottom: 5.75rem;
  }

  .mk-landing-sticky-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 250, 245, 0.96);
    border-top: 1px solid #ecd9c8;
    box-shadow: 0 -8px 24px rgba(61, 46, 31, 0.08);
    backdrop-filter: blur(10px);
  }

  .mk-landing-sticky-cta__note {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a8f6e;
    max-width: 7.5rem;
    line-height: 1.3;
  }

  .mk-landing-sticky-cta__btn {
    flex: 1 1 auto;
    min-width: 0;
  }
}

@media (min-width: 992px) {
  .mk-landing-hero-full__img {
    transform: scale(1.02);
  }
}
