/* ==========================================================================
   VALLEY ESSENCES — Corporate Website
   Design system
   ========================================================================== */

:root {
  /* Brand palette */
  --green: #6A9739;
  --green-light: #8BC34A;
  --green-dark: #4F7A22;
  --green-deep: #2E4A17;
  --leaf-tint: #F2F8E8;
  --leaf-tint-2: #E9F1DB;
  --cream: #FFFFFF;
  --sand: #F7F9F1;
  --ink: #111111;
  --muted: #5A5A5A;
  --line: rgba(106, 151, 57, 0.22);

  /* Type */
  --font-display: "Merriweather", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", "Segoe UI", system-ui, sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 4.5vw, 48px);
  --section-pad: clamp(56px, 7vw, 96px);
  --radius: 16px;
  --radius-sm: 7px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-sm: 0 6px 20px rgba(46, 74, 23, 0.08);
  --shadow-md: 0 18px 44px rgba(46, 74, 23, 0.13);
  --shadow-lg: 0 28px 64px rgba(46, 74, 23, 0.18);
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--green-light); color: #fff; }

section[id], footer[id] { scroll-margin-top: 84px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--green);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; top: 0; }

.nowrap { white-space: nowrap; }

:focus-visible { outline: 3px solid var(--green-light); outline-offset: 3px; border-radius: 4px; }

/* --------------------------------------------------------------------------
   Typography helpers
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}

h2 { font-size: clamp(30px, 3.8vw, 44px); }
h2 em { font-style: italic; color: var(--green); }

.section { padding-block: var(--section-pad); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-dark);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-light);
  flex: none;
}
.eyebrow--light { color: #fff; }
.eyebrow--gold, .eyebrow--green { color: var(--green-dark); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(40px, 5vw, 60px);
}
.section-head h2 { margin-top: 14px; }
.section-head--center { justify-content: center; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--green-light);
  flex: none;
}

.section-sub {
  max-width: 46ch;
  color: var(--muted);
  font-size: 16px;
}
.section-head--center .section-sub { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.btn-sm { padding: 10px 18px; font-size: 13px; }

.btn-gold, .btn-green {
  background: var(--green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(106, 151, 57, 0.32);
}
.btn-gold:hover, .btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(106, 151, 57, 0.42);
}

.btn-ghost {
  color: var(--green-dark);
  border-color: rgba(79, 122, 34, 0.5);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }

.btn-outline {
  color: var(--green-dark);
  border-color: rgba(79, 122, 34, 0.4);
}
.btn-outline:hover { border-color: var(--green); color: var(--green-dark); transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Header / navigation
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  background: #fff;
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.site-nav.scrolled {
  padding-block: 10px;
  box-shadow: 0 10px 30px rgba(46, 74, 23, 0.1);
}

.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 40px; height: 40px; flex: none; object-fit: contain; border-radius: 50%; background: #fff; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.brand-text em {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}

.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding-block: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--green-dark); }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta { padding: 11px 22px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--green-dark); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-3%);
  transition: opacity 0.3s ease, transform 0.3s var(--ease), visibility 0.3s;
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px; }
.mobile-menu a:not(.btn) {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  padding: 5px 16px;
}
.mobile-menu a:not(.btn):hover { color: var(--green-dark); }
.mobile-menu .btn { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background:
    radial-gradient(900px 560px at 88% -8%, rgba(139, 195, 74, 0.18), transparent 60%),
    radial-gradient(760px 480px at -8% 108%, rgba(106, 151, 57, 0.14), transparent 55%),
    var(--cream);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/placeholders/hero-kashmir.jpg");
  background-size: cover;
  background-position: center 40%;
  opacity: 0.38;
  will-change: transform;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.68) 46%, rgba(255, 255, 255, 0.08) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: 130px 80px;
}

.hero .eyebrow {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--leaf-tint);
  border: 1px solid rgba(106, 151, 57, 0.35);
  color: var(--green-dark);
}

.hero-title {
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.1;
}
.hero-title em { font-style: italic; color: var(--green); }

.hero-sub {
  margin-top: 22px;
  max-width: 54ch;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.8;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }

/* Hero visual */
.hero-visual { position: relative; }

.hero-card {
  position: relative;
  width: min(400px, 88%);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(106, 151, 57, 0.3);
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  animation: heroFloat 7s ease-in-out infinite;
}

