/* =====================================================================
   HGROW — DESIGN SYSTEM
   Concept: "growth line" — the logo's sprout + upward arrow, rendered as
   a recurring animated stroke motif that ties every section together.
   Palette pulled from the HGrow mark: deep forest → living lime, with a
   sun-gold accent lifted from the solar-dryer product photography.
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
  /* ---- color tokens ---- */
  --forest-950: #0c2116;
  --forest-800: #123c25;
  --forest-700: #175635;
  --forest-600: #1d6d43;
  --green-500: #2f9153;
  --lime-500: #8fc93f;
  --lime-300: #c6e58a;
  --lime-100: #eef6da;
  --sun-400: #eeb02e;
  --sun-300: #f5c862;
  --paper: #f7f8f1;
  --paper-alt: #eef1e4;
  --white: #ffffff;
  --ink: #0e1f16;
  --ink-soft: #3c5346;
  --line: rgba(14, 31, 22, .12);
  --line-soft: rgba(14, 31, 22, .07);

  --grad-brand: linear-gradient(120deg, var(--forest-800) 0%, var(--green-500) 55%, var(--lime-500) 100%);
  --grad-soil: linear-gradient(180deg, rgba(143, 201, 63, 0) 0%, rgba(29, 109, 67, .14) 60%, rgba(12, 33, 22, .9) 100%);

  /* ---- type ---- */
  --f-display: 'Sora', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'Space Mono', monospace;

  /* ---- layout ---- */
  --maxw: 1220px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 50px -25px rgba(12, 33, 22, .35);
  --shadow-card: 0 10px 30px -18px rgba(12, 33, 22, .28);
}

@media (prefers-reduced-motion:no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--f-display);
  color: var(--forest-950);
  margin: 0 0 .5em;
  line-height: 1.12;
  letter-spacing: -.01em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.28rem;
  font-weight: 700;
}

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-tight {
  padding: 64px 0;
}

.section-alt {
  background: var(--paper-alt);
}

.section-dark {
  background: var(--forest-950);
  color: #eaf3e9;
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-dark p {
  color: #c4d8c8;
}

.eyebrow {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest-600);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-weight: 700;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--lime-500);
  display: inline-block;
}

.section-dark .eyebrow {
  color: var(--lime-300);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 12px 24px -12px rgba(29, 109, 67, .65);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(29, 109, 67, .75);
}

.btn-outline {
  border-color: var(--forest-700);
  color: var(--forest-800);
  background: transparent;
}

.btn-outline:hover {
  background: var(--forest-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--forest-800);
}

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

.btn-sm {
  padding: 10px 18px;
  font-size: .85rem;
}

.btn-block {
  width: 100%;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 248, 241, .86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .25s ease;
}

.navbar.scrolled {
  box-shadow: 0 8px 24px -18px rgba(12, 33, 22, .35);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--forest-950);
}

.brand img {
  height: 50px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
  transition: background .2s ease, color .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--lime-100);
  color: var(--forest-800);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--forest-950);
  margin: 5px 0;
  border-radius: 2px;
  transition: .25s;
}

.query-fab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--grad-brand);
  color: #fff;
  border: none;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  box-shadow: 0 10px 22px -10px rgba(29, 109, 67, .7);
  animation: pulseGlow 3.2s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 10px 22px -10px rgba(29, 109, 67, .7);
  }

  50% {
    box-shadow: 0 10px 30px -6px rgba(143, 201, 63, .75);
  }
}

/* ===================== HERO ===================== */
/* ===================== HERO ===================== */

