/* My Healthy Life — nature-forward single page */
:root {
  /* Sky → earth palette */
  --sky-200: #c8e8f4;
  --sky-100: #def3f3;
  --dew-50: #ecf8f0;
  --dew-100: #d8f0e4;
  --dew-200: #b5e0cc;
  --dew-300: #8fccae;
  --moss-500: #3a9d6a;
  --moss-600: #2a8556;
  --moss-700: #1f6b45;
  --moss-800: #1a4f36;
  --moss-900: #0f2e1f;
  --bark-600: #5c4a3d;
  --leaf-bright: #34b06e;
  --coral: #c95c48;
  --coral-hover: #a94a3a;
  --sun: #f4d58d;
  --text: #102319;
  --text-muted: #3d5c4c;
  --white: #ffffff;
  --shadow: 0 6px 28px rgba(29, 79, 54, 0.09);
  --shadow-lg: 0 18px 48px rgba(29, 79, 54, 0.12);
  --shadow-card: 0 8px 0 rgba(200, 233, 216, 0.35);
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-ui: "Plus Jakarta Sans", system-ui, sans-serif;
  --max: 70rem;
  --r-organic: 1.4rem 0.5rem 1.6rem 0.4rem;
  --r-organic-2: 0.5rem 1.4rem 0.4rem 1.6rem;
  --r-card: 1.25rem;
  --r-pill: 9999px;
  --nature-grad: linear-gradient(120deg, #16603e 0%, #238055 40%, #2f9d6a 100%);
  --nature-grad-text: linear-gradient(110deg, #0d4a30 0%, #1f8f5c 45%, #0f5c3a 100%);
  --nature-grad-cta: linear-gradient(160deg, #3aad72 0%, #288f5a 40%, #1a6b42 100%);
  --nature-grad-cta-hover: linear-gradient(160deg, #42b97c 0%, #2a9960 50%, #1f7a4a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* In-page #anchors clear two-row sticky header (esp. with notches) */
  scroll-padding-top: max(6.75rem, calc(env(safe-area-inset-top, 0px) + 5.5rem));
}

/* Soft sky + field gradient with subtle texture */
body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
  background: linear-gradient(
    180deg,
    #d4efe3 0%,
    #e0f5ea 20%,
    var(--dew-50) 45%,
    #e8f5ee 72%,
    #dcefe4 100%
  );
  background-attachment: fixed;
}

/* Fixed backgrounds can jank on mobile browsers */
@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }
}

/* Moving light — outdoor feel */
.breathe-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 85% 50% at 8% 10%, rgba(150, 220, 180, 0.45) 0%, transparent 50%),
    radial-gradient(ellipse 75% 45% at 90% 12%, rgba(180, 235, 200, 0.5) 0%, transparent 52%),
    radial-gradient(ellipse 60% 45% at 65% 88%, rgba(120, 200, 150, 0.28) 0%, transparent 50%),
    repeating-linear-gradient(
      -4deg,
      rgba(32, 110, 70, 0.035) 0 2px,
      transparent 2px 7px
    );
  animation: breath 14s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .breathe-layer {
    animation: none;
  }
  .hero::before,
  .hero::after,
  .hero-visual::after {
    animation: none;
  }
}

@keyframes breath {
  0%,
  100% {
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
}

/* Skip + header + main + footer must sit above decorative layer */
main {
  min-width: 0;
  max-width: 100%;
}

.skip-link,
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

img,
video,
canvas {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  max-width: 100%;
}

a {
  color: var(--moss-800);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--moss-900);
  color: var(--white);
  border-radius: 0.25rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(232, 250, 240, 0.9);
  backdrop-filter: blur(16px) saturate(1.25);
  border-bottom: 1px solid rgba(32, 120, 80, 0.14);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.65) inset;
  /* Clear notches / home indicator on phones */
  padding-top: env(safe-area-inset-top, 0);
}

