:root {
  --ink: #23452b;
  --orange: #d96720;
  --cream: #fff4bd;
  --paper: #fffdf2;
  --page: clamp(14px, 5vw, 110px);
  --content: 1400px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
}

img,
picture,
svg,
video,
canvas {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.025em;
}

h1 {
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  margin-bottom: 1rem;
}

h1 span,
h2 span {
  color: var(--orange);
}

.site-header {
  min-height: 78px;
  width: 100%;
  padding: 10px var(--page);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #e8d897;
  background: #fff9d8;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 1.5rem;
  line-height: 0.78;
}

.brand img {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
}

.nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 25px);
}

.nav > a:not(.button) {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  max-width: 100%;
  padding: 14px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: 0.2s;
}

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

.button-small {
  padding: 11px 15px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 6vw, 105px);
  width: 100%;
  max-width: var(--content);
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(55px, 8vw, 130px) var(--page);
  background: radial-gradient(circle at 14% 15%, #fffbdc 0, transparent 25%), var(--cream);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead {
  max-width: 540px;
  margin-bottom: 28px;
  color: #49604b;
  font-size: clamp(0.95rem, 1.5vw, 1.04rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
  color: #527053;
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  min-width: 0;
  justify-self: end;
}

.hero-image {
  width: 100%;
  height: clamp(380px, 45vw, 570px);
  object-fit: cover;
  border-radius: 45% 45% 5px 5px;
  box-shadow: 18px 18px 0 #eeb66c;
}

.image-note,
.social-card {
  position: absolute;
  max-width: calc(100% - 20px);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: 0 10px 25px #573c1918;
  color: var(--ink);
}

.image-note {
  bottom: 25px;
  left: -28px;
  padding: 15px 19px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}

.social-card {
  top: 28px;
  right: -20px;
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  font-size: 0.78rem;
}

.social-card strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
}

.social-card a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
}

.section {
  width: 100%;
  padding: clamp(60px, 8vw, 125px) var(--page);
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 80px);
  background: var(--paper);
}

.about > *,
.bulk > *,
.poster-section > * {
  min-width: 0;
}

.about-copy {
  max-width: 680px;
  font-size: 0.97rem;
}

.about-copy p {
  margin-bottom: 19px;
}

.difference {
  background: #f6e29c;
}

.difference-copy {
  max-width: 1180px;
  margin: auto;
  text-align: center;
}

.difference-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 38px auto 48px;
  text-align: left;
}

.difference-list p {
  min-width: 0;
  margin: 0;
  padding: 18px 20px;
  border: 1px solid #e4c970;
  border-radius: 12px;
  background: #fff9df;
  font-size: 0.92rem;
  line-height: 1.55;
}


.products {
  background: #eff1dd;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 38px;
}

.section-heading > p {
  max-width: 270px;
  margin-bottom: 0;
  color: #5d7058;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 300px;
  overflow: hidden;
  padding: 23px;
  border-radius: 16px;
  background: #fffcf5;
}

.product-card img {
  width: calc(100% + 46px);
  height: 175px;
  max-width: none;
  margin: -23px -23px 19px;
  object-fit: cover;
}

.product-card p {
  margin-bottom: 7px;
  color: #74836f;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.45;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-card h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 1.75rem);
}

.poster-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 500px;
  background: #193e21;
  color: #fff;
}

.poster-section img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.poster-section > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 7vw, 115px);
}

.poster-section .text-link {
  color: #fff;
}

.bulk {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(30px, 6vw, 70px);
}

.bulk > div > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 20px;
  color: #596a55;
}

.bulk ul {
  margin: 0 0 28px;
  padding-left: 20px;
}

.bulk li {
  margin: 6px 0;
}

.bulk img {
  width: 100%;
  max-height: 550px;
  border-radius: 20px;
  object-fit: cover;
}

.feedback {
  text-align: center;
  background: var(--paper);
}

.feedback h2 {
  margin-bottom: 14px;
}

.feedback-intro {
  max-width: 500px;
  margin: 0 auto 42px;
  color: #5d7058;
}

.contact {
  padding-bottom: 90px;
  background: var(--orange);
  color: #fff;
  text-align: center;
}

.contact .eyebrow {
  color: #fff3b8;
}

.contact h2 {
  font-size: clamp(3.3rem, 6vw, 6rem);
}

.contact > p:not(.eyebrow) {
  font-size: clamp(0.95rem, 1.5vw, 1.04rem);
}

.contact-phone {
  display: block;
  margin: 28px 0 36px;
  color: #fff;
  font: clamp(2.3rem, 4vw, 4rem) / 1 "Bebas Neue", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  flex-wrap: wrap;
  font-size: 0.85rem;
}

.contact-details address {
  max-width: 100%;
  font-style: normal;
  overflow-wrap: anywhere;
}

.contact-details div {
  display: grid;
  gap: 7px;
  text-align: left;
}

.contact-details a {
  color: #fff;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px var(--page);
  background: #102f18;
  color: #d4dfc9;
  font-size: 0.8rem;
}

footer .brand {
  color: #fff;
}

footer p {
  margin: 0;
  white-space: nowrap;
}

/* Compact desktop / large tablet */
@media (max-width: 1100px) {
  :root {
    --page: clamp(18px, 4vw, 55px);
  }

  .nav {
    gap: 12px;
  }

  .nav > a:not(.button) {
    font-size: 0.76rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.9fr);
    gap: 38px;
  }

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

