:root {
  --cream: #f5eedf;
  --paper: #fffdf7;
  --paper-deep: #eee5d4;
  --forest: #173f35;
  --forest-deep: #0e2a24;
  --terracotta: #b85c3a;
  --terracotta-deep: #98452a;
  --sage: #d7e2d2;
  --sage-deep: #9aaf9f;
  --ink: #26352f;
  --muted: #66736d;
  --line: rgba(23, 63, 53, 0.16);
  --shadow: 0 22px 60px rgba(14, 42, 36, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-manrope), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(184, 92, 58, 0.5);
  outline-offset: 3px;
}

.topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 24px;
  background: var(--forest-deep);
  color: rgba(255, 253, 247, 0.8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar-dot {
  color: var(--terracotta);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 104px;
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) auto minmax(150px, 0.4fr);
  align-items: center;
  gap: 30px;
  padding: 0 clamp(28px, 5vw, 78px);
  border-bottom: 1px solid rgba(23, 63, 53, 0.1);
  background: rgba(255, 253, 247, 0.93);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}

.brand-logo,
.footer-logo {
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(23, 63, 53, 0.18);
  border-radius: 50%;
  background: white;
}

.brand-logo {
  width: 76px;
  height: 76px;
}

.brand-logo img,
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand strong {
  display: block;
  color: var(--forest);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: var(--terracotta);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 36px);
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  padding: 41px 0 37px;
}

.desktop-nav a::after {
  position: absolute;
  right: 50%;
  bottom: 23px;
  left: 50%;
  height: 2px;
  background: var(--terracotta);
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.header-cta {
  padding: 13px 18px;
  border: 1px solid var(--terracotta);
  border-radius: 6px;
  color: var(--terracotta-deep);
  font-size: 12px;
  font-weight: 750;
  transition: 180ms ease;
}

.header-cta:hover {
  background: var(--terracotta);
  color: white;
  transform: translateY(-1px);
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
}

.language-switcher {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  border: 1px solid rgba(23, 63, 53, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.86);
  color: var(--sage-deep);
  white-space: nowrap;
}

.lang-button {
  min-width: 34px;
  padding: 6px 7px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 160ms ease;
}

.lang-button:hover,
.lang-button.active {
  background: var(--forest);
  color: white;
}

html[lang="zh-CN"] body {
  font-family: "Microsoft YaHei", "PingFang SC", var(--font-manrope), Arial, sans-serif;
}

html[lang="zh-CN"] h1,
html[lang="zh-CN"] h2,
html[lang="zh-CN"] h3 {
  letter-spacing: 0;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 34px));
  overflow: hidden;
  background: var(--cream);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 66%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: imageSettle 900ms ease-out both;
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--cream) 0%, rgba(245, 238, 223, 0.98) 31%, rgba(245, 238, 223, 0.72) 45%, rgba(245, 238, 223, 0.05) 68%),
    linear-gradient(0deg, rgba(14, 42, 36, 0.18), transparent 38%);
}

.organic-shape {
  position: absolute;
  pointer-events: none;
}

.shape-top {
  top: -170px;
  left: -195px;
  width: 360px;
  height: 310px;
  border-radius: 42% 58% 60% 40% / 56% 48% 52% 44%;
  background: var(--forest);
  transform: rotate(-12deg);
}

.shape-bottom {
  bottom: -165px;
  left: -180px;
  width: 360px;
  height: 315px;
  border-radius: 50% 50% 48% 52% / 56% 42% 58% 44%;
  background: var(--terracotta);
  transform: rotate(20deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(640px, 47vw);
  padding: clamp(84px, 10vh, 118px) 0 190px clamp(36px, 7.6vw, 110px);
  animation: copyReveal 520ms ease-out both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #b9cfbf;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-fraunces), Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--forest);
  font-size: clamp(52px, 5.15vw, 78px);
  line-height: 1.02;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 32px;
  color: #32443d;
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 29px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--terracotta);
  color: white;
  box-shadow: 0 12px 24px rgba(184, 92, 58, 0.22);
}