.header-inner {
  max-width: var(--max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0.75rem max(min(1.35rem, 4vw), env(safe-area-inset-right, 0)) 0.6rem
    max(min(1.35rem, 4vw), env(safe-area-inset-left, 0));
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  box-sizing: border-box;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s ease;
}

.brand:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.brand img {
  display: block;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border: 1.5px solid rgba(42, 133, 86, 0.3);
  box-shadow: 0 2px 8px rgba(18, 56, 40, 0.1);
  box-sizing: border-box;
  padding: 0.2rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--moss-900);
  letter-spacing: -0.02em;
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-600);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 1.1rem;
  width: 100%;
  min-width: 0;
  padding-top: 0.55rem;
  margin: 0;
  border-top: 1px solid rgba(32, 120, 80, 0.14);
  box-sizing: border-box;
  overscroll-behavior-x: contain;
  -ms-overflow-style: auto;
  scrollbar-gutter: stable;
}

.nav a {
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--moss-800);
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
  white-space: nowrap;
}

.nav a:not(.btn):hover,
.nav a:not(.btn):focus {
  color: var(--moss-800);
  text-decoration: none;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--moss-600);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav a:not(.btn):hover::after,
.nav a:not(.btn):focus::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  box-shadow: 0 4px 16px rgba(20, 90, 55, 0.22);
}

.btn:focus-visible {
  outline: 2px solid var(--moss-500);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--nature-grad-cta);
  color: var(--white);
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background: var(--nature-grad-cta-hover);
  text-decoration: none;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(20, 100, 60, 0.32);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.5);
  color: var(--moss-800);
  border: 2px solid rgba(42, 133, 86, 0.55);
  box-shadow: 0 2px 12px rgba(18, 80, 50, 0.1);
}

.btn-outline:hover {
  background: rgba(200, 240, 220, 0.55);
  border-color: var(--moss-500);
  text-decoration: none;
  color: var(--moss-900);
  transform: translateY(-2px);
}

/* Hero */
.hero {
  max-width: var(--max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 0.5rem max(min(1.35rem, 4vw), env(safe-area-inset-right, 0)) 0
    max(min(1.35rem, 4vw), env(safe-area-inset-left, 0));
  display: grid;
  gap: 1.75rem 2.25rem;
  align-items: center;
  position: relative;
  /* decorative ::before/::after blobs use negative insets; clip to viewport */
  overflow: hidden;
  box-sizing: border-box;
}

/* Organic blobs */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50% 40% 60% 50% / 50% 55% 45% 55%;
  z-index: 0;
  pointer-events: none;
  animation: float-blob 20s ease-in-out infinite;
}

.hero::before {
  width: min(52vw, 420px);
  height: min(52vw, 420px);
  top: -4%;
  right: 0;
  background: radial-gradient(circle at 30% 30%, rgba(120, 210, 180, 0.35) 0%, rgba(200, 233, 220, 0.15) 50%, transparent 70%);
}

.hero::after {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  bottom: 10%;
  left: 0;
  background: radial-gradient(circle, rgba(150, 235, 195, 0.5) 0%, rgba(200, 245, 220, 0) 70%);
  animation-delay: -7s;
  animation-duration: 24s;
}

@keyframes float-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(1.5%, 2%) scale(1.03);
  }
}

.hero-kicker {
  grid-column: 1 / -1;
  max-width: var(--max);
  min-width: 0;
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--moss-700);
  z-index: 1;
  position: relative;
}

@media (min-width: 900px) {
  .hero-kicker {
    text-align: left;
    margin-top: 1.5rem;
    max-width: none;
  }
}

