:root {
  --navy: #052A57;
  --deep-navy: #031B3A;
  --gold: #B99232;
  --soft-gold: #D6B15A;
  --white: #FFFFFF;
  --off-white: #F8F6F0;
  --dark: #172033;
  --muted: #667085;
  --line: #E7DDC4;
  --coffee: #4A2719;
  --shadow: 0 18px 42px rgba(3, 27, 58, 0.14);
  --radius: 8px;
  --header-height: 84px;
  --heading-font: "Rubik", Arial, Helvetica, sans-serif;
  --body-font: "Rubik", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dark);
  background:
    linear-gradient(180deg, rgba(5, 42, 87, 0.08), rgba(248, 246, 240, 0) 420px),
    var(--off-white);
  font-family: var(--body-font);
  line-height: 1.6;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  scroll-margin-top: var(--header-height);
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 40;
  padding: 10px 0 0;
  background: transparent;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
  border: 1px solid rgba(185, 146, 50, 0.24);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(3, 27, 58, 0.1);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 310px;
  color: var(--deep-navy);
  font-weight: 700;
}

.brand,
.site-nav,
.btn,
.header-cta,
.mobile-nav-cta,
label,
input,
select,
textarea,
button,
.eyebrow,
.panel-label,
.product-category,
.product-category-tag,
.modal-category {
  font-family: var(--body-font);
}

.brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 1px rgba(5, 42, 87, 0.08);
}

.brand span {
  max-width: none;
  line-height: 1.2;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-left: auto;
  color: var(--deep-navy);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 18px 0;
}

.mobile-nav-cta {
  display: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 14px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(185, 146, 50, 0.24);
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--navy);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(5, 42, 87, 0.16);
  border-radius: 6px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle i {
  color: var(--deep-navy);
  font-size: 1.25rem;
}

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 22px 0 0;
  background: transparent;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1fr);
  gap: 52px;
  align-items: center;
  min-height: 590px;
  padding: 58px 66px 64px;
  overflow: hidden;
  border: 1px solid rgba(185, 146, 50, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 177, 90, 0.18), transparent 34%),
    linear-gradient(90deg, var(--navy) 0%, var(--navy) 48%, var(--off-white) 48%, var(--off-white) 100%);
  box-shadow: 0 26px 62px rgba(3, 27, 58, 0.16);
}

.hero-grid::before {
  content: "";
  position: absolute;
  top: -12%;
  left: 42%;
  width: 18%;
  height: 124%;
  background: var(--navy);
  border-radius: 0 58% 58% 0;
  z-index: 0;
}

.hero-grid::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 24px;
  width: 150px;
  height: 150px;
  border-right: 2px solid rgba(185, 146, 50, 0.3);
  border-bottom: 2px solid rgba(185, 146, 50, 0.3);
  border-radius: 0 0 26px 0;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 0 3px, transparent 4px);
}

.eyebrow.light {
  color: var(--soft-gold);
}

.hero .eyebrow {
  color: var(--soft-gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-navy);
  font-family: var(--heading-font);
  line-height: 1.12;
}

h1 {
  max-width: 580px;
  font-size: 2.85rem;
  font-weight: 700;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero h1,
.hero h2,
.hero h3 {
  color: var(--white);
}

h2 {
  font-size: 2.35rem;
  font-weight: 700;
}

h3 {
  font-size: 1.05rem;
}

.hero-subtitle {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 560px;
  margin-top: 34px;
}

.hero-actions .btn {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(185, 146, 50, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: var(--white);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.95);
  color: var(--deep-navy);
  border-color: rgba(255, 255, 255, 0.95);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: var(--white);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(185, 146, 50, 0.5);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  color: var(--deep-navy);
}

.btn-gold {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: var(--white);
}

.btn-gold:hover,
.btn-gold:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.88);
  color: var(--deep-navy);
}

.btn-light:hover,
.btn-light:focus-visible {
  border-color: var(--soft-gold);
  background: var(--soft-gold);
  color: var(--white);
}

.hero-values {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 36px 0 42px;
  background: var(--off-white);
}

.hero-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 350px);
  gap: 0;
  width: fit-content;
  max-width: calc(100% - 40px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(5, 42, 87, 0.28);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(3, 27, 58, 0.11);
}