.button-primary:hover {
  background: var(--terracotta-deep);
  box-shadow: 0 15px 28px rgba(152, 69, 42, 0.26);
}

.button-secondary {
  border-color: var(--forest);
  background: rgba(255, 253, 247, 0.32);
  color: var(--forest);
}

.button-secondary:hover {
  background: var(--sage);
}

.button-light {
  border-color: rgba(255, 253, 247, 0.5);
  color: white;
}

.button-light:hover {
  background: var(--paper);
  color: var(--forest);
}

.trust-strip {
  position: absolute;
  z-index: 4;
  right: clamp(36px, 7.6vw, 110px);
  bottom: 42px;
  left: clamp(36px, 7.6vw, 110px);
  min-height: 126px;
  display: grid;
  grid-template-columns: 1.08fr 1.7fr;
  align-items: center;
  gap: 30px;
  padding: 20px 22px;
  border: 1px solid rgba(23, 63, 53, 0.28);
  border-radius: 16px;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.trust-message {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
  color: var(--forest);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.6;
}

.trust-mark {
  width: 52px;
  height: 52px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sage-deep);
  border-radius: 50%;
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 16px;
}

.trust-message i {
  color: var(--terracotta);
  font-style: normal;
}

.trust-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.trust-products a {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--sage-deep);
  border-radius: 12px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
  transition: 180ms ease;
}

.trust-products a:hover {
  border-color: var(--terracotta);
  box-shadow: 0 8px 20px rgba(14, 42, 36, 0.08);
  transform: translateY(-2px);
}

.trust-products .product-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  color: var(--forest);
}

.section {
  padding: 110px clamp(28px, 7.6vw, 110px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.faq-heading h2,
.contact-copy h2,
.pulau-panel h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(40px, 4.4vw, 66px);
  line-height: 1.08;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(45px, 7vw, 105px);
  align-items: center;
}

.about-visual {
  position: relative;
  margin: 0;
}

.about-visual > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.visual-caption {
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  display: grid;
  gap: 4px;
  padding: 22px 26px;
  border-radius: 12px;
  background: var(--forest);
  color: white;
}

.visual-caption strong {
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 23px;
}

.visual-caption span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.about-content > p {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.value-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.value-list div {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.value-list strong {
  color: var(--forest);
  font-size: 14px;
}

.value-list span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.market-band {
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  padding: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.market-band strong {
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.products-section {
  background: var(--cream);
}

.product-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  margin-bottom: 48px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.75);
}

.product-feature-image {
  overflow: hidden;
  border-radius: 12px;
}

.product-feature-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-feature:hover .product-feature-image img {
  transform: scale(1.025);
}

.mini-label {
  margin-bottom: 10px;
  color: var(--terracotta);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-feature h3,
.commodity-feature h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: clamp(34px, 3.2vw, 48px);
  font-weight: 600;
}

.product-feature p,
.commodity-feature p {
  color: var(--muted);
  line-height: 1.8;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--terracotta);
  color: white;
  content: "✓";
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}

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

.coffee-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  transition: 200ms ease;
}

.coffee-card:hover {
  border-color: rgba(184, 92, 58, 0.55);
  box-shadow: 0 18px 40px rgba(14, 42, 36, 0.09);
  transform: translateY(-4px);
}

.origin-dot {
  width: 12px;
  height: 12px;
  margin-bottom: 42px;
  border: 3px solid var(--sage);
  border-radius: 50%;
  background: var(--terracotta);
}

.coffee-card > p {
  margin-bottom: 9px;
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.coffee-card h3 {
  margin-bottom: 14px;
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 28px;
  font-weight: 600;
}

.coffee-card > span:not(.origin-dot) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.coffee-card a {
  margin-top: auto;
  padding-top: 24px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
}

.commodity-feature {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: var(--forest);
  color: white;
}

.commodity-feature > div {
  padding: clamp(36px, 5vw, 70px);
}

.commodity-feature h3 {
  color: white;
}

.commodity-feature p:not(.mini-label) {
  color: rgba(255, 255, 255, 0.68);
}

.commodity-feature img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.commodity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.commodity-grid article {
  min-height: 158px;
  display: flex;
  gap: 20px;
  padding: 30px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.commodity-grid > a {
  display: block;
}

.commodity-grid > a article {
  height: 100%;
}

.text-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--terracotta-deep);
  font-size: 13px;
  font-weight: 800;
}

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

.seo-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  background: var(--cream);
}

