@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800;900&display=swap");

:root {
  --emerald: #19d98f;
  --forest: #108257;
  --mint: #c9ffe4;
  --frost: #f6fffa;
  --gold: #d4af37;
  --ink: #333333;
  --muted: #66746c;
  --line: rgba(23, 107, 71, 0.16);
  --paper: #ffffff;
  --shadow: 0 24px 70px rgba(15, 143, 95, 0.14);
  --radius: 16px;
  --display-font: "Playfair Display", Didot, "Bodoni 72", "Bodoni MT", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button {
  cursor: pointer;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
  background: var(--paper);
}

.section.alt {
  background: linear-gradient(180deg, var(--frost), #ffffff);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  color: var(--forest);
  font-family: var(--display-font);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 2vw, 1.58rem);
  font-weight: 600;
  line-height: 1.18;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

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

.section-intro .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.btn-row,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 12px 19px;
  background: linear-gradient(135deg, var(--emerald), var(--forest));
  color: #fff;
  font-weight: 750;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(15, 143, 95, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 143, 95, 0.24);
}

.btn.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--forest);
  box-shadow: 0 10px 24px rgba(15, 143, 95, 0.08);
}

.favorite-detail-btn.active {
  border-color: rgba(212, 175, 55, 0.58);
  background: #fffaf0;
  color: #6f5720;
}

.btn.gold {
  background: linear-gradient(135deg, #f1cf61, var(--gold));
  color: #1f1b0d;
}

.icon-btn {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  color: var(--forest);
  font-weight: 750;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 143, 95, 0.14);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .brand,
body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav-link {
  color: #fff;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav {
  margin-top: 10px;
  height: 66px;
  border: 1px solid rgba(201, 255, 228, 0.24);
  border-radius: 18px;
  padding: 0 14px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62), rgba(201, 255, 228, 0.5));
  box-shadow: 0 16px 42px rgba(5, 28, 18, 0.14);
  backdrop-filter: blur(10px);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .icon-btn {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.site-header.scrolled,
.site-header.menu-open {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(15, 143, 95, 0.12);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand-logo {
  width: clamp(148px, 15vw, 210px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.footer-brand-logo {
  width: min(210px, 100%);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--emerald), var(--forest));
  color: white;
  box-shadow: 0 14px 26px rgba(15, 143, 95, 0.22);
}

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

.nav-link {
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 750;
}

.nav-link.active,
.nav-link:hover {
  background: var(--mint);
  color: var(--forest);
}

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

.menu-toggle {
  display: none;
  align-content: center;
  justify-items: center;
  gap: 5px;
  width: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 14px;
}

.menu-toggle span {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  margin-left: 6px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before {
  position: absolute;
  top: 50%;
  left: -7px;
  width: 3px;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: currentColor;
  content: "";
  transition: opacity 180ms ease;
}

.menu-toggle span:nth-child(1) {
  width: 20px;
}

.menu-toggle span:nth-child(2) {
  width: 14px;
}

.menu-toggle span:nth-child(3) {
  width: 18px;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  width: 20px;
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  width: 20px;
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.menu-open .menu-toggle span::before {
  opacity: 0;
}

.wishlist-btn {
  width: auto;
  min-width: 58px;
  padding: 0 10px;
  border-radius: 999px;
}

.mega {
  position: absolute;
  top: 76px;
  left: 50%;
  display: none;
  width: min(960px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.nav-wrap:hover .mega {
  display: grid;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 22px;
}

.mega-card {
  border-radius: 14px;
  padding: 18px;
  background: var(--frost);
}

.hero {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  padding: 144px 0 56px;
  background: #0b1e15;
  color: white;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 24, 15, 0.92) 0%, rgba(5, 24, 15, 0.74) 42%, rgba(5, 24, 15, 0.28) 100%),
    linear-gradient(0deg, rgba(5, 24, 15, 0.9), transparent 36%);
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.08);
  transition: opacity 900ms ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide.active.zoom-out {
  animation: heroZoomOut 5600ms linear both;
}

.hero-slide.active.zoom-in {
  animation: heroZoomIn 5600ms linear both;
}

.product-motion {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.spice {
  position: absolute;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 7px 13px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  animation: spiceDrift 9s ease-in-out infinite alternate;
}

.spice-one {
  top: 26%;
  right: 12%;
}

.spice-two {
  top: 46%;
  right: 24%;
  animation-delay: -2s;
}

.spice-three {
  right: 9%;
  bottom: 25%;
  animation-delay: -4s;
}

.spice-four {
  top: 64%;
  left: 46%;
  animation-delay: -6s;
}

.grain {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(212, 175, 55, 0.1);
  opacity: 0.72;
  animation: grainFloat 6s ease-in-out infinite;
}

.grain-one {
  top: 31%;
  right: 32%;
}

.grain-two {
  top: 54%;
  right: 8%;
  animation-delay: -1.5s;
}

.grain-three {
  bottom: 19%;
  right: 21%;
  animation-delay: -3s;
}

.grain-four {
  bottom: 34%;
  left: 51%;
  animation-delay: -4.5s;
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 500px;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--display-font);
  font-size: clamp(2.85rem, 6.4vw, 5.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-story {
  position: relative;
  width: min(920px, 100%);
}

.hero-copy {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-width: 920px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.hero-copy.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.hero-copy h1 {
  max-width: 900px;
  margin-inline: auto;
  text-shadow: 0 18px 64px rgba(0, 0, 0, 0.38);
}

.hero-story .btn-row {
  justify-content: center;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-family: var(--display-font);
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.18;
}

.hero-outline {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.hero-dot {
  width: 42px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  padding: 0;
}

.hero-dot.active {
  background: var(--gold);
}

.hero-panel,
.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel {
  position: relative;
  width: min(540px, 100%);
  color: var(--ink);
  padding: 22px;
  overflow: hidden;
  text-align: left;
}

.hero-panel::before {
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat {
  border-radius: 14px;
  padding: 18px;
  background: rgba(247, 252, 249, 0.88);
}

.stat strong {
  display: block;
  color: var(--forest);
  font-size: 2rem;
  line-height: 1;
}

.hero-note {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  border-radius: 14px;
  padding: 16px;
  background: rgba(15, 143, 95, 0.1);
}

.hero-note strong {
  color: var(--forest);
}

.hero-note span {
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 38px rgba(15, 143, 95, 0.08);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card.pad {
  padding: 24px;
}

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

.card h3 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 1.14rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.image-card img,
.service-card img,
.product-card img,
.project-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card .body,
.service-card .body,
.project-card .body,
.blog-card .body {
  padding: 20px;
}

.service-card {
  background: linear-gradient(180deg, #ffffff, rgba(247, 252, 249, 0.92));
}

.service-card img {
  height: 190px;
}

.service-card .pill {
  margin-bottom: 12px;
}

.service-detail-card img {
  height: 260px;
}

.service-detail-card h2 {
  margin: 8px 0 10px;
  color: var(--forest);
  font-family: var(--display-font);
  font-weight: 850;
  line-height: 1.12;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  background: var(--frost);
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
}

.compare-status {
  display: inline-flex;
  max-width: 100%;
  margin: -14px 0 24px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 14px;
  padding: 11px 14px;
  background: #fffaf0;
  color: #6f5720;
  font-size: 0.92rem;
  font-weight: 750;
}

.compare-btn.active {
  border-color: rgba(212, 175, 55, 0.7);
  background: linear-gradient(135deg, #f4d66d, var(--gold));
  color: #1f1b0d;
}

.compare-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(212, 175, 55, 0.2), transparent 32%),
    rgba(5, 28, 18, 0.72);
  backdrop-filter: blur(8px);
}

.compare-panel {
  position: relative;
  width: min(980px, calc(100% - 32px));
  max-height: min(72vh, 620px);
  overflow: auto;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #fffaf0, #ffffff 34%, var(--frost));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.compare-panel-head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(23, 107, 71, 0.14);
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(234, 248, 241, 0.96));
}

.compare-panel-head h3 {
  margin: 0;
  color: var(--forest);
}

.compare-panel-head .icon-btn {
  width: auto;
  padding: 0 14px;
  background: var(--forest);
  color: #fff;
}

.compare-table {
  min-width: 680px;
  padding: 12px 18px 18px;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.7fr) repeat(3, minmax(150px, 1fr));
  gap: 12px;
  border-bottom: 1px solid rgba(23, 107, 71, 0.12);
  padding: 13px 0;
}

.compare-row-head {
  position: sticky;
  top: 79px;
  z-index: 1;
  border-radius: 12px;
  padding-inline: 12px;
  background: rgba(23, 107, 71, 0.08);
}

.compare-row:last-child {
  border-bottom: 0;
}

.compare-row span {
  color: var(--forest);
  font-weight: 850;
}

.compare-row p,
.compare-row strong {
  margin: 0;
  color: var(--muted);
}

.compare-row p {
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.68);
}

.compare-row-head strong {
  color: var(--forest);
  padding: 10px;
}

.toolbar {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(130px, 0.55fr)) auto;
  gap: 12px;
  margin-bottom: 24px;
}

.field {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  background: var(--paper);
  color: var(--ink);
}

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

  .product-grid.list .product-card {
    display: grid;
    grid-template-columns: 260px 1fr;
  }

.product-visual-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  margin: 0 0 22px;
}

.product-visual-strip img {
  width: 100%;
  height: 178px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(15, 143, 95, 0.1);
}

.contact-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
}

.quote-section {
  background:
    linear-gradient(135deg, #ffffff, rgba(234, 248, 241, 0.86));
}

.quote-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(23, 107, 71, 0.14);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 255, 250, 0.9));
  box-shadow: 0 24px 60px rgba(15, 143, 95, 0.12);
  overflow: hidden;
}

.quote-card::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--emerald), var(--forest));
}