.hero {
  position: relative;
  padding: 88px 0 60px;
  overflow: hidden;

  background:
    radial-gradient(ellipse 900px 500px at 85% -10%,
      rgba(143, 201, 63, 0.28),
      transparent 60%),
    linear-gradient(180deg,
      #f9faf4 0%,
      var(--paper) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

/* ===================== HERO CONTENT ===================== */

.hero h1 {
  margin-bottom: 0.4em;
}

.hero h1 .accent {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .lead {
  max-width: 650px;
}

/* ===================== HERO ACTIONS ===================== */

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

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===================== HERO STATS ===================== */

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat b {
  display: block;
  font-family: var(--f-display);
  font-size: 1.9rem;
  line-height: 1.1;
  color: var(--forest-800);
  font-weight: 800;
}

.hero-stat span {
  display: block;
  margin-top: 6px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ===================== TRUST STRIP ===================== */

.trust-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-strip .lbl {
  margin-right: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 12px;

  border: 1px solid rgba(42, 77, 48, 0.12);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.65);

  color: var(--forest-800);
  font-size: 0.78rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.trust-chip:hover {
  background: #ffffff;
  border-color: rgba(42, 77, 48, 0.25);
  transform: translateY(-2px);
}

.dotmark {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;

  border-radius: 50%;

  background: var(--forest-600, #629921);
}

/* ===================== HERO VISUAL ===================== */

.hero-visual {
  position: relative;

  width: 100%;
  height: 460px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero image */

.hero-visual img {
  display: block;

  width: 100%;
  max-width: 520px;
  height: auto;

  object-fit: contain;

  filter:
    drop-shadow(0 20px 35px rgba(36, 70, 40, 0.12));

  animation: heroImageFloat 5s ease-in-out infinite;
}

@keyframes heroImageFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===================== GROWTH LINE ===================== */

.hero-visual svg {
  width: 100%;
  height: 100%;
}

.grow-path {
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;

  animation:
    drawLine 2.4s cubic-bezier(0.6, 0.1, 0.2, 1) forwards 0.3s;
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

/* ===================== GROWTH LEAVES ===================== */

.grow-leaf {
  opacity: 0;
  transform-origin: center;

  animation:
    leafPop 0.6s ease forwards;
}

.grow-leaf:nth-of-type(1) {
  animation-delay: 1.1s;
}

.grow-leaf:nth-of-type(2) {
  animation-delay: 1.4s;
}

.grow-leaf:nth-of-type(3) {
  animation-delay: 1.7s;
}

@keyframes leafPop {
  from {
    opacity: 0;
    transform: scale(0.4) translateY(8px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===================== FLOATING DOT ===================== */

.grow-dot {
  animation: floatDot 3.4s ease-in-out infinite;
}

@keyframes floatDot {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ===================== SECTION DIVIDER ===================== */

.divider {
  position: relative;

  height: 64px;
  max-width: var(--maxw);

  margin: 0 auto;
}

.divider svg {
  display: block;

  width: 100%;
  height: 100%;
}

/* ===================== CARDS / GRIDS ===================== */

.grid {
  display: grid;
  gap: 26px;
}

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

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

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

/* ===================== HERO RESPONSIVE ===================== */

@media (max-width: 991px) {

  .hero {
    padding: 70px 0 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-visual {
    height: 380px;
    order: -1;
  }

  .hero-visual img {
    max-width: 420px;
  }

  .hero-stats {
    margin-top: 40px;
  }

  .trust-strip {
    margin-top: 28px;
  }

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

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

/* ===================== TABLET ===================== */

@media (max-width: 767px) {

  .hero {
    padding: 55px 0 45px;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-visual {
    height: 300px;
  }

  .hero-visual img {
    max-width: 340px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-stats {
    gap: 24px;
    margin-top: 35px;
  }

  .hero-stat b {
    font-size: 1.55rem;
  }

  .hero-stat span {
    font-size: 0.65rem;
  }

  .trust-strip {
    gap: 8px;
  }

  .trust-strip .lbl {
    width: 100%;
    margin-bottom: 3px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ===================== MOBILE ===================== */

@media (max-width: 480px) {

  .hero {
    padding: 45px 0 40px;
  }

  .hero-grid {
    gap: 25px;
  }

  .hero-visual {
    height: 240px;
  }

  .hero-visual img {
    max-width: 280px;
  }

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

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

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
    margin-top: 32px;
  }

  .hero-stat b {
    font-size: 1.4rem;
  }

  .hero-stat span {
    font-size: 0.62rem;
  }

  .trust-strip {
    margin-top: 25px;
  }

  .trust-chip {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* ===================== REDUCED MOTION ===================== */

@media (prefers-reduced-motion: reduce) {

  .hero-visual img,
  .grow-path,
  .grow-leaf,
  .grow-dot {
    animation: none;
  }

  .grow-leaf {
    opacity: 1;
  }
}

/* ===================== CARDS / GRIDS ===================== */
.grid {
  display: grid;
  gap: 26px;
}

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

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

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

.card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--lime-300);
}

/* trusted-partners strip */
.trust-strip {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line-soft);
}

.trust-strip span.lbl {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper-alt);
  border: 1px solid var(--line-soft);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .85rem;
  color: var(--forest-800);
  transition: .2s;
}

.trust-chip:hover {
  background: var(--lime-100);
  border-color: var(--lime-300);
  transform: translateY(-2px);
}

.trust-chip .dotmark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime-100);
  color: var(--forest-700);
  margin-bottom: 18px;
}

.icon-badge svg {
  width: 26px;
  height: 26px;
}

/* about strip */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

.about-media .tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(12, 33, 22, .82);
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .05em;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.about-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-point .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime-500);
  margin-top: 8px;
  flex: none;
}

/* product preview cards */
.product-card {
  position: relative;
  overflow: hidden;
}

.product-card .cat-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--lime-100);
  color: var(--forest-700);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.product-card .thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  background: var(--paper-alt);
}

.product-card ul {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.product-card li {
  display: flex;
  gap: 8px;
  font-size: .92rem;
  color: var(--ink-soft);
}

.product-card li::before {
  content: '✓';
  color: var(--forest-600);
  font-weight: 700;
}

/* why choose us */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-item .n {
  font-family: var(--f-mono);
  font-weight: 700;
  font-size: .8rem;
  color: var(--lime-500);
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--lime-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

/* testimonials */
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: var(--sun-400);
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: .95rem;
}

.review-who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 700;
}

/* =========================
   TESTIMONIAL SLIDER
========================= */

.reviews-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 35px;
}

.reviews-viewport {
  width: 100%;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}

.review-slide {
  flex: 0 0 33.333333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.review-card {
  height: 100%;
  box-sizing: border-box;
}

.review-avatar-image {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.review-arrow {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s ease;
}

.review-arrow:hover {
  transform: translateY(-2px);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 25px;
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  opacity: .35;
}

.review-dot.active {
  opacity: 1;
  transform: scale(1.25);
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

  .review-slide {
    flex-basis: 50%;
  }

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

  .reviews-slider {
    gap: 8px;
  }

  .review-slide {
    flex-basis: 100%;
    padding: 0 5px;
  }

  .review-arrow {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 14px;
}

.gallery-grid a {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.gallery-grid .g-big {
  grid-column: span 2;
  grid-row: span 2;
}

/* CTA banner */
.cta-banner {
  background: var(--grad-brand);
  border-radius: 28px;
  padding: 56px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: .3em;
}

.cta-banner p {
  color: rgba(255, 255, 255, .85);
  margin: 0;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--forest-950);
  color: #cfe0d1;
  padding: 70px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
}

.footer-brand img {
  max-width: 30%;
}

.footer-brand span {
  font-family: var(--f-display);
  font-weight: 800;
  color: #fff;
  font-size: 1.1rem;
}

footer h4 {
  color: #fff;
  font-family: var(--f-display);
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

footer a {
  color: #a9c2ab;
  transition: color .2s;
}

footer a:hover {
  color: var(--lime-300);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  color: #8ea892;
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-row a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  background: var(--lime-500);
  border-color: var(--lime-500);
  color: #0c2116;
}

/* ===================== PAGE HEADER (inner pages) ===================== */
.page-head {
  padding: 120px 0 60px;
  text-align: center;
  background-color: var(--forest-950);
  background-image:
    radial-gradient(ellipse 700px 400px at 50% -20%, rgba(143, 201, 63, .3), transparent 60%),
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .06) 1px, transparent 0);
  background-size: auto, 22px 22px;
  color: #fff;
}

.page-head .eyebrow {
  color: var(--lime-300);
  justify-content: center;
}

.page-head h1 {
  color: #fff;
}

.breadcrumb {
  font-family: var(--f-mono);
  font-size: .78rem;
  color: #9fc2a3;
  margin-top: 14px;
}

.breadcrumb a {
  color: #cfe0d1;
}

/* ===================== FLOATING QUERY PANEL ===================== */
.query-toggle-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  z-index: 1200;
  background: var(--grad-brand);
  color: #fff;
  border: none;
  padding: 16px 12px;
  border-radius: 14px 0 0 14px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: .06em;
  font-size: .82rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: -8px 6px 24px -10px rgba(12, 33, 22, .5);
  transition: padding .2s ease;
}

.query-toggle-tab:hover {
  padding-right: 16px;
}

.query-toggle-tab svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
}

.query-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 33, 22, .5);
  backdrop-filter: blur(2px);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.query-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.query-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: #fff;
  z-index: 1400;
  box-shadow: -20px 0 60px -20px rgba(12, 33, 22, .5);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.6, .05, .2, 1);
  display: flex;
  flex-direction: column;
}

.query-panel.open {
  transform: translateX(0);
}

.query-panel-head {
  padding: 26px 28px;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.query-panel-head h3 {
  color: #fff;
  margin: 0 0 6px;
}

.query-panel-head p {
  color: rgba(255, 255, 255, .85);
  margin: 0;
  font-size: .88rem;
}

.query-close {
  background: rgba(255, 255, 255, .15);
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.query-panel-body {
  padding: 26px 28px;
  overflow-y: auto;
  flex: 1;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--forest-800);
  margin-bottom: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.4px solid var(--line);
  background: var(--paper);
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--lime-500);
  box-shadow: 0 0 0 4px rgba(143, 201, 63, .18);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-note {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

#query-feedback {
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 600;
  display: none;
  padding: 12px 14px;
  border-radius: 10px;
}

#query-feedback.ok {
  display: block;
  background: var(--lime-100);
  color: var(--forest-800);
}

#query-feedback.err {
  display: block;
  background: #fde4e1;
  color: #9c2b1f;
}

/* ===================== PRODUCTS PAGE ===================== */
.tab-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 24px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink-soft);
  transition: .2s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--forest-950);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-info-card h3 {
  color: #fff;
}

.info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.info-row:last-child {
  border-bottom: none;
}

.info-row .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.info-row b {
  display: block;
  color: #fff;
  font-size: .94rem;
}

.info-row span {
  color: #a9c2ab;
  font-size: .88rem;
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, .15);
}

