:root{
  --bg: #0b1220;
  --panel: rgba(255,255,255,0.06);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --border: rgba(255,255,255,0.12);
  --brand: #49d17a;
  --brand2: #2bb5ff;
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 16px;
  --container: 1120px;
  --header-height: 72px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
}

*{ box-sizing: border-box; }

img,
video,
svg{
  max-width: 100%;
  height: auto;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 16px);
  width: 100%;
  overflow-x: clip;
}

html, body{
  min-height: 100%;
  width: 100%;
}

body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 600px at 20% -10%, rgba(73, 209, 122, 0.25), transparent 60%),
              radial-gradient(900px 500px at 90% 10%, rgba(43, 181, 255, 0.18), transparent 55%),
              linear-gradient(180deg, #070c16 0%, #0b1220 50%, #070c16 100%);
  color: var(--text);
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.nav-open{
  overflow: hidden;
  touch-action: none;
}

main{
  width: 100%;
  overflow-x: clip;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus{ left: 10px; }

.sr-only{
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: max(16px, var(--safe-left));
  padding-right: max(16px, var(--safe-right));
}

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(7, 12, 22, 0.72);
  border-bottom: 1px solid var(--border);
  padding-top: var(--safe-top);
}

.header-shell{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  min-height: var(--header-height);
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1 1 auto;
}
.brand-text{
  min-width: 0;
}
.brand-mark{
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #061018;
}
.brand-name{
  font-weight: 850;
  letter-spacing: 0.2px;
  font-size: clamp(16px, 4vw, 18px);
  line-height: 1.2;
}
.brand-sub{
  margin-top: 2px;
  font-size: clamp(11px, 2.8vw, 12.5px);
  color: var(--muted);
  line-height: 1.35;
}

.nav-toggle{
  display: none;
  position: relative;
  z-index: 60;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition: background 160ms ease, border-color 160ms ease;
}
.nav-toggle:hover{
  background: rgba(255,255,255,0.08);
}
.nav-toggle-bar{
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}
body.nav-open .nav-toggle-bar:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle-bar:nth-child(2){
  opacity: 0;
}
body.nav-open .nav-toggle-bar:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

.nav{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
}
.nav a{
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: 160ms ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.nav a:hover{
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}
.nav-cta{
  color: #061018 !important;
  background: linear-gradient(135deg, rgba(73, 209, 122, 0.95), rgba(43, 181, 255, 0.9));
  border-color: rgba(255,255,255,0.15) !important;
  font-weight: 700;
  padding-inline: 14px !important;
}
.nav-cta:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.nav-backdrop{
  display: none;
}

@media (max-width: 768px){
  .site-header .nav[hidden]{
    display: none !important;
  }
}

.hero{
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  isolation: isolate;
}

.hero-bg{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(11,18,32,0.92) 0%, rgba(11,18,32,0.45) 45%, rgba(11,18,32,0.95) 100%),
    url("./images/cherry-tomatoes-proposed.jpg");
  background-size: cover;
  background-position: center 40%;
  filter: saturate(1.05) contrast(1.03);
  transform: scale(1.04);
  transform-origin: center;
}

.hero-inner{
  position: relative;
  padding: clamp(36px, 8vw, 54px) 0 clamp(28px, 6vw, 38px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
}

.hero-copy h1{
  font-size: clamp(32px, 8vw, 46px);
  margin: 0 0 10px;
  letter-spacing: 0.2px;
  line-height: 1.08;
}

.lead{
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 18px;
  line-height: 1.6;
  font-size: clamp(15px, 3.8vw, 16.5px);
}

.hero-cta{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px 16px;
  min-height: 48px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--border);
  transition: 180ms ease;
  text-align: center;
}

.btn-primary{
  background: linear-gradient(135deg, rgba(73, 209, 122, 0.95), rgba(43, 181, 255, 0.9));
  color: #061018;
  border-color: rgba(255,255,255,0.15);
}
.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost{
  background: rgba(255,255,255,0.04);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.btn-small{
  padding: 9px 12px;
  font-size: 14px;
  border-radius: 12px;
}

.hero-badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  font-weight: 650;
  font-size: 12.5px;
  line-height: 1.35;
  max-width: 100%;
}

.section{
  padding: clamp(36px, 7vw, 52px) 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title h2{
  margin: 0 0 10px;
  font-size: clamp(24px, 5.5vw, 28px);
  letter-spacing: 0.2px;
  line-height: 1.15;
}
.section-title p{
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: clamp(15px, 3.6vw, 16px);
}
.section-title{
  margin-bottom: 22px;
}
.section-title-compact{
  margin-bottom: 12px;
}
.section-title-spaced{
  margin-top: 28px;
  margin-bottom: 16px;
}
.heading-sm{
  font-size: clamp(18px, 4.5vw, 20px);
}
.heading-md{
  font-size: clamp(20px, 4.8vw, 22px);
}
.subsection-spaced{
  margin-top: 18px;
}
.note-spaced{
  margin-top: 16px;
}

.card{
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}
.card-compact{ padding: 16px; }

.two-col{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.three-col{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.info-list{
  display: grid;
  gap: 8px;
  margin: 10px 0 12px;
}

.info-list a,
.contact-grid a:not(.btn){
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
  text-underline-offset: 3px;
}

.info-list a:hover,
.contact-grid a:not(.btn):hover{
  color: #fff;
  text-decoration-color: rgba(255,255,255,0.7);
}

.small-muted{ color: var(--muted); font-size: 13.5px; }

ul{
  padding-left: 18px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.callout{
  margin-top: 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(73,209,122,0.35);
  background: linear-gradient(135deg, rgba(73,209,122,0.12), rgba(43,181,255,0.08));
  padding: 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.callout-title{
  font-weight: 850;
}
.callout-text{
  color: var(--muted);
  line-height: 1.6;
  max-width: 65ch;
  margin-top: 6px;
}

.featured-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.featured-row-trio{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.featured-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
}

.featured-badge{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(73,209,122,0.35);
  background: rgba(73,209,122,0.12);
  color: var(--brand);
  font-size: 12.5px;
  font-weight: 700;
}

.featured-badge-active{
  border-color: rgba(73,209,122,0.45);
  background: rgba(73,209,122,0.16);
}

.featured-badge-upcoming{
  border-color: rgba(43,181,255,0.35);
  background: rgba(43,181,255,0.12);
  color: var(--brand2);
}

.featured-card h3{
  margin: 0 0 8px;
  font-size: 20px;
}

.featured-card p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.65;
}

.featured-card-image img{
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
  display: block;
}

.featured-card-cutout img{
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.veg-showcase{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.veg-card{
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
}

.veg-badge{
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: inline-block;
  width: fit-content;
  max-width: calc(100% - 20px);
  padding: 5px 8px;
  border-radius: 999px;
  border: 1px solid rgba(43,181,255,0.35);
  background: rgba(7, 12, 22, 0.82);
  color: var(--brand2);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.veg-badge-active{
  border-color: rgba(73,209,122,0.45);
  color: var(--brand);
}

.veg-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.veg-card img{
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  display: block;
  background: #fff;
}

.veg-card figcaption{
  padding: 11px 12px 13px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1px;
}

.product-grid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.product-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.product-media{
  position: relative;
  min-height: 240px;
  background: rgba(255,255,255,0.04);
}
.product-media img{
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.product-media.fallback-pepper::before,
.product-media.fallback-tomato::before{
  content: "";
  position: absolute;
  inset: 0;
  display: block;
}
.product-media.fallback-pepper::before{
  background:
    radial-gradient(circle at 30% 40%, rgba(46, 160, 67, 0.55), transparent 45%),
    radial-gradient(circle at 70% 55%, rgba(214, 48, 49, 0.45), transparent 40%),
    linear-gradient(135deg, #1a3d28 0%, #0f1f18 100%);
}
.product-media.fallback-tomato::before{
  background:
    radial-gradient(circle at 22% 45%, #f6c945 0 18%, transparent 19%),
    radial-gradient(circle at 48% 40%, #f39c12 0 16%, transparent 17%),
    radial-gradient(circle at 72% 50%, #5d4037 0 15%, transparent 16%),
    linear-gradient(135deg, #2a1a12 0%, #0f1410 100%);
}
.product-media.fallback-pepper::after{
  content: "Long pepper";
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 14px;
}
.product-media.fallback-tomato::after{
  content: "Yellow · Red · Chocolate";
  position: absolute;
  left: 16px;
  bottom: 16px;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 14px;
}
.product-body{
  padding: 16px;
}
.product-body-full{
  padding: 18px;
}
.product-card h3{
  margin: 0 0 8px;
  font-size: 18px;
}
.product-card p{
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.7;
}
.pill-row{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill{
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 650;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.gallery-strip{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.gallery-strip img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
}
.gallery-strip-wide{
  grid-template-columns: repeat(4, 1fr);
}

.contact-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact-actions .btn{
  flex: 1 1 100%;
  max-width: 100%;
}
.divider{
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.footer-credits{
  padding-bottom: calc(24px + var(--safe-bottom));
}

@media (min-width: 769px){
  .veg-showcase{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 980px){
  .two-col{ grid-template-columns: 1fr; }
  .three-col{ grid-template-columns: 1fr; }
  .product-grid{ grid-template-columns: 1fr; }
  .featured-row{ grid-template-columns: 1fr; }
  .featured-row-trio{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .gallery-strip{ grid-template-columns: 1fr; }
  .gallery-strip-wide{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px){
  :root{
    --header-height: 60px;
  }

  .header-shell{
    padding: 8px 0;
    gap: 12px;
  }

  .brand-mark{
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .nav-toggle{
    display: inline-flex;
    margin-left: auto;
  }

  .nav{
    display: none;
    position: fixed;
    z-index: 70;
    left: 0;
    right: 0;
    top: calc(var(--header-height) + var(--safe-top));
    width: 100%;
    max-width: 100vw;
    max-height: calc(100dvh - var(--header-height) - var(--safe-top));
    margin-left: 0;
    padding: 12px max(16px, var(--safe-left)) calc(16px + var(--safe-bottom)) max(16px, var(--safe-right));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    background: rgba(7, 12, 22, 0.98);
    border-bottom: 1px solid var(--border);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  body.nav-open .nav{
    display: flex;
  }

  .nav-backdrop{
    display: block;
    position: fixed;
    z-index: 65;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
  }

  .nav-backdrop[hidden]{
    display: none;
  }

  .nav a{
    width: 100%;
    justify-content: center;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
  }

  .nav-cta{
    margin-top: 4px;
  }

  .hero-inner{
    padding: 28px 0 24px;
  }

  .hero-copy h1{
    font-size: clamp(28px, 9vw, 36px);
  }

  .lead{
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hero-cta{
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
  }

  .hero-cta .btn{
    width: 100%;
  }

  .hero-badges{
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .badge{
    text-align: left;
  }

  .section{
    padding: 32px 0;
  }

  .section-title{
    margin-bottom: 18px;
  }

  .section-title h2{
    font-size: 24px;
  }

  .section-title-spaced{
    margin-top: 20px;
  }

  .featured-card-image img{
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .callout{
    flex-direction: column;
    align-items: stretch;
  }

  .callout .btn{
    width: 100%;
  }

  .contact-actions{
    flex-direction: column;
  }

  .info-list > div{
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .pill-row{
    gap: 6px;
  }

  .pill{
    font-size: 12px;
    padding: 7px 9px;
  }
}

@media (max-width: 480px){
  .brand-sub{
    display: none;
  }

  .veg-showcase{
    gap: 10px;
  }

  .veg-card figcaption{
    font-size: 12.5px;
    padding: 9px 10px 10px;
  }

  .card,
  .featured-card{
    padding: 14px;
  }

  .featured-card h3{
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior: auto;
  }

  .nav-toggle-bar,
  .btn,
  .veg-card{
    transition: none;
  }
}

.credits{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 18px;
}
.credits-title{
  font-weight: 850;
  margin-bottom: 10px;
}
.credits-list{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}
.credits-list a{
  color: var(--text);
}
.credits-list a:hover{
  text-decoration: underline;
}

.footer-bottom{
  margin-top: 16px;
}

.pricing-table-wrap{
  overflow-x: auto;
}

.pricing-table{
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.pricing-table th,
.pricing-table td{
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

.pricing-table th{
  background: rgba(73, 209, 122, 0.12);
  color: var(--text);
}

.pricing-table-wrap a{
  color: var(--brand2);
}

.price-tag{
  margin: 10px 0 0;
  font-weight: 800;
  color: var(--brand);
  font-size: 15px;
}