* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --cream: #f7f1e7;
  --sand: #e7d8c3;
  --brown: #5b3f2c;
  --dark: #1e211b;
  --green: #566b48;
  --lime: #d6ef77;
  --white: #fffdf8;
  --muted: #6e6b63;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
}

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

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

.site-header {
  min-height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247, 241, 231, 0.96);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30, 33, 27, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Fredoka", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--dark);
  color: var(--lime);
}

nav {
  display: flex;
  gap: 30px;
  font-size: 0.95rem;
  font-weight: 600;
}

nav a:hover {
  opacity: 0.6;
}

.header-cta,
.btn,
.buy-button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.header-cta {
  background: var(--dark);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
}

.header-cta:hover,
.btn:hover,
.buy-button:hover {
  transform: translateY(-2px);
}

.hero {
  min-height: calc(100vh - 78px);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 18, 13, 0.8) 0%, rgba(15, 18, 13, 0.45) 45%, rgba(15, 18, 13, 0.06) 75%),
    linear-gradient(0deg, rgba(15, 18, 13, 0.28), rgba(15, 18, 13, 0));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 90%);
  margin-left: 8vw;
  padding: 90px 0;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 700;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero h1,
.section h2,
.quote-section blockquote {
  font-family: "Fredoka", sans-serif;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 8rem);
  max-width: 950px;
}

.hero h1 span {
  color: var(--lime);
}

.hero p {
  max-width: 620px;
  font-size: 1.15rem;
  margin: 28px 0 34px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
}

.btn-primary {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-stat {
  position: absolute;
  z-index: 2;
  right: 5vw;
  bottom: 5vw;
  background: var(--white);
  color: var(--dark);
  padding: 22px 26px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hero-stat strong {
  display: block;
  font-family: "Fredoka", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-strip {
  min-height: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
  padding: 18px 5vw;
  background: var(--dark);
  color: white;
  text-align: center;
  font-weight: 600;
}

.section {
  padding: 110px 7vw;
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 8vw;
  align-items: center;
}

.story-image-wrap {
  position: relative;
}

.story-image-wrap img {
  height: 640px;
  object-fit: cover;
  border-radius: 30px;
}

.floating-card {
  position: absolute;
  right: -35px;
  bottom: 45px;
  background: var(--lime);
  padding: 22px 26px;
  border-radius: 18px;
  transform: rotate(-3deg);
  box-shadow: 0 18px 40px rgba(40, 42, 32, 0.14);
}

.floating-card .small {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.floating-card strong {
  font-family: "Fredoka", sans-serif;
  font-size: 1.9rem;
  line-height: 1;
}

.section-label {
  color: var(--green);
}

.story-copy h2,
.impact-heading h2,
.product-info h2,
.final-cta h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
  margin: 14px 0 28px;
}

.story-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 630px;
}

.text-link {
  display: inline-block;
  margin-top: 18px;
  font-weight: 800;
  border-bottom: 2px solid var(--dark);
}

.impact {
  background: #e9dfd1;
}

.impact-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

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

.impact-card {
  min-height: 340px;
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  position: relative;
}

.impact-card.featured {
  background: var(--dark);
  color: white;
  transform: translateY(-18px);
}

.impact-card .number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-weight: 800;
  opacity: 0.35;
}

.impact-card .icon {
  font-size: 2.5rem;
  margin: 55px 0 30px;
}

.impact-card h3 {
  font-family: "Fredoka", sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 14px;
}

.impact-card p {
  color: var(--muted);
}

.impact-card.featured p {
  color: rgba(255, 255, 255, 0.67);
}

.shop {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 7vw;
  align-items: center;
}

.product-gallery {
  position: relative;
}

.product-main-image {
  height: 680px;
  object-fit: cover;
  border-radius: 30px;
}

.gallery-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(255, 253, 248, 0.93);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
}