.hero-copy,
.hero-visual {
  z-index: 1;
  position: relative;
  min-width: 0;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    grid-template-rows: auto 1fr;
  }

  .hero-kicker {
    grid-row: 1;
    grid-column: 1 / 2;
  }

  .hero-copy {
    grid-row: 2;
    grid-column: 1 / 2;
  }

  .hero-visual {
    grid-row: 1 / 3;
    grid-column: 2 / 3;
    align-self: center;
  }

  .hero {
    padding: 1.5rem max(min(1.35rem, 4vw), env(safe-area-inset-right, 0)) 1rem
      max(min(1.35rem, 4vw), env(safe-area-inset-left, 0));
  }
}

.text-nature {
  background: var(--nature-grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--moss-900);
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
}

.hero-copy .lede {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin: 0 0 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-bottom: 1.35rem;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.7rem;
  font-size: 0.8rem;
  color: var(--moss-800);
}

.trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(210, 244, 225, 0.6);
  border: 1px solid rgba(90, 180, 120, 0.35);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.85rem;
  box-shadow: 0 2px 10px rgba(18, 80, 50, 0.08);
  backdrop-filter: blur(4px);
}

.trust strong {
  color: var(--moss-600);
  font-weight: 700;
}

/* Photo frame: leaf-like outline + sliding gallery */
.hero-visual {
  position: relative;
  border-radius: 45% 50% 42% 55% / 50% 48% 52% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
  aspect-ratio: 4/3;
  background: var(--dew-100);
  outline: none;
}

#hero-slides:focus {
  outline: none;
}

#hero-slides:focus-visible {
  box-shadow: 0 0 0 3px rgba(47, 143, 92, 0.4);
  border-radius: 44% 49% 41% 54% / 50% 47% 51% 49%;
}

@media (min-width: 500px) {
  .hero-visual {
    max-width: 100%;
  }
}

/* Auto-rotating image stack (cross-fade) */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  border-radius: 44% 49% 41% 54% / 50% 47% 51% 49%;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide {
    transition: none;
  }
}

.hero-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 0;
  background: linear-gradient(
    140deg,
    var(--dew-200) 0%,
    #fff 35%,
    var(--dew-200) 100%
  );
  opacity: 0.55;
  filter: blur(0.5px);
  pointer-events: none;
}

.hero-slide img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44% 49% 41% 54% / 50% 47% 51% 49%;
  border: 3px solid rgba(255, 255, 255, 0.85);
}

/* Dot indicators */
.hero-dots[hidden] {
  display: none;
}

.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 0.5rem;
  margin: 0;
  pointer-events: auto;
}

.hero-dot {
  width: 0.4rem;
  height: 0.4rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(30, 80, 50, 0.15);
  cursor: pointer;
  transition: width 0.2s, border-radius 0.2s, background 0.2s, transform 0.15s;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  transform: scale(1.15);
  background: rgba(255, 255, 255, 0.95);
}

.hero-dot[aria-pressed="true"] {
  width: 1.35rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #c8f0d8, #e8fff0);
  box-shadow: 0 2px 6px rgba(20, 90, 50, 0.35);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 8%;
  width: 44px;
  height: 44px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32' fill='none' stroke='%232f8f5c' stroke-width='1.2' opacity='0.35'%3E%3Cpath d='M6 20c2-5 5-8 8-6 3-4 6-2 6 1 0-4 2-5 3-2M10 4c-2 6 0 9 2 6'/%3E%3C/svg%3E")
    center/contain no-repeat;
  pointer-events: none;
  z-index: 2;
  animation: float-leaf 18s ease-in-out infinite;
}

@keyframes float-leaf {
  0%,
  100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(8deg) translateY(4px);
  }
}

/* Wave between sections */
.wave-divider {
  line-height: 0;
  color: var(--dew-50);
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.wave-svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.wave-divider--to-white {
  color: #f2faf6;
  margin-top: -0.1rem;
}

.wave-divider--to-forest {
  color: #d0eadc;
  margin: 0;
}

/* Sections */
section {
  /* Space for two-row sticky header; extra when iOS has a notch */
  scroll-margin-top: max(6.75rem, calc(env(safe-area-inset-top, 0px) + 5.5rem));
}

.section-inner {
  max-width: var(--max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  padding: 2.5rem max(min(1.35rem, 4vw), env(safe-area-inset-right, 0)) 2.5rem
    max(min(1.35rem, 4vw), env(safe-area-inset-left, 0));
  box-sizing: border-box;
}

.section-kicker,
.section-header .section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--moss-600);
  margin: 0 0 0.45rem;
}

