:root {
  color-scheme: light;
  --green-950: #092316;
  --green-900: #0d3f25;
  --green-800: #155b37;
  --green-100: #e7f2e9;
  --gold-600: #b78520;
  --gold-500: #d2a236;
  --gold-100: #f7ecd2;
  --red-600: #b63b24;
  --ink: #1c2f22;
  --muted: #58645a;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(9, 35, 22, 0.12);
  --shadow: 0 20px 60px rgba(9, 35, 22, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 0;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

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

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

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

button {
  border: 0;
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

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

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 248px;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  flex: 1;
  justify-content: center;
  gap: 14px;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.mobile-nav a,
.footer-links a {
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--gold-600);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid rgba(183, 133, 32, 0.44);
  border-radius: 999px;
  padding: 0 18px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.header-cta:hover {
  background: var(--green-900);
  color: white;
}

.mobile-nav {
  display: none;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  gap: 18px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  padding: 12px 0 14px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav a {
  flex: 0 0 auto;
}

.hero-section {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(9, 35, 22, 0.9) 0%, rgba(9, 35, 22, 0.72) 42%, rgba(9, 35, 22, 0.12) 100%),
    url("./assets/hero-spices-photo.jpg");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80px;
  background: linear-gradient(180deg, transparent, var(--white));
  content: "";
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 28%),
    radial-gradient(circle at 28% 30%, rgba(210, 162, 54, 0.22), transparent 35%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 86vh;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 52px;
  padding: 72px 0 108px;
}

.eyebrow,
.section-tag {
  margin: 0 0 16px;
  color: var(--gold-500);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content {
  max-width: 740px;
}

.hero-content h1,
.section h2,
.site-footer h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.hero-content h1 {
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.95;
}

.hero-subtitle {
  max-width: 690px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button-primary {
  background: var(--gold-500);
  color: var(--green-950);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.button-primary:hover {
  background: #e2b54b;
}

.button-secondary,
.button-outline {
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.button-outline {
  border-color: rgba(13, 63, 37, 0.18);
  background: white;
  color: var(--green-900);
}

.button-outline:hover {
  border-color: var(--gold-500);
}

.hero-panel {
  display: grid;
  gap: 12px;
}

.hero-panel a {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  padding: 18px;
  backdrop-filter: blur(8px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.hero-panel a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

.hero-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  scroll-margin-top: 112px;
  padding: 86px 0;
}

.section-white {
  background: white;
}

.section-tint {
  background:
    linear-gradient(180deg, rgba(231, 242, 233, 0.48), rgba(251, 250, 246, 0.86)),
    var(--paper);
}

.section-number {
  margin: 0 0 4px;
  color: rgba(183, 133, 32, 0.25);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 0.95;
}

.section-number.muted {
  color: rgba(255, 255, 255, 0.14);
}

.section h2 {
  color: var(--green-900);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}

.section p {
  color: var(--muted);
  line-height: 1.75;
}

.about-grid,
.trust-layout,
.market-grid,
.founder-grid,
.enquiry-grid,
.compliance-panel {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 58px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.copy-stack p,
.trust-layout > div > p,
.market-grid > div > p,
.founder-grid > div > p,
.enquiry-grid > div > p,
.compliance-panel > div > p {
  margin: 0;
  font-size: 18px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 8px;
}

.feature-row a,
.product-card,
.trust-card,
.spec-card,
.process-card,
.compliance-card,
.founder-point,
.contact-list a,
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.feature-row a {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.feature-row a:hover,
.product-card:hover,
.trust-card:hover,
.process-card:hover,
.compliance-card:hover,
.contact-list a:hover {
  transform: translateY(-4px);
  border-color: rgba(183, 133, 32, 0.44);
  box-shadow: var(--shadow);
}

.feature-row strong {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.feature-row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 34px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading-narrow {
  align-items: start;
}

.section-heading > p,
.section-heading > div + p {
  margin: 0;
  font-size: 18px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  background: white;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  background: var(--green-100);
}

.product-card-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-card h3,
.trust-card h3,
.spec-card h3,
.process-card h3 {
  margin: 0;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
}

.product-card .tagline {
  min-height: 48px;
  margin: 0;
  color: var(--gold-600);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.55;
}

.product-meta {
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-meta strong {
  color: var(--green-900);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-size: 14px;
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.trust-card,
.process-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.icon-box {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 900;
}

.trust-card p,
.process-card p {
  margin: 0;
  font-size: 14px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 50px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow);
}

.stats-band a {
  display: grid;
  gap: 8px;
  min-height: 134px;
  place-items: center;
  background: var(--green-900);
  padding: 24px;
  text-align: center;
}

.stats-band strong {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.spec-list {
  display: grid;
  gap: 18px;
}

.spec-card {
  overflow: hidden;
}

.spec-card-inner {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 22px;
}

.spec-card img {
  width: 100%;
  height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
}

.spec-copy {
  display: grid;
  gap: 18px;
}

.spec-copy > p {
  margin: 0;
}

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

.spec-column {
  border-radius: var(--radius);
  background: var(--paper);
  padding: 16px;
}

.spec-column h4 {
  margin: 0 0 12px;
  color: var(--gold-600);
  font-size: 12px;
  text-transform: uppercase;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.check-list li::before {
  color: var(--green-800);
  content: "\2713";
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  text-align: center;
}

.process-card .icon-box {
  margin: 0 auto;
  background: var(--green-900);
  color: white;
}

.process-card small {
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.market-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 42%, rgba(210, 162, 54, 0.22), transparent 30%),
    linear-gradient(135deg, var(--green-950), var(--green-900));
  color: white;
}

.market-section h2,
.market-section p {
  color: white;
}

.market-section p {
  color: rgba(255, 255, 255, 0.72);
}

.section-tag-dark {
  color: var(--gold-500);
}

.market-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-pills a {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 15px;
  color: white;
  font-size: 14px;
  font-weight: 800;
}

.market-pills a:hover {
  background: white;
  color: var(--green-900);
}

.market-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  grid-template-rows: auto minmax(260px, 1fr) auto;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 18%, rgba(210, 162, 54, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  overflow: hidden;
  padding: 18px;
}

.market-visual::before {
  content: none;
}

.map-toolbar,
.map-legend {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.map-toolbar strong,
.map-toolbar span {
  display: grid;
  line-height: 1.3;
}

.map-toolbar strong {
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.map-toolbar span,
.map-legend span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 700;
}

.map-toolbar a {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 9px 13px;
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.map-toolbar a:hover {
  background: white;
  color: var(--green-900);
}

.country-map {
  position: relative;
  z-index: 1;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.world-map {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

.map-ocean {
  fill: rgba(255, 255, 255, 0.06);
}

.map-country {
  stroke: rgba(9, 35, 22, 0.48);
  stroke-width: 0.58;
  transition:
    fill 160ms ease,
    opacity 160ms ease,
    stroke 160ms ease;
}

.map-country-active {
  fill: rgba(210, 162, 54, 0.78);
  cursor: pointer;
}

.map-country-link:hover .map-country-active,
.map-country-link:focus .map-country-active {
  fill: #f4d47d;
  stroke: white;
}

.map-country-excluded {
  fill: rgba(255, 255, 255, 0.18);
  opacity: 0.7;
}

.map-legend {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.map-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.map-legend i {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.legend-active {
  background: var(--gold-500);
}

.legend-excluded {
  background: rgba(255, 255, 255, 0.28);
}

.map-fallback {
  display: grid;
  height: 100%;
  min-height: 280px;
  place-items: center;
  padding: 28px;
  text-align: center;
}

.map-fallback strong {
  color: white;
}

.map-fallback span {
  color: rgba(255, 255, 255, 0.7);
}

.compliance-panel {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 42px;
}

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

.compliance-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  color: var(--green-900);
  font-weight: 800;
}

.compliance-card .icon-box {
  width: 42px;
  height: 34px;
  background: var(--gold-100);
  font-size: 11px;
}

.founder-panel {
  display: grid;
  gap: 18px;
  border-radius: var(--radius);
  background: white;
  padding: 30px;
  box-shadow: var(--shadow);
}

.section-logo {
  width: min(100%, 390px);
  height: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.founder-panel [data-founder-points] {
  display: grid;
  gap: 12px;
}

.founder-point {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  background: var(--paper);
  padding: 16px;
}

.founder-point::before {
  color: var(--gold-600);
  content: "\2713";
  font-weight: 900;
}

.founder-point p {
  margin: 0;
}

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

.contact-list a {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 2px 14px;
  align-items: center;
  padding: 16px;
  background: var(--paper);
}

.contact-list a > span {
  grid-row: span 2;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--green-900);
  color: white;
  font-size: 13px;
  font-weight: 900;
}

.contact-list strong {
  color: var(--green-900);
}

.contact-list small {
  color: var(--muted);
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: var(--paper);
  padding: 26px;
  box-shadow: var(--shadow);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
}

.enquiry-form label span {
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
}

.span-two {
  grid-column: span 2;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  outline: none;
  padding: 13px 14px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.enquiry-form textarea {
  min-height: 136px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(210, 162, 54, 0.18);
}

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

.enquiry-form .button-primary {
  width: 100%;
  color: var(--green-950);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--green-900);
  color: white;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 16px 42px rgba(9, 35, 22, 0.28);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: var(--green-950);
}

.floating-whatsapp span:first-child {
  color: var(--gold-500);
}

.site-footer {
  background: var(--green-950);
  color: white;
  padding: 52px 0 28px;
}

.footer-brand .brand-logo {
  width: 260px;
  background: white;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.site-footer p {
  max-width: 330px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 36px;
}

.site-footer h3 {
  color: var(--gold-500);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 14px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: flex;
  }

  .hero-inner,
  .about-grid,
  .trust-layout,
  .market-grid,
  .founder-grid,
  .enquiry-grid,
  .compliance-panel {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
  }

  .hero-panel {
    max-width: 680px;
  }

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

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

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

@media (max-width: 760px) {
  .header-inner,
  .section-inner,
  .mobile-nav {
    width: min(100% - 28px, var(--max));
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-logo {
    width: 212px;
  }

  .header-cta {
    display: none;
  }

  .hero-section,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    padding: 82px 0 88px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-actions,
  .form-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

  .section-number {
    font-size: 54px;
  }

  .section h2 {
    font-size: 34px;
  }

  .section-heading,
  .feature-row,
  .trust-grid,
  .spec-card-inner,
  .spec-columns,
  .process-grid,
  .compliance-grid,
  .enquiry-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .spec-card img {
    height: 230px;
  }

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

  .compliance-panel,
  .enquiry-form,
  .founder-panel {
    padding: 20px;
  }

  .span-two {
    grid-column: auto;
  }

  .market-visual {
    min-height: 320px;
  }

  .floating-whatsapp {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero-content h1 {
    font-size: 48px;
  }

  .stats-band {
    grid-template-columns: 1fr;
  }
}
