:root {
  --ink: #17231d;
  --muted: #68736d;
  --green: #1f4d3a;
  --green-2: #2f6b50;
  --cream: #f7f5ef;
  --sand: #e9e4d7;
  --white: #fff;
  --line: #dfe2dc;
  --accent: #c58b4e;
  --shadow: 0 18px 50px rgba(23, 35, 29, 0.09);
  --radius: 24px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 40px));
  margin: auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(223, 226, 220, 0.8);
}
.nav-contact-bar {
  background: var(--green);
  color: white;
}
.nav-contact-bar .container {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 14px;
}
.nav-contact-bar a:hover {
  color: #d9b27f;
}
.contact-icon {
  display: inline-block;
  margin-right: 7px;
  font-size: 14px;
  line-height: 1;
  vertical-align: -1px;
}
.nav-contact-bar .contact-icon {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}
.nav-contact-bar .contact-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand,
.nav-right {
  display: flex;
  flex-direction: column;
}
.nav-brand {
  align-items: flex-start;
  gap: 2px;
}
.nav-right {
  align-items: flex-end;
  gap: 7px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--green);
}
.logo img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.logo span {
  color: inherit;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #46534c;
}
.nav-links a:hover {
  color: var(--green);
}
.nav-links a.active {
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -18px;
  width: 220px;
  height: 14px;
}
.nav-dropdown-toggle span {
  display: inline-block;
  margin-left: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span {
  transform: rotate(180deg);
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  display: none;
  min-width: 220px;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
  gap: 2px;
}
.nav-dropdown-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 7px;
  white-space: nowrap;
  font-size: 15px;
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
  background: #edf2ec;
  text-decoration: none;
}
.menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 27px;
  color: var(--green);
  cursor: pointer;
}

.hero {
  padding: 16px 0 16px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(197, 139, 78, 0.17),
      transparent 30%
    ),
    linear-gradient(135deg, #f7f5ef 0%, #eef2ea 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.eyebrow:before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--accent);
}
h1 {
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin-bottom: 25px;
}
h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--green);
}
.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 620px;
  margin-bottom: 32px;
}
.page-hero {
  padding: 30px 0 30px;
  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(197, 139, 78, 0.17),
      transparent 30%
    ),
    linear-gradient(135deg, #f7f5ef 0%, #eef2ea 100%);
}
.page-hero-content h1 {
  margin-bottom: 20px;
}
.page-hero-content p {
  color: var(--muted);
  font-size: 18px;
}
.page-content {
  min-height: 420px;
}
.buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 21px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover {
  background: #173b2c;
}
.btn-secondary {
  border: 1px solid #cbd0c9;
  background: rgba(255, 255, 255, 0.5);
}

.hero-card {
  position: relative;
  min-height: 460px;
  border-radius: 32px;
  overflow: hidden;
  /* background: var(--green); */
  /* box-shadow: var(--shadow); */
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* opacity: 0.48; */
  /* mix-blend-mode: screen; */
}
.hero-card:before,
.hero-card:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.hero-card:before {
  width: 390px;
  height: 390px;
  right: -120px;
  top: -90px;
}
.hero-card:after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -100px;
}
.card-inner {
  position: absolute;
  inset: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.world-mark {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  position: relative;
}
.globe:before {
  content: "";
  position: absolute;
  inset: 25px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}
.globe:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    -48px 0 0 rgba(255, 255, 255, 0.15),
    48px 0 0 rgba(255, 255, 255, 0.15);
}
.hero-note {
  color: white;
}
.hero-note small {
  color: #bcd0c4;
  display: block;
  margin-bottom: 6px;
}
.hero-note strong {
  font-size: 28px;
  display: block;
  line-height: 1.15;
}

section {
  padding: 45px 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}
.section-head h2 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
}
.about {
  background: white;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}