.section-header {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.35rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  color: var(--moss-900);
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.06rem;
  line-height: 1.55;
}

/* Video section — small clips (assets/mhl-video-1.mp4, mhl-video-2.mp4) */
.mhl-video-section {
  position: relative;
  z-index: 1;
  background: #f0faf4;
  scroll-margin-top: 7.25rem;
}

.mhl-video-section .mhl-video-section__inner {
  max-width: min(100%, 40rem);
  margin: 0 auto;
  padding: 1.15rem max(min(1.35rem, 4vw), env(safe-area-inset-right, 0)) 1.15rem
    max(min(1.35rem, 4vw), env(safe-area-inset-left, 0));
  text-align: center;
  box-sizing: border-box;
}

.mhl-video__heading {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--moss-800);
  margin: 0 0 0.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mhl-video-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 0.55rem 0.65rem;
  width: 100%;
  max-width: 36rem;
  margin: 0 auto;
}

.mhl-video-wrap {
  min-width: 0;
  width: 100%;
  border-radius: 0.55rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(12, 40, 25, 0.12);
  background: #0a1812;
  border: 1px solid rgba(80, 150, 110, 0.2);
}

@media (max-width: 500px) {
  .mhl-video-list {
    grid-template-columns: 1fr;
  }
}

.mhl-video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  /* Poster + video: show full frame (typical for vertical phone clips) */
  background: #0a1812;
}

#boxes {
  position: relative;
  z-index: 1;
  background: #f0faf4;
  border-top: none;
  background-image: radial-gradient(
    ellipse 120% 100% at 50% 0%,
    rgba(200, 235, 210, 0.55) 0%,
    rgba(255, 255, 255, 0) 55%
  );
  box-shadow: 0 24px 60px rgba(18, 56, 40, 0.04);
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
}

.mhl-menu-section {
  position: relative;
  z-index: 1;
  padding: 1.75rem 0 2.5rem;
  background: #f0faf4;
  background-image:
    radial-gradient(ellipse 90% 70% at 15% 0%, rgba(150, 215, 175, 0.45) 0%, rgba(255, 255, 255, 0) 55%),
    radial-gradient(ellipse 70% 50% at 100% 60%, rgba(120, 200, 155, 0.22) 0%, rgba(255, 255, 255, 0) 50%),
    linear-gradient(180deg, #d9f0e2 0%, #ecf8f0 35%, #f0faf4 100%);
  border-top: 1px solid rgba(100, 170, 120, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 16px 48px rgba(18, 56, 40, 0.05);
  overflow: hidden;
}

.mhl-menu-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(45%, 20rem);
  height: 12rem;
  background: radial-gradient(ellipse at 80% 100%, rgba(80, 180, 120, 0.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.mhl-menu-section__inner {
  position: relative;
  z-index: 1;
}

.mhl-menu-section__title {
  font-size: clamp(1.2rem, 2.1vw, 1.9rem);
  line-height: 1.2;
  margin: 0 0 0.4rem;
}

/* Single-line title only when there is room (avoids overflow on small phones) */
@media (min-width: 40rem) {
  .mhl-menu-section__title {
    white-space: nowrap;
  }
}

.mhl-menu-section__emoji,
.mhl-menu__card-ico,
.mhl-menu__note-ico {
  display: inline-block;
  margin-right: 0.15em;
  font-style: normal;
  font-family: inherit;
}

.mhl-menu-section__lede {
  max-width: 40rem;
  margin: 0.25rem auto 0;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 1.02rem;
}

.mhl-menu {
  display: grid;
  gap: 1.5rem 2rem;
  margin-top: 1.5rem;
  max-width: 58rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  min-width: 0;
}

.mhl-menu__col--primary,
.mhl-menu__col--side {
  min-width: 0;
}

@media (min-width: 800px) {
  .mhl-menu {
    grid-template-columns: 1.15fr 1fr;
    align-items: start;
  }
}

.mhl-menu__col--primary h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--moss-900);
  margin: 0 0 0.65rem;
  line-height: 1.3;
}

.mhl-menu__sub {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--moss-600);
  text-transform: none;
  letter-spacing: 0;
}

.mhl-menu__col--primary ul {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  line-height: 1.6;
  color: var(--moss-800);
  font-size: 0.98rem;
  font-weight: 500;
}

.mhl-menu__col--primary li {
  margin-bottom: 0.3rem;
}

.mhl-menu__col--side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mhl-menu__card {
  margin: 0;
  padding: 1rem 1.1rem 1.05rem;
  border-radius: 1rem 0.4rem 0.9rem 0.5rem;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95) 0%, #e8f8ee 100%);
  border: 1.5px solid rgba(60, 140, 100, 0.22);
  box-shadow: 0 4px 18px rgba(20, 70, 45, 0.1), 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.mhl-menu__card-ico {
  margin: 0 0 0.2rem;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}

.mhl-menu__card-title {
  font-size: 0.95rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--moss-900);
}

