@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&display=swap');

:root {
  --forest: #123e2e;
  --forest-2: #1b553d;
  --leaf: #547b55;
  --cream: #fbf6ec;
  --paper: #fffdfa;
  --coffee: #4c2518;
  --gold: #b7833f;
  --red: #8b3529;
  --ink: #1b241d;
  --muted: #647067;
  --line: rgba(21, 61, 42, .14);
  --shadow: 0 22px 60px rgba(24, 48, 32, .12);
  --radius: 26px;
  --wrap: min(1160px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.wrap { width: var(--wrap); margin: 0 auto; }
.skip-link {
  position: fixed; top: -60px; left: 20px; z-index: 200;
  padding: 10px 16px; background: var(--paper); color: var(--forest);
  border-radius: 12px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 243, 233, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 235px; }
.brand-pod {
  position: relative; display: inline-block; width: 34px; height: 50px;
  border: 2px solid var(--coffee); border-radius: 54% 46% 50% 50%; transform: rotate(8deg);
}
.brand-pod::before {
  content: ""; position: absolute; left: 50%; top: 5px; bottom: 5px; width: 1px;
  background: var(--coffee); box-shadow: -7px 3px 0 -0.25px var(--coffee), 7px -3px 0 -0.25px var(--coffee);
}
.brand-pod::after {
  content: ""; position: absolute; right: -11px; top: -8px; width: 18px; height: 11px;
  border-radius: 100% 0 100% 0; background: var(--forest); transform: rotate(-28deg);
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-name { font-family: "Fraunces", Georgia, serif; font-size: 24px; letter-spacing: .08em; color: var(--coffee); }
.brand-tag { margin-top: 4px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; font-weight: 600; }
.nav-links a { position: relative; padding: 10px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 2px;
  background: var(--gold); transition: right .2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-links .nav-cta {
  padding: 11px 18px; border-radius: 999px; color: white; background: var(--forest);
}
.nav-links .nav-cta::after { display: none; }
.menu-btn {
  display: none; border: 0; width: 46px; height: 46px; border-radius: 50%;
  color: var(--forest); background: rgba(21, 61, 42, .08); cursor: pointer;
}
.menu-btn span { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; }
.lang-switch {
  display: inline-grid; place-items: center; flex: 0 0 auto; width: 44px; height: 44px;
  color: var(--forest); border: 1px solid var(--line); border-radius: 50%; font-size: 12px; font-weight: 700;
}
.lang-switch:hover { color: white; background: var(--forest); }

.hero {
  min-height: 720px; position: relative; display: grid; align-items: center; overflow: hidden;
  color: white; background: var(--forest);
}
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11, 34, 23, .93) 0%, rgba(11, 34, 23, .78) 42%, rgba(11, 34, 23, .2) 78%, rgba(11, 34, 23, .08) 100%); }
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-inner { position: relative; z-index: 2; padding: 96px 0 120px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--gold); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: "Fraunces", Georgia, serif; line-height: 1.1; }
.hero h1 { max-width: 760px; margin: 22px 0; font-size: clamp(56px, 8vw, 104px); font-weight: 600; letter-spacing: -.045em; }
.hero h1 em { color: #d9bd85; font-style: normal; }
.hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
  font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(0,0,0,.14); }
.button-primary { color: var(--forest); background: #e8cc91; }
.button-dark { color: white; background: var(--forest); }
.button-light { color: white; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); }
.button-outline { color: var(--forest); border-color: rgba(21,61,42,.3); background: transparent; }