.rating {
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.rating span {
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 8px;
}

.price {
  font-family: "Fredoka", sans-serif;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 22px;
}

.price span {
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.product-description {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 25px;
}

.product-features {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.product-features span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 900;
}

.buy-button {
  width: 100%;
  border: 0;
  background: var(--dark);
  color: white;
  border-radius: 16px;
  padding: 18px 24px;
  font: inherit;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(30, 33, 27, 0.18);
}

.microcopy {
  margin-top: 12px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

.quote-section {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.quote-section img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 16, 0.66);
}

.quote-section blockquote {
  position: relative;
  z-index: 2;
  width: min(1000px, 88%);
  color: white;
  font-size: clamp(2.8rem, 5.8vw, 6.5rem);
}

.final-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  background: var(--sand);
}

.reviews-section {
  background: var(--cream);
}

.btn-dark {
  background: var(--dark);
  color: white;
  white-space: nowrap;
}

footer {
  padding: 60px 7vw 30px;
  background: var(--dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 35px;
  align-items: start;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero-stat {
    display: none;
  }

  .hero-content {
    margin-left: 6vw;
  }

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

  .story,
  .shop {
    grid-template-columns: 1fr;
  }

  .story-image-wrap img,
  .product-main-image {
    height: 520px;
  }

  .floating-card {
    right: 20px;
  }

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

  .impact-card.featured {
    transform: none;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 68px;
  }

  .header-cta {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    margin-left: 5vw;
    padding-top: 30px;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    text-align: left;
    padding-block: 24px;
  }

  .section {
    padding: 80px 5vw;
  }

  .story-image-wrap img,
  .product-main-image {
    height: 430px;
  }

  .floating-card {
    right: 12px;
    bottom: 18px;
  }

  .floating-card strong {
    font-size: 1.45rem;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }
}



.sales-bar {
  min-height: 42px;
  padding: 9px 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  color: var(--dark);
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  position: relative;
  z-index: 110;
}

.sales-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sales-bar strong {
  font-weight: 800;
}

.sales-live-dot {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(86, 107, 72, 0.15);
  animation: sales-pulse 2s infinite;
}

.sales-divider {
  opacity: 0.45;
}

@keyframes sales-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(86, 107, 72, 0.45);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(86, 107, 72, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(86, 107, 72, 0);
  }
}

@media (max-width: 600px) {
  .sales-bar {
    min-height: 52px;
    padding: 9px 14px;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .sales-bar-content {
    gap: 6px;
  }

  .sales-divider {
    display: none;
  }
}



.donation-progress-bar {
  padding: 12px 5vw;
  background: var(--lime);
  color: var(--dark);
  position: relative;
  z-index: 110;
}

.donation-progress-top,
.donation-progress-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.86rem;
}

.donation-progress-top {
  margin-bottom: 8px;
}

.donation-progress-bottom {
  margin-top: 6px;
  font-size: 0.76rem;
  color: rgba(30, 33, 27, 0.75);
}

.donation-progress-bar strong {
  font-weight: 800;
}

.progress-track {
  width: 100%;
  max-width: 1200px;
  height: 12px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(30, 33, 27, 0.16);
}

.progress-fill {
  width: 0;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--dark);
  transition: width 1.2s ease;
}

@media (max-width: 600px) {
  .donation-progress-bar {
    padding: 11px 16px;
  }

  .donation-progress-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .donation-progress-bottom {
    font-size: 0.7rem;
  }
}

.reviews-section {
  background: var(--cream);
}

.reviews-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}

.reviews-heading h2 {
  font-family: "Fredoka", sans-serif;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 14px 0 20px;
}

.reviews-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1250px;
  margin: 0 auto;
}

.review-card {
  min-height: 330px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid rgba(30, 33, 27, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(30, 33, 27, 0.07);
}

.featured-review {
  background: var(--dark);
  color: white;
  transform: translateY(-16px);
}

.review-stars {
  color: #d9a928;
  letter-spacing: 0.12em;
  font-size: 1.1rem;
}

.review-text {
  margin: 24px 0 34px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
}

.featured-review .review-text {
  color: rgba(255, 255, 255, 0.78);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  font-family: "Fredoka", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.review-person strong,
.review-person span {
  display: block;
}

.review-person span {
  color: var(--muted);
  font-size: 0.82rem;
}

.featured-review .review-person span {
  color: rgba(255, 255, 255, 0.55);
}

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

  .featured-review {
    transform: none;
  }

  .review-card {
    min-height: 280px;
  }
}

.logo-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