.mhl-menu__card-text {
  margin: 0;
  color: var(--moss-800);
  line-height: 1.5;
  font-size: 0.92rem;
}

.mhl-menu__note {
  margin: 1.5rem 0 0;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--moss-800);
  padding: 0.8rem 1.1rem;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55) 0%, rgba(200, 235, 210, 0.55) 100%);
  border: 1px solid rgba(70, 150, 105, 0.3);
  box-shadow: 0 2px 8px rgba(20, 60, 40, 0.06);
}

#boxes::before {
  content: "";
  position: absolute;
  left: 5%;
  top: 0;
  width: 32px;
  height: 70px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 100' fill='none' stroke='%23c8e9d8' stroke-width='1' opacity='0.6'%3E%3Cpath d='M8 0 Q16 20 8 50 Q0 80 8 100'/%3E%3Cpath d='M24 10 Q16 35 24 60 Q32 90 24 100'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.4rem;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Staggered organic card corners */
.card {
  --card-r: var(--r-card);
  background: linear-gradient(180deg, #f4fff8 0%, #e2f4ea 100%);
  border-radius: 1.5rem 0.75rem 1.2rem 1.25rem;
  overflow: hidden;
  box-shadow: var(--shadow), 0 4px 0 rgba(160, 220, 185, 0.25);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.2s;
  border: 1.5px solid rgba(100, 180, 130, 0.4);
}

.card:nth-child(3n + 1) {
  border-radius: 0.8rem 1.5rem 1.1rem 1.3rem;
}
.card:nth-child(3n + 2) {
  border-radius: 1.4rem 0.6rem 1.4rem 0.8rem;
}
.card:nth-child(3n) {
  border-radius: 1.1rem 1.1rem 0.7rem 1.4rem;
}

.card:hover {
  transform: translateY(-6px) rotate(-0.2deg);
  box-shadow: var(--shadow-lg), 0 10px 0 rgba(140, 210, 170, 0.3);
  border-color: rgba(50, 150, 100, 0.45);
}

.card-figure {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(180deg, #c0e5d0 0%, #dff5e8 100%);
  position: relative;
}

.card-figure::after {
  content: "";
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.5);
  border-right: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 0.3rem 0 0;
  pointer-events: none;
}

.card-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-figure img {
  transform: scale(1.04);
}

/* Why — meadow strip */
#why {
  position: relative;
  z-index: 1;
  background: linear-gradient(185deg, #d4f0e0 0%, #bfe8d2 45%, #a8dcc0 100%);
  overflow: hidden;
}

#why::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231a6b45' stroke-width='0.25' stroke-opacity='0.1'%3E%3Cpath d='M0 4h24M0 8h16M0 20h8M0 12h20'/%3E%3C/svg%3E");
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

#why .section-inner,
#why .section-header,
#why .features {
  position: relative;
  z-index: 1;
}

