/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-dark:   #1e0a00;
  --brown-deep:   #3d1500;
  --brown-main:   #6b2f00;
  --brown-mid:    #9b4f1a;
  --brown-light:  #c47a3a;
  --brown-pale:   #f0d5b0;
  --cream:        #fdf6ec;
  --gold:         #d4a017;
  --gold-light:   #f0c040;
  --text-dark:    #1e0a00;
  --text-mid:     #5a3010;
  --text-light:   #8a5a30;
  --white:        #ffffff;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(60,20,0,0.12);
  --shadow-lg:    0 8px 48px rgba(60,20,0,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  min-height: 100vh;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--brown-main);
  color: var(--white);
  border-color: var(--brown-main);
}
.btn-primary:hover { background: var(--brown-deep); border-color: var(--brown-deep); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(107,47,0,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-nav {
  background: var(--gold);
  color: var(--brown-dark);
  font-weight: 700;
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
}
.btn-nav:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-card {
  background: var(--brown-main);
  color: var(--white);
  font-size: 0.88rem;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  margin-top: auto;
}
.btn-card:hover { background: var(--brown-deep); transform: translateY(-1px); }
.btn-full { width: 100%; text-align: center; display: block; padding: 0.95rem; font-size: 1rem; }

/* ── Navbar ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(30,10,0,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-size: 1.35rem;
  color: var(--brown-pale);
  letter-spacing: -0.5px;
}
.logo-text strong { color: var(--gold); }
.nav-links {
  display: flex;
  gap: 1.8rem;
}
.nav-links a {
  color: var(--brown-pale);
  text-decoration: none;
  font-size: 0.93rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--gold-light); }

/* ── Hero ── */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown-deep) 45%, var(--brown-main) 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.hero-tag {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-light);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--white);
  font-weight: 800;
  margin-bottom: 1.25rem;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(240,213,176,0.85);
  max-width: 580px;
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 1rem;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: rgba(240,213,176,0.7); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.15); margin: 0 0.5rem; }

/* Hero deco circles */
.hero-deco { position: absolute; inset: 0; pointer-events: none; z-index: 1; }
.deco-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(212,160,23,0.12); }
.dc1 { width: 600px; height: 600px; right: -150px; top: -100px; }
.dc2 { width: 420px; height: 420px; right: -30px; top: 20px; background: radial-gradient(circle, rgba(212,160,23,0.06) 0%, transparent 70%); }
.dc3 { width: 200px; height: 200px; right: 180px; bottom: 80px; border-color: rgba(212,160,23,0.08); }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-dark { background: var(--brown-dark); color: var(--brown-pale); }
.section-dark .section-tag { color: var(--gold-light); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(240,213,176,0.8); }

.section-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brown-main);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--brown-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
}
.section-sub {
  max-width: 580px;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(107,47,0,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.product-card.featured {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(212,160,23,0.2);
}
.badge-featured {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
}
.product-emoji { font-size: 2.2rem; }
.product-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--brown-dark); }
.product-card p { font-size: 0.92rem; color: var(--text-light); line-height: 1.6; flex-grow: 1; }
.product-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.product-specs li { font-size: 0.83rem; color: var(--text-mid); }

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cacao-art {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.art-pod { font-size: 5rem; position: relative; z-index: 2; }
.art-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,160,23,0.25);
  animation: pulse-ring 3s ease-in-out infinite;
}
.r1 { width: 120px; height: 120px; }
.r2 { width: 180px; height: 180px; animation-delay: 0.5s; }
.r3 { width: 250px; height: 250px; animation-delay: 1s; }
@keyframes pulse-ring {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}
.art-leaf { position: absolute; font-size: 1.8rem; }
.l1 { top: 10px; right: 20px; transform: rotate(30deg); }
.l2 { bottom: 15px; left: 15px; transform: rotate(-20deg); }

.about-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; }
.about-text p { margin-bottom: 1rem; line-height: 1.7; }
.about-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 1.8rem; }
.feature { display: flex; align-items: flex-start; gap: 1rem; }
.feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 0.1rem; }
.feature strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.feature p { font-size: 0.88rem; margin: 0; opacity: 0.75; }

/* ── Process ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.step {
  flex: 1;
  min-width: 180px;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}
.step-num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--brown-mid);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.step-icon { font-size: 2.2rem; margin-bottom: 0.75rem; }
.step h3 { font-size: 1rem; font-weight: 700; color: var(--brown-dark); margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--brown-light);
  align-self: center;
  flex-shrink: 0;
  padding: 0 0.25rem;
  margin-top: -1rem;
}

/* ── Certs Strip ── */
.certs-strip {
  background: var(--brown-deep);
  padding: 1rem 0;
}
.certs-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.certs-label {
  color: rgba(240,213,176,0.6);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cert-badge {
  background: rgba(212,160,23,0.15);
  border: 1px solid rgba(212,160,23,0.3);
  color: var(--gold-light);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Contact ── */
.section-contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info .section-tag { color: var(--brown-main); }
.contact-info h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--brown-dark); margin-bottom: 1rem; }
.contact-info > p { color: var(--text-mid); margin-bottom: 2rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-item { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; color: var(--text-mid); }
.ci-icon { font-size: 1.2rem; flex-shrink: 0; }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(107,47,0,0.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid rgba(107,47,0,0.2);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown-main);
  box-shadow: 0 0 0 3px rgba(107,47,0,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 0.78rem; color: var(--text-light); text-align: center; margin-top: 0.25rem; }

/* ── Footer ── */
.footer {
  background: var(--brown-dark);
  border-top: 1px solid rgba(212,160,23,0.15);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-brand .logo { margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.82rem; color: rgba(240,213,176,0.55); line-height: 1.5; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: rgba(240,213,176,0.65); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.82rem; color: rgba(240,213,176,0.4); }

/* ── Success overlay ── */
.form-success {
  text-align: center;
  padding: 2.5rem 1rem;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.form-success.visible { display: flex; }
.form-success .check { font-size: 3rem; }
.form-success h3 { font-size: 1.25rem; font-weight: 700; color: var(--brown-dark); }
.form-success p { color: var(--text-light); font-size: 0.93rem; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .process-steps { gap: 1rem; }
  .step-arrow { display: none; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.2rem; }
  .stat-sep { display: none; }
  .products-grid { grid-template-columns: 1fr; }
}