/* Tablet and smaller */
@media (max-width: 920px) {
  .site-header {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px var(--page) 22px;
    border-bottom: 1px solid #e8d897;
    background: #fff9d8;
    box-shadow: 0 9px 18px #0002;
  }

  .nav.open {
    display: flex;
  }

  .nav > a:not(.button) {
    display: block;
    width: 100%;
    padding: 9px 0;
    font-size: 0.94rem;
  }

  .nav .button-small {
    width: 100%;
    margin-top: 6px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 65px;
  }

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

  .hero-image-wrap {
    max-width: 620px;
    justify-self: center;
  }

  .hero-image {
    height: clamp(390px, 72vw, 600px);
  }

  .about,
  .bulk {
    grid-template-columns: 1fr;
  }

  .about {
    gap: 25px;
  }

  .difference-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .poster-section {
    grid-template-columns: 1fr;
  }

  .poster-section img {
    min-height: 320px;
    max-height: 480px;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --page: 16px;
  }

  h1 {
    font-size: clamp(3.2rem, 17vw, 5.5rem);
  }

  h2 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    font-size: 1.35rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 70px;
  }

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

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-image {
    height: min(125vw, 500px);
    min-height: 340px;
    box-shadow: 10px 10px 0 #eeb66c;
  }

  .image-note {
    bottom: 14px;
    left: 8px;
    padding: 12px 14px;
    font-size: 1.1rem;
  }

  .social-card {
    top: 10px;
    right: 8px;
    padding: 11px 13px;
    font-size: 0.72rem;
  }

  .trust-row {
    display: block;
    margin-top: 28px;
    line-height: 2;
  }

  .trust-row span {
    display: block;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .difference-list,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .difference-list {
    margin-bottom: 30px;
  }

  .product-card {
    min-height: 275px;
  }

  .product-card img {
    height: 205px;
  }

  .poster-section > div {
    padding: 55px var(--page);
  }

  .contact {
    padding-bottom: 65px;
  }

  .contact-details {
    gap: 20px;
  }

  .contact-details div {
    text-align: center;
  }

  .contact-phone {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  footer p {
    white-space: normal;
  }
}

/* Very small phones: keep everything inside ~320px screens */
@media (max-width: 360px) {
  :root {
    --page: 12px;
  }

  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero-image-wrap {
    padding-right: 2px;
  }

  .hero-image {
    height: 350px;
    min-height: 0;
    border-radius: 38% 38% 5px 5px;
  }

  .image-note {
    left: 5px;
    bottom: 8px;
    padding: 10px 11px;
    font-size: 1rem;
  }

  .social-card {
    top: 7px;
    right: 5px;
    padding: 9px 10px;
  }

  .product-card {
    padding: 18px;
  }

  .product-card img {
    width: calc(100% + 36px);
    height: 185px;
    margin: -18px -18px 17px;
  }

  .button {
    padding: 13px 16px;
  }
}

/* Landscape phones */
@media (max-width: 920px) and (orientation: landscape) and (max-height: 600px) {
  .hero {
    padding-top: 45px;
  }

  .hero-image {
    height: min(80vh, 500px);
  }
}

/* Users who prefer less animation */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}

/* Responsive content replacements: no large review/ingredient screenshots */
.ingredient-points {
  width: min(100%, 1120px);
  margin: 6px auto 0;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 10px 26px #6e55141c;
}

.ingredient-intro {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 44px);
}

.ingredient-intro .eyebrow {
  margin-bottom: 10px;
}

.ingredient-intro h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: .95;
  font-weight: 400;
}

.ingredient-intro h3 span {
  color: var(--orange);
}

.ingredient-grid,
.feedback-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ingredient-grid article,
.feedback-points article {
  min-width: 0;
  padding: 22px;
  border: 1px solid #e6ddb9;
  border-radius: 16px;
  background: #fffef8;
}

.ingredient-grid article > span,
.feedback-points article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--orange);
  background: #fff4bd;
  font-size: 1rem;
  font-weight: 700;
}

.ingredient-grid h4,
.feedback-points h3 {
  margin: 0 0 8px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.ingredient-grid p,
.feedback-points p {
  margin: 0;
  color: #65715f;
  font-size: .86rem;
  line-height: 1.65;
}

.feedback-points {
  width: min(100%, 1120px);
  margin: 0 auto 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: left;
}

.feedback-points article > span {
  font-size: 1.05rem;
}

.review-button {
  margin-top: 2px;
}

/* Stronger fluid safeguards for every viewport */
.site-header,
main,
section,
footer {
  max-width: 100%;
}

.hero-copy,
.about-copy,
.difference-copy,
.bulk > div,
.poster-section > div,
.contact,
footer {
  min-width: 0;
}

p,
li,
h1,
h2,
h3,
h4,
a {
  overflow-wrap: anywhere;
}

@media (max-width: 920px) {
  .ingredient-grid,
  .feedback-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .ingredient-points {
    padding: 24px 16px;
    border-radius: 15px;
  }

  .ingredient-grid,
  .feedback-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ingredient-grid article,
  .feedback-points article {
    padding: 18px;
  }

  .review-button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .ingredient-points {
    padding: 20px 12px;
  }

  .ingredient-grid article,
  .feedback-points article {
    padding: 15px;
  }
}