#why .section-kicker,
#contact .section-kicker {
  color: var(--moss-800);
  opacity: 0.9;
}

.features {
  display: grid;
  gap: 1.2rem;
}

@media (min-width: 700px) {
  .features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.feature {
  text-align: center;
  padding: 1.5rem 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(220, 244, 230, 0.6) 100%);
  border-radius: 1.25rem 0.5rem 1.25rem 1.25rem;
  border: 1px solid rgba(80, 160, 110, 0.2);
  box-shadow: 0 8px 32px rgba(18, 90, 55, 0.1);
  backdrop-filter: blur(6px);
  transition: transform 0.25s ease;
}

.feature:hover {
  transform: translateY(-3px);
}

.feature-icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #b0e0c8 0%, #8fd4b0 100%);
  color: var(--moss-800);
  border-radius: 40% 60% 50% 50% / 45% 45% 55% 55%;
  box-shadow: 0 4px 0 rgba(255, 255, 255, 0.4) inset;
}

.feature-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  color: var(--moss-900);
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* CTA — horizon */
#order {
  position: relative;
  z-index: 1;
  background: linear-gradient(
    180deg,
    #7ed4b0 0%,
    #3a9d6a 28%,
    #1f6b45 60%,
    #0c321f 100%
  );
  color: var(--white);
  text-align: center;
  padding: 3.25rem max(min(1.4rem, 4vw), env(safe-area-inset-right, 0)) 3.5rem
    max(min(1.4rem, 4vw), env(safe-area-inset-left, 0));
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

#order::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(190, 250, 215, 0.4) 0%, transparent 100%);
  pointer-events: none;
}

#order h2,
#order > p,
#order .btn {
  position: relative;
  z-index: 1;
}

#order h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

#order > p {
  margin: 0 auto 1.4rem;
  max-width: 32rem;
  opacity: 0.96;
  font-size: 1.04rem;
  line-height: 1.5;
}

.subscription-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  margin: 0 auto 1.5rem;
  padding: 1.25rem 1.35rem 1.15rem;
  text-align: left;
  color: var(--moss-900);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 255, 240, 0.9) 100%);
  border-radius: 0.9rem 1.2rem 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 32px rgba(0, 30, 20, 0.18);
  box-sizing: border-box;
  overflow-wrap: break-word;
}

.subscription-card__title {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--moss-800);
  font-family: var(--font-body, inherit);
}

.subscription-card__price {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading, inherit);
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--moss-900);
  letter-spacing: -0.02em;
}

.subscription-card__per {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--moss-700);
  margin-left: 0.1rem;
}

.subscription-card__list {
  margin: 0;
  padding: 0 0 0 1.1rem;
  list-style: disc;
  line-height: 1.5;
  font-size: 0.94rem;
  color: var(--moss-800);
  font-weight: 500;
}

.subscription-card__list li {
  margin-bottom: 0.4rem;
}

.subscription-card__list li:last-child {
  margin-bottom: 0;
}

#order .btn-primary {
  background: #e5f8ec;
  color: var(--moss-900);
  box-shadow: 0 8px 28px rgba(0, 40, 20, 0.25);
  border: 1px solid rgba(200, 245, 220, 0.9);
  text-shadow: none;
}

#order .btn-primary:hover {
  background: #f0fff5;
  color: var(--moss-900);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 40, 20, 0.3);
  border-color: #fff;
}