/* Crossfading slideshow inside the hero card */
.hero-slides, .hero-slide { position: absolute; inset: 0; }
.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  will-change: opacity;
  animation: heroSlide 24s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * -4s);
}
.hero-slide:first-child { opacity: 1; }

@keyframes heroSlide {
  0%    { opacity: 0; }
  3.1%  { opacity: 1; }
  15.6% { opacity: 1; }
  18.8% { opacity: 0; }
  100%  { opacity: 0; }
}

.hero-card-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 12px 18px;
  border-radius: 12px;
  background: rgba(46, 74, 23, 0.9);
  color: #fff;
}
.hero-card-chip strong { font-family: var(--font-display); font-size: 22px; color: #DCEBA0; }
.hero-card-chip span { font-size: 12px; opacity: 0.9; }

.hero-float {
  position: absolute;
  padding: 14px 20px;
  border-radius: 12px;
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  font-size: 14px;
}
.hero-float--1 { top: 4%; left: 0; font-family: var(--font-display); font-size: 17px; line-height: 1.35; }
.hero-float--2 { bottom: 10%; right: 0; animation: heroFloat 6s ease-in-out 1.2s infinite; }

@keyframes heroFloat {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  50% { transform: translateY(-14px) rotate(-3deg); }
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll i {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--green-light), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stats-strip {
  background: var(--green);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 40px;
}
.stat-block { text-align: center; }
.stat-block strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 50px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.stat-block strong span { font-size: 0.55em; }
.stat-block > span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about { background: var(--cream); }

.about-grid {
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.about-media { position: relative; }
.about-main {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.about-inset {
  position: absolute;
  right: -6%;
  bottom: -10%;
  width: 48%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
}
.about-seal {
  position: absolute;
  top: -24px;
  left: -20px;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8BC34A, var(--green-dark));
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
  border: 4px solid var(--green-light);
  box-shadow: var(--shadow-md);
}

.about-copy h2 { margin: 14px 0 20px; }
.about-copy > p { color: var(--muted); margin-bottom: 14px; }
.about-copy > p:first-of-type { font-size: 18px; color: var(--ink); }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }
.value-card {
  padding: 22px 20px;
  border-radius: var(--radius);
  background: var(--leaf-tint);
  border: 1px solid var(--line);
}
.value-card h3 { font-size: 20px; margin-bottom: 8px; color: var(--green-dark); }
.value-card p { font-size: 14.5px; color: var(--muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   Businesses
   -------------------------------------------------------------------------- */
.businesses { background: var(--sand); }

.biz-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.biz-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 26px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(139, 195, 74, 0.7); }
.biz-card--flag { border-color: rgba(139, 195, 74, 0.75); border-width: 2px; }

.biz-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--leaf-tint);
  color: var(--green);
  margin-bottom: 6px;
}
.biz-icon svg { width: 26px; height: 26px; }

.biz-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.biz-card h3 { font-size: 22px; color: var(--ink); }
.biz-card p { font-size: 14.5px; line-height: 1.65; color: var(--muted); }
.biz-link { margin-top: 6px; font-size: 13.5px; font-weight: 700; color: var(--green-dark); }

/* --------------------------------------------------------------------------
   Products (flagship honey)
   -------------------------------------------------------------------------- */
.products { background: var(--cream); }
.products .section-sub { margin-left: auto; text-align: right; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139, 195, 74, 0.6);
}

.product-media { position: relative; overflow: hidden; }
.product-media img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform 0.8s var(--ease); }
.product-card:hover .product-media img { transform: scale(1.05); }

.product-swatch {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--sw, #E8A825);
  color: var(--swt, #3d2c08);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.product-body { display: flex; flex-direction: column; flex: 1; padding: 22px 22px 24px; }
.arabic {
  font-size: 15px;
  color: var(--muted);
  text-align: right;
  direction: rtl;
  margin-bottom: 4px;
}
.product-body h3 { font-size: 24px; color: var(--ink); margin-bottom: 4px; }
.tagline { color: var(--muted); font-size: 14.5px; margin-bottom: 16px; }

.benefits { margin-bottom: 20px; }
.benefits li {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--ink);
  font-size: 14.5px;
  padding-block: 4px;
}
.benefits li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-light);
  flex: none;
  transform: translateY(-2px);
}

