:root {
  --green-950: #0b281d;
  --green-900: #123d2b;
  --green-800: #195139;
  --green-700: #276b4b;
  --gold-600: #b88916;
  --gold-500: #d6aa35;
  --gold-300: #ead17e;
  --cream-100: #fbf7ef;
  --cream-200: #f4eadb;
  --cream-300: #e9dac6;
  --brown-900: #2d251f;
  --brown-700: #5f5147;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(18, 61, 43, 0.08);
  --shadow-lg: 0 30px 80px rgba(18, 61, 43, 0.15);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 40px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--brown-900);
  background: var(--cream-100);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2.35rem, 4.3vw, 4.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 22px;
}

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

p {
  color: var(--brown-700);
}

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

.section {
  padding: 112px 0;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: var(--green-900);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.announcement {
  background: var(--green-950);
  color: #f4eadb;
  text-align: center;
  padding: 8px 18px;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 247, 239, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(18, 61, 43, 0.08);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(251, 247, 239, 0.97);
}

.nav-wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
  background: white;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: .95;
}

.brand strong {
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
}

.brand small {
  margin-top: 6px;
  color: var(--gold-600);
  font-size: .67rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  position: relative;
  color: var(--green-950);
  font-size: .94rem;
  font-weight: 600;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--cream-200);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green-900);
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--green-900);
  border-radius: 999px;
  color: white;
  background: var(--green-900);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(18, 61, 43, 0.12);
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-800);
  box-shadow: 0 16px 32px rgba(18, 61, 43, 0.18);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: .88rem;
}

.button-full {
  width: 100%;
}

.button-outline {
  color: var(--green-900);
  background: transparent;
  box-shadow: none;
}

.button-outline:hover {
  color: white;
}

.button-light {
  color: var(--green-950);
  border-color: white;
  background: white;
}

.button-light:hover {
  color: white;
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-weight: 700;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-block;
  color: var(--gold-600);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.eyebrow.light {
  color: var(--gold-300);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 114px);
  display: flex;
  align-items: center;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 72% 22%, rgba(214, 170, 53, .15), transparent 26%),
    linear-gradient(135deg, #fffaf2 0%, #f5ecdf 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 72px;
}

.hero-copy h1 em {
  color: var(--green-900);
  font-style: italic;
}

.hero-copy > p {
  max-width: 640px;
  font-size: 1.16rem;
  line-height: 1.8;
}

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

.hero-points {
  display: flex;
  gap: 22px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-points span {
  position: relative;
  padding-left: 20px;
  color: var(--green-900);
  font-size: .88rem;
  font-weight: 700;
}

.hero-points span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-600);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  width: min(100%, 510px);
  margin-left: auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 48px;
  background: rgba(255,255,255,.5);
  box-shadow: var(--shadow-lg);
}

.hero-card img {
  height: 670px;
  object-fit: cover;
  border-radius: 34px;
}

.hero-badge {
  position: absolute;
  z-index: 2;
  right: -24px;
  top: 48px;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  color: white;
  background: var(--green-900);
  border: 4px solid var(--gold-500);
  font-family: "Playfair Display", Georgia, serif;
  font-size: .95rem;
  line-height: 1.25;
  transform: rotate(7deg);
}

.hero-note {
  position: absolute;
  left: -30px;
  bottom: 44px;
  display: flex;
  flex-direction: column;
  padding: 18px 24px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-sm);
}

.hero-note strong {
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.hero-note span {
  color: var(--gold-600);
  font-size: .82rem;
  font-weight: 700;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .7;
}

.hero-orb-one {
  width: 260px;
  height: 260px;
  left: -120px;
  bottom: 40px;
  border: 1px solid rgba(18, 61, 43, .13);
}

.hero-orb-two {
  width: 120px;
  height: 120px;
  right: 30px;
  bottom: 20px;
  background: rgba(214, 170, 53, .12);
}

.trust-strip {
  background: var(--green-900);
  color: white;
}

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

.trust-grid div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 92px;
  border-right: 1px solid rgba(255,255,255,.15);
}

.trust-grid div:last-child {
  border-right: 0;
}

.trust-grid b {
  color: var(--gold-300);
  font-family: "Playfair Display", Georgia, serif;
}

