:root {
  --white: #ffffff;
  --ink: #142116;
  --muted: #657168;
  --green: #23964f;
  --green-dark: #0f5f31;
  --orange: #f28b22;
  --red: #df3d32;
  --cream: #fff8ed;
  --soft: #f6faf4;
  --shadow: 0 24px 80px rgba(15, 95, 49, 0.16);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
  --header-height: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.narrow {
  max-width: 860px;
}

.center {
  text-align: center;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

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

.section-kicker,
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.section-kicker.light {
  color: #c9ffdb;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3rem, 4vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

p {
  color: var(--muted);
  font-size: 1.03rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--orange));
  color: var(--white);
  box-shadow: 0 16px 42px rgba(35, 150, 79, 0.28);
}

.btn-glass {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
}

.btn-outline {
  color: var(--green-dark);
  border-color: rgba(35, 150, 79, 0.24);
  background: var(--white);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 18px;
  border-radius: 999px;
  transition: background 0.3s ease, box-shadow 0.3s ease, top 0.3s ease, border-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-transparent {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-solid,
.site-header.scrolled {
  top: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.12);
  border-color: rgba(35, 150, 79, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand {
  margin-left: 20px;
}

.brand img {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.14));
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand small {
  color: currentColor;
  opacity: 0.7;
  font-size: 0.75rem;
  font-weight: 700;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  color: currentColor;
  transition: background 0.25s ease, color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(35, 150, 79, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--green);
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(35, 150, 79, 0.28);
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 0;
  background: rgba(35, 150, 79, 0.82);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 10px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.35s ease, transform 0.35s ease;
  color: var(--white);
  overflow: hidden;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}


.mobile-close {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-logo {
  width: 120px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 28px rgba(0, 0, 0, 0.25));
}

.mobile-menu nav {
  display: grid;
  gap: 12px;
  text-align: center;
}

.mobile-nav-link {
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: -0.06em;
  transform: translateY(18px);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: calc(var(--i) * 0.06s);
}

.mobile-nav-link.small {
  font-size: clamp(1.2rem, 5vw, 2rem);
  letter-spacing: -0.02em;
  opacity: 0.85;
}

.mobile-menu.active .mobile-nav-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.mobile-contact a {
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-weight: 800;
}

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

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  background: linear-gradient(135deg, #0f5f31, #f28b22);
}

.hero-overlay {
  background: radial-gradient(circle at 75% 25%, rgba(242, 139, 34, 0.44), transparent 34%), linear-gradient(120deg, rgba(5, 31, 16, 0.78), rgba(5, 31, 16, 0.34));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
    align-items: center;
  text-align: center;
  justify-content: center;
}
.hero-content h1{ 
  margin-bottom: 20px;
}
.hero-content .eyebrow {
  color: #c9ffdb;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  margin: 24px 0 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hero-info-card {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - var(--container)) / 2));
  bottom: 52px;
  width: 260px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.22);
}

.hero-info-card span,
.hero-info-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
}

.hero-info-card strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin: 10px 0;
}



.floating-veggies span {
  position: absolute;
  z-index: 1;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, 0.25));
  opacity: 0.85;
  animation: floatVeg 7s ease-in-out infinite;
}

.veg-1 { top: 18%; right: 11%; font-size: 4rem; animation-delay: 0s; }
.veg-2 { top: 34%; right: 29%; font-size: 3rem; animation-delay: 1s; }
.veg-3 { bottom: 22%; left: 8%; font-size: 4.2rem; animation-delay: 2s; }
.veg-4 { top: 19%; left: 12%; font-size: 2.7rem; animation-delay: 3s; }
.veg-5 { bottom: 18%; right: 17%; font-size: 3.4rem; animation-delay: 1.8s; }

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.align-center {
  align-items: center;
}

.quick-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.quick-stats div {
  padding: 20px;
  border-radius: 22px;
  background: var(--soft);
  border: 1px solid rgba(35, 150, 79, 0.1);
}

.quick-stats strong,
.quick-stats span {
  display: block;
}

.quick-stats strong {
  color: var(--green-dark);
  font-size: 1.5rem;
}