.hero-values-grid div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  min-height: 142px;
  min-width: 0;
  padding: 22px 18px;
  border-right: 1px solid rgba(5, 42, 87, 0.16);
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.hero-values-grid div:last-child {
  border-right: 0;
}

.hero-values-grid i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--navy);
  background: rgba(5, 42, 87, 0.08);
  box-shadow: inset 0 0 0 1px rgba(5, 42, 87, 0.18);
}

.hero-values-grid strong,
.hero-values-grid span {
  display: block;
}

.hero-values-grid strong {
  color: var(--navy);
  line-height: 1.2;
  font-size: 1rem;
}

.hero-values-grid span {
  margin-top: 0;
  color: rgba(5, 42, 87, 0.82);
  font-size: 0.84rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 500px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 36px 42px 62px 38px;
  border-radius: 42% 18px 18px 34%;
  background:
    linear-gradient(135deg, rgba(185, 146, 50, 0.95), rgba(5, 42, 87, 0.86));
  box-shadow: 0 22px 44px rgba(3, 27, 58, 0.15);
  transform: translate(18px, -14px);
}

.hero-visual::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 58px;
  width: 86px;
  height: 210px;
  border-top: 3px solid rgba(185, 146, 50, 0.45);
  border-right: 3px solid rgba(185, 146, 50, 0.45);
  border-radius: 0 26px 0 0;
  z-index: 0;
}

.hero-image-wrap {
  position: absolute;
  inset: 48px 56px 74px 52px;
  z-index: 1;
  border-radius: 42% 18px 18px 34%;
  overflow: hidden;
  box-shadow: 0 22px 44px rgba(3, 27, 58, 0.17);
  background: var(--white);
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-product {
  position: absolute;
  z-index: 2;
  width: 164px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(3, 27, 58, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.floating-product img {
  width: 100%;
  height: 108px;
  object-fit: cover;
}

.floating-product span {
  display: block;
  padding: 10px 12px;
  color: var(--deep-navy);
  font-size: 0.85rem;
  font-weight: 700;
}

.floating-product.coconut {
  left: 20px;
  bottom: 34px;
}

.floating-product.coffee {
  right: 26px;
  bottom: 42px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow),
.section-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about {
  position: relative;
  z-index: 1;
  padding-top: 96px;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 56px;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.95fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.about-media {
  position: relative;
  min-height: 620px;
  isolation: isolate;
}

.about-media::before {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 26px;
  width: 72%;
  height: 72%;
  border: 1px solid rgba(185, 146, 50, 0.34);
  border-radius: 34px;
  background: rgba(248, 246, 240, 0.7);
  z-index: -1;
}

.about-image-main,
.about-image-overlap {
  position: absolute;
  display: block;
  object-fit: cover;
  box-shadow: 0 22px 56px rgba(3, 27, 58, 0.16);
}

.about-image-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 590px;
  border-radius: 34px;
}

.about-image-overlap {
  left: 0;
  bottom: 54px;
  width: 52%;
  height: 330px;
  border: 10px solid var(--white);
  border-radius: 28px;
}

.about-stat {
  position: absolute;
  right: 25%;
  bottom: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 184px;
  height: 184px;
  border: 7px solid rgba(214, 177, 90, 0.34);
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  text-align: center;
  box-shadow: 0 20px 46px rgba(3, 27, 58, 0.2);
  z-index: 2;
}

.about-stat strong {
  color: var(--white);
  font-size: 2.1rem;
  line-height: 1;
}

.about-stat span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.25;
}

.about-content {
  max-width: 660px;
}

.about-eyebrow {
  color: var(--navy);
}

.about-eyebrow::before {
  display: none;
}

.about-eyebrow i {
  color: var(--gold);
  font-size: 1rem;
}

.about-content > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  gap: 28px;
  margin-top: 44px;
}

.about-feature {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(5, 42, 87, 0.15);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 1.45rem;
  box-shadow: 0 14px 32px rgba(3, 27, 58, 0.08);
}

.about-feature-primary .about-feature-icon {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.about-feature h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 1.14rem;
}

.about-feature p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.why {
  background:
    linear-gradient(180deg, #EFE6D6 0%, #F8F6F0 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 86px;
  align-items: center;
}

.why-gallery {
  display: grid;
  gap: 24px;
}

.why-gallery img {
  width: 100%;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(3, 27, 58, 0.12);
}

.why-gallery-main {
  aspect-ratio: 1.12 / 1;
  border-radius: 24px;
}

.why-gallery-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.why-gallery-row img {
  aspect-ratio: 1.08 / 1;
  border-radius: 20px;
}

.why-content > p:not(.eyebrow) {
  max-width: 740px;
  margin: 24px 0 0;
  color: #5F6673;
  font-size: 1.05rem;
}

.why-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 56px;
  margin-top: 48px;
}

.why-feature span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--soft-gold);
  font-size: 1.45rem;
  box-shadow: 0 14px 30px rgba(3, 27, 58, 0.16);
}