.product-actions { display: flex; gap: 10px; margin-top: auto; }
.product-actions .btn { flex: 1; min-width: 0; padding-inline: 8px; }

.products-disclaimer {
  margin-top: 34px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

/* --------------------------------------------------------------------------
   Why us
   -------------------------------------------------------------------------- */
.why { background: var(--sand); }

.why-grid {
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.why-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.why-copy h2 { margin: 14px 0 22px; }

.why-list li {
  display: flex;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.why-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  padding-top: 2px;
  flex: none;
}
.why-list h3 { font-size: 19px; margin-bottom: 2px; }
.why-list p { color: var(--muted); font-size: 15px; }

.why-certs {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.why-certs h3 { font-size: 22px; margin: 8px 0 18px; }
.why-certs h3 em { font-style: italic; color: var(--green); }
.cert-grid { display: flex; gap: 14px; flex-wrap: wrap; }
.cert-grid li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cert-grid li:hover { transform: translateY(-3px); border-color: rgba(139, 195, 74, 0.6); }
.cert-grid img { width: 56px; height: 42px; object-fit: contain; border-radius: 6px; }
.cert-grid span { font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink); }

/* --------------------------------------------------------------------------
   Milestones
   -------------------------------------------------------------------------- */
.milestones { background: var(--cream); }

.milestones-list {
  max-width: 840px;
  margin-inline: auto;
  position: relative;
}
.milestones-list::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--green-light), rgba(106, 151, 57, 0.2));
}
.milestone {
  position: relative;
  display: flex;
  gap: 26px;
  padding: 0 0 34px 40px;
}
.milestone:last-child { padding-bottom: 0; }
.milestone::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #fff;
}
.ms-year {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--green);
  line-height: 1.1;
  flex: none;
  min-width: 86px;
}
.milestone h3 { font-size: 21px; margin-bottom: 4px; }
.milestone p { color: var(--muted); font-size: 15px; }

/* --------------------------------------------------------------------------
   Team
   -------------------------------------------------------------------------- */