.quote-copy,
.quote-action {
  position: relative;
}

.quote-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.quote-points span,
.contact-info-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-action {
  display: grid;
  gap: 18px;
  justify-items: start;
  border-radius: 14px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-action > span {
  color: var(--muted);
  font-weight: 800;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
}

.blog-toolbar {
  grid-template-columns: 1fr 180px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(8, minmax(150px, 1fr));
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.timeline-step {
  position: relative;
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
}

.timeline-step span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--emerald);
  color: white;
  font-weight: 900;
}

.achievement-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.achievement-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(23, 107, 71, 0.14);
  border-radius: 14px;
  padding: 20px;
  background:
    linear-gradient(180deg, #ffffff, rgba(246, 255, 250, 0.92));
  box-shadow: 0 16px 38px rgba(15, 143, 95, 0.08);
  overflow: hidden;
}

.achievement-card::before {
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--emerald));
}

.achievement-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(25, 217, 143, 0.14);
  color: var(--forest);
  font-weight: 900;
}

.achievement-card strong {
  display: block;
  color: var(--gold);
  font-family: var(--display-font);
  font-size: 2rem;
  line-height: 1;
}

.achievement-card h3 {
  margin: 10px 0 10px;
  color: var(--forest);
  line-height: 1.15;
}

.achievement-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.export-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(212, 175, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, var(--frost));
}

.export-timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  padding-bottom: 0;
}

.export-step {
  isolation: isolate;
  min-height: 214px;
  border-color: rgba(23, 107, 71, 0.14);
  border-radius: 16px;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(234, 248, 241, 0.88)),
    var(--paper);
  box-shadow: 0 18px 44px rgba(15, 143, 95, 0.1);
  overflow: hidden;
}

.export-step::after {
  position: absolute;
  right: -26px;
  bottom: -30px;
  z-index: -1;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  content: "";
  background: rgba(212, 175, 55, 0.18);
}

.export-step small {
  display: inline-flex;
  margin: 16px 0 12px;
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(15, 143, 95, 0.09);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 850;
}

.export-step h3 {
  margin-bottom: 8px;
}

.map {
  position: relative;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 22% 42%, rgba(15, 143, 95, 0.26) 0 8%, transparent 8.5%),
    radial-gradient(circle at 46% 48%, rgba(15, 143, 95, 0.22) 0 10%, transparent 10.5%),
    radial-gradient(circle at 72% 40%, rgba(15, 143, 95, 0.24) 0 12%, transparent 12.5%),
    radial-gradient(circle at 82% 67%, rgba(15, 143, 95, 0.22) 0 7%, transparent 7.5%),
    linear-gradient(135deg, var(--mint), var(--paper));
  overflow: hidden;
}

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

.global-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.global-proof span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 800;
}

.global-map-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.map::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 48%, rgba(234, 248, 241, 0.08), rgba(7, 31, 21, 0.48)),
    linear-gradient(135deg, rgba(15, 143, 95, 0.34), rgba(212, 175, 55, 0.16));
}

.pin {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.18);
}

.pin span {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 4;
  display: none;
  width: 190px;
  transform: translateX(-50%);
  border-radius: 12px;
  padding: 12px;
  background: #102018;
  color: white;
  font-size: 0.82rem;
}

.pin:hover span {
  display: block;
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.why-questions {
  display: grid;
  gap: 10px;
}

.why-faq {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: linear-gradient(135deg, #ffffff, rgba(246, 255, 250, 0.92));
  box-shadow: 0 10px 26px rgba(15, 143, 95, 0.07);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.why-question {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  padding: 14px 18px;
  background: transparent;
  color: #075838;
  text-align: left;
}

.why-question span {
  font-size: clamp(0.96rem, 1.6vw, 1.12rem);
  font-weight: 850;
  line-height: 1.25;
}

.why-question strong {
  display: grid;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(25, 217, 143, 0.14);
  color: var(--forest);
  font-size: 1.1rem;
  line-height: 1;
}

.why-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
}

.why-answer p {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.why-faq:hover,
.why-faq.active {
  border-color: rgba(25, 217, 143, 0.48);
  background: linear-gradient(135deg, #ffffff, var(--mint));
  box-shadow: 0 16px 34px rgba(15, 143, 95, 0.12);
}

.why-faq.active {
  transform: translateY(-1px);
}

.why-faq.active .why-answer {
  max-height: 180px;
}

.why-faq.active .why-question strong {
  background: var(--forest);
  color: #ffffff;
}

.why-panel {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 340px;
  border: 1px solid rgba(23, 107, 71, 0.16);
  border-radius: 12px;
  padding: 28px 24px;
  background:
    radial-gradient(circle at top, rgba(25, 217, 143, 0.2), transparent 42%),
    linear-gradient(180deg, #ffffff, #f4fff9);
  box-shadow: 0 22px 58px rgba(15, 143, 95, 0.12);
  text-align: center;
}

.why-panel-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--forest));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(25, 217, 143, 0.28);
}

.why-panel span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
}

.why-panel h3 {
  margin: 12px 0 12px;
  color: var(--forest);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  line-height: 1.08;
}

.why-panel p {
  max-width: 370px;
  margin: 0 0 24px;
  color: var(--muted);
}

.testimonial-marquee {
  width: 100%;
  margin-top: 34px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(16, 130, 87, 0.42) transparent;
  -webkit-overflow-scrolling: touch;
}

.testimonial-marquee:active {
  cursor: grabbing;
}

.testimonial-marquee::-webkit-scrollbar {
  height: 8px;
}

.testimonial-marquee::-webkit-scrollbar-track {
  background: transparent;
}

.testimonial-marquee::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(16, 130, 87, 0.34);
}

.testimonial-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: max(18px, calc((100vw - 1180px) / 2));
}

.testimonial-card {
  flex: 0 0 390px;
  min-height: 260px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(180deg, #ffffff, rgba(220, 255, 237, 0.56));
}

.testimonial-card p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.testimonial-card h3 {
  margin-top: 18px;
}

.page-hero {
  min-height: 520px;
  display: grid;
  align-items: center;
  padding: 140px 0 72px;
  background: linear-gradient(90deg, rgba(8, 34, 23, 0.86), rgba(8, 34, 23, 0.28)), var(--hero-image) center/cover;
  color: white;
  text-align: center;
}

.page-hero .shell {
  max-width: 920px;
}

.page-hero-actions {
  display: none;
}

.page-hero p:not(.eyebrow) {
  max-width: 730px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--display-font);
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.18;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 32px;
}

.gallery {
  display: grid;
  gap: 12px;
}

.gallery-main {
  height: 430px;
  border-radius: var(--radius);
  object-fit: cover;
  width: 100%;
}

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

.thumbs img {
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  width: 100%;
}

.quote-form {
  display: grid;
  gap: 12px;
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.55fr);
  gap: 24px;
  align-items: start;
}

.contact-form-card,
.contact-info-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, #ffffff, rgba(246, 255, 250, 0.9));
  box-shadow: 0 18px 48px rgba(15, 143, 95, 0.1);
}

.contact-form-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form-card textarea {
  min-height: 150px;
  border-radius: 18px;
  resize: vertical;
}

.contact-form-card .btn {
  justify-self: start;
}

.contact-info-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.contact-info-panel h3 {
  margin: 0;
  color: var(--forest);
  font-family: var(--display-font);
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1;
}

.contact-info-panel p {
  margin: 0;
  color: var(--muted);
}

.contact-info-list {
  display: grid;
  gap: 10px;
}

.contact-info-list span {
  display: grid;
  border-radius: 14px;
}

.contact-info-list strong {
  color: var(--forest);
}

.metric {
  border-left: 4px solid var(--gold);
}

.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(15, 143, 95, 0.24), transparent 32%),
    linear-gradient(180deg, #123526, #071f16);
  color: #eef8f2;
  padding: 64px 0 28px;
}

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

.footer a,
.footer p {
  color: rgba(238, 248, 242, 0.72);
}

.footer h3 {
  color: #ffffff;
}