.seo-hero-copy {
  align-self: center;
  padding: 76px clamp(34px, 7.6vw, 110px);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.breadcrumbs a:hover {
  color: var(--terracotta);
}

.seo-hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: clamp(46px, 5vw, 74px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.seo-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.seo-hero-image {
  min-height: 610px;
  overflow: hidden;
}

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

.seo-content-section {
  padding: 94px clamp(28px, 7.6vw, 110px) 110px;
  background: var(--paper);
}

.seo-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 86px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-highlights article {
  min-height: 152px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-highlights span {
  color: var(--terracotta);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-highlights strong {
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.seo-product-links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin: -34px 0 90px;
}

.seo-product-links a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: 180ms ease;
}

.seo-product-links a:hover {
  border-color: var(--terracotta);
  box-shadow: 0 14px 30px rgba(14, 42, 36, 0.08);
  transform: translateY(-3px);
}

.seo-product-links span {
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.seo-product-links p {
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.seo-product-links strong {
  margin-top: auto;
  color: var(--terracotta-deep);
  font-size: 11px;
}

.seo-sections {
  max-width: 1120px;
  margin: 0 auto;
}

.seo-sections article {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.seo-sections article:last-child {
  border-bottom: 1px solid var(--line);
}

.seo-section-number {
  color: var(--terracotta);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 22px;
}

.seo-sections h2 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
}

.seo-sections p {
  max-width: 850px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.seo-sections .check-list {
  max-width: 850px;
}

.seo-cta {
  padding: 90px clamp(28px, 7.6vw, 110px);
  background: var(--forest-deep);
  color: white;
  text-align: center;
}

.seo-cta h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  color: white;
  font-size: clamp(40px, 4.5vw, 64px);
}

.seo-cta > p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

.seo-cta > div {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.standalone-form {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 8vw, 120px);
  padding: 100px clamp(28px, 7.6vw, 110px);
  background: var(--cream);
}

.standalone-form h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: clamp(38px, 4vw, 58px);
}

.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: var(--cream);
  text-align: center;
}

.error-page img {
  width: 112px;
  height: 112px;
  margin-bottom: 34px;
  border-radius: 50%;
}

.error-page h1 {
  margin-bottom: 16px;
  color: var(--forest);
  font-size: clamp(48px, 7vw, 82px);
}

.error-page > p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: var(--muted);
  line-height: 1.8;
}

@media (max-width: 1100px) {
  .seo-product-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .seo-hero {
    grid-template-columns: 1fr;
  }

  .seo-hero-image {
    min-height: 390px;
    order: -1;
  }

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

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

@media (max-width: 640px) {
  .seo-hero-copy {
    padding-top: 52px;
    padding-bottom: 62px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .seo-highlights,
  .seo-product-links {
    grid-template-columns: 1fr;
  }

  .seo-product-links {
    margin-top: -30px;
  }

  .seo-sections article {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.commodity-number {
  color: var(--terracotta);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 17px;
}

.commodity-grid h3 {
  margin-bottom: 9px;
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 20px;
  font-weight: 600;
}

.commodity-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.quality-section {
  background: var(--forest-deep);
  color: white;
}

.quality-section .section-heading h2 {
  color: white;
}

.quality-section .section-heading > p {
  color: rgba(255, 255, 255, 0.68);
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.steps article {
  min-height: 292px;
  padding: 28px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.steps span {
  display: block;
  margin-bottom: 56px;
  color: var(--terracotta);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 24px;
}

.steps h3 {
  margin-bottom: 14px;
  color: white;
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 22px;
  font-weight: 600;
}

.steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.75;
}

.quality-note {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 30px;
  margin-top: 34px;
  padding: 26px 28px;
  border-radius: 12px;
  background: rgba(255, 253, 247, 0.08);
}

.quality-note strong {
  color: var(--sage);
  font-size: 13px;
}

.quality-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.75;
}

.export-section {
  background: var(--paper);
}

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

.service-grid article {
  min-height: 245px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--paper), var(--cream));
  transition: 200ms ease;
}

.service-grid article:hover {
  border-color: var(--sage-deep);
  transform: translateY(-3px);
}

.service-grid span {
  color: var(--terracotta);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 18px;
}

.service-grid h3 {
  margin: 54px 0 13px;
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 23px;
  font-weight: 600;
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.incoterm-band {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 25px 30px;
  border-radius: 12px;
  background: var(--sage);
}

.incoterm-band > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.incoterm-band span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.incoterm-band strong {
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 22px;
}

.incoterm-band p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.pulau-section {
  padding-top: 30px;
  background: var(--paper);
}

.pulau-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 10vw, 150px);
  overflow: hidden;
  padding: clamp(50px, 7vw, 95px);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 20%, rgba(184, 92, 58, 0.32), transparent 28%),
    var(--forest);
  color: white;
}

.pulau-panel::after {
  position: absolute;
  right: -90px;
  bottom: -130px;
  width: 300px;
  height: 280px;
  border: 45px solid rgba(215, 226, 210, 0.08);
  border-radius: 50%;
  content: "";
}

.pulau-panel h2 {
  color: white;
}

.pulau-panel > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
}

.milestones {
  position: relative;
  z-index: 2;
  padding-top: 9px;
}

.milestones > p {
  color: var(--sage);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.milestones div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.milestones strong {
  color: var(--terracotta);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 20px;
}

.milestones span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  line-height: 1.6;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 10vw, 150px);
  background: var(--cream);
}

