* {
  box-sizing: border-box;
}

:root {
  --bg: #fff9d8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-soft: rgba(255, 247, 188, 0.82);
  --text: #322408;
  --muted: #71591c;
  --line: rgba(130, 98, 9, 0.14);
  --yellow: #ffd400;
  --yellow-deep: #ffbe0b;
  --yellow-soft: #ffe56a;
  --shadow: 0 24px 60px rgba(168, 130, 7, 0.14);
  --shadow-soft: 0 12px 28px rgba(168, 130, 7, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  line-height: 1.75;
  background:
    radial-gradient(circle at top left, rgba(255, 223, 84, 0.68), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 238, 130, 0.62), transparent 25%),
    linear-gradient(180deg, #fffdf0 0%, #fff6c8 100%);
  overflow-x: hidden;
}

.sun {
  position: fixed;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}

.sun--one {
  top: -8rem;
  left: -6rem;
  background: rgba(255, 205, 10, 0.68);
}

.sun--two {
  right: -7rem;
  bottom: 10%;
  background: rgba(255, 226, 91, 0.5);
}

body > * {
  position: relative;
  z-index: 1;
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(255, 249, 216, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.topbar.is-scrolled {
  background: rgba(255, 249, 216, 0.92);
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(131, 101, 16, 0.08);
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand__icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow-soft), var(--yellow));
  box-shadow: var(--shadow-soft);
  font-size: 1.15rem;
}

.brand__text {
  font-size: 1.35rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-weight: 700;
}

.nav__button {
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #3a2b04 !important;
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 82px 0 48px;
}

.hero__grid,
.split,
.nutrition,
.cta,
.footer__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 234, 111, 0.9);
  color: #886300;
  border: 1px solid rgba(182, 141, 8, 0.12);
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1, h2 {
  font-family: "Manrope", sans-serif;
}

h1 {
  font-size: clamp(3rem, 5vw, 5rem);
  margin-bottom: 20px;
  max-width: 13ch;
}

h1 span {
  color: #8f6800;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  margin-bottom: 16px;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 12px;
}

.lead,
.split__content p,
.section-heading p,
.card p,
.info-box p,
.info-box li,
.promise p,
.faq-card p,
.footer p,
.footer li,
.metric p,
.hero__card p,
.list-card li {
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 28px 0 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-deep));
  color: #3a2b04;
  box-shadow: var(--shadow-soft);
}

.button--ghost {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}

.hero__badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.badge,
.metric,
.card,
.info-box,
.promise,
.faq-card,
.list-card,
.hero__card,
.cta-form {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.badge {
  padding: 16px;
  border-radius: var(--radius-md);
  font-weight: 700;
}

.frame {
  padding: 12px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,243,163,0.65));
  border: 1px solid rgba(180, 137, 0, 0.12);
  box-shadow: var(--shadow);
}

.frame img {
  min-height: 320px;
  object-fit: cover;
}

.frame--hero img {
  min-height: 560px;
}

.frame--tall img {
  min-height: 720px;
}

.hero__media {
  position: relative;
}

.hero__card {
  position: absolute;
  right: -8px;
  bottom: 28px;
  width: min(320px, 88%);
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 231, 0.92);
}

.hero__card span,
.promise span {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9e7500;
}

.metrics {
  padding: 14px 0 34px;
}

.metrics__grid,
.cards-grid,
.promise-grid,
.faq-grid,
.gallery-grid {
  display: grid;
  gap: 22px;
}

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

.metric {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.metric h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #8f6800;
}

.section {
  padding: 92px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(255,255,255,0.28), rgba(255, 242, 160, 0.34));
}

.section--yellow {
  background: linear-gradient(180deg, rgba(255, 228, 72, 0.18), rgba(255, 212, 0, 0.12));
}

.section--gallery {
  padding-top: 24px;
}

.section--cta {
  padding-top: 28px;
  padding-bottom: 96px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.list-card,
.info-box,
.promise,
.faq-card,
.cta-form {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.list-card ul,
.info-box ul,
.footer ul {
  margin: 0;
  padding-left: 18px;
}

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

.card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.card__media {
  padding: 12px;
}

.card__body {
  padding: 24px;
}

.promise-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item img {
  height: 310px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

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

.cta {
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255, 243, 176, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 34px;
}

.cta-form {
  background: rgba(255, 253, 238, 0.92);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form label,
.cta-form small {
  color: var(--muted);
}

.cta-form input {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid rgba(157, 122, 12, 0.18);
  background: #fff;
  font: inherit;
}

.footer {
  padding: 40px 0 64px;
  border-top: 1px solid rgba(145, 109, 2, 0.12);
}

.brand--footer {
  margin-bottom: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero__grid,
  .split,
  .nutrition,
  .cta,
  .footer__grid,
  .metrics__grid,
  .cards-grid,
  .promise-grid,
  .faq-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .frame--hero img,
  .frame--tall img {
    min-height: 420px;
  }

  .hero__badges {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .topbar__inner {
    padding: 14px 0;
    align-items: flex-start;
  }

  .nav {
    gap: 12px;
  }

  .hero {
    padding-top: 48px;
  }

  .section {
    padding: 72px 0;
  }

  .hero__card {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .cta {
    padding: 24px;
  }
}