.why-feature:nth-child(even) span {
  background: var(--gold);
  color: var(--white);
}

.why-feature h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 1.2rem;
  line-height: 1.22;
}

.why-feature p {
  margin: 14px 0 0;
  color: #5F6673;
  font-size: 0.96rem;
  line-height: 1.7;
}

.why-button {
  margin-top: 48px;
}

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

.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(3, 27, 58, 0.06);
}

.feature-card {
  min-height: 236px;
  padding: 26px;
}

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

.feature-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  border: 1px solid rgba(185, 146, 50, 0.45);
  border-radius: 6px;
  background: #FBF7EA;
  color: var(--navy);
  font-size: 1.2rem;
}

.feature-icon:not(.fa-solid)::before,
.feature-icon:not(.fa-solid)::after {
  content: "";
  position: absolute;
  display: block;
}

.icon-quality::before {
  inset: 12px;
  border: 2px solid var(--navy);
  border-radius: 50%;
}

.icon-quality::after {
  left: 20px;
  top: 9px;
  width: 7px;
  height: 26px;
  background: var(--gold);
  transform: rotate(45deg);
}

.icon-price::before {
  left: 12px;
  right: 12px;
  top: 12px;
  height: 22px;
  border-top: 3px solid var(--navy);
  border-bottom: 3px solid var(--gold);
}

.icon-price::after {
  left: 20px;
  top: 8px;
  width: 3px;
  height: 30px;
  background: var(--navy);
}

.icon-supply::before {
  left: 10px;
  top: 21px;
  width: 26px;
  height: 3px;
  background: var(--navy);
}

.icon-supply::after {
  right: 8px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  transform: rotate(45deg);
}

.icon-source::before {
  left: 14px;
  top: 22px;
  width: 18px;
  height: 12px;
  border: 3px solid var(--navy);
  border-top: 0;
  border-radius: 0 0 14px 14px;
}

.icon-source::after {
  left: 20px;
  top: 10px;
  width: 16px;
  height: 16px;
  border-left: 3px solid var(--gold);
  border-top: 3px solid var(--gold);
  border-radius: 16px 0 0 0;
  transform: rotate(-20deg);
}

.icon-spec::before {
  left: 11px;
  top: 14px;
  width: 24px;
  height: 3px;
  background: var(--navy);
  box-shadow: 0 8px 0 var(--gold), 0 16px 0 var(--navy);
}

.icon-spec::after {
  left: 22px;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: -8px 8px 0 var(--navy), 8px 16px 0 var(--gold);
}

.icon-delivery::before {
  left: 9px;
  top: 17px;
  width: 28px;
  height: 16px;
  border: 3px solid var(--navy);
}

.icon-delivery::after {
  right: 5px;
  bottom: 9px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  box-shadow: -23px 0 0 -3px var(--gold), -23px 0 0 0 var(--gold);
}

.products {
  position: relative;
  background:
    linear-gradient(180deg, var(--white) 0%, #FBFAF6 100%);
}

.products-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(5, 42, 87, 0.1);
}

.products-top .section-heading {
  max-width: 720px;
}

.products-top h2 {
  max-width: 700px;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px;
  border: 1px solid rgba(5, 42, 87, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(3, 27, 58, 0.06);
}

.tab-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tab-button:hover,
.tab-button:focus-visible,
.tab-button.active {
  border-color: var(--gold);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(5, 42, 87, 0.16);
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(5, 42, 87, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 36px rgba(3, 27, 58, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 146, 50, 0.5);
  box-shadow: 0 22px 46px rgba(3, 27, 58, 0.13);
}

.product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1.24 / 1;
  background: #EDE6D5;
  overflow: hidden;
}

.product-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, rgba(3, 27, 58, 0), rgba(3, 27, 58, 0.34));
  pointer-events: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease, filter 240ms ease;
}