#contact {
  position: relative;
  z-index: 1;
}

#contact .section-inner {
  padding-bottom: 2.2rem;
}

#contact .section-kicker {
  color: var(--moss-600);
}

.contact-block {
  display: grid;
  gap: 1.5rem;
  align-items: start;
  min-width: 0;
}

@media (min-width: 800px) {
  .contact-block {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-box {
  border-radius: 1.25rem 0.4rem 1.2rem 1.1rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(100, 175, 125, 0.35);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, #f0fff4 0%, #cff0dc 100%);
}

.contact-box h3 {
  font-size: 1.12rem;
  font-family: var(--font-heading);
  margin: 0 0 0.6rem;
  color: var(--moss-900);
}

.contact-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-box li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-box a[href^="tel"],
.contact-box a[href^="mailto"] {
  color: var(--moss-700);
  font-weight: 600;
}

.note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.9rem;
  line-height: 1.45;
}

.contact-delivery {
  margin: 0.35rem 0 0;
  max-width: 28rem;
  line-height: 1.55;
  font-size: 0.9rem;
  color: var(--moss-800);
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.contact-delivery__icon {
  margin-right: 0.2rem;
}

.contact-subscription {
  margin: 0.35rem 0 0;
  max-width: 28rem;
  line-height: 1.55;
  font-size: 0.9rem;
  color: var(--moss-800);
  font-weight: 500;
  overflow-wrap: break-word;
}

.site-footer {
  position: relative;
  z-index: 1;
  max-width: 100%;
  box-sizing: border-box;
  background: linear-gradient(180deg, #0c2418 0%, var(--moss-900) 100%);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  padding: 1.4rem max(min(1.1rem, 4vw), env(safe-area-inset-right, 0))
    max(1.4rem, env(safe-area-inset-bottom, 0)) max(min(1.1rem, 4vw), env(safe-area-inset-left, 0));
  font-size: 0.88rem;
  border-top: 1px solid rgba(200, 233, 200, 0.12);
  box-shadow: 0 -20px 40px rgba(12, 36, 24, 0.15) inset;
}

.site-footer a {
  color: #9ef0b8;
  font-weight: 500;
}

.site-footer__delivery {
  margin: 0 0 0.65rem;
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  overflow-wrap: break-word;
  padding: 0 0.1rem;
}

/* Below tablet: single-column hero reads better centered */
@media (max-width: 899px) {
  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .trust {
    justify-content: center;
  }

  .hero-copy .lede {
    margin-left: auto;
    margin-right: auto;
  }

  .section-header p {
    font-size: 1.02rem;
  }
}

@media (max-width: 480px) {
  .section-inner {
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
  }

  .section-header h2 {
    font-size: clamp(1.5rem, 5.2vw, 2.1rem);
  }

  .contact-box {
    padding: 1.1rem 1.05rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.65rem, 8.5vw, 2.4rem);
  }

  .brand-tag {
    font-size: 0.62rem;
  }

  .mhl-menu-section {
    padding: 1.1rem 0 1.75rem;
  }

  .subscription-card__price {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
  }
}

/* Mobile: menu row under brand; scroll horizontally if it doesn’t fit */
@media (max-width: 720px) {
  .header-inner {
    gap: 0.35rem;
    padding-bottom: 0.5rem;
  }

  .brand {
    flex-shrink: 0;
    min-width: 0;
  }

  .brand-name {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }

  .nav {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-top: 0.5rem;
    margin: 0 -0.1rem 0 0;
    padding-left: 0;
    padding-right: 0.1rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 0.4rem 0.65rem;
    box-sizing: border-box;
  }

  .nav a,
  .nav .btn {
    flex-shrink: 0;
  }

  .nav a:not(.btn) {
    font-size: 0.82rem;
  }

  .nav .btn.btn-primary {
    width: auto;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero::before,
  .hero::after {
    opacity: 0.5;
  }
}