.trust-grid span {
  font-size: .92rem;
  font-weight: 700;
}

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

.section-heading h2,
.center-heading h2 {
  margin-bottom: 0;
}

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

.center-heading p {
  max-width: 620px;
  margin: 18px auto 0;
}

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

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(18, 61, 43, .1);
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card.featured {
  transform: translateY(-14px);
  border-color: var(--gold-500);
}

.product-card.featured:hover {
  transform: translateY(-20px);
}

.popular-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--green-950);
  background: var(--gold-300);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 400px;
  background: var(--cream-200);
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.035);
}

.size-chip {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green-900);
  border: 3px solid white;
  font-weight: 800;
}

.product-body {
  padding: 26px;
}

.product-kicker {
  margin-bottom: 7px;
  color: var(--gold-600);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-body p:not(.product-kicker) {
  min-height: 76px;
}

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

.story-grid,
.visual-story-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 72px;
}

.story-image {
  position: relative;
}

.story-image img,
.visual-story-grid img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-caption {
  position: absolute;
  right: -20px;
  bottom: -20px;
  padding: 16px 20px;
  border-radius: 14px;
  color: var(--green-950);
  background: var(--gold-300);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.story-copy p {
  font-size: 1.02rem;
}

.story-copy blockquote {
  margin: 28px 0;
  padding: 20px 0 20px 22px;
  border-left: 3px solid var(--gold-500);
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.5;
}

.benefits-section {
  background: var(--green-950);
}

.benefits-section .center-heading h2,
.benefits-section .center-heading p {
  color: white;
}

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

.benefit-card {
  padding: 30px 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.055);
}

.benefit-card h3 {
  color: white;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.72);
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--gold-300);
  font-size: 1.6rem;
}

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

.serving-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: white;
  box-shadow: var(--shadow-sm);
}

.serving-card > div:last-child {
  padding: 24px;
}

.serving-card > div:last-child > span {
  color: var(--gold-600);
  font-size: .75rem;
  font-weight: 800;
}

.serving-card p {
  margin-bottom: 0;
}

.serving-art {
  height: 260px;
  display: grid;
  place-items: center;
  font-size: 6rem;
}