.product-card:hover .product-image img {
  filter: saturate(1.04);
  transform: scale(1.045);
}

.product-category-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: calc(100% - 28px);
  padding: 6px 10px;
  border: 1px solid rgba(185, 146, 50, 0.42);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(3, 27, 58, 0.12);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.product-category {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 1.08rem;
  line-height: 1.32;
}

.product-description {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
}

.spec-list li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 7px 10px;
  border: 1px solid rgba(5, 42, 87, 0.1);
  border-radius: 6px;
  background: var(--off-white);
  color: #344054;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.spec-list i {
  color: var(--gold);
  font-size: 0.72rem;
}

.details-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  min-height: 42px;
  padding: 11px 14px;
  border: 1px solid var(--navy);
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.details-button:hover,
.details-button:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.coffee-highlight {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(74, 39, 25, 0.92), rgba(3, 27, 58, 0.78)),
    url("assets/coffee-beans-background.jpg") center / cover;
  color: var(--white);
}

.coffee-highlight h2,
.coffee-highlight p {
  color: var(--white);
}

.coffee-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.68fr);
  gap: 52px;
  align-items: center;
}

.coffee-copy p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
}

.coffee-copy .btn {
  margin-top: 22px;
}

.coffee-types {
  display: grid;
  gap: 12px;
}

.coffee-types div {
  padding: 18px;
  border-left: 3px solid var(--soft-gold);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(4px);
}

.coffee-types strong,
.coffee-types span {
  display: block;
}

.coffee-types strong {
  color: var(--soft-gold);
}

.coffee-types span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.contact {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 42, 87, 0.05), rgba(185, 146, 50, 0.08)),
    var(--white);
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 170px;
  background: var(--off-white);
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 1;
}

.contact-highlight {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid rgba(5, 42, 87, 0.12);
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(3, 27, 58, 0.14);
}

.contact-highlight span,
.form-intro span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(185, 146, 50, 0.18);
  color: var(--soft-gold);
}

.contact-highlight strong,
.form-intro strong {
  display: block;
  line-height: 1.25;
}

.contact-highlight p,
.form-intro p {
  margin: 7px 0 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.contact-highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-info {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-info a,
.contact-info p {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(5, 42, 87, 0.11);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--deep-navy);
  box-shadow: 0 10px 26px rgba(3, 27, 58, 0.06);
}

.contact-info a {
  font-weight: 700;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  border-color: rgba(185, 146, 50, 0.48);
  color: var(--navy);
}

.contact-info i {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(185, 146, 50, 0.12);
  color: var(--gold);
  text-align: center;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(5, 42, 87, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 58px rgba(3, 27, 58, 0.12);
}

.form-intro {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  grid-column: 1 / -1;
  gap: 16px;
  align-items: start;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(5, 42, 87, 0.1);
}

.form-intro p {
  color: var(--muted);
}

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

.form-row.full,
.form-submit,
.form-status {
  grid-column: 1 / -1;
}

label {
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(5, 42, 87, 0.16);
  border-radius: 6px;
  background: var(--white);
  color: var(--dark);
}

input,
select {
  height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 134px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(214, 177, 90, 0.32);
  border-color: var(--gold);
}

.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
  border-color: #B42318;
}

.field-error {
  min-height: 18px;
  color: #B42318;
  font-size: 0.78rem;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.sourcing-cta {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 112px 0;
  background:
    linear-gradient(90deg, rgba(3, 27, 58, 0.88), rgba(74, 39, 25, 0.78)),
    url("assets/coffee-beans-background.jpg") center / cover;
  color: var(--white);
  text-align: center;
}

.sourcing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
}

.cta-eyebrow {
  margin: 0 0 24px;
  color: var(--soft-gold);
  font-weight: 700;
  text-transform: uppercase;
}

.sourcing-cta h2 {
  max-width: 820px;
  margin: 0 auto;
  color: var(--white);
  font-size: 2.85rem;
  line-height: 1.15;
}

.sourcing-cta p:not(.cta-eyebrow) {
  max-width: 720px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.site-footer {
  padding: 72px 0 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(214, 177, 90, 0.14), transparent 28%),
    linear-gradient(135deg, var(--deep-navy), var(--navy));
  color: rgba(255, 255, 255, 0.82);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.6fr) minmax(150px, 0.72fr) minmax(180px, 0.9fr) minmax(260px, 1.2fr);
  gap: 54px;
}