/* ===================== ABOUT PAGE ===================== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.person-card {
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-card);
}

.person-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.8rem;
}

.person-role {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest-600);
  margin-bottom: 8px;
  display: block;
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mv-card {
  padding: 34px;
  border-radius: var(--radius-lg);
}

.mv-card.vision {
  background: var(--lime-100);
}

.mv-card.mission {
  background: var(--paper-alt);
  border: 1px solid var(--line-soft);
}

/* ===================== PARTNERS PAGE (hardcoded feature sections) ===================== */
.partner-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--line-soft);
}

.partner-feature:last-child {
  border-bottom: none;
}

.partner-feature.reverse .pf-media {
  order: 2;
}

.partner-feature.reverse .pf-copy {
  order: 1;
}

.pf-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 5/4;
}

.pf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-media.icon-hero {
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf-media.icon-hero svg {
  width: 38%;
  height: 38%;
  color: #fff;
  opacity: .92;
}

.pf-type-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(255, 255, 255, .94);
  color: var(--forest-800);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
}

.pf-copy .plogo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.pf-copy .plogo-row .p-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  flex: none;
}

.pf-copy .p-since {
  font-family: var(--f-mono);
  font-size: .74rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}

.pf-copy ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 26px;
}

.pf-copy li {
  display: flex;
  gap: 10px;
  font-size: .94rem;
  color: var(--ink-soft);
}