.number {
  font-size: 90px;
  line-height: 1;
  font-weight: 800;
  color: #e7e9e3;
  letter-spacing: -0.08em;
}
.about-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.about-image {
  width: 100%;
  height: 230px;
  margin-top: 28px;
  object-fit: cover;
  border-radius: 22px;
}
.about-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.about-copy p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 18px;
}
.founder {
  background: var(--cream);
}
.founder-copy {
  max-width: 100%;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 35px;
  align-items: start;
}
.founder-copy > div:first-child {
  max-width: 700px;
  grid-column: 2;
  grid-row: 1;
  margin-bottom: 0;
}
.founder-image {
  display: block;
  width: 175px;
  max-width: 100%;
  height: 195px;
  margin: 0 auto;
  object-fit: contain;
  background: #f1f3ed;
  border-radius: 12px;
}
.founder-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.founder-copy p {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 17px;
}
.founder-profiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  grid-column: 1;
  grid-row: 1;
}
.founder-profile {
  width: min(100%, 280px);
  padding: 9px;
  /* background: white; */
  border: 1px solid var(--line);
  border-radius: 9px;
  box-shadow: var(--shadow);
}
.founder-profile h5 {
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
}
.founder-profile p {
  margin: 3px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.products {
  background: var(--cream);
}
.products#products {
  padding-top: 24px;
}
.products#products .section-head {
  margin-bottom: 28px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  min-height: 245px;
  transition: 0.25s;
  scroll-margin-top: 125px;
}
.product-card:first-child:not(.agriculture-feature) {
  grid-column: 1 / -1;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "content image";
  gap: 0;
  padding: 0;
  border-color: rgba(197, 139, 78, 0.65);
}
.product-card:first-child:not(.agriculture-feature) .product-image {
  grid-area: image;
  width: 100%;
  height: 100%;
  min-height: 340px;
  margin: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.agriculture-card-content {
  grid-area: content;
  align-self: center;
  padding: 38px;
}
.agriculture-feature {
  grid-column: 1 / -1;
  min-height: 0;
  padding: 0;
  border-color: rgba(197, 139, 78, 0.65);
  overflow: hidden;
}
.agriculture-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  min-height: 205px;
  border-bottom: 1px solid var(--line);
}
.agriculture-feature-row:last-child {
  border-bottom: 0;
}
.agriculture-row-content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.agriculture-row-content h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.15;
}
.agriculture-row-content p {
  max-width: 440px;
  color: var(--muted);
  font-size: 14px;
}
.agriculture-row-image {
  grid-column: 2;
  width: 100%;
  height: 100%;
  min-height: 205px;
  height: 205px;
  object-fit: cover;
}
#skincare .agriculture-row-image {
  grid-column: 1;
  grid-area: auto;
}
#skincare .agriculture-row-content {
  grid-column: 2;
  grid-area: auto;
}
#fashion .agriculture-row-content {
  grid-column: 1;
  grid-area: auto;
}
#fashion .agriculture-row-image {
  grid-column: 2;
  grid-area: auto;
}
.agriculture-feature-row:nth-child(2) .agriculture-row-content {
  grid-column: 2;
}
.agriculture-feature-row:nth-child(2) .agriculture-row-image {
  grid-column: 1;
}
.agriculture-category-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 205px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.agriculture-category-row .agriculture-row-content {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}
.agriculture-category-row .agriculture-row-image {
  grid-column: 2;
  width: 100%;
  height: 205px;
  min-height: 205px;
  object-fit: cover;
}
.agriculture-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.agriculture-detail-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 90px;
  padding: 7px 16px 7px 7px;
  border-radius: 8px;
  background: #edf2ec;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}
.agriculture-detail-item:hover {
  background: #e3ebe2;
}
.agriculture-detail-item img {
  width: 110px;
  height: 76px;
  object-fit: cover;
  border-radius: 6px;
}
.product-image {
  display: block;
  width: calc(100% + 60px);
  height: 165px;
  margin: -30px -30px 24px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
}
.secondary-product-card {
  width: 100%;
  min-height: 340px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  margin-top: 20px;
  border-color: var(--line);
}
.secondary-product-card .product-image {
  grid-row: 1 / -1;
  width: 100%;
  height: 100%;
  min-height: 340px;
  margin: 0;
  border-radius: 0;
}
.secondary-product-card .product-title {
  gap: 12px;
  align-self: end;
  margin: 0;
  padding: 30px 28px 0;
}
.secondary-product-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  font-size: 21px;
}
.secondary-product-card h3 {
  font-size: 22px;
  line-height: 1.2;
}
.secondary-product-card p {
  align-self: start;
  margin: 0;
  padding: 12px 28px 30px;
  font-size: 15px;
  line-height: 1.55;
}
#skincare .product-image {
  grid-column: 1;
}
#skincare .product-title,
#skincare > p {
  grid-column: 2;
}
#fashion .product-image {
  grid-column: 2;
}
#fashion .product-title,
#fashion > p {
  grid-column: 1;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.product-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #edf2ec;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 23px;
  flex: 0 0 auto;
}
.product-card h3 {
  font-size: 22px;
}
.product-card p {
  color: var(--muted);
  font-size: 14px;
}