.footer-about p {
  margin: 18px 0 20px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-icon,
.contact-float {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.contact-icon:hover {
  background: var(--emerald);
  box-shadow: 0 12px 28px rgba(25, 217, 143, 0.28);
  transform: translateY(-2px) scale(1.04);
}

.contact-icon svg,
.contact-float svg,
.mini-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.contact-icon svg[fill="none"],
.contact-float svg[fill="none"],
.mini-icon svg[fill="none"] {
  fill: none;
  stroke: currentColor;
}

.footer-contact p {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0 0 12px;
}

.footer-contact strong {
  color: rgba(255, 255, 255, 0.92);
}

.mini-icon {
  display: inline-grid;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(25, 217, 143, 0.16);
  color: var(--mint);
}

.footer-copy {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  color: rgba(238, 248, 242, 0.58);
}

.designer-line {
  margin-left: auto;
  text-align: right;
}

.designer-line a {
  color: #ffffff;
  font-weight: 850;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-rail {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 46;
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.contact-float {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--emerald), var(--forest));
  box-shadow: 0 16px 32px rgba(16, 130, 87, 0.26);
  animation: contactZoom 2200ms ease-in-out infinite;
}

.contact-float:nth-child(2) {
  animation-delay: 220ms;
}

.contact-float:nth-child(3) {
  animation-delay: 440ms;
}

.contact-float:hover {
  animation: none;
  background: linear-gradient(135deg, #37f3a8, var(--emerald));
  box-shadow: 0 18px 38px rgba(25, 217, 143, 0.34);
  transform: scale(1.12);
}

.cookie {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  max-width: 380px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.ambient-spices {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.spice-drop {
  position: absolute;
  top: -10vh;
  display: block;
  width: 13px;
  height: 22px;
  border-radius: 999px 999px 999px 2px;
  background: rgba(244, 205, 73, 0.54);
  box-shadow: 0 0 0 8px rgba(244, 205, 73, 0.12), 0 0 24px rgba(244, 205, 73, 0.24);
  animation: spiceFall 18s linear infinite;
}

.drop-one {
  left: 9%;
  animation-delay: -4s;
}

.drop-two {
  left: 31%;
  width: 10px;
  height: 18px;
  background: rgba(25, 181, 120, 0.44);
  box-shadow: 0 0 0 8px rgba(25, 181, 120, 0.1), 0 0 22px rgba(25, 181, 120, 0.2);
  animation-duration: 22s;
  animation-delay: -11s;
}

.drop-three {
  left: 56%;
  animation-duration: 20s;
  animation-delay: -2s;
}

.drop-four {
  left: 73%;
  width: 11px;
  height: 19px;
  background: rgba(23, 170, 108, 0.4);
  box-shadow: 0 0 0 8px rgba(23, 170, 108, 0.1), 0 0 22px rgba(23, 170, 108, 0.18);
  animation-duration: 24s;
  animation-delay: -15s;
}

.drop-five {
  left: 91%;
  animation-duration: 21s;
  animation-delay: -8s;
}

.drop-six {
  left: 17%;
  width: 9px;
  height: 16px;
  background: rgba(231, 126, 42, 0.46);
  box-shadow: 0 0 0 7px rgba(231, 126, 42, 0.1), 0 0 22px rgba(231, 126, 42, 0.18);
  animation-duration: 20s;
  animation-delay: -13s;
}

.drop-seven {
  left: 42%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  animation-duration: 26s;
  animation-delay: -5s;
}

.drop-eight {
  left: 64%;
  width: 8px;
  height: 17px;
  background: rgba(25, 181, 120, 0.42);
  box-shadow: 0 0 0 7px rgba(25, 181, 120, 0.1), 0 0 20px rgba(25, 181, 120, 0.18);
  animation-duration: 19s;
  animation-delay: -16s;
}

.drop-nine {
  left: 84%;
  width: 12px;
  height: 20px;
  animation-duration: 23s;
  animation-delay: -1s;
}

.drop-ten {
  left: 4%;
  width: 8px;
  height: 14px;
  background: rgba(231, 126, 42, 0.42);
  box-shadow: 0 0 0 7px rgba(231, 126, 42, 0.09), 0 0 20px rgba(231, 126, 42, 0.16);
  animation-duration: 25s;
  animation-delay: -18s;
}

.drop-eleven {
  left: 51%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(244, 205, 73, 0.5);
  animation-duration: 17s;
  animation-delay: -7s;
}

.drop-twelve {
  left: 96%;
  width: 10px;
  height: 18px;
  background: rgba(25, 181, 120, 0.4);
  box-shadow: 0 0 0 7px rgba(25, 181, 120, 0.09), 0 0 20px rgba(25, 181, 120, 0.16);
  animation-duration: 27s;
  animation-delay: -21s;
}

.hidden {
  display: none !important;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.13);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes heroZoomIn {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.13);
  }
}

@keyframes spiceDrift {
  0% {
    transform: translate3d(0, -8px, 0);
  }
  100% {
    transform: translate3d(-14px, 34px, 0);
  }
}

@keyframes spiceFall {
  0% {
    transform: translate3d(0, -12vh, 0) rotate(0deg);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  82% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(34px, 112vh, 0) rotate(220deg);
    opacity: 0;
  }
}

@keyframes grainFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-18px) scale(1.18);
  }
}

@keyframes testimonialScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes contactZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