.pf-copy li::before {
  content: '✓';
  color: var(--forest-600);
  font-weight: 700;
  flex: none;
}

.pf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--forest-800);
  border-bottom: 2px solid var(--lime-500);
  padding-bottom: 3px;
}

.pf-link:hover {
  color: var(--green-500);
}

/* ===================== TEXTURE / FARMHOUSE ORGANIC ACCENTS ===================== */
.section-alt {
  background-color: var(--paper-alt);
  background-image: radial-gradient(circle at 1px 1px, rgba(29, 109, 67, .10) 1px, transparent 0);
  background-size: 26px 26px;
}

.hero {
  background-color: var(--paper);
  background-image:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(143, 201, 63, .28), transparent 60%),
    linear-gradient(180deg, #f9faf4 0%, var(--paper) 100%),
    radial-gradient(circle at 1px 1px, rgba(29, 109, 67, .07) 1px, transparent 0);
  background-size: auto, auto, 24px 24px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  margin-top: 52px;
  gap: 34px 34px;
}

.hero-stat {
  margin-right: 0;
}


/* ===================== UTILITIES / REVEAL ANIM ===================== */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .7s ease, transform .7s ease;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js-enabled .reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.stagger .reveal:nth-child(1) {
  transition-delay: .05s;
}

.stagger .reveal:nth-child(2) {
  transition-delay: .15s;
}

.stagger .reveal:nth-child(3) {
  transition-delay: .25s;
}

.stagger .reveal:nth-child(4) {
  transition-delay: .35s;
}