.range {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  padding: 10px 15px;
  border-radius: 999px;
  background: #eeeae0;
  color: #526057;
  font-size: 13px;
}

.approach {
  background: var(--green);
  color: white;
}
.approach .section-head p {
  color: #c6d4cc;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.principle {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
}
.principle strong {
  display: block;
  margin-bottom: 5px;
}
.principle span {
  font-size: 13px;
  color: #b9c9c0;
}

.vision {
  background: white;
  min-height: 0;
  padding: 28px 0;
}
.vision-box {
  background: var(--sand);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 38px 44px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  align-items: center;
}
.vision-box h2 {
  font-size: 46px;
  line-height: 1.05;
}
.vision-box p {
  font-size: 18px;
  color: #5c665f;
}

.global {
  background: #f1f3ed;
}
.global-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.global-card {
  background: white;
  border-radius: 24px;
  padding: 34px;
  border: 1px solid var(--line);
}
.global-image {
  display: block;
  width: calc(100% + 68px);
  height: 190px;
  margin: -34px -34px 26px;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}
.global-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}
.global-card p {
  color: var(--muted);
}

.contact {
  background: var(--green);
  color: white;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact h2 {
  font-size: clamp(40px, 5vw, 62px);
  line-height: 1.03;
  margin-bottom: 18px;
}
.contact p {
  color: #c6d4cc;
  max-width: 520px;
}
.contact-card {
  position: relative;
  background: white;
  color: var(--ink);
  padding: 16px 20px 12px;
  border: 1px solid rgba(197, 139, 78, 0.55);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(8, 39, 27, 0.16);
}
.contact-form {
  display: grid;
  gap: 13px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}
.contact-form label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fbfcf9;
  font: inherit;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  outline: 0;
}
.contact-form textarea {
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green-2);
  box-shadow: 0 0 0 3px rgba(47, 107, 80, 0.12);
}
.form-submit {
  border: 0;
  cursor: pointer;
  justify-self: start;
}
.contact-details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}
.contact-grid > div:first-child .contact-details {
  max-width: 390px;
  margin-top: 28px;
  border-top-color: rgba(255, 255, 255, 0.2);
}
.contact-grid > div:first-child .contact-row {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.contact-grid > div:first-child .contact-row small {
  color: #b9c9c0;
}
.contact-grid > div:first-child .contact-row small .contact-icon {
  color: white;
}
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  width: 38px;
  height: 3px;
  background: var(--accent);
}
.contact-card-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 9px;
  border-bottom: 1px solid var(--line);
}
.contact-card-heading img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.contact-card-heading strong {
  display: block;
  color: var(--green);
  font-size: 14px;
  letter-spacing: 0.12em;
}
.contact-card-heading small {
  display: block;
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.contact-row {
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child {
  border-bottom: 0;
}
.contact-row small {
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}
.contact-row small .contact-icon {
  margin-right: 5px;
  width: 14px;
  height: 14px;
  color: var(--green);
}
.contact-row small .contact-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.contact-row a {
  font-size: 13px;
  font-weight: 700;
}

.category-hero {
  padding: 42px 0;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(197, 139, 78, 0.2),
      transparent 28%
    ),
    linear-gradient(135deg, #f7f5ef 0%, #e7efe7 100%);
}
.category-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.category-hero h1 {
  max-width: 600px;
}
.category-hero p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
}
.category-hero-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.category-content {
  background: white;
}
.category-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: start;
}
.category-layout > div:first-child {
  position: sticky;
  top: 125px;
}
.category-layout h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.category-layout > div:first-child p {
  color: var(--muted);
  font-size: 17px;
}
.category-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.category-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  background: #fbfcf9;
}
.category-item-image {
  display: block;
  width: calc(100% + 48px);
  height: 150px;
  margin: -24px -24px 20px;
  object-fit: cover;
}
.category-list h3 {
  margin-bottom: 8px;
  font-size: 19px;
}
.category-list p {
  color: var(--muted);
  font-size: 14px;
}
.category-cta {
  background: var(--cream);
}
.category-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 48px;
  border-radius: 24px;
  background: var(--sand);
}
.category-cta-box .eyebrow {
  margin-bottom: 12px;
}
.category-cta-box h2 {
  max-width: 620px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

footer {
  background: #122a20;
  color: #b8c7bf;
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  font-size: 13px;
}
.footer-logo {
  font-weight: 800;
  color: white;
  letter-spacing: 0.12em;
  display: inline-flex;
  align-items: center;
}
.footer-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin-right: 6px;
  background: white;
  border-radius: 50%;
  padding: 0;
}