@media (max-width: 980px) {
  .section {
    padding: 72px 0;
  }

  .hero-grid,
  .why-layout,
  .quote-card,
  .grid.two,
  .grid.three,
  .grid.four,
  .detail-layout,
  .contact-layout,
  .contact-cta-grid,
  .blog-layout,
  .footer-grid,
  .export-timeline {
    grid-template-columns: 1fr;
  }

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

  .achievement-card {
    min-height: 230px;
  }

  .quote-action {
    justify-items: center;
    text-align: center;
  }

  .quote-action .btn-row {
    justify-content: center;
  }

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

  .blog-toolbar {
    grid-template-columns: 1fr;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 255, 250, 0.96));
    box-shadow: 0 24px 70px rgba(5, 28, 18, 0.22);
    backdrop-filter: blur(18px);
  }

  .site-header.menu-open .nav-links {
    display: grid;
    gap: 6px;
  }

  .nav-link {
    display: flex;
    min-height: 44px;
    align-items: center;
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--forest);
  }

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

  .mega {
    display: none !important;
  }

  .hero {
    padding-bottom: 72px;
  }

  .export-timeline {
    overflow: visible;
  }

  .compare-modal {
    padding: 12px;
  }

  .compare-panel {
    width: 100%;
    max-height: 82vh;
  }

  .testimonial-card {
    flex-basis: min(340px, calc(100vw - 48px));
    min-height: 270px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .product-motion {
    opacity: 0.55;
  }

  .spice-four,
  .grain-four {
    display: none;
  }

  .footer-copy {
    align-items: flex-start;
    flex-direction: column;
  }

  .designer-line {
    margin-left: 0;
    text-align: left;
  }

  .why-panel {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    min-height: 100svh;
    padding: 118px 0 48px;
  }

  .hero {
    display: grid;
    align-items: center;
  }

  .nav {
    height: 72px;
  }

  body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav {
    margin-top: 8px;
    height: 66px;
    border-radius: 16px;
    padding: 0 10px;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.66), rgba(201, 255, 228, 0.54));
  }

  .brand {
    gap: 8px;
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 142px;
    max-height: 48px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(5, 24, 15, 0.9), rgba(5, 24, 15, 0.62)),
      linear-gradient(0deg, rgba(5, 24, 15, 0.92), transparent 45%);
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11.4vw, 3.35rem);
    line-height: 0.98;
  }

  .page-hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.2rem);
    line-height: 1;
  }

  .hero-grid {
    min-height: calc(100svh - 166px);
    align-content: center;
    gap: 0;
  }

  .page-hero .shell,
  .hero-story {
    display: grid;
    align-content: center;
    width: min(100%, 390px);
  }

  .hero-copy .eyebrow,
  .page-hero .eyebrow {
    margin-bottom: 20px;
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    margin-top: 22px;
    font-size: clamp(1rem, 4.6vw, 1.24rem);
    line-height: 1.32;
  }

  .hero-story .btn-row {
    margin-top: 34px !important;
  }

  .hero-dots {
    margin-top: 32px;
  }

  .page-hero-actions {
    display: flex;
    justify-content: center;
    margin-top: 34px;
  }

  .page-hero-actions .btn {
    min-height: 52px;
    padding-inline: 18px;
  }

  .hero-panel {
    width: min(100%, 360px);
    padding: 15px;
    border-radius: 14px;
  }

  .hero-panel::before {
    left: 15px;
    right: 15px;
  }

  .hero-panel .eyebrow {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .hero-panel .stat-grid {
    gap: 8px;
  }

  .hero-panel .stat {
    padding: 12px;
    border-radius: 10px;
  }

  .hero-panel .stat strong {
    font-size: 1.35rem;
  }

  .hero-note {
    margin-top: 9px;
    padding: 11px;
    border-radius: 10px;
  }

  .hero-note span {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .product-motion {
    display: none;
  }

  .hero-dot {
    width: 34px;
  }

  .section-head {
    display: block;
  }

  .quote-card {
    border-radius: 14px;
    padding: 20px;
  }

  .quote-points {
    gap: 8px;
    margin-top: 18px;
  }

  .quote-points span {
    font-size: 0.78rem;
  }

  .quote-action {
    padding: 16px;
  }

  .achievement-timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .achievement-card {
    min-height: auto;
    padding: 18px;
  }

  .achievement-index {
    margin-bottom: 16px;
  }

  .contact-form-card,
  .contact-info-panel {
    border-radius: 14px;
    padding: 20px;
  }

  .contact-form-card .btn {
    width: 100%;
  }

  .featured-products .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .featured-products .product-card {
    border-radius: 12px;
  }

  .featured-products .product-card img {
    height: 108px;
  }

  .featured-products .product-card .body {
    padding: 11px;
  }

  .featured-products .inline-actions {
    gap: 6px;
  }

  .featured-products .wishlist-btn {
    min-width: 48px;
    height: 32px;
    padding: 0 8px;
    border-radius: 10px;
    font-size: 0.72rem;
  }

  .featured-products .product-card h3 {
    margin-bottom: 6px;
    font-size: 0.92rem;
    line-height: 1.18;
  }

  .featured-products .product-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.78rem;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .featured-products .meta {
    gap: 5px;
    margin: 9px 0;
  }

  .featured-products .pill {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 0.68rem;
  }

  .featured-products .btn-row {
    gap: 7px;
  }

  .featured-products .btn {
    flex: 1 1 100%;
    min-height: 34px;
    border-radius: 10px;
    padding: 8px 9px;
    font-size: 0.74rem;
  }

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

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

  .product-visual-strip {
    grid-template-columns: 1fr;
  }

  .product-visual-strip img {
    height: 132px;
  }

  .stat-grid,
  .thumbs {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 18px;
  }

  .contact-rail {
    right: 10px;
    gap: 9px;
  }

  .contact-float {
    width: 46px;
    height: 46px;
  }

  .contact-float svg {
    width: 17px;
    height: 17px;
  }

  .compare-table {
    min-width: 560px;
    padding: 10px 12px 14px;
  }

  .compare-row {
    gap: 8px;
    font-size: 0.84rem;
  }

  .ambient-spices {
    opacity: 0.86;
  }
}

/* Premium food-export design refresh */
:root {
  --emerald: #227653;
  --forest: #0f3f2d;
  --mint: #dcebd4;
  --frost: #fbf7ed;
  --gold: #c8912d;
  --saffron: #df7b28;
  --chilli: #9d2f22;
  --ink: #211d18;
  --muted: #746d62;
  --line: rgba(57, 45, 32, 0.14);
  --paper: #fffdf7;
  --shadow: 0 24px 70px rgba(49, 34, 17, 0.12);
  --radius: 12px;
}

body {
  background:
    linear-gradient(180deg, #fffaf0 0, #fbf7ed 460px, #fffdf7 100%);
  color: var(--ink);
}

.section {
  padding: 108px 0;
  background: var(--paper);
}

.section.alt {
  background:
    linear-gradient(180deg, #fbf7ed, #fffdf7 58%),
    var(--frost);
}

.shell {
  width: min(1200px, calc(100% - 40px));
}

.eyebrow {
  color: var(--saffron);
  letter-spacing: 0.16em;
}

.section-title {
  color: var(--forest);
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  line-height: 0.95;
}

.section-lead {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.34rem);
  font-family: Aptos, "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  line-height: 1.55;
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 12px 21px;
  background: linear-gradient(135deg, var(--forest), #276f4f);
  box-shadow: 0 15px 30px rgba(15, 63, 45, 0.18);
}

.btn.gold {
  background: linear-gradient(135deg, #e3b558, var(--gold));
}

.btn.secondary,
.field,
.icon-btn {
  background: rgba(255, 253, 247, 0.9);
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 48px rgba(35, 24, 13, 0.1);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav {
  border-color: rgba(255, 250, 236, 0.28);
  background: rgba(20, 34, 25, 0.24);
  box-shadow: 0 18px 52px rgba(5, 10, 7, 0.16);
}

.nav-link {
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-link.active,
.nav-link:hover {
  background: rgba(220, 235, 212, 0.82);
  color: var(--forest);
}

.hero {
  min-height: 760px;
  padding: 150px 0 74px;
  background: #102018;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(15, 26, 19, 0.9) 0%, rgba(15, 26, 19, 0.72) 42%, rgba(15, 26, 19, 0.2) 100%),
    linear-gradient(0deg, rgba(15, 26, 19, 0.94), transparent 44%);
}

.hero-grid {
  min-height: 540px;
  justify-items: start;
  text-align: left;
}

.hero-story {
  width: min(830px, 100%);
}

.hero h1,
.page-hero h1 {
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.88;
}

.hero-copy h1,
.hero-copy > p:not(.eyebrow) {
  margin-inline: 0;
}

.hero-copy > p:not(.eyebrow),
.page-hero p:not(.eyebrow) {
  font-family: Aptos, "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.6vw, 1.26rem);
  font-weight: 500;
  line-height: 1.58;
}

.hero-copy:not(.active) {
  visibility: hidden;
}

.hero-story .btn-row,
.hero-dots {
  justify-content: flex-start;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(255, 250, 236, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 250, 236, 0.11);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.spice {
  border-color: rgba(255, 250, 236, 0.2);
  background: rgba(65, 35, 13, 0.22);
}

.grain {
  background: var(--saffron);
  box-shadow: 0 0 0 9px rgba(223, 123, 40, 0.12);
}

.card {
  border-radius: 12px;
  background: #fffdf7;
  box-shadow: 0 16px 44px rgba(45, 31, 16, 0.08);
}

.card:hover {
  box-shadow: 0 26px 64px rgba(45, 31, 16, 0.14);
}

.card h3 {
  color: var(--forest);
}

.pill {
  border-color: rgba(57, 45, 32, 0.12);
  background: #f8efe0;
  color: #5d4322;
}

.featured-products {
  background:
    linear-gradient(180deg, #fffdf7, #fbf7ed);
}

.featured-products .grid.four {
  align-items: stretch;
}

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.product-card .product-image-link {
  display: block;
  overflow: hidden;
}

.product-card img,
.blog-card img {
  height: 250px;
  transition: transform 420ms ease;
}

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

.product-card .body,
.blog-card .body {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
}

.product-card-top {
  justify-content: space-between;
}

.product-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.28rem;
  line-height: 1.05;
}

.product-card p,
.blog-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 2px;
}

.product-specs span {
  min-height: 62px;
  border: 1px solid rgba(57, 45, 32, 0.1);
  border-radius: 10px;
  padding: 9px;
  background: #fbf7ed;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1.2;
}

.product-specs strong {
  display: block;
  margin-bottom: 3px;
  color: var(--saffron);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wishlist-btn {
  min-width: 52px;
  height: 36px;
  border-radius: 999px;
  font-size: 0.78rem;
}

.about-preview-section {
  background:
    linear-gradient(90deg, #fffdf7 0%, #fffdf7 58%, #f5ead8 58%, #f5ead8 100%);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 28px 70px rgba(45, 31, 16, 0.16);
}

.about-media-note {
  position: absolute;
  right: -22px;
  bottom: 24px;
  display: grid;
  gap: 4px;
  width: min(285px, calc(100% - 28px));
  border: 1px solid rgba(255, 250, 236, 0.72);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 253, 247, 0.9);
  box-shadow: 0 18px 42px rgba(45, 31, 16, 0.14);
  backdrop-filter: blur(14px);
}

.about-media-note strong {
  color: var(--forest);
}

.about-media-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.editorial-section .blog-card {
  display: grid;
  grid-template-rows: auto 1fr;
}

.editorial-section .blog-card h3 {
  margin: 0;
  font-family: var(--display-font);
  font-size: 1.45rem;
  line-height: 1.05;
}

.toolbar {
  position: sticky;
  top: 92px;
  z-index: 5;
  border: 1px solid rgba(57, 45, 32, 0.1);
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 42px rgba(45, 31, 16, 0.08);
  backdrop-filter: blur(18px);
}

.product-visual-strip img {
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(45, 31, 16, 0.1);
}

.footer {
  background:
    linear-gradient(180deg, #183929, #0b2018);
}

.ambient-spices {
  opacity: 0.5;
}

@media (max-width: 980px) {
  .about-preview-section {
    background: var(--paper);
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: 2;
  }

  .toolbar {
    position: static;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 1200px);
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: 100svh;
    padding-top: 122px;
  }

  .hero-grid {
    justify-items: center;
    text-align: center;
  }

  .hero-story .btn-row,
  .hero-dots,
  .hero-proof {
    justify-content: center;
  }

  .hero-copy h1,
  .hero-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .hero-proof {
    margin-top: 22px;
  }

  .hero-proof span {
    font-size: 0.74rem;
  }

  .product-specs {
    grid-template-columns: 1fr;
  }

  .featured-products .grid.four {
    grid-template-columns: 1fr;
  }

  .featured-products .product-card img {
    height: 210px;
  }

  .featured-products .product-card .body {
    padding: 18px;
  }

  .featured-products .product-card h3 {
    font-size: 1.22rem;
  }

  .about-media-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px;
  }

  .contact-rail {
    display: none;
  }
}

/* Green and white client revision */
:root {
  --emerald: #0b7654;
  --forest: #00513f;
  --mint: #e6f4ee;
  --frost: #f7fffb;
  --gold: #ffffff;
  --saffron: #ffffff;
  --chilli: #00513f;
  --ink: #06372d;
  --muted: #4d7067;
  --line: rgba(0, 81, 63, 0.16);
  --paper: #ffffff;
  --shadow: 0 22px 58px rgba(0, 81, 63, 0.12);
}

body {
  background: #ffffff;
  color: var(--ink);
}

.section,
.section.alt,
.featured-products,
.editorial-section {
  background: #ffffff;
}

.eyebrow {
  color: var(--forest);
}

.section-title,
.card h3,
.product-card h3,
.editorial-section .blog-card h3 {
  color: var(--forest);
}

.btn {
  background: var(--forest);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0, 81, 63, 0.2);
}

.btn.secondary,
.hero-outline {
  border-color: rgba(0, 81, 63, 0.22);
  background: #ffffff;
  color: var(--forest);
}

.pill {
  border-color: rgba(0, 81, 63, 0.14);
  background: #eef8f3;
  color: var(--forest);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav,
.site-header.scrolled,
.site-header.menu-open {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(0, 81, 63, 0.72);
}

.site-header.scrolled .nav-link,
.site-header.menu-open .nav-link,
.site-header.scrolled .brand,
.site-header.menu-open .brand {
  color: #ffffff;
}

.nav-link.active,
.nav-link:hover {
  background: #ffffff;
  color: var(--forest) !important;
}

.hero {
  background: var(--forest);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(0, 81, 63, 0.94) 0%, rgba(0, 81, 63, 0.76) 48%, rgba(0, 81, 63, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 81, 63, 0.86), transparent 42%);
}

.page-hero {
  background:
    linear-gradient(90deg, rgba(0, 81, 63, 0.94) 0%, rgba(0, 81, 63, 0.76) 48%, rgba(0, 81, 63, 0.24) 100%),
    linear-gradient(0deg, rgba(0, 81, 63, 0.86), transparent 42%),
    var(--hero-image) center/cover;
}

.hero-copy .eyebrow,
.page-hero .eyebrow {
  color: #ffffff;
}

.hero-proof span {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(0, 81, 63, 0.32);
}

.hero-dot.active {
  background: #ffffff;
}

.home-intro-section {
  background: #ffffff;
  color: var(--forest);
  padding-top: 0;
}

.home-intro-section .shell {
  width: 100%;
}

.agro-story-section {
  background: #e8f4ee;
  color: var(--forest);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 5vw, 74px);
  align-items: center;
}

.agro-story-section .eyebrow,
.agro-story-section .section-title {
  color: var(--forest);
}

/* Home brand hero revision */
body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav,
.site-header.scrolled,
.site-header.menu-open {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(235, 249, 243, 0.56) 34%, rgba(0, 81, 63, 0.82) 100%);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 54px rgba(0, 81, 63, 0.16);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav-link,
.site-header.scrolled .nav-link,
.site-header.menu-open .nav-link {
  color: #ffffff;
  text-shadow: none;
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .brand {
  color: var(--forest);
  text-shadow: none;
}

.hero {
  min-height: 760px;
  padding: 142px 0 74px;
  background: var(--forest);
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(0, 81, 63, 0.34), rgba(0, 81, 63, 0.72)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.78), rgba(0, 81, 63, 0.34), rgba(0, 81, 63, 0.72));
}

.hero-slide {
  opacity: 1;
  transform: none;
  background-position: center;
}

.hero-grid {
  min-height: 560px;
  justify-items: center;
  text-align: center;
}

.hero-brand-card {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(760px, 100%);
  justify-items: center;
  gap: 16px;
  color: #ffffff;
}

.hero-symbol {
  width: clamp(82px, 10vw, 124px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.hero-company-image {
  width: min(360px, 80vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.hero-company-text {
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-card h1 {
  max-width: 720px;
  margin: 8px 0 0;
  font-size: clamp(2.2rem, 4.6vw, 4.6rem);
  line-height: 1.02;
}

.hero-brand-card p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.26rem);
  line-height: 1.62;
}

.hero-brand-card .btn-row {
  justify-content: center;
  margin-top: 14px;
}

.hero-brand-card .hero-outline {
  background: #ffffff;
  color: var(--forest);
}

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

.section-head > div,
.section-head .section-lead {
  margin-inline: auto;
}

.section-head .btn {
  display: none;
}

.section > .shell > .eyebrow,
.section > .shell > .section-title,
.section > .shell > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-intro-grid {
  display: flex;
  flex-direction: column;
  gap: 34px;
  text-align: center;
}

.home-intro-image {
  width: 100%;
  order: -1;
}

.home-intro-image img {
  width: 100%;
  max-height: 560px;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  object-position: center;
}

.home-intro-copy {
  width: min(980px, calc(100% - 32px));
  margin-inline: auto;
}

.home-intro-copy .btn-row {
  justify-content: center;
}

.service-card {
  border-color: rgba(0, 81, 63, 0.14);
  background: linear-gradient(180deg, #ffffff, #f0faf5);
}

.service-card .pill {
  display: none;
}

.featured-products {
  background: linear-gradient(180deg, #f7fffb, #ffffff);
}

.featured-products .product-card {
  border: 1px solid rgba(0, 81, 63, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf7 100%);
  box-shadow: 0 24px 56px rgba(0, 81, 63, 0.12);
}

.featured-products .product-card .body {
  border-top: 4px solid var(--forest);
}

.featured-products .product-card h3 {
  color: var(--forest);
}

.featured-products .product-card-top .pill {
  background: var(--forest);
  color: #ffffff;
}

.featured-products .product-specs span {
  border-color: rgba(0, 81, 63, 0.14);
  background: #e9f7f0;
}

.featured-products .product-specs strong {
  color: var(--forest);
}

@media (max-width: 980px) {
  .section-head {
    display: grid;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 116px;
  }

  .hero-brand-card h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .home-intro-image img {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}

.home-intro-section .section-lead {
  color: var(--forest);
}

.home-intro-section .section-title {
  font-family: Aptos, "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
  font-weight: 850;
  line-height: 1.12;
}

.home-intro-section .section-lead {
  max-width: 820px;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.8;
}

.home-intro-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  object-fit: cover;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.24);
}

.home-intro-section .btn {
  border: 2px solid var(--forest);
  background: var(--forest);
  color: #ffffff;
}

.home-intro-section .btn.secondary {
  background: #ffffff;
  color: var(--forest);
}

.agro-story-section {
  padding-top: 84px;
}

.agro-story-section .section-head {
  margin-bottom: 34px;
}

.agro-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.agro-story-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #003f31;
  box-shadow: none;
}

.agro-story-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 420ms ease;
}

.agro-story-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 28%, rgba(0, 0, 0, 0.72) 100%);
}

.agro-story-card:hover img {
  transform: scale(1.04);
}

.agro-story-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 30px;
  color: #ffffff;
}

.agro-story-overlay h3 {
  max-width: 320px;
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.18;
}

.agro-story-overlay p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.about-preview-section {
  background: #ffffff;
}

.about-media img {
  border-radius: 0;
}

.footer {
  background: var(--forest);
}

@media (max-width: 980px) {
  .home-intro-grid,
  .agro-story-grid {
    grid-template-columns: 1fr;
  }

  .home-intro-image {
    order: -1;
  }
}

@media (max-width: 640px) {
  .home-intro-section .section-title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .home-intro-section .section-lead {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .agro-story-card,
  .agro-story-card img {
    min-height: 360px;
  }

  .agro-story-overlay {
    padding: 24px;
  }
}

/* Home page client refinement */
body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav,
.site-header.scrolled,
.site-header.menu-open {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(246, 255, 251, 0.76) 42%, rgba(0, 81, 63, 0.76) 100%);
  border-color: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .brand,
.site-header.scrolled .brand,
.site-header.menu-open .brand {
  color: var(--forest);
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav-link,
.site-header.scrolled .nav-link,
.site-header.menu-open .nav-link {
  color: var(--forest);
  text-shadow: none;
}

body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav-link.active,
body.header-over-hero .site-header:not(.scrolled):not(.menu-open) .nav-link:hover,
.site-header.scrolled .nav-link.active,
.site-header.scrolled .nav-link:hover,
.site-header.menu-open .nav-link.active,
.site-header.menu-open .nav-link:hover {
  background: #ffffff;
  color: var(--forest) !important;
  box-shadow: 0 10px 24px rgba(0, 81, 63, 0.12);
}

.hero {
  min-height: 700px;
  padding: 132px 0 64px;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(0, 81, 63, 0.46), rgba(0, 81, 63, 0.7)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.74), rgba(0, 81, 63, 0.18), rgba(0, 81, 63, 0.62));
}

.hero-grid {
  min-height: 500px;
  justify-items: center;
  text-align: center;
}

.hero-brand-card {
  gap: 12px;
}

.hero-symbol {
  width: clamp(96px, 12vw, 150px);
}

.hero-company-image {
  width: min(410px, 84vw);
}

.hero-brand-card h1 {
  max-width: 620px;
  margin: 4px 0 0;
  font-size: clamp(1.8rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.home-intro-section {
  padding: 0 0 86px;
}

.home-intro-section .shell {
  width: 100%;
}

.home-intro-grid {
  gap: clamp(26px, 4vw, 46px);
}

.home-intro-image {
  width: 100%;
}

.home-intro-image img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 6.2;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.home-intro-copy {
  width: min(980px, calc(100% - 36px));
  margin-inline: auto;
  text-align: center;
}

.home-intro-section .section-lead {
  margin-inline: auto;
  text-align: center;
}

.section-head,
.section > .shell > .eyebrow,
.section > .shell > .section-title,
.section > .shell > .section-lead {
  text-align: center;
}

.section-head {
  justify-content: center;
}

.section-head > div,
.section-head .section-lead {
  margin-inline: auto;
}

.service-card .pill,
.hero-proof,
.spice,
.grain,
.hero-dots {
  display: none;
}

.service-card {
  min-height: 100%;
  border-color: rgba(0, 81, 63, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #effaf4 100%);
}

.service-card img {
  height: 178px;
}

.service-card .body {
  text-align: center;
}

.service-card .body .btn {
  margin-inline: auto;
}

.featured-products {
  background:
    linear-gradient(180deg, #f3fff9 0%, #ffffff 62%);
}

.featured-products .product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 81, 63, 0.2);
  background:
    linear-gradient(180deg, #ffffff 0%, #f1fbf5 100%);
  box-shadow: 0 20px 54px rgba(0, 81, 63, 0.13);
}

.featured-products .product-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, #00513f, #0b7654, #7fd6a8);
}

.featured-products .product-card .body {
  border-top: 0;
}

.featured-products .product-card-top .pill {
  background: rgba(0, 81, 63, 0.1);
  color: var(--forest);
}

.featured-products .product-specs span {
  border-color: rgba(0, 81, 63, 0.16);
  background: #eaf8f1;
}

.featured-products .btn.secondary {
  border-color: rgba(0, 81, 63, 0.24);
  background: var(--forest);
  color: #ffffff;
}

.page-hero .shell {
  margin-inline: auto;
  text-align: center;
}

.page-hero h1,
.page-hero p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.page-hero-actions {
  justify-content: center;
}

@media (max-width: 980px) {
  .grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-intro-image img {
    aspect-ratio: 16 / 8.5;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 620px;
    padding-top: 112px;
  }

  .hero-brand-card h1 {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
  }

  .home-intro-image img {
    aspect-ratio: 4 / 3;
  }

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

/* Client final refinement */
:root {
  --display-font: "Segoe UI", Inter, Aptos, ui-sans-serif, system-ui, sans-serif;
}

body,
.section-lead,
.hero-brand-card h1,
.hero-brand-card p,
.section-title,
.page-hero h1,
.product-card h3,
.service-card h3,
.agro-story-overlay h3 {
  font-family: "Segoe UI", Inter, Aptos, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.hero {
  min-height: 760px;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(0, 81, 63, 0.24), rgba(0, 81, 63, 0.62)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.68), rgba(0, 81, 63, 0.08), rgba(0, 81, 63, 0.58));
}

.hero-brand-card {
  transform: translateY(64px);
}

.hero-symbol {
  width: clamp(118px, 13vw, 172px);
  filter: brightness(1.18) contrast(1.12) drop-shadow(0 18px 36px rgba(0, 0, 0, 0.28));
}

.hero-company-image {
  width: min(520px, 88vw);
  filter: brightness(1.22) contrast(1.16) saturate(1.08) drop-shadow(0 16px 30px rgba(0, 0, 0, 0.2));
}

.hero-brand-card h1 {
  font-weight: 850;
}

.hero-brand-card p {
  max-width: 680px;
  font-weight: 650;
}

.agro-story-section,
.services-preview-section,
.featured-products,
.why-section,
.testimonials-section {
  background: var(--forest);
  color: #ffffff;
}

.agro-story-section .eyebrow,
.agro-story-section .section-title,
.services-preview-section .eyebrow,
.services-preview-section .section-title,
.featured-products .eyebrow,
.featured-products .section-title,
.why-section .eyebrow,
.why-section .section-title,
.testimonials-section .eyebrow,
.testimonials-section .section-title {
  color: #ffffff;
}

.agro-story-section .section-lead,
.services-preview-section .section-lead,
.featured-products .section-lead,
.why-section .section-lead {
  color: rgba(255, 255, 255, 0.84);
}

.agro-story-section {
  position: relative;
  padding: 84px 0 86px;
  background: linear-gradient(180deg, var(--forest) 0 50%, #ffffff 50% 100%);
}

.agro-story-grid {
  gap: clamp(18px, 3vw, 34px);
}

.agro-story-card {
  min-height: 330px;
  border-radius: 0;
}

.agro-story-card img {
  min-height: 330px;
}

.agro-story-overlay {
  padding: 26px;
}

.agro-story-overlay h3 {
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  font-weight: 850;
}

.export-quality-band {
  position: relative;
  overflow: hidden;
  background: var(--forest);
}

.export-quality-band img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.export-quality-title {
  position: absolute;
  left: max(24px, calc((100vw - 1180px) / 2));
  bottom: clamp(24px, 5vw, 58px);
  width: min(620px, calc(100% - 48px));
  color: #ffffff;
}

.export-quality-title h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.06;
}

.product-card,
.service-card {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.product-card img {
  height: 210px;
  padding: 18px;
  object-fit: contain;
  background: #f7fffb;
}

.product-card .body,
.service-card .body {
  gap: 12px;
  text-align: left;
}

.product-card h3,
.service-card h3 {
  font-size: 1.14rem;
  font-weight: 850;
}

.product-card p,
.service-card p {
  font-size: 0.96rem;
  line-height: 1.58;
}

.product-card .btn-row,
.service-card .btn-row,
.service-card .body > div {
  margin-top: 6px !important;
}

.featured-products .product-card {
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.featured-products .product-card::before,
.featured-products .product-card .product-specs,
.wishlist-btn {
  display: none;
}

.services-preview-section .service-card,
.why-section .card,
.testimonials-section .card {
  background: #ffffff;
}

.service-detail-card {
  border-radius: 8px;
}

.service-detail-card img,
.service-card img {
  height: 180px;
}

.simple-toolbar {
  grid-template-columns: 1.2fr repeat(3, minmax(120px, 0.5fr)) auto;
}

.product-detail-copy h3 {
  margin-top: 20px;
}

.product-detail-copy h3:first-child {
  margin-top: 0;
}

.global-map-photo,
.about-media img {
  border-radius: 8px;
}

@media (max-width: 980px) {
  .hero-brand-card {
    transform: translateY(40px);
  }

  .agro-story-section {
    background: var(--forest);
  }

  .simple-toolbar {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 680px;
  }

  .hero-brand-card {
    transform: translateY(28px);
  }

  .hero-company-image {
    width: min(360px, 88vw);
  }

  .simple-toolbar {
    grid-template-columns: 1fr;
  }
}

/* Requested page cleanup */
.product-catalog-section,
.services-full-section,
.about-simple-section {
  padding-top: 112px;
  padding-bottom: 76px;
}

.catalog-heading {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.catalog-heading .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.product-catalog-section .toolbar {
  margin-bottom: 18px;
}

.product-catalog-section .inline-actions {
  justify-content: center;
}

.product-card .product-image-link {
  display: block;
  width: 100%;
  background: #f3fbf7;
}

.product-card img,
.featured-products .product-card img {
  width: 100%;
  height: 250px;
  padding: 0;
  object-fit: cover;
  object-position: center;
  background: #f3fbf7;
}

.product-card .body {
  min-height: 236px;
  display: flex;
  flex-direction: column;
}

.product-card .btn-row {
  margin-top: auto !important;
}

.featured-products {
  padding-top: 76px;
  padding-bottom: 76px;
}

.featured-products .section-head {
  margin-bottom: 30px;
}

.featured-products .product-card .body {
  min-height: 220px;
}

.detail-layout .gallery {
  overflow: hidden;
  border-radius: 8px;
}

.gallery-main {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.thumbs img {
  object-fit: cover;
}

.product-detail-copy {
  box-shadow: none;
}

.services-full-grid {
  align-items: stretch;
}

.services-full-section .service-detail-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.services-full-section .service-detail-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.services-full-section .service-detail-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.services-full-section .service-detail-card h2 {
  margin: 0 0 8px;
  color: var(--forest);
  font-size: 1.2rem;
  line-height: 1.25;
}

.services-full-section .service-detail-card p {
  font-size: 0.95rem;
}

.services-full-section .service-detail-card .meta {
  margin-top: 14px;
}

.services-full-section .service-detail-card .btn-row {
  margin-top: auto !important;
}

.service-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
  gap: 10px;
}

.service-card-actions .btn {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  white-space: nowrap;
}

.service-detail-copy h3 {
  margin: 22px 0 8px;
  color: #000000;
  font-size: 1.08rem;
}

.service-detail-copy h3:first-child {
  margin-top: 0;
}

.service-detail-copy ul,
.service-detail-copy ol {
  margin: 8px 0 16px;
  padding-left: 22px;
  color: #000000;
}

.service-detail-copy li {
  margin: 6px 0;
}

.service-facts {
  margin-top: 18px;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 81, 63, 0.08);
}

.service-facts h3 {
  margin: 0 0 14px;
  color: #000000;
  font-size: 1.08rem;
}

.service-fact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.service-fact-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--frost);
}

.service-fact-grid span {
  display: block;
  color: var(--forest);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.service-fact-grid strong {
  display: block;
  margin-top: 4px;
  color: #000000;
  font-size: 0.92rem;
  line-height: 1.35;
}

.about-simple-section .card {
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 81, 63, 0.08);
}

.about-simple-cards .card {
  min-height: 150px;
  text-align: center;
}

.about-gallery {
  margin-top: 28px;
}

.about-gallery .image-card img,
.about-simple-intro .image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.export-quality-band {
  min-height: 420px;
}

.export-quality-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 81, 63, 0.52), rgba(0, 81, 63, 0.08) 55%, rgba(0, 81, 63, 0.3));
}

.export-quality-title {
  z-index: 1;
}

.hero {
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 116px 24px auto;
  z-index: 2;
  height: 230px;
  /* background: url("../assets/logosss.png") center/contain no-repeat; */
  content: "";
  opacity: 0.92;
  filter: brightness(1.8) contrast(1.15) drop-shadow(0 18px 34px rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

.hero-brand-card {
  transform: translateY(132px);
}

.hero-brand-card h1 {
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.hero-symbol,
.hero-company-image,
.hero-company-text {
  display: none !important;
}

@media (max-width: 980px) {
  .product-catalog-section,
  .services-full-section,
  .about-simple-section {
    padding-top: 104px;
    padding-bottom: 62px;
  }

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

  .product-card img,
  .featured-products .product-card img {
    height: 230px;
  }
}

@media (max-width: 640px) {
  .product-catalog-section,
  .services-full-section,
  .about-simple-section {
    padding-top: 94px;
  }

  .services-full-grid,
  .grid.three {
    grid-template-columns: 1fr;
  }

  .product-card img,
  .featured-products .product-card img {
    height: 220px;
  }

  .product-card .body,
  .featured-products .product-card .body {
    min-height: auto;
  }

  .hero::before {
    top: 104px;
    height: 160px;
  }

  .hero-brand-card {
    transform: translateY(104px);
  }
}

/* Client text color correction */
body,
.section-lead,
.home-intro-section .section-lead,
.about-preview-section .section-lead,
.why-panel p,
.global-section .section-lead,
.testimonial-card p,
.quote-copy .section-lead,
.contact-form-card .section-lead,
.contact-info-panel p,
.about-simple-section .section-lead,
.services-full-section .section-lead,
.product-catalog-section .section-lead,
.service-card p,
.product-card p,
.card p,
.contact-info-list span,
.footer-contact p {
  color: #000000;
}

.section-title,
.catalog-heading .section-title,
.about-simple-section .section-title,
.services-full-section .section-title,
.product-catalog-section .section-title,
.contact-form-card .section-title,
.quote-copy .section-title,
.global-section .section-title,
.about-preview-section .section-title,
.card h3,
.service-card h2,
.service-card h3,
.product-card h3,
.contact-info-panel h3 {
  color: #000000;
}

.eyebrow,
.catalog-heading .eyebrow,
.contact-form-card .eyebrow,
.contact-info-panel .eyebrow,
.about-simple-section .eyebrow,
.services-full-section .eyebrow,
.product-catalog-section .eyebrow,
.global-section .eyebrow,
.quote-copy .eyebrow,
.about-preview-section .eyebrow {
  color: #000000;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero p:not(.eyebrow) {
  color: #ffffff;
}

/* Home page spacing refinement */
.hero::before {
  top: 170px;
  height: 255px;
}

.hero-brand-card {
  transform: translateY(210px);
}

.hero-brand-card h1,
.hero-brand-card p {
  color: #ffffff;
}

.agro-story-section {
  padding: 78px 0 52px;
}

.agro-story-section .section-head {
  margin-bottom: 28px;
}

.agro-story-overlay p {
  display: none;
}

.agro-story-overlay {
  padding: 24px;
}

.export-quality-band {
  min-height: 500px;
}

.export-quality-band img {
  max-height: none;
  height: 500px;
}

.export-quality-title {
  top: clamp(34px, 6vw, 76px);
  bottom: auto;
}

.export-quality-title .eyebrow,
.export-quality-title h2,
.export-quality-title p {
  color: #ffffff;
}

.export-quality-title p:not(.eyebrow) {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  font-weight: 650;
  line-height: 1.5;
}

.about-preview-section {
  padding: 72px 0 58px;
}

.about-preview-grid {
  gap: clamp(24px, 4vw, 56px);
}

.about-media img {
  max-height: 430px;
  object-fit: cover;
}

.about-essence-section {
  padding: 58px 0 66px;
  background: #ffffff;
}

.about-essence-section .section-head {
  margin-bottom: 24px;
}

.about-essence-grid .card {
  text-align: center;
}

.services-preview-section,
.why-section {
  padding-top: 72px;
  padding-bottom: 76px;
}

.services-preview-section .section-head,
.why-section .section-head {
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .hero::before {
    top: 148px;
    height: 210px;
  }

  .hero-brand-card {
    transform: translateY(176px);
  }
}

@media (max-width: 640px) {
  .hero::before {
    top: 132px;
    height: 148px;
  }

  .hero-brand-card {
    transform: translateY(134px);
  }

  .export-quality-band,
  .export-quality-band img {
    min-height: 420px;
    height: 420px;
  }
}

/* Final home alignment pass */
.hero-slide {
  background-position: center 62%;
}

.hero::before {
  top: 205px;
  height: 255px;
}

.hero-brand-card {
  transform: translateY(250px);
}

.home-intro-section {
  padding-bottom: 58px;
}

.agro-story-section {
  padding: 68px 0 50px;
}

.export-quality-band {
  min-height: 500px;
}

.export-quality-band img {
  height: 500px;
}

.export-quality-title {
  top: clamp(28px, 5vw, 64px);
}

.about-preview-section {
  padding: 64px 0 46px;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.about-preview-section .about-media img {
  width: 100%;
  height: 360px;
  max-height: 360px;
  object-fit: cover;
}

.about-preview-section .section-title {
  font-size: clamp(2rem, 4vw, 3.85rem);
}

.about-preview-section .section-lead {
  max-width: 680px;
}

.about-essence-section {
  padding: 46px 0 54px;
}

.about-essence-section .section-head {
  margin-bottom: 22px;
}

.about-essence-grid {
  margin-top: 0;
}

.about-essence-grid .card {
  min-height: 0;
  padding: 22px;
}

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

.services-preview-section,
.featured-products,
.why-section,
.global-section,
.testimonials-section {
  padding-top: 58px;
  padding-bottom: 64px;
}

.featured-products .section-head,
.global-section .section-head,
.testimonials-section .section-head {
  margin-bottom: 26px;
}

.featured-products .product-card .body {
  min-height: 176px;
}

.featured-products .grid.four,
.services-preview-section .grid.four {
  align-items: stretch;
}

.global-section .global-grid {
  align-items: center;
}

.global-section .map {
  min-height: 360px;
}

.why-layout {
  margin-top: 0;
}

.fade-in {
  opacity: 1;
  transform: none;
}

.about-preview-section .fade-in,
.featured-products .fade-in,
.global-section .fade-in,
.why-section .fade-in,
.services-preview-section .fade-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero::before {
    top: 168px;
    height: 210px;
  }

  .hero-brand-card {
    transform: translateY(208px);
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .about-essence-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-slide {
    background-position: center bottom;
  }

  .hero::before {
    top: 138px;
    height: 148px;
  }

  .hero-brand-card {
    transform: translateY(156px);
  }

  .about-preview-section .about-media img {
    height: 280px;
    max-height: 280px;
  }
}

/* Requested final typography and image updates */
.hero {
  min-height: 100svh;
}

.hero-slide {
  background-position: center;
  background-size: cover;
}

.hero::before {
  display: none;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(0, 81, 63, 0.22), rgba(0, 81, 63, 0.42)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.46), rgba(0, 81, 63, 0.14), rgba(0, 81, 63, 0.36));
}

.hero-grid {
  min-height: calc(100svh - 190px);
}

.hero-brand-card {
  transform: none;
}

.hero-main-logo {
  width: min(560px, 72vw);
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.26));
}

.page-hero {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0, 81, 63, 0.3), rgba(0, 81, 63, 0.48)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.52), rgba(0, 81, 63, 0.18), rgba(0, 81, 63, 0.38)),
    var(--hero-image) center/cover;
}