.serving-yoghurt { background: linear-gradient(135deg, #f3d7c2, #fff8ee); }
.serving-snack { background: linear-gradient(135deg, #d4e4cf, #f6f1da); }
.serving-smoothie { background: linear-gradient(135deg, #f3c7ca, #f8e9d7); }

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

.testimonial-wrap {
  max-width: 900px;
  text-align: center;
}

.testimonial-wrap > p {
  color: var(--green-950);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.25;
}

.quote-mark {
  display: block;
  height: 74px;
  color: var(--gold-500);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 7rem;
  line-height: 1;
}

.stars {
  color: var(--gold-600);
  letter-spacing: .22em;
}

.testimonial-name {
  display: block;
  margin-top: 14px;
  color: var(--green-900);
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-item {
  border-bottom: 1px solid rgba(18, 61, 43, .15);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--green-950);
  background: transparent;
  text-align: left;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-question span {
  color: var(--gold-600);
  font-family: "DM Sans", Arial, sans-serif;
  transition: transform .2s ease;
}

.faq-item.open .faq-question span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p {
  padding: 0 38px 22px 0;
}

.cta-section {
  padding: 44px 0;
  color: white;
  background: var(--green-900);
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 44px 0;
}

.cta-wrap h2 {
  max-width: 720px;
  color: white;
  margin-bottom: 12px;
}

.cta-wrap p {
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
}

.site-footer {
  color: white;
  background: var(--green-950);
  padding: 78px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .9fr .9fr;
  gap: 50px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid h3 {
  color: var(--gold-300);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .78rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span,
.footer-brand p {
  color: rgba(255,255,255,.7);
  font-size: .92rem;
}

.footer-grid a:hover {
  color: white;
}

.brand-light strong {
  color: white;
}

.footer-brand p {
  max-width: 350px;
  margin-top: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 30px;
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}

.floating-whatsapp {
  position: fixed;
  z-index: 900;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 999px;
  color: white;
  background: #1fa855;
  box-shadow: 0 18px 42px rgba(14, 77, 39, .28);
  font-size: .92rem;
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

.page-hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at 84% 16%, rgba(214,170,53,.17), transparent 24%),
    linear-gradient(135deg, #fffaf2, #efe2d0);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 70px;
}

.page-hero h1 {
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.page-hero p {
  max-width: 650px;
  font-size: 1.12rem;
}

.page-hero-image img {
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero-image.tall img {
  height: 610px;
}

.shop-listing {
  background: white;
}

.shop-product {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
  padding: 54px 0;
  border-bottom: 1px solid rgba(18,61,43,.12);
}

.shop-product.reverse .shop-product-image {
  order: 2;
}

.shop-product-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-200);
  box-shadow: var(--shadow-sm);
}

.shop-product-image img {
  height: 590px;
  object-fit: cover;
}

.shop-product-image span {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green-900);
  border: 4px solid white;
  font-weight: 800;
}

.shop-product-copy {
  max-width: 580px;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
}

.clean-list li {
  position: relative;
  padding: 7px 0 7px 26px;
  color: var(--green-900);
  font-weight: 600;
}

.clean-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-600);
}

.price-note {
  margin-bottom: 24px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold-500);
  background: var(--cream-200);
  font-size: .9rem;
}

.order-process {
  background: var(--cream-200);
}

.process-grid,
.values-grid,
.tips-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-card,
.value-card,
.tip-card,
.info-card {
  padding: 30px;
  border-radius: var(--radius-sm);
  background: white;
  box-shadow: var(--shadow-sm);
}

.process-card b,
.value-card b,
.tip-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--gold-300);
  font-family: "Playfair Display", Georgia, serif;
}

.intro-story {
  text-align: center;
}

.intro-story .lead {
  color: var(--green-900);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.55;
}

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

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.mission-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 46px;
  border-radius: var(--radius-md);
  color: white;
  background: var(--green-900);
}

.mission-card.vision {
  color: var(--green-950);
  background: var(--gold-300);
}

.mission-card span {
  margin-bottom: auto;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.mission-card h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.mission-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.77);
}

.mission-card.vision p {
  color: rgba(11,40,29,.73);
}

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

.visual-story {
  background: var(--cream-200);
}

.recipe-hero-art {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #dce9d6, #f4d5bc);
  box-shadow: var(--shadow-lg);
}

.recipe-hero-art span {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.7);
  box-shadow: var(--shadow-sm);
}

.recipe-hero-art span:nth-child(1) { width: 170px; height: 170px; font-size: 5.4rem; left: 48px; top: 80px; }
.recipe-hero-art span:nth-child(2) { width: 120px; height: 120px; font-size: 3.9rem; right: 54px; top: 44px; }
.recipe-hero-art span:nth-child(3) { width: 135px; height: 135px; font-size: 4rem; right: 90px; bottom: 45px; }

.recipes-list {
  background: white;
}

.recipe-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
  align-items: stretch;
  padding: 52px 0;
  border-bottom: 1px solid rgba(18,61,43,.12);
}

.recipe-card.reverse .recipe-visual {
  order: 2;
}

.recipe-visual {
  position: relative;
  min-height: 480px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  font-size: 7rem;
  box-shadow: var(--shadow-sm);
}

.recipe-visual small {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  font-size: .8rem;
  font-weight: 800;
}