@media (max-width: 800px) {
  .container {
    width: min(100% - 28px, 600px);
  }
  .nav {
    min-height: 68px;
  }
  .logo {
    font-size: 22px;
  }
  .logo img {
    width: 36px;
    height: 36px;
  }
  .nav-contact-bar {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 18px 20px 25px;
    flex-direction: column;
    gap: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open {
    display: flex;
  }
  .nav-dropdown-menu {
    position: static;
    display: grid;
    min-width: 100%;
    margin-top: 8px;
    padding: 4px 0 4px 14px;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }
  .nav-dropdown-menu a {
    padding: 8px 10px;
  }
  .nav-dropdown::after {
    display: none;
  }
  .hero {
    padding: 55px 0;
  }
  .hero-grid,
  .about-grid,
  .approach-grid,
  .vision-box,
  .global-grid,
  .contact-grid,
  .category-hero-grid,
  .category-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .category-hero {
    padding: 35px 0;
  }
  .category-hero-image {
    height: 240px;
  }
  .category-layout > div:first-child {
    position: static;
  }
  .category-list {
    grid-template-columns: 1fr;
  }
  .category-cta-box {
    align-items: flex-start;
    flex-direction: column;
    padding: 32px;
  }
  .founder-profiles {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-column: 1;
    grid-row: 2;
  }
  .founder-copy {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .founder-copy > div:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .founder-profile {
    display: block;
    width: 100%;
  }
  .founder-image {
    width: 100%;
    height: 150px;
  }
  .hero-card {
    min-height: 350px;
  }
  .world-mark {
    height: 190px;
  }
  .globe {
    width: 150px;
    height: 150px;
  }
  section {
    padding: 65px 0;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card:first-child:not(.agriculture-feature) {
    grid-column: auto;
    display: block;
    padding: 30px;
  }
  .product-card:first-child:not(.agriculture-feature) .product-image {
    width: calc(100% + 60px);
    height: 230px;
    min-height: 0;
    margin: -30px -30px 24px;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .secondary-product-card {
    display: block;
    padding: 26px;
    margin-top: 16px;
  }
  .secondary-product-card .product-image {
    width: calc(100% + 52px);
    height: 180px;
    min-height: 0;
    margin: -26px -26px 24px;
    border-radius: 18px 18px 0 0;
  }
  .secondary-product-card .product-title,
  .secondary-product-card p {
    padding: 0;
  }
  .secondary-product-card .product-title {
    margin-bottom: 16px;
  }
  .agriculture-card-content {
    padding: 0;
  }
  .agriculture-feature {
    display: block;
    padding: 0;
  }
  .agriculture-feature-row,
  .agriculture-category-row {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  #skincare .agriculture-row-image,
  #fashion .agriculture-row-image,
  #skincare .agriculture-row-content,
  #fashion .agriculture-row-content {
    grid-column: 1;
    grid-area: auto;
  }
  .agriculture-row-content {
    order: 1;
    width: 100%;
    min-height: 170px;
    padding: 30px;
  }
  .agriculture-row-image {
    order: 2;
    display: block;
    width: 100%;
    height: 190px;
    min-height: 0;
  }
  .vision-box {
    padding: 35px;
  }
  .vision-box h2 {
    font-size: 38px;
  }
  .principles {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    gap: 35px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