.trust-strip { position: relative; z-index: 5; margin-top: -55px; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.trust-item { padding: 27px 28px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-number { color: var(--gold); font-family: "Fraunces", Georgia, serif; font-size: 34px; line-height: 1; }
.trust-item strong { display: block; margin-top: 9px; color: var(--forest); font-size: 14px; }
.trust-item span { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; }

.section { padding: 110px 0; }
.section-sm { padding: 78px 0; }
.section-white { background: var(--paper); }
.section-dark { color: white; background: var(--forest); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 50px; }
.section-head h2, .split h2 { max-width: 740px; margin-top: 14px; color: var(--forest); font-size: clamp(38px, 5vw, 66px); letter-spacing: -.035em; }
.section-dark .section-head h2, .section-dark .split h2 { color: white; }
.section-intro { max-width: 520px; color: var(--muted); }
.section-dark .section-intro { color: rgba(255,255,255,.7); }
.split { display: grid; grid-template-columns: 1.06fr .94fr; gap: 74px; align-items: center; }
.split.reverse { grid-template-columns: .94fr 1.06fr; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 560px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-note { position: absolute; right: -28px; bottom: 30px; width: 220px; padding: 22px; color: white; background: var(--forest); border-radius: 18px; box-shadow: var(--shadow); }
.image-note strong { display: block; font-family: "Fraunces", Georgia, serif; font-size: 25px; line-height: 1.2; }
.image-note span { display: block; margin-top: 8px; color: rgba(255,255,255,.68); font-size: 12px; }
.copy p { color: var(--muted); }
.copy .lead { color: var(--ink); font-size: 20px; }
.link-arrow { display: inline-flex; align-items: center; gap: 10px; margin-top: 20px; color: var(--forest); font-weight: 700; }
.link-arrow span { transition: transform .2s ease; }
.link-arrow:hover span { transform: translateX(4px); }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  position: relative; overflow: hidden; padding: 30px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.card-kicker { color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.card h3 { margin: 12px 0; color: var(--forest); font-size: 28px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pill { padding: 7px 10px; color: var(--forest); background: rgba(21,61,42,.08); border-radius: 999px; font-size: 11px; font-weight: 700; }
.product-card:first-child { grid-column: span 2; min-height: 360px; color: white; background: var(--forest); }
.product-card:first-child h3, .product-card:first-child p { color: white; }
.product-card:first-child p { max-width: 520px; color: rgba(255,255,255,.7); }
.product-card:first-child::after { content: "18"; position: absolute; right: 20px; bottom: -35px; color: rgba(255,255,255,.06); font: 600 230px/1 "Fraunces", Georgia, serif; }
.product-card:first-child .pill { color: #f5e7c5; background: rgba(255,255,255,.1); }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.step { padding: 34px 30px 0 0; }
.step-no { display: inline-grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.32); border-radius: 50%; color: #e8cc91; font-size: 12px; }
.step h3 { margin: 22px 0 10px; font-size: 23px; }
.step p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; }

.page-hero { position: relative; min-height: 520px; display: grid; align-items: end; overflow: hidden; color: white; background: var(--forest); }
.page-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(12,39,26,.93), rgba(12,39,26,.54)); }
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-content { position: relative; z-index: 2; padding: 110px 0 74px; }
.page-hero h1 { max-width: 850px; margin: 18px 0; font-size: clamp(48px, 7vw, 82px); letter-spacing: -.04em; }
.page-hero p { max-width: 650px; margin: 0; color: rgba(255,255,255,.76); font-size: 18px; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.value { padding: 28px; border-top: 2px solid var(--gold); background: rgba(255,255,255,.07); border-radius: 0 0 18px 18px; }
.value h3 { font-size: 24px; }
.value p { margin-bottom: 0; color: rgba(255,255,255,.66); font-size: 14px; }
.quote { padding: 44px; border-left: 3px solid var(--gold); background: rgba(21,61,42,.06); border-radius: 0 22px 22px 0; }
.quote p { margin: 0; color: var(--forest); font: 500 clamp(27px, 4vw, 42px)/1.28 "Fraunces", Georgia, serif; }

.product-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.product-detail { display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: start; min-height: 250px; }
.grade { color: rgba(21,61,42,.1); font: 600 64px/1 "Fraunces", Georgia, serif; }
.notice { margin-top: 28px; padding: 20px 24px; color: var(--coffee); background: #efe4cb; border-radius: 16px; font-size: 13px; }

.b2b-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.b2b-card { min-height: 290px; }
.icon-mark { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 24px; color: #fff; background: var(--forest); border-radius: 16px; font: 700 18px "Fraunces", Georgia, serif; }
.check-list { list-style: none; margin: 24px 0 0; padding: 0; }
.check-list li { position: relative; margin: 10px 0; padding-left: 27px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 0; color: var(--forest); font-weight: 700; cursor: pointer; }
.faq p { max-width: 800px; margin: -6px 0 22px; color: var(--muted); }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.contact-card { padding: 32px; color: white; background: var(--forest); border-radius: var(--radius); }
.contact-card h2 { font-size: 38px; }
.contact-card p { color: rgba(255,255,255,.68); }
.contact-line { display: flex; align-items: center; gap: 14px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,.13); }
.contact-line strong { display: block; font-size: 13px; }
.contact-line span { color: rgba(255,255,255,.68); font-size: 13px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--forest); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; color: var(--ink); background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(181,138,70,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form-note { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: 12px; }
.form-status { grid-column: 1 / -1; min-height: 24px; color: var(--forest); font-size: 13px; font-weight: 700; }

.cta-band { position: relative; overflow: hidden; padding: 74px 0; color: white; background: var(--coffee); }
.cta-band::after { content: ""; position: absolute; inset: 0; opacity: .22; background: url("cocoa-tree.jpg") center/cover; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 34px; }
.cta-inner h2 { max-width: 720px; font-size: clamp(36px, 5vw, 60px); }
.cta-inner p { max-width: 580px; color: rgba(255,255,255,.7); }

.site-footer { padding: 70px 0 28px; color: rgba(255,255,255,.72); background: #10271c; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr; gap: 50px; }
.footer-brand { max-width: 390px; }
.footer-brand .brand-name { color: white; }
.site-footer .brand-pod { border-color: #e8cc91; }
.site-footer .brand-pod::before { background: #e8cc91; box-shadow: -7px 3px 0 -0.25px #e8cc91, 7px -3px 0 -0.25px #e8cc91; }
.footer-brand p { margin-top: 20px; font-size: 13px; }
.footer-title { color: #e8cc91; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 10px; margin-top: 18px; font-size: 13px; }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 54px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

.hero-cocoa::after {
  background: linear-gradient(90deg, rgba(43, 21, 13, .94) 0%, rgba(43, 21, 13, .76) 44%, rgba(18, 62, 46, .18) 78%, rgba(18, 62, 46, .05) 100%);
}
.hero-cocoa .hero-media { object-position: center 58%; }
.cocoa-stat { color: #f1d2a4; }
.photo-band { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.photo-band img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius); }
.photo-band .stack { display: grid; grid-template-rows: 1fr 1fr; gap: 18px; }
.photo-band .stack img { height: 251px; }
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { margin: 0; position: relative; overflow: hidden; border-radius: 18px; background: var(--forest); }
.gallery img { width: 100%; height: 310px; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 38px 18px 16px; color: white; background: linear-gradient(transparent, rgba(22,11,7,.8)); font-size: 12px; }
.origin-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.origin-card { min-height: 340px; display: flex; flex-direction: column; justify-content: end; color: white; background-position: center; background-size: cover; }
.origin-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 15%, rgba(25,13,8,.82)); }
.origin-card > * { position: relative; z-index: 1; }
.origin-card h3, .origin-card p { color: white; }
.origin-card p { color: rgba(255,255,255,.72); }
.spec-table { width: 100%; border-collapse: collapse; overflow: hidden; background: var(--paper); border-radius: 18px; }
.spec-table th, .spec-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.spec-table th { color: var(--forest); background: rgba(18,62,46,.07); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.spec-table td { color: var(--muted); font-size: 14px; }
.spec-table tr:last-child td { border-bottom: 0; }
.flow-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.flow-card { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; }
.flow-card img { width: 100%; height: 250px; object-fit: cover; }
.flow-card div { padding: 22px; }
.flow-card h3 { color: var(--forest); font-size: 23px; }
.flow-card p { margin-bottom: 0; color: var(--muted); font-size: 13px; }

@media (max-width: 980px) {
  .menu-btn { display: block; }
  .nav-links {
    position: fixed; top: 84px; left: 20px; right: 20px; display: none; align-items: stretch;
    padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow);
  }
  .nav-links.open { display: grid; }
  .nav-links .nav-cta { text-align: center; }
  .hero { min-height: 680px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .split, .split.reverse, .contact-layout { grid-template-columns: 1fr; gap: 46px; }
  .split.reverse .split-media { order: 2; }
  .split-media img { min-height: 440px; }
  .image-note { right: 20px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .values { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --wrap: min(100% - 28px, 1160px); --radius: 20px; }
  .nav { min-height: 74px; }
  .brand { min-width: 0; }
  .brand-pod { width: 28px; height: 42px; }
  .brand-name { font-size: 18px; }
  .brand-tag { font-size: 8px; }
  .nav-links { top: 74px; left: 14px; right: 14px; }
  .hero { min-height: 650px; }
  .hero-inner { padding: 76px 0 112px; }
  .hero h1 { font-size: clamp(48px, 15vw, 70px); }
  .hero p { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 22px 18px; }
  .trust-number { font-size: 28px; }
  .section { padding: 76px 0; }
  .section-sm { padding: 60px 0; }
  .section-head { display: block; }
  .section-head .section-intro { margin-top: 18px; }
  .split-media img { min-height: 360px; }
  .image-note { left: 18px; right: 18px; bottom: 18px; width: auto; }
  .card-grid, .product-list, .b2b-grid { grid-template-columns: 1fr; }
  .product-card:first-child { grid-column: auto; min-height: 330px; }
  .process { grid-template-columns: 1fr; }
  .page-hero { min-height: 470px; }
  .page-hero-content { padding: 92px 0 58px; }
  .contact-form { grid-template-columns: 1fr; }
  .field.full, .form-note, .form-status { grid-column: auto; }
  .cta-inner { display: block; }
  .cta-inner .button { margin-top: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (max-width: 800px) {
  .photo-band, .origin-grid { grid-template-columns: 1fr; }
  .photo-band img { height: 400px; }
  .gallery, .flow-gallery { grid-template-columns: 1fr; }
  .gallery img { height: 360px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