.recipe-visual-one { background: linear-gradient(135deg, #f4d7cb, #fff8e8); }
.recipe-visual-two { background: linear-gradient(135deg, #f6dc9a, #e8efce); }
.recipe-visual-three { background: linear-gradient(135deg, #eec6a8, #e4eedb); }

.recipe-copy {
  padding: 24px 0;
}

.recipe-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 28px;
}

.recipe-columns h3 {
  font-family: "DM Sans", Arial, sans-serif;
  font-size: .82rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.recipe-columns ul,
.recipe-columns ol {
  padding-left: 20px;
  color: var(--brown-700);
}

.recipe-columns li {
  padding: 5px 0;
}

.recipe-tips {
  background: var(--cream-200);
}

.contact-section {
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 74px;
  align-items: start;
}

.contact-details {
  position: sticky;
  top: 130px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: var(--cream-200);
  transition: transform .2s ease, background .2s ease;
}

.contact-card:hover {
  transform: translateX(4px);
  background: var(--cream-300);
}

.contact-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
}

.contact-card div {
  display: flex;
  flex-direction: column;
}

.contact-card small {
  color: var(--gold-600);
  font-weight: 700;
}

.contact-card strong {
  color: var(--green-900);
}

.social-note {
  margin-top: 22px;
}

.contact-form {
  padding: 38px;
  border-radius: var(--radius-md);
  background: var(--cream-200);
  box-shadow: var(--shadow-sm);
}

.form-heading {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  margin: 15px 0 7px;
  color: var(--green-950);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18,61,43,.18);
  border-radius: 12px;
  padding: 14px 15px;
  color: var(--brown-900);
  background: white;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-600);
  box-shadow: 0 0 0 3px rgba(214,170,53,.18);
}

.contact-form .button {
  margin-top: 24px;
}

.form-disclaimer {
  margin: 14px 0 0;
  font-size: .78rem;
  text-align: center;
}

.contact-faq {
  background: var(--cream-200);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .header-order { display: none; }
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .visual-story-grid,
  .contact-grid { gap: 44px; }
  .product-image { height: 340px; }
  .benefit-grid,
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.35fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
  .section { padding: 82px 0; }
  .nav-toggle { display: flex; order: 3; }
  .main-nav {
    position: fixed;
    top: 114px;
    left: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 20px;
    background: var(--cream-100);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav a { padding: 14px 10px; border-bottom: 1px solid rgba(18,61,43,.08); }
  .main-nav a:last-child { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .hero { min-height: auto; }
  .hero-grid,
  .page-hero-grid,
  .story-grid,
  .visual-story-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-card { margin-inline: auto; }
  .hero-card img { height: 650px; }
  .hero-badge { right: 6px; }
  .hero-note { left: 8px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
  .product-grid,
  .serving-grid,
  .process-grid,
  .tips-grid,
  .info-grid { grid-template-columns: 1fr; }
  .product-card.featured { transform: none; }
  .product-card.featured:hover { transform: translateY(-8px); }
  .product-image { height: 520px; }
  .story-copy { max-width: 720px; }
  .faq-intro,
  .contact-details { position: static; }
  .cta-wrap { flex-direction: column; align-items: flex-start; }
  .shop-product,
  .recipe-card { grid-template-columns: 1fr; gap: 36px; }
  .shop-product.reverse .shop-product-image,
  .recipe-card.reverse .recipe-visual { order: 0; }
  .shop-product-image img { height: 620px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { min-height: 360px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .announcement { font-size: .64rem; }
  .nav-wrap { min-height: 72px; }
  .brand { min-width: auto; }
  .brand img { width: 43px; height: 43px; }
  .brand strong { font-size: 1.38rem; }
  .main-nav { top: 103px; }
  .hero { padding: 54px 0 66px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-card { padding: 10px; border-radius: 30px; }
  .hero-card img { height: 520px; border-radius: 22px; }
  .hero-badge { width: 88px; height: 88px; font-size: .78rem; right: 0; top: 28px; }
  .hero-note { left: 4px; bottom: 24px; padding: 12px 15px; }
  .trust-grid div { min-height: 74px; gap: 8px; flex-direction: column; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .product-image { height: 430px; }
  .benefit-grid,
  .values-grid { grid-template-columns: 1fr; }
  .image-caption { position: static; margin-top: 12px; }
  .page-hero { padding: 64px 0; }
  .page-hero-image img,
  .page-hero-image.tall img { height: 470px; }
  .shop-product-image img { height: 520px; }
  .shop-product { padding: 36px 0; }
  .mission-card { padding: 30px; }
  .recipe-hero-art { min-height: 340px; }
  .recipe-hero-art span:nth-child(1) { width: 130px; height: 130px; font-size: 4.2rem; left: 24px; top: 74px; }
  .recipe-hero-art span:nth-child(2) { width: 95px; height: 95px; font-size: 3rem; right: 26px; top: 32px; }
  .recipe-hero-art span:nth-child(3) { width: 100px; height: 100px; font-size: 3.1rem; right: 48px; bottom: 30px; }
  .recipe-visual { min-height: 350px; }
  .recipe-columns { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp { right: 14px; bottom: 14px; }
}
