:root {
  --green: #1F4D3A;
  --lettuce: #8FD36A;
  --cream: #F6F4EF;
  --paper: #FFFCF5;
  --ink: #183329;
  --muted: #65776D;
  --line: rgba(31, 77, 58, 0.18);
  --shadow: 0 24px 60px rgba(31, 77, 58, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  display: block;
  width: 160px;
  height: auto;
}

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

.nav-link {
  color: var(--green);
  font-weight: 750;
  opacity: 0.75;
}

.nav-cta {
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--green);
  font-weight: 750;
}

/* HOME HERO */

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 28px auto 72px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

h1 {
  font-size: clamp(3.4rem, 6.6vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
  color: var(--green);
}

.hero-subhead {
  font-size: 1.22rem;
  line-height: 1.5;
  color: #36584A;
  max-width: 620px;
  margin-bottom: 28px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.button.primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 12px 28px rgba(31, 77, 58, 0.18);
}

.button.secondary {
  background: var(--paper);
  color: var(--green);
  border-color: var(--line);
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.bowl-card {
  min-height: 500px;
  border-radius: 28px;
  overflow: hidden;
  background: #E7F6DA;
}

.bowl-image,
.bowl-image img,
.product-image {
  width: 100%;
  height: 100%;
  display: block;
}

.product-image {
  object-fit: cover;
}

/* SECTIONS */

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
  color: var(--green);
  margin-bottom: 18px;
}

h3 {
  color: var(--green);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.promise-grid {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promise-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(31, 77, 58, 0.07);
}

.promise-grid p {
  color: #48685A;
  line-height: 1.55;
}

.number {
  display: inline-block;
  color: var(--lettuce);
  font-weight: 900;
  margin-bottom: 16px;
}

.split-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(28px, 5vw, 52px);
  box-shadow: 0 12px 32px rgba(31, 77, 58, 0.07);
}

.split-section p:last-child {
  color: #48685A;
  font-size: 1.14rem;
  line-height: 1.62;
  margin-bottom: 0;
}

/* FLAVORS */

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

.flavor-inner {
  text-align: center;
}

.about-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--green);
  font-size: 1rem;
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(31, 77, 58, 0.08);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
}

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

.flavor-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(31, 77, 58, 0.07);
}

.flavor-image {
  position: relative;
  min-height: 360px;
}

.flavor-image img {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
}

.flavor-tag {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 252, 245, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  text-align: left;
  backdrop-filter: blur(8px);
}

.flavor-tag p {
  color: #48685A;
  line-height: 1.45;
  margin-bottom: 0;
}

/* FOOTER */

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.site-footer span:last-child {
  text-align: right;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--green);
  color: var(--green);
  padding: 10px 16px;
  font-size: 0.95rem;
  font-weight: 750;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.footer-button:hover {
  background: var(--green);
  color: var(--cream);
}

/* MOBILE */

@media (max-width: 760px) {
  .site-header {
    padding: 18px 0;
  }

  .brand-logo {
    width: 120px;
  }

  .nav-right {
    gap: 12px;
  }

  .nav-link {
    display: none;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    margin: 16px auto 52px;
  }

  h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
    line-height: 0.9;
    margin-bottom: 18px;
  }

  .hero-subhead {
    font-size: 1.08rem;
  }

  .bowl-card {
    min-height: 340px;
  }

  .promise-grid,
  .split-section,
  .flavor-grid {
    grid-template-columns: 1fr;
  }

  .split-section {
    padding: 28px;
  }

  .flavor-image,
  .flavor-image img {
    height: 340px;
    min-height: 340px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer span:last-child {
    text-align: center;
  }
}