.center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 {
  margin-top: 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 50px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:980px) {

  .hero-grid,
  .about-grid,
  .contact-grid,
  .partner-feature {
    grid-template-columns: 1fr;
  }

  .partner-feature.reverse .pf-media,
  .partner-feature.reverse .pf-copy {
    order: 0;
  }

  .hero-visual {
    height: 320px;
    order: -1;
  }

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

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

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

  .partner-type-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .gallery-grid .g-big {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width:760px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 14px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    opacity: 0;
    transition: .25s ease;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    width: 100%;
  }

  .nav-toggle {
    display: block;
  }

  .query-fab span {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .grid-3,
  .grid-4,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 26px;
  }

  .query-panel {
    width: 100%;
  }
}


/* =====================================================
   PRODUCT DETAIL IMAGE GALLERY
===================================================== */

.product-detail-gallery {
  width: 100%;
}


/* Main image */

.product-main-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 16px;
  background: #f5f5f2;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity .25s ease;
}


/* Thumbnails */

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}


.product-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 9px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  transition:
    border-color .2s ease,
    transform .2s ease;
}


.product-thumb:hover {
  transform: translateY(-2px);
}


.product-thumb.active {
  border-color: var(--primary, #629921);
}


.product-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

  .product-main-image {
    border-radius: 12px;
  }

  .product-thumbnails {
    grid-template-columns: repeat(5, 1fr);
    gap: 7px;
  }

}

/* =====================================================
   BLOG LISTING
===================================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}


.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}


.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}


.blog-card-image {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}


.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .4s ease;
}


.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}


.blog-card-body {
  padding: 22px;
}


.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: .78rem;
}


.blog-card-meta span {
  color: var(--primary, #629921);
  font-weight: 600;
}


.blog-card h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.35;
}


.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}


.blog-card h2 a:hover {
  color: var(--primary, #629921);
}


.blog-card p {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: .9rem;
  line-height: 1.65;
}


/* =====================================================
   SINGLE BLOG
===================================================== */

.blog-single {
  max-width: 900px;
  margin: 0 auto;
}


.blog-single-image {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 25px;
}


.blog-single-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: .85rem;
}


.blog-content {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.85;
}


.blog-content p {
  margin-bottom: 20px;
}


.blog-back {
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

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

}


@media (max-width: 600px) {

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .blog-card-body {
    padding: 18px;
  }

  .blog-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .blog-single-image {
    border-radius: 10px;
  }

}

/* ========================================================= INTRO ========================================================= */
.distribution-intro {
  padding: 96px 0;
  background: var(--paper);
}

.distribution-intro .section-heading {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.distribution-intro .section-heading h2 {
  margin-top: 12px;
  margin-bottom: 18px;
}

.distribution-intro .section-heading p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ========================================================= BENEFITS ========================================================= */
.distribution-benefits {
  padding: 96px 0;
  background: var(--paper-alt);
}

.distribution-benefits .section-heading {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.distribution-benefits .section-heading span {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-600);
}

.distribution-benefits .section-heading h2 {
  margin-top: 12px;
}

/* ========================================================= BENEFIT GRID ========================================================= */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  position: relative;
  min-height: 285px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--lime-500);
  transition: width 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(143, 201, 63, 0.35);
}

.benefit-card:hover::after {
  width: 100%;
}

.benefit-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: var(--lime-100);
  color: var(--forest-700);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.benefit-card h3 {
  margin-bottom: 12px;
}

.benefit-card p {
  margin: 0;
  font-size: 0.9rem;
}

/* ========================================================= PARTNER TYPES ========================================================= */
.partner-types {
  padding: 100px 0;
  background: var(--paper);
}

.partner-types-content {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
}

.partner-types-text .section-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-600);
}

.partner-types-text h2 {
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.partner-types-text p {
  max-width: 480px;
}

/* ========================================================= PARTNER LIST ========================================================= */
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 86px;
  padding: 18px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background 0.22s ease, padding-left 0.22s ease;
}

.partner-item:hover {
  background: var(--lime-100);
  padding-left: 28px;
}

.partner-item span {
  color: var(--lime-500);
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.partner-item strong {
  color: var(--forest-950);
  font-family: var(--f-display);
  font-size: 0.95rem;
}

/* ========================================================= PROCESS ========================================================= */
.partner-process {
  padding: 96px 0;
  background: var(--forest-950);
  color: #eaf3e9;
}

.partner-process .section-heading {
  max-width: 700px;
  margin: 0 auto 52px;
  text-align: center;
}

.partner-process .section-heading span {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-300);
}