.page-hero h1 {
  font-size: clamp(2.65rem, 5vw, 5.25rem);
}

.page-hero p:not(.eyebrow) {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.agro-story-overlay {
  display: none;
}

.highlight-image-band {
  position: relative;
  overflow: hidden;
}

.highlight-image-band img {
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  object-position: center;
}

.export-quality-title {
  top: clamp(28px, 5vw, 72px);
  bottom: auto;
}

.about-essence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-essence-grid .card {
  border-radius: 8px;
  padding: 24px 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 81, 63, 0.08);
}

.about-essence-grid .card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.about-essence-grid .card p {
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-preview-section .section-title,
.about-essence-section .section-title,
.global-section .section-title,
.quote-copy .section-title,
.about-simple-section .section-title,
.services-full-section .section-title,
.product-catalog-section .section-title,
.contact-form-card .section-title,
.contact-info-panel h3 {
  font-size: clamp(1.8rem, 3.4vw, 3.35rem);
  line-height: 1.04;
}

.about-preview-section .section-lead,
.about-essence-section .section-lead,
.global-section .section-lead,
.quote-copy .section-lead,
.about-simple-section .section-lead,
.services-full-section .section-lead,
.product-catalog-section .section-lead,
.contact-form-card .section-lead,
.contact-info-panel p {
  font-size: clamp(0.98rem, 1.3vw, 1.16rem);
  line-height: 1.5;
}

.about-preview-section .eyebrow,
.about-essence-section .eyebrow,
.global-section .eyebrow,
.quote-copy .eyebrow,
.about-simple-section .eyebrow,
.services-full-section .eyebrow,
.product-catalog-section .eyebrow,
.contact-form-card .eyebrow,
.contact-info-panel .eyebrow,
.export-quality-title .eyebrow {
  color: var(--forest);
}

@media (max-width: 980px) {
  .page-hero {
    min-height: 78svh;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 72svh;
  }

  .hero-grid {
    min-height: 52svh;
  }

  .hero-main-logo {
    width: min(340px, 78vw);
  }

  .page-hero {
    min-height: 70svh;
  }

  .about-essence-grid {
    grid-template-columns: 1fr;
  }
}

/* Strengthen inner page hero photos while keeping the green tint */
.page-hero {
  background-image:
    linear-gradient(180deg, rgba(0, 81, 63, 0.18), rgba(0, 81, 63, 0.34)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.34), rgba(0, 81, 63, 0.08), rgba(0, 81, 63, 0.24)),
    var(--hero-image) !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/* Real image layer for page heroes */
.page-hero {
  position: relative;
  overflow: hidden;
  background: #00513f !important;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.82;
  filter: saturate(0.96) brightness(0.86);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 81, 63, 0.14), rgba(0, 81, 63, 0.36)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.32), rgba(0, 81, 63, 0.08), rgba(0, 81, 63, 0.24));
  pointer-events: none;
}