.faq-heading h2 {
  font-size: clamp(38px, 3.6vw, 54px);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--forest);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 6px;
  color: var(--terracotta);
  content: "+";
  font-family: var(--font-manrope), Arial, sans-serif;
  font-size: 24px;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 50px 24px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(50px, 10vw, 145px);
  padding: 110px clamp(28px, 7.6vw, 110px);
  background:
    radial-gradient(circle at 0 100%, rgba(184, 92, 58, 0.32), transparent 27%),
    var(--forest-deep);
  color: white;
}

.contact-copy h2 {
  color: white;
}

.contact-copy > p:not(.eyebrow) {
  margin: 25px 0 40px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
}

.contact-direct {
  display: grid;
  gap: 8px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-direct span,
.contact-direct small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a {
  color: var(--sage);
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: clamp(21px, 2vw, 28px);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 4vw, 50px);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

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

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  color: var(--ink);
  font-size: 14px;
  font-weight: 450;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
  transition: 180ms ease;
}

.quote-form input,
.quote-form select {
  height: 48px;
  padding: 0 13px;
}

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

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.12);
}

.form-submit {
  width: 100%;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 36px clamp(28px, 7.6vw, 110px);
  background: #081e1a;
  color: white;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 62px;
  height: 62px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-fraunces), Georgia, serif;
  font-size: 19px;
}

.footer-brand span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

.footer-links {
  display: flex;
  gap: 25px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 650;
}

footer > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  text-align: right;
}