.quick-stats span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.photo-stack {
  position: relative;
  min-height: 620px;
}

.photo-stack img {
  position: absolute;
  width: 80%;
  border-radius: var(--radius-xl);
  box-shadow: none;
  border: none;
  transition: transform 0.35s ease;
}

.photo-stack img:first-child {
  top: 0;
  left: 0;
}

.photo-stack img:nth-child(2) {
  right: 0;
  bottom: 28px;
  transform: rotate(5deg);
}

.photo-stack:hover img:first-child {
  transform: translateY(-8px) rotate(-2deg);
}

.photo-stack:hover img:nth-child(2) {
  transform: translateY(8px) rotate(8deg);
}

.stack-badge {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  padding: 16px 20px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 900;
  white-space: nowrap;
}

.vegetable-gradient,
.vegetable-gradient-soft {
  background: radial-gradient(circle at 20% 15%, rgba(242, 139, 34, 0.22), transparent 28%), radial-gradient(circle at 80% 30%, rgba(223, 61, 50, 0.16), transparent 30%), linear-gradient(135deg, #0f5f31, #23964f 48%, #f28b22);
}

.vegetable-gradient-soft {
  background: radial-gradient(circle at top left, rgba(242, 139, 34, 0.18), transparent 35%), radial-gradient(circle at bottom right, rgba(35, 150, 79, 0.16), transparent 32%), #fbfff8;
}

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

.image-card,
.product-hover-card {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #111;
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 150, 79, 0.08);
}

.image-card img,
.product-hover-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.image-card::after,
.product-hover-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 33, 18, 0.88), rgba(8, 33, 18, 0.06));
}

.image-card-content,
.product-overlay {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  padding: 30px;
  color: var(--white);
  transform: translateY(52px);
  transition: transform 0.35s ease;
}

.image-card-content p,
.product-overlay p {
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.image-card-content i,
.product-overlay i {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.image-card:hover img,
.product-hover-card:hover img {
  transform: scale(1.11);
  filter: saturate(1.12);
}

.image-card:hover .image-card-content,
.product-hover-card:hover .product-overlay {
  transform: translateY(0);
}

.image-card:hover .image-card-content p,
.product-hover-card:hover .product-overlay p {
  opacity: 1;
}

.parallax-section,
.parallax-mini {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background-image: linear-gradient(120deg, rgba(9, 34, 17, 0.8), rgba(9, 34, 17, 0.38)), var(--bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.parallax-section.short {
  min-height: 420px;
}

.parallax-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.parallax-content p {
  color: rgba(255, 255, 255, 0.82);
}

.parallax-content h2 {
  margin-bottom: 26px;
}

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

.flip-card {
  perspective: 1200px;
  min-height: 320px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Desktop: hover still works nicely */
@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card-inner,
  .flip-card:focus-within .flip-card-inner {
    transform: rotateY(180deg);
        -webkit-transform: rotateY(180deg);

  }
}

/* Mobile + JS tap state */
.flip-card.is-flipped .flip-card-inner {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
}
.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: var(--radius-xl);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.flip-card-front::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 28px;
}

.flip-card-front i {
  font-size: 4rem;
  margin-bottom: 16px;
}

.flip-card-back {
  background: var(--ink);
  color: var(--white);
  transform: rotateY(180deg);
}

.flip-card-back p {
  color: rgba(255, 255, 255, 0.78);
}

.fresh-front {
  color: var(--white);
  background: linear-gradient(135deg, var(--green), #84c341);
}

.orange-front {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), #f6bd38);
}

.red-front {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #f28b22);
}

.dark-section {
  background: radial-gradient(circle at 20% 20%, rgba(242, 139, 34, 0.22), transparent 26%), radial-gradient(circle at 85% 35%, rgba(35, 150, 79, 0.35), transparent 28%), #08180e;
  color: var(--white);
}

.dark-section p {
  color: rgba(255, 255, 255, 0.76);
}

.cube-stage {
  display: grid;
  place-items: center;
  min-height: 460px;
  perspective: 1000px;
}

.food-cube {
  position: relative;
  width: 240px;
  height: 240px;
  transform-style: preserve-3d;
  animation: rotateCube 12s linear infinite;
}

.food-cube.small-cube {
  width: 210px;
  height: 210px;
}

.cube-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cube-face img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.24));
}