.page-hero .shell {
  position: relative;
  z-index: 2;
}

/* Latest section placement and card count refinements */
.about-essence-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 20px !important;
  max-width: 980px;
  margin-inline: auto;
}

.about-essence-grid .card {
  min-height: 150px;
  display: grid;
  align-content: center;
  text-align: left;
}

.highlight-image-band {
  min-height: 0;
  background: #030303;
}

.highlight-image-band img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1362 / 646;
  object-fit: contain;
  object-position: center;
}

.product-map-hero {
  min-height: clamp(560px, 82svh, 820px);
  background: #030303 !important;
}

.product-map-hero .page-hero-bg {
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: none;
  background: #030303;
}

.product-map-hero::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 81, 63, 0.46)),
    linear-gradient(90deg, rgba(0, 81, 63, 0.48), rgba(0, 0, 0, 0.08) 56%, rgba(0, 81, 63, 0.26));
}

.services-preview-section .section-head,
.why-section .section-head {
  margin-bottom: 34px;
}

.services-preview-section .section-title,
.why-section .section-title {
  font-size: clamp(1.85rem, 3.5vw, 3.4rem);
}

.services-preview-section .section-lead,
.why-section .section-lead {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
}

.about-simple-intro .section-lead {
  max-width: 760px;
}

.about-simple-intro .image-card img {
  height: 430px;
  object-fit: cover;
}