.footer-brand p {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-row img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--white);
}

.footer-logo-row h2 {
  max-width: 360px;
  margin: 0;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.2;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(214, 177, 90, 0.42);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--soft-gold);
  font-size: 1.05rem;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--white);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
}

.footer-column h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--soft-gold);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact i {
  width: 18px;
  flex: 0 0 18px;
  color: var(--gold);
  line-height: 1.55;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(214, 177, 90, 0.22);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.82);
}

.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--soft-gold);
}

.scroll-up {
  --scroll-progress: 0deg;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 70;
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  padding: 3px;
  border: 0;
  border-radius: 50%;
  background: conic-gradient(var(--gold) var(--scroll-progress), rgba(5, 42, 87, 0.14) 0deg);
  box-shadow: 0 14px 34px rgba(3, 27, 58, 0.2);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-up[hidden] {
  display: inline-grid;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.scroll-up-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
}

.scroll-up:hover .scroll-up-inner,
.scroll-up:focus-visible .scroll-up-inner {
  background: var(--gold);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(3, 27, 58, 0.46);
  backdrop-filter: blur(8px);
}

.modal[hidden] {
  display: none;
}

.modal-dialog {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(0, 1.15fr);
  width: min(980px, 100%);
  max-height: min(780px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid rgba(5, 42, 87, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 28px 72px rgba(3, 27, 58, 0.3);
}

.modal-close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 42, 87, 0.07);
  color: var(--navy);
  font-size: 1.1rem;
  line-height: 1;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.modal-close:hover,
.modal-close:focus-visible {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.modal-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(5, 42, 87, 0.08), rgba(185, 146, 50, 0.08)),
    var(--off-white);
}

.modal-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(3, 27, 58, 0), rgba(3, 27, 58, 0.88));
  pointer-events: none;
}

.modal-media img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.26);
  transform-origin: center center;
}

.modal-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(214, 177, 90, 0.48);
  border-radius: 999px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 12px 24px rgba(3, 27, 58, 0.18);
}

.modal-content {
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow-y: auto;
  padding: 34px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.modal-category {
  display: inline-flex;
  align-items: center;
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.modal-content h2 {
  margin: 0;
  color: var(--deep-navy);
  font-size: 1.72rem;
  line-height: 1.16;
}

.modal-content > p:not(.modal-category):not(.modal-note) {
  color: var(--muted);
}

.modal-header p:not(.modal-category) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.modal-spec-wrap {
  overflow: hidden;
  border: 1px solid rgba(5, 42, 87, 0.12);
  border-radius: 8px;
}

.modal-spec-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.detail-row {
  border-bottom: 1px solid rgba(5, 42, 87, 0.1);
}

.detail-row:nth-child(even) {
  background: var(--off-white);
}

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

.detail-label {
  width: 34%;
  padding: 13px 16px;
  color: var(--deep-navy);
  font-size: 0.9rem;
  font-weight: 700;
  vertical-align: top;
}

.detail-value {
  padding: 13px 16px;
  color: #3B475B;
  font-size: 0.92rem;
  vertical-align: top;
}

.modal-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(185, 146, 50, 0.24);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #FBF7EA;
  color: var(--deep-navy);
  font-weight: 700;
  line-height: 1.45;
}

.modal-note i {
  margin-top: 3px;
  color: var(--gold);
}

.modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(5, 42, 87, 0.1);
}

.modal-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.modal-action:hover,
.modal-action:focus-visible {
  transform: translateY(-1px);
}

.modal-action-primary {
  border: 1px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}

.modal-action-primary:hover,
.modal-action-primary:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.modal-action-secondary {
  border: 2px solid var(--gold);
  background: transparent;
  color: var(--navy);
}

.modal-action-secondary:hover,
.modal-action-secondary:focus-visible {
  background: #FBF7EA;
  color: var(--deep-navy);
}