.partner-process .section-heading h2 {
  margin-top: 12px;
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-card {
  position: relative;
  min-height: 270px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  background: rgba(143, 201, 63, 0.08);
}

.process-card>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 52px;
  border: 1px solid rgba(143, 201, 63, 0.35);
  border-radius: 50%;
  color: var(--lime-300);
  font-family: var(--f-mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.process-card h3 {
  margin-bottom: 12px;
  color: #fff;
}

.process-card p {
  margin: 0;
  color: #c4d8c8;
  font-size: 0.9rem;
}

/* ========================================================= FORM SECTION ========================================================= */
.partner-form-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(circle at 10% 20%, rgba(143, 201, 63, 0.09), transparent 30%), var(--paper-alt);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.form-info {
  padding-top: 24px;
}

.form-info .section-label {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--forest-600);
}

.form-info h2 {
  margin-top: 12px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.form-info p {
  max-width: 480px;
}

.form-note {
  position: relative;
  max-width: 480px;
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 3px solid var(--lime-500);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--forest-800);
}

.form-note strong {
  font-family: var(--f-display);
  font-size: 0.9rem;
}

/* ========================================================= FORM CARD ========================================================= */
.query-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  gap: 18px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--forest-950);
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  outline: none;
  background: #fafbf7;
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 0.88rem;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-group input,
.form-group select {
  height: 50px;
  padding: 0 15px;
}

.form-group textarea {
  min-height: 130px;
  padding: 13px 15px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8b988f;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: rgba(29, 109, 67, 0.28);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(143, 201, 63, 0.12);
}

/* ========================================================= SUBMIT BUTTON ========================================================= */
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 26px;
  border: 0;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #fff;
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 12px 24px -12px rgba(29, 109, 67, 0.65);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(29, 109, 67, 0.75);
}

.submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* ========================================================= FORM RESPONSE ========================================================= */
.query-response {
  display: none;
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  line-height: 1.5;
}

.query-response.success {
  display: block;
  border: 1px solid rgba(47, 145, 83, 0.25);
  background: var(--lime-100);
  color: var(--forest-700);
}

.query-response.error {
  display: block;
  border: 1px solid rgba(180, 60, 60, 0.2);
  background: #fff2f2;
  color: #a32f2f;
}

/* ========================================================= TABLET ========================================================= */
@media (max-width: 1100px) {
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-types-content {
    gap: 50px;
  }

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

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .form-wrapper {
    grid-template-columns: 1fr 1.2fr;
    gap: 45px;
  }
}

/* ========================================================= MOBILE ========================================================= */
@media (max-width: 767px) {
  .distribution-hero {
    min-height: 560px;
    background: linear-gradient(90deg, rgba(12, 33, 22, 0.94), rgba(12, 33, 22, 0.72)), url("../images/distributorship-hero.jpg") center / cover no-repeat;
  }

  .distribution-hero .hero-content {
    padding: 60px 0;
  }

  .distribution-hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

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

  .distribution-intro,
  .distribution-benefits,
  .partner-types,
  .partner-process,
  .partner-form-section {
    padding: 70px 0;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .benefit-card {
    min-height: auto;
  }

  .benefit-number {
    margin-bottom: 28px;
  }

  .partner-types-content {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .partner-list {
    grid-template-columns: 1fr;
  }

  .partner-item {
    min-height: 74px;
  }

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

  .process-card {
    min-height: auto;
    padding: 28px 24px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-card:last-child {
    border-bottom: 0;
  }

  .process-card:nth-child(2) {
    border-right: 0;
  }

  .process-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .process-card>span {
    margin-bottom: 30px;
  }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-info {
    padding-top: 0;
  }

  .query-form {
    padding: 26px 20px;
    border-radius: var(--radius-md);
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ========================================================= SMALL MOBILE ========================================================= */
@media (max-width: 480px) {
  .distribution-hero {
    min-height: 530px;
  }

  .distribution-hero h1 {
    font-size: 2.45rem;
  }

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

  .section-heading h2 {
    font-size: 1.9rem;
  }

  .partner-types-text h2,
  .form-info h2 {
    font-size: 2rem;
  }

  .query-form {
    padding: 22px 16px;
  }

  .submit-btn {
    min-height: 52px;
  }
}

/* ========================================================= REDUCED MOTION ========================================================= */
@media (prefers-reduced-motion: reduce) {

  .benefit-card,
  .partner-item,
  .process-card,
  .hero-btn,
  .submit-btn {
    transition: none;
  }

  .benefit-card:hover {
    transform: none;
  }

  .hero-btn:hover,
  .submit-btn:hover {
    transform: none;
  }
}