.cube-front { transform: rotateY(0deg) translateZ(120px); }
.cube-back { transform: rotateY(180deg) translateZ(120px); }
.cube-right { transform: rotateY(90deg) translateZ(120px); }
.cube-left { transform: rotateY(-90deg) translateZ(120px); }
.cube-top { transform: rotateX(90deg) translateZ(120px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(120px); }
.small-cube .cube-front { transform: rotateY(0deg) translateZ(105px); }
.small-cube .cube-back { transform: rotateY(180deg) translateZ(105px); }
.small-cube .cube-right { transform: rotateY(90deg) translateZ(105px); }
.small-cube .cube-left { transform: rotateY(-90deg) translateZ(105px); }
.small-cube .cube-top { transform: rotateX(90deg) translateZ(105px); }
.small-cube .cube-bottom { transform: rotateX(-90deg) translateZ(105px); }


.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form-card,
.map-embed-card,
.location-copy,
.legal-card {
  padding: 38px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(35, 150, 79, 0.1);
}

.contact-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 0;
}

.contact-line i {
  color: var(--green);
  margin-top: 4px;
  width: 20px;
  flex: 0 0 20px;
}

.contact-line a {
  color: var(--green-dark);
  font-weight: 800;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.contact-form,
.contact-form-card {
  display: grid;
  gap: 16px;
}

.contact-form label,
.contact-form-card label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(35, 150, 79, 0.18);
  border-radius: 18px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  background: #fbfff8;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form-card input:focus,
.contact-form-card textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(35, 150, 79, 0.12);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.turnstile-wrap {
  min-height: 65px;
  display: flex;
  align-items: center;
}

.form-message {
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 800;
}

.form-message-success,
.form-success {
  background: rgba(35, 150, 79, 0.11);
  color: var(--green-dark);
}

.form-message-error {
  background: rgba(223, 61, 50, 0.1);
  color: #9f241c;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.map-embed-card {
  padding: 0;
  min-height: 440px;
  overflow: hidden;
}

.map-embed-card iframe {
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
  display: block;
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.town-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.town-cloud span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(35, 150, 79, 0.1);
  color: var(--green-dark);
}

.town-cloud.large {
  justify-content: center;
  margin-top: 22px;
}

.seo-text{
  align-items: center;
  text-align: center;
  justify-content: center;
}


.gallery-video-tile {
  position: relative;
}

.video-play-badge {
  position: absolute;
  z-index: 3;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: rgba(35, 150, 79, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.video-play-badge i {
  margin-left: 4px;
  font-size: 1.4rem;
}

.gallery-video-tile:hover .video-play-badge {
  transform: translate(-50%, -50%) scale(1.08);
}

.lightbox video {
  width: min(100%, 980px);
  max-height: 78vh;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  background: #000;
  display: none;
}

.lightbox img {
  display: block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.gallery-tile {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius-lg);
  cursor: pointer;
  padding: 0;
  box-shadow: var(--shadow);
  background: var(--soft);
}

.gallery-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gallery-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent 52%);
}

.gallery-tile > span:not(.video-play-badge) {  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
  text-align: left;
}

.gallery-tile:hover img {
  transform: scale(1.08);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 40px;
  background: rgba(5, 15, 9, 0.84);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
  color: var(--white);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox img {
  width: min(100%, 980px);
  max-height: 78vh;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  background: var(--white);
}

.lightbox div {
  text-align: center;
  max-width: 760px;
  margin-top: 18px;
}

.lightbox p {
  color: rgba(255, 255, 255, 0.8);
  margin: 6px 0 0;
}

.lightbox button {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 1.3rem;
}

.mini-faq,
.faq-page .narrow {
  display: grid;
  gap: 14px;
}

details {
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(15, 95, 49, 0.08);
  border: 1px solid rgba(35, 150, 79, 0.12);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

details i {
  transition: transform 0.25s ease;
}

details[open] i {
  transform: rotate(180deg);
}

.page-hero {
  min-height: 62vh;
  padding-top: 150px;
  align-items: center;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.18rem;
}

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

.product-hover-card {
  min-height: 460px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-row span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(15, 95, 49, 0.09);
  font-weight: 900;
}

.feature-list i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(35, 150, 79, 0.11);
  color: var(--green);
}

.filter-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.filter-btn {
  border: 1px solid rgba(35, 150, 79, 0.18);
  color: var(--green-dark);
  background: var(--white);
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 900;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green);
  color: var(--white);
  transform: translateY(-2px);
}


.legal-hero {
  min-height: 30vh;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(242, 139, 34, 0.42), transparent 30%), linear-gradient(135deg, #0a2413, #23964f);
}

.full-min {
  min-height: 70vh;
}

.legal-card h2:not(:first-child) {
  margin-top: 34px;
}

.legal-card p {
  font-size: 1rem;
}

.legal-note {
  padding: 18px;
  border-radius: 16px;
  background: rgba(242, 139, 34, 0.12);
  color: #795111;
  font-weight: 700;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #07150d;
  padding: 84px 0 0;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background-image: radial-gradient(circle at 20% 20%, var(--orange) 0 10px, transparent 11px), radial-gradient(circle at 80% 35%, var(--green) 0 12px, transparent 13px), radial-gradient(circle at 50% 80%, var(--red) 0 9px, transparent 10px);
  background-size: 170px 170px;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.7fr 1fr;
  gap: 44px;
}

.footer-brand img {
  width: 120px;
  height: auto;
}

.footer-brand span {
  font-size: 1.3rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.site-footer h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  padding: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin-block: 20px;
}

.cookie-banner {
  position: fixed;
  z-index: 2500;
  left: 22px;
  right: 22px;
  bottom: 22px;
  max-width: 940px;
  margin: 0 auto;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(35, 150, 79, 0.12);
  backdrop-filter: blur(18px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 4px 0 0;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

.cookie-actions button {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.cookie-actions a {
  color: var(--green-dark);
  font-weight: 900;
}

@keyframes rotateCube {
  0% { transform: rotateX(-18deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(-18deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes floatVeg {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(8deg); }
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 22px); }
}

@keyframes marquee {
  0% { transform: translateX(-5%); }
  100% { transform: translateX(-55%); }
}

@media (max-width: 1024px) {
  .desktop-nav,
  .quick-call {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .split-grid,
  .contact-grid,
  .location-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    gap: 28px;
  }

  .hero-info-card {
    display: none;
  }
}

@media (max-width: 740px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 74px 0;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px 10px 8px 12px;
  }

  .brand img {
    width: 100px;
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.68rem;
  }

  .hero-content {
    padding-top: 72px;
  }

  .hero-lead {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-veggies span {
    opacity: 0.42;
  }

  .photo-stack {
    min-height: 390px;
  }

  .photo-stack img {
    width: 82%;
    border-width: 7px;
  }

  .stack-badge {
    width: max-content;
    max-width: 94%;
    white-space: normal;
    text-align: center;
  }

  .quick-stats,
  .category-grid,
  .product-grid-large,
  .gallery-grid,
  .gallery-grid.compact,
  .flip-grid {
    grid-template-columns: 1fr;
  }

  .image-card,
  .product-hover-card,
  .gallery-tile {
    min-height: 330px;
  }

  .image-card-content,
  .product-overlay {
    transform: translateY(0);
  }

  .image-card-content p,
  .product-overlay p {
    opacity: 1;
  }

  .parallax-section,
  .parallax-mini {
    min-height: 520px;
    background-attachment: scroll;
  }

  .page-hero {
    min-height: 58vh;
    padding-top: 120px;
  }

  .legal-hero {
  min-height: 20vh;
  }

  
  .cube-stage {
    min-height: 370px;
  }

  .food-cube {
    width: 174px;
    height: 174px;
  }

  .cube-front { transform: rotateY(0deg) translateZ(87px); }
  .cube-back { transform: rotateY(180deg) translateZ(87px); }
  .cube-right { transform: rotateY(90deg) translateZ(87px); }
  .cube-left { transform: rotateY(-90deg) translateZ(87px); }
  .cube-top { transform: rotateX(90deg) translateZ(87px); }
  .cube-bottom { transform: rotateX(-90deg) translateZ(87px); }

.contact-card,
.contact-form,
.contact-form-card,
.location-copy,
.legal-card {
    padding: 24px;
  }
.map-embed-card,
.map-embed-card iframe {
  min-height: 340px;
}
  .cookie-banner {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner.show {
    display: flex;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }

  .lightbox {
    padding: 18px;
  }

  .lightbox button {
    top: 12px;
    right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.direct-contact-panel p {
  margin-top: 0;
}

.direct-contact-list {
  display: grid;
  gap: 14px;
}

.direct-contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background: #fbfff8;
  border: 1px solid rgba(35, 150, 79, 0.14);
  font-weight: 900;
  color: var(--green-dark);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.direct-contact-list a:hover {
  transform: translateY(-3px);
  border-color: rgba(35, 150, 79, 0.32);
  box-shadow: 0 18px 40px rgba(35, 150, 79, 0.12);
}

.direct-contact-list i {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--orange));
  font-size: 1.25rem;
  flex: 0 0 46px;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px 0 20px;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.36);
  font-weight: 900;
  letter-spacing: -0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.floating-whatsapp i {
  font-size: 1.7rem;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 62px rgba(37, 211, 102, 0.44);
  filter: saturate(1.08);
}

.cookie-banner.show ~ .floating-whatsapp,
.cookie-banner.show + .floating-whatsapp {
  bottom: 122px;
}

@media (max-width: 740px) {
  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }

  .cookie-banner.show ~ .floating-whatsapp,
  .cookie-banner.show + .floating-whatsapp {
    bottom: 154px;
  }
}

body.cookie-visible .floating-whatsapp {
  bottom: 122px;
}

@media (max-width: 740px) {
  body.cookie-visible .floating-whatsapp {
    bottom: 154px;
  }
}

.flip-card {
  cursor: pointer;
  border: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.flip-card:focus-visible .flip-card-front,
.flip-card:focus-visible .flip-card-back {
  outline: 4px solid rgba(35, 150, 79, 0.28);
  outline-offset: 4px;
}

.flip-card:active .flip-card-inner {
  transform: scale(0.985);
}

.flip-card.is-flipped:active .flip-card-inner {
  transform: rotateY(180deg) scale(0.985);
}

.flip-hint {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.flip-card-back .flip-hint {
  background: rgba(255, 255, 255, 0.12);
}

.flip-card-front h3,
.flip-card-back h3,
.flip-card-back p {
  position: relative;
  z-index: 2;
}

@media (max-width: 740px) {
  .flip-card,
  .flip-card-inner {
    min-height: 260px;
  }

  .flip-card-front,
  .flip-card-back {
    padding: 30px 24px;
  }

  .flip-card-back p {
    max-width: 32ch;
    margin: 14px auto 0;
    font-size: 0.98rem;
  }

  .flip-hint {
    top: 14px;
    right: 14px;
  }
}


/* Fix mirrored front text showing through on mobile flip cards */
.flip-card {
  perspective: 1200px;
  -webkit-perspective: 1200px;
}

.flip-card-inner {
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  will-change: transform;
}

.flip-card-front,
.flip-card-back {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
}

.flip-card-front {
  transform: rotateY(0deg) translateZ(1px);
  -webkit-transform: rotateY(0deg) translateZ(1px);
}

.flip-card-back {
  transform: rotateY(180deg) translateZ(1px);
  -webkit-transform: rotateY(180deg) translateZ(1px);
}

.credits-link {
  color: #ad8330 !important;
  text-decoration: none;
}

.credits-link i {
  color: #ad8330;
}


/* Prevent horizontal overflow on mobile */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  position: relative;
}

/* Make media never exceed screen width */
img,
video,
svg,
canvas,
iframe {
  max-width: 100%;
  height: auto;
}

/* Prevent long text/links from pushing layout wider */
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
li {
  overflow-wrap: break-word;
  word-break: normal;
}