@media (max-width: 1100px) {
  .header-cta {
    display: none;
  }

  .site-nav {
    gap: 16px;
  }

  .brand {
    min-width: 290px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2.08rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
    background:
      radial-gradient(circle at 10% 0%, rgba(214, 177, 90, 0.16), transparent 34%),
      var(--navy);
  }

  .hero-grid::before {
    display: none;
  }

  .hero-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, calc(100% - 40px));
  }

  .hero-visual {
    min-height: 520px;
  }

  .about-grid {
    grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1fr);
    gap: 52px;
  }

  .about-media {
    min-height: 560px;
  }

  .about-image-main {
    height: 530px;
  }

  .about-image-overlap {
    height: 290px;
  }

  .about-stat {
    right: 22%;
    width: 164px;
    height: 164px;
  }

  .why-grid {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
    gap: 48px;
  }

  .why-feature-grid {
    gap: 34px 30px;
  }

  .sourcing-cta h2 {
    font-size: 2.55rem;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
  }

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

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(100% - 32px, 720px);
  }

  .section {
    padding: 72px 0;
  }

  .header-inner {
    min-height: var(--header-height);
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

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

  .brand span {
    max-width: 190px;
    font-size: 0.96rem;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 26px);
    display: grid;
    gap: 0;
    margin: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: transform 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 10px;
    border-bottom: 1px solid rgba(5, 42, 87, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 10px;
    border: 0;
    border-radius: 6px;
    background: var(--navy);
    color: var(--white);
  }

  .site-nav a::after {
    display: none;
  }

  h1 {
    font-size: 2.1rem;
    max-width: 680px;
  }

  h2 {
    font-size: 1.88rem;
  }

  .hero {
    min-height: auto;
    padding: 18px 0 0;
  }

  .hero-grid,
  .about-grid,
  .why-grid,
  .contact-grid,
  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-values {
    margin: 0;
    padding: 28px 0 34px;
  }

  .hero-values-grid {
    grid-template-columns: 1fr;
    width: min(360px, calc(100% - 32px));
    max-width: 100%;
  }

  .hero-values-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(5, 42, 87, 0.16);
  }

  .hero-values-grid div:last-child {
    border-bottom: 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-image-wrap {
    inset: 44px 46px 94px 58px;
  }

  .hero-visual::before {
    inset: 32px 32px 82px 44px;
    border-radius: 42% 18px 18px 34%;
  }

  .floating-product {
    width: 164px;
  }

  .floating-product img {
    height: 100px;
  }

  .floating-product.coconut {
    left: 24px;
  }

  .products-top,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
  }

  .tab-button {
    flex: 0 0 auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .modal-media {
    min-height: 0;
  }

  .modal-media img {
    min-height: 260px;
    max-height: 320px;
  }

  .modal-content {
    overflow: visible;
  }

  .about {
    padding-top: 72px;
  }

  .about-media {
    width: min(640px, 100%);
    min-height: 560px;
    margin: 0 auto;
  }

  .about-content {
    max-width: none;
  }

  .why {
    padding-top: 78px;
  }

  .why-gallery {
    max-width: 680px;
    margin: 0 auto;
  }

  .sourcing-cta {
    min-height: 460px;
    padding: 86px 0;
  }

  .sourcing-cta h2 {
    font-size: 2.18rem;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 48px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 560px);
  }

  .section {
    padding: 58px 0;
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 22px;
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    display: block;
    max-width: clamp(132px, 42vw, 188px);
    overflow: hidden;
    font-size: 0.73rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-grid {
    gap: 20px;
    padding: 42px 22px 26px;
    border-radius: 24px;
  }

  h1 {
    max-width: 320px;
    font-size: 1.46rem;
  }

  h2 {
    font-size: 1.62rem;
  }

  .hero-subtitle {
    max-width: 330px;
    font-size: 1rem;
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 330px;
    gap: 10px;
    margin-top: 26px;
  }

  .hero-actions .btn {
    white-space: normal;
  }

  .btn {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 330px;
  }

  .hero-visual::before {
    inset: 22px 8px 50px 16px;
    border-radius: 42% 16px 16px 32%;
    transform: translate(10px, -8px);
  }

  .hero-visual::after {
    right: 0;
    top: 48px;
    width: 72px;
    height: 152px;
  }

  .hero-image-wrap {
    inset: 34px 18px 62px 26px;
    border-radius: 42% 16px 16px 32%;
  }

  .floating-product {
    width: 128px;
  }

  .floating-product img {
    height: 84px;
  }

  .floating-product span {
    padding: 9px;
    font-size: 0.72rem;
  }

  .floating-product.coconut {
    left: 0;
    bottom: 24px;
  }

  .floating-product.coffee {
    display: none;
  }

  .hero-values {
    margin: 0;
    padding: 24px 0 30px;
  }

  .hero-values-grid {
    width: min(330px, calc(100% - 40px));
  }

  .hero-values-grid div {
    min-height: 96px;
    padding: 16px;
    border-radius: 16px;
  }

  .hero-values-grid i {
    width: 48px;
    height: 48px;
  }

  .hero-values-grid strong {
    font-size: 0.95rem;
  }

  .hero-values-grid span {
    font-size: 0.84rem;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    padding: 8px;
  }

  .tab-button {
    justify-content: center;
    flex: initial;
    min-height: 48px;
    white-space: normal;
    text-align: center;
  }

  .tab-button:first-child {
    grid-column: 1 / -1;
  }

  .about {
    padding-top: 58px;
  }

  .about-grid {
    gap: 30px;
  }

  .about-media {
    min-height: 430px;
  }

  .about-media::before {
    right: 0;
    bottom: 24px;
    width: 70%;
    height: 68%;
    border-radius: 24px;
  }

  .about-image-main {
    width: 82%;
    height: 380px;
    border-radius: 26px;
  }

  .about-image-overlap {
    bottom: 48px;
    width: 56%;
    height: 200px;
    border-width: 6px;
    border-radius: 20px;
  }

  .about-stat {
    right: 24%;
    bottom: 8px;
    width: 120px;
    height: 120px;
    border-width: 5px;
  }

  .about-stat strong {
    font-size: 1.72rem;
  }

  .about-stat span {
    margin-top: 5px;
    font-size: 0.78rem;
  }

  .about-features {
    gap: 22px;
    margin-top: 32px;
  }

  .about-feature {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .about-feature-icon {
    width: 54px;
    height: 54px;
    font-size: 1.1rem;
  }

  .about-feature h3 {
    font-size: 1.02rem;
  }

  .why-grid {
    gap: 34px;
  }

  .why-gallery {
    gap: 14px;
  }

  .why-gallery-main {
    border-radius: 18px;
  }

  .why-gallery-row {
    gap: 14px;
  }

  .why-gallery-row img {
    border-radius: 16px;
  }

  .why-content > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .why-feature-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 34px;
  }

  .why-feature span {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
    font-size: 1.22rem;
  }

  .why-feature h3 {
    font-size: 1.08rem;
  }

  .why-feature p {
    margin-top: 8px;
  }

  .why-button {
    margin-top: 34px;
  }

  .sourcing-cta {
    min-height: 430px;
    padding: 68px 0;
    background-position: center;
  }

  .cta-eyebrow {
    margin-bottom: 18px;
  }

  .sourcing-cta h2 {
    font-size: 1.78rem;
  }

  .sourcing-cta p:not(.cta-eyebrow) {
    margin-top: 20px;
    font-size: 0.98rem;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(330px, 100%);
    margin: 28px auto 0;
  }

  .contact-highlight,
  .form-intro {
    grid-template-columns: 1fr;
  }

  .contact-info a,
  .contact-info p {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .contact-info i {
    width: 34px;
    height: 34px;
  }

  .scroll-up {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }

  .site-footer {
    padding-top: 54px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-logo-row {
    align-items: flex-start;
  }

  .footer-logo-row h2 {
    font-size: 1.25rem;
  }

  .footer-bottom div {
    gap: 14px;
  }

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

  .feature-card {
    min-height: 0;
  }

  .modal {
    padding: 12px;
  }

  .modal-content {
    padding: 26px 20px;
  }

  .modal-header {
    gap: 14px;
    margin-bottom: 20px;
  }

  .modal-close {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .modal-content h2 {
    font-size: 1.46rem;
  }

  .modal-header p:not(.modal-category) {
    font-size: 0.94rem;
  }

  .modal-spec-table,
  .modal-spec-table tbody,
  .detail-row,
  .detail-label,
  .detail-value {
    display: block;
    width: 100%;
  }

  .detail-row {
    padding: 12px 14px;
  }

  .detail-label,
  .detail-value {
    padding: 0;
  }

  .detail-value {
    margin-top: 4px;
  }

  .modal-actions {
    grid-template-columns: 1fr;
  }

  .modal-action {
    min-height: 46px;
  }
}

@media (max-width: 860px) {
  .site-header .site-nav.is-open {
    z-index: 60;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }
}