.team { background: var(--sand); }
.team .section-head { margin-bottom: 40px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.team-avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--av1), var(--av2));
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  border: 3px solid var(--green-light);
}
.team-card h3 { font-size: 20px; margin-bottom: 4px; }
.team-role { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
.team-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials { background: var(--cream); }
.testimonials .section-head { margin-bottom: 36px; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  position: relative;
  background: var(--leaf-tint);
  border-radius: var(--radius);
  padding: 36px 30px 30px;
  text-align: center;
  border: 1px solid var(--line);
}
.quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  line-height: 0.4;
  color: var(--green-light);
  margin: 10px 0 22px;
}
.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink);
}
.stars { margin: 18px 0 20px; color: var(--green); font-size: 16px; letter-spacing: 3px; }
.testimonial footer { display: flex; align-items: center; justify-content: center; gap: 13px; text-align: left; }
.testimonial footer img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green); }
.testimonial footer strong { display: block; font-size: 14px; color: var(--ink); }
.testimonial footer span { font-size: 13px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Careers
   -------------------------------------------------------------------------- */
.careers { background: var(--green); color: #fff; }

.careers-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 20px;
  background: radial-gradient(600px 300px at 90% 0%, rgba(139, 195, 74, 0.4), transparent 70%),
              linear-gradient(135deg, rgba(79, 122, 34, 0.85), rgba(46, 74, 23, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.careers-inner h2 { color: #fff; font-size: clamp(32px, 4vw, 46px); margin: 14px 0 12px; }
.careers-inner h2 em { color: #DCEBA0; }
.careers-inner p { color: rgba(255, 255, 255, 0.88); max-width: 48ch; }
.careers-inner .eyebrow::before { background: rgba(255, 255, 255, 0.5); }
.careers-actions { display: flex; flex-wrap: wrap; gap: 14px; flex: none; }
.careers .btn-ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.5); }
.careers .btn-ghost:hover { border-color: #fff; color: #fff; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { background: var(--cream); }
.faq-container { max-width: 820px; }
.faq .section-head { margin-bottom: 34px; }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding: 22px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 700;
  color: var(--ink);
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--green-dark); }

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  border: 1.5px solid var(--green);
  border-radius: 50%;
  transition: transform 0.35s var(--ease), background 0.35s ease;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--green);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }
.faq-q[aria-expanded="true"] .faq-icon { transform: rotate(180deg); background: var(--leaf-tint); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }

.faq-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-panel p { padding: 0 44px 24px 4px; color: var(--muted); font-size: 15.5px; line-height: 1.8; }
.faq-panel a { color: var(--green-dark); }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { background: var(--sand); }

.contact-grid {
  display: grid;
  grid-template-columns: 44fr 56fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.contact-info h2 { margin: 14px 0 16px; }
.contact-info > p { color: var(--muted); max-width: 46ch; }

.contact-list { margin-top: 30px; display: grid; gap: 18px; }
.contact-list li { display: flex; flex-direction: column; }
.contact-list strong {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.contact-list a { color: var(--green-dark); font-weight: 700; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; }
.contact-list span { color: var(--ink); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(106, 151, 57, 0.3);
  background: var(--cream);
  width: 100%;
  resize: vertical;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.22);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 12.5px; color: var(--muted); }
.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-status { min-height: 20px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.form-status.ok { color: var(--green-dark); }
.form-status.err { color: #C0392B; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--green-deep); color: rgba(255, 255, 255, 0.82); }

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1.2fr 0.9fr 1.3fr;
  gap: clamp(30px, 4vw, 56px);
  padding-block: clamp(52px, 6vw, 76px) 48px;
}

.footer-brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo { height: 48px; width: 48px; object-fit: contain; border-radius: 50%; background: #fff; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25); }
.footer-brand-name { font-family: var(--font-display); font-size: 17px; font-weight: 900; letter-spacing: 0.06em; color: #fff; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  color: #DCEBA0;
  margin-bottom: 10px;
}
.footer-brand > p:not(.footer-tagline) { font-size: 14px; line-height: 1.75; max-width: 40ch; }
.footer-contact { margin-top: 18px; color: rgba(255, 255, 255, 0.55); }
.footer-contact a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer-contact a:hover { color: #DCEBA0; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #DCEBA0;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255, 255, 255, 0.78); text-decoration: none; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col a:hover { color: #DCEBA0; padding-left: 4px; }

.social-row { display: flex; gap: 10px; margin-bottom: 22px; }
.social-row a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.social-row a:hover { border-color: #DCEBA0; color: #DCEBA0; transform: translateY(-3px); }

.footer-wa { width: 100%; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 22px var(--gutter);
  text-align: center;
}
.footer-bottom p { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }

/* --------------------------------------------------------------------------
   WhatsApp FAB
   -------------------------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 30px rgba(46, 74, 23, 0.4);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.whatsapp-fab svg { width: 30px; height: 30px; }
.whatsapp-fab:hover { transform: translateY(-4px) scale(1.05); background: var(--green-dark); box-shadow: 0 16px 38px rgba(79, 122, 34, 0.5); }
.whatsapp-fab::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--green-light);
  animation: fabPulse 4s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Reveal-on-scroll
   -------------------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* --------------------------------------------------------------------------
   Product modal
   -------------------------------------------------------------------------- */
.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.product-modal.open { display: flex; }

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 74, 23, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: pmFade 0.3s ease;
}

.product-modal-dialog {
  position: relative;
  width: min(860px, 100%);
  max-height: calc(100vh - 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: pmPop 0.35s var(--ease);
}
@keyframes pmFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pmPop { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.product-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  transition: background 0.3s ease;
}
.product-modal-close:hover { background: var(--green-dark); }
.product-modal-close svg { width: 20px; height: 20px; }

.product-modal-scroll { overflow-y: auto; max-height: calc(100vh - 40px); }

.pm-hero {
  display: grid;
  grid-template-columns: minmax(0, 40%) 1fr;
  gap: 28px;
  padding: 32px 34px;
}
.pm-hero .pm-media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; }
.pm-arabic { font-size: 16px; color: var(--muted); text-align: right; direction: rtl; margin-bottom: 6px; }
.pm-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 8px; }
.pm-head h2 { font-size: 34px; margin-bottom: 8px; }
.pm-head .pm-desc { font-size: 18px; font-style: italic; font-family: var(--font-display); color: var(--green-dark); margin-bottom: 16px; }
.pm-swatch { display: inline-flex; padding: 6px 14px; border-radius: 999px; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }

.pm-sections { padding: 0 34px 34px; }
.pm-section { padding: 20px 0; border-top: 1px solid var(--line); }
.pm-section h4 { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 12px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-dark); margin-bottom: 12px; }
.pm-section h4 svg { width: 18px; height: 18px; color: var(--green); }
.pm-section p { color: var(--muted); font-size: 15px; line-height: 1.75; }
.pm-list { display: grid; gap: 8px; }
.pm-list li { position: relative; padding-left: 20px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.pm-list li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--green-light); }
.pm-list li strong { color: var(--ink); }
.pm-actions { display: flex; gap: 12px; padding: 4px 0 6px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Hero leaf & rotating stamp
   -------------------------------------------------------------------------- */
.hero-leaf { width: 130px; height: auto; margin-bottom: 18px; }

.pure-stamp {
  position: absolute;
  top: -12%;
  right: -4%;
  width: clamp(104px, 12vw, 150px);
  z-index: 3;
  filter: drop-shadow(0 14px 24px rgba(46, 74, 23, 0.25));
}
.pure-stamp svg { width: 100%; height: auto; animation: stampSpin 20s linear infinite; }
@keyframes stampSpin { to { transform: rotate(360deg); } }

/* --------------------------------------------------------------------------
   Feature strip
   -------------------------------------------------------------------------- */
.feature-strip { background: var(--sand); border-block: 1px solid var(--line); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-block: 34px;
}
.feature-item { display: flex; align-items: center; gap: 14px; }
.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.feature-item span:not(.feature-icon) { font-size: 13px; color: var(--muted); }

/* --------------------------------------------------------------------------
   Product price row
   -------------------------------------------------------------------------- */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 2px 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.product-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--leaf-tint);
  margin-right: auto;
}
.product-price { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--green-dark); }
.product-pack { font-size: 13px; color: var(--muted); }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--green); color: #fff; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(40px, 5vw, 64px);
}
.cta-band-inner h2 { color: #fff; font-size: clamp(30px, 4vw, 44px); margin: 12px 0 10px; }
.cta-band-inner h2 em { color: #DCEBA0; }
.cta-band-inner p { color: rgba(255, 255, 255, 0.9); max-width: 52ch; }
.cta-band-inner .eyebrow::before { background: rgba(255, 255, 255, 0.5); }
.cta-band-inner .btn { flex: none; background: #fff; color: var(--green-dark); }
.cta-band-inner .btn:hover { background: #EFF5E3; }

/* --------------------------------------------------------------------------
   Partners
   -------------------------------------------------------------------------- */
.partners { background: var(--cream); border-top: 1px solid var(--line); }
.partners-inner { padding-block: 44px; text-align: center; }
.partners-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.partners-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.partners-list li {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green-dark);
  opacity: 0.75;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-copy { max-width: 60ch; }

  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 620px; }
  .why-media { max-width: 520px; }

  .values { grid-template-columns: 1fr; }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }

  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .footer-follow { grid-column: span 2; }
}

@media (max-width: 700px) {
  .brand-text em { display: none; }
  .hero-title { font-size: clamp(34px, 10vw, 48px); }
  .hero-ctas { flex-direction: column; align-items: stretch; max-width: 340px; }

  .stats-list { grid-template-columns: 1fr 1fr; gap: 28px; }
  .feature-list { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .pure-stamp { width: 88px; top: -8%; right: 0; }
  .biz-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }

  .careers-inner { flex-direction: column; align-items: flex-start; }
  .milestone { gap: 16px; padding-left: 30px; }
  .ms-year { font-size: 22px; min-width: 60px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 12px; text-align: left; }
  .section-head--center { align-items: center; text-align: center; }
  .products .section-sub { margin-left: 0; text-align: left; }

  .form-row { grid-template-columns: 1fr; }
  .pm-hero { grid-template-columns: 1fr; }
  .pm-hero .pm-media img { max-width: 260px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-follow { grid-column: auto; }

  .whatsapp-fab { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-card, .hero-float--2 { animation: none; transform: none; }
  .hero-slide { animation: none; opacity: 0; }
  .hero-slide:first-child { opacity: 1; }
}