/* Lighten map artwork so the baked black background blends into the page. */
.global-section .map {
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 22%, rgba(25, 217, 143, 0.13), transparent 28%),
    linear-gradient(135deg, #ffffff, var(--frost));
  box-shadow: 0 14px 34px rgba(0, 81, 63, 0.08);
}

.global-section .global-map-photo {
  opacity: 0.95;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.08);
}

.global-section .map::after {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(246, 255, 250, 0.08)),
    linear-gradient(0deg, rgba(0, 81, 63, 0.08), rgba(255, 255, 255, 0));
}

.highlight-image-band {
  background:
    radial-gradient(circle at 50% 50%, rgba(25, 217, 143, 0.1), transparent 44%),
    #ffffff !important;
}

.highlight-image-band img {
  filter: saturate(1.04) contrast(1.04);
}

.service-detail-section .gallery {
  align-content: start;
  overflow: visible;
}

.service-detail-section .gallery-main {
  height: 360px;
  border-radius: 8px;
}

.service-detail-section .eyebrow {
  color: var(--forest);
}

.service-outcomes {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.service-outcomes h3 {
  margin: 0;
  color: #000000;
  font-size: 1.08rem;
}

.service-outcomes span {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 13px;
  background: var(--frost);
  color: #000000;
  font-weight: 750;
}

.service-related-section {
  padding-top: 34px;
}

.service-related-section .eyebrow {
  margin-bottom: 18px;
  color: var(--forest);
}

.footer {
  position: relative;
  overflow: hidden;
  border-top: 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 175, 55, 0.22), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(25, 217, 143, 0.18), transparent 30%),
    linear-gradient(180deg, #00624b, #003f31) !important;
}