@keyframes copyReveal {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes imageSettle {
  from { opacity: 0.85; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1380px) {
  .site-header {
    grid-template-columns: minmax(270px, 0.85fr) auto auto;
    gap: 22px;
    padding: 0 30px;
  }

  .header-tools .header-cta {
    display: none;
  }

  .desktop-nav {
    gap: clamp(14px, 1.6vw, 24px);
  }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .desktop-nav,
  .header-tools .header-cta {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    padding: 11px 15px;
    border: 1px solid var(--forest);
    border-radius: 6px;
    color: var(--forest);
    font-size: 12px;
    font-weight: 750;
    cursor: pointer;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: 0;
    width: min(310px, 82vw);
    display: grid;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
  }

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

  .trust-message {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

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

@media (max-width: 820px) {
  .topbar {
    gap: 7px;
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .topbar span:nth-of-type(4),
  .topbar span:nth-of-type(5) {
    display: none;
  }

  .site-header {
    height: 86px;
    gap: 8px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand {
    gap: 9px;
  }

  .language-switcher {
    min-height: 34px;
    gap: 1px;
    padding: 3px 4px;
  }

  .lang-button {
    min-width: 29px;
    padding: 5px 4px;
    font-size: 9px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    font-size: 7px;
  }

  .hero {
    min-height: 950px;
  }

  .hero-image {
    top: 420px;
    width: 100%;
    height: 530px;
  }

  .hero-wash {
    background:
      linear-gradient(180deg, var(--cream) 0%, var(--cream) 38%, rgba(245, 238, 223, 0.78) 52%, rgba(245, 238, 223, 0.02) 72%),
      linear-gradient(0deg, rgba(14, 42, 36, 0.2), transparent 36%);
  }

  .shape-top {
    width: 250px;
    height: 230px;
    top: -155px;
    left: -165px;
  }

  .shape-bottom {
    width: 250px;
    height: 230px;
    left: -180px;
    bottom: -150px;
  }

  .hero-copy {
    width: 100%;
    padding: 60px 25px 0;
  }

  .hero h1 {
    font-size: clamp(47px, 12vw, 65px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .trust-strip {
    right: 20px;
    bottom: 24px;
    left: 20px;
    gap: 15px;
    padding: 18px;
  }

  .trust-message {
    flex-wrap: wrap;
    font-size: 11px;
  }

  .trust-mark {
    width: 44px;
    height: 44px;
  }

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

  .trust-products a {
    min-height: 58px;
    font-size: 12px;
  }

  .section,
  .contact-section {
    padding: 78px 24px;
  }

  .section-heading,
  .about-grid,
  .product-feature,
  .commodity-feature,
  .faq-section,
  .contact-section,
  .pulau-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
    margin-bottom: 44px;
  }

  .section-heading h2,
  .contact-copy h2,
  .pulau-panel h2 {
    font-size: clamp(38px, 10vw, 53px);
  }

  .about-grid {
    gap: 75px;
  }

  .visual-caption {
    right: 0;
    bottom: -46px;
    left: 0;
  }

  .value-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .market-band {
    margin-top: 65px;
    flex-wrap: wrap;
  }

  .product-feature {
    padding: 18px;
  }

  .commodity-feature img {
    min-height: 300px;
  }

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

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

  .quality-note {
    grid-template-columns: 1fr;
  }

  .incoterm-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  footer {
    grid-template-columns: 1fr;
    padding: 34px 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  footer > p {
    text-align: left;
  }
}

@media (max-width: 540px) {
  .topbar span:nth-of-type(2),
  .topbar span:nth-of-type(3) {
    display: none;
  }

  .hero {
    min-height: 1040px;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero-image {
    top: 495px;
    height: 545px;
  }

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

  .button {
    width: 100%;
  }

  .trust-products .product-icon {
    display: none;
  }

  .coffee-grid,
  .commodity-grid,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .coffee-card {
    min-height: 275px;
  }

  .commodity-feature {
    margin-top: 60px;
  }

  .commodity-grid article,
  .service-grid article,
  .steps article {
    min-height: auto;
  }

  .steps span,
  .service-grid h3 {
    margin-bottom: 24px;
    margin-top: 24px;
  }

  .incoterm-band > div {
    flex-wrap: wrap;
  }

  .quote-form {
    padding: 24px 18px;
  }

  .contact-direct a {
    font-size: 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