.footer::before {
  position: absolute;
  inset: 18px 18px auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.footer-grid {
  position: relative;
  gap: 34px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 1rem;
}

.footer p {
  line-height: 1.65;
}

.footer a {
  transition: color 180ms ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-grid > div:not(.footer-about) {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 20px;
}

.footer-copy {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 22px;
}

@media (max-width: 640px) {
  .service-card-actions,
  .service-fact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .about-essence-grid {
    grid-template-columns: 1fr !important;
  }

  .product-map-hero {
    min-height: 70svh;
  }

  .product-map-hero .page-hero-bg {
    object-position: center 58%;
  }

  .highlight-image-band,
  .highlight-image-band img {
    min-height: 0;
    height: auto;
  }
}

/* Final professional card/form refinements */
.home-intro-image {
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: clamp(34px, 6vw, 96px);
  border-bottom-right-radius: clamp(34px, 6vw, 96px);
}

.home-intro-image::after {
  position: absolute;
  left: clamp(22px, 6vw, 88px);
  bottom: clamp(22px, 5vw, 64px);
  width: min(560px, calc(100% - 44px));
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  text-shadow: 0 16px 36px rgba(0, 0, 0, 0.44);
  content: "Indian quality, packed for global buyers.";
}

.home-intro-image::before {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 46%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.54));
  pointer-events: none;
}

.home-intro-image::after {
  z-index: 2;
}

.about-simple-cards .card,
.contact-faq-section .card,
.about-simple-section .card.pad {
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0, 81, 63, 0.07);
  text-align: left;
}

.about-simple-cards .card {
  min-height: 150px;
}

.about-simple-cards .card h3,
.contact-faq-section .card h3,
.about-simple-section .card.pad h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.about-simple-cards .card p,
.contact-faq-section .card p,
.about-simple-section .card.pad p {
  font-size: 0.98rem;
  line-height: 1.55;
}

.about-simple-section .shell.grid.two {
  align-items: stretch;
}

.about-simple-section .shell.grid.two > .card.pad {
  display: grid;
  align-content: center;
}

.services-full-section .shell {
  width: min(1120px, calc(100% - 40px));
}

.services-full-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.services-full-section .service-detail-card {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 81, 63, 0.08);
}

.services-full-section .service-detail-card img {
  height: 170px;
}

.services-full-section .service-detail-card .body {
  padding: 18px;
}

.services-full-section .service-detail-card h2 {
  font-size: 1.08rem;
}

.card-extra {
  margin-top: 10px !important;
  font-size: 0.92rem !important;
  line-height: 1.5 !important;
  color: #000000 !important;
}

.product-catalog-section .product-grid {
  margin-top: 8px;
}

.product-catalog-section .product-card {
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 81, 63, 0.08);
}

.product-catalog-section .product-card .body {
  min-height: 282px;
}

.product-catalog-section .product-card h3 {
  font-size: 1.08rem;
}

.contact-layout {
  align-items: stretch;
}

.contact-form-card,
.contact-info-panel {
  min-height: 100%;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 81, 63, 0.08);
}

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

.form-grid label,
.full-field {
  display: grid;
  gap: 7px;
  color: #000000;
  font-size: 0.86rem;
  font-weight: 800;
}

.contact-form-card .field {
  min-height: 48px;
  border-radius: 8px;
  background: #ffffff;
  padding: 11px 13px;
  box-shadow: none;
}

.contact-form-card textarea.field {
  min-height: 132px;
  border-radius: 8px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.contact-info-panel .contact-info-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-info-panel .btn-row {
  margin-top: auto;
}

.contact-faq-section .grid.three {
  gap: 22px;
}

@media (max-width: 980px) {
  .services-full-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .home-intro-image::after {
    font-size: clamp(1.45rem, 8vw, 2.4rem);
  }
}
