*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
:root {
  --bg:           #FFF8F0;
  --bg-alt:       #FFFFFF;
  --bg-pale:      #FFF0E0;
  --choc-dark:    #3B1A08;
  --choc-mid:     #6B3318;
  --choc-warm:    #A0522D;
  --caramel:      #D4822A;
  --gold:         #F5A623;
  --gold-light:   #FFD580;
  --cream:        #FFF8F0;
  --mint:         #2ECC71;
  --berry:        #C0392B;
  --text-dark:    #2C1200;
  --text-mid:     #6B3318;
  --text-muted:   #A07050;
  --border:       rgba(107,51,24,0.15);
  --white:        #FFFFFF;
}
 
html { scroll-behavior: smooth; }
 
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  overflow-x: hidden;
}
 
/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #2A0E02;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,130,42,0.25);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.25rem 2rem;
}

.nav-logo-center {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-center .nav-logo-img,
.nav-logo-mobile .nav-logo-img {
  height: 90px; width: auto; display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.2s;
}

.nav-logo-center .nav-logo-img:hover,
.nav-logo-mobile .nav-logo-img:hover { transform: scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0; padding: 0;
}

.nav-links a {
  text-decoration: none; font-size: 0.83rem; font-weight: 500;
  color: rgba(255,213,128,0.75); letter-spacing: 0.07em; text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold-light); }

.nav-cta {
  background: var(--caramel) !important; color: #fff !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold) !important; color: var(--choc-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 25px; height: 2px;
  background: rgba(255,213,128,0.85);
  border-radius: 2px;
  transition: all 0.3s;
}

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

/* ── MOBILE NAV ── */
@media (max-width: 768px) {
  .nav-logo-mobile { display: flex; align-items: center; }
  .nav-logo-center { display: none; }
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #2A0E02;
    border-top: 1px solid rgba(212,130,42,0.25);
    padding: 1rem 1.5rem;
  }

  .nav-links.open { display: flex; }

  .nav-links li { width: 100%; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,213,128,0.08); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { font-size: 0.95rem; }
  .nav-cta { padding: 0 !important; background: none !important; color: rgba(255,213,128,0.75) !important; }
  .nav-cta:hover { background: none !important; color: var(--gold-light) !important; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
 
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}
 
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(30, 10, 0, 0.25) 0%,
    rgba(30, 10, 0, 0.10) 50%,
    rgba(30, 10, 0, 0.0) 100%
  );
  z-index: 1;
}
 
.hero-text {
  position: relative;
  z-index: 2;
  padding: 10rem 5rem 6rem;
  max-width: 640px;
}
 
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
 
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 2.8rem;
  font-weight: 300;
}
 
.hero-actions { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
 
.btn-primary {
  background: var(--caramel); color: #fff;
  padding: 0.9rem 2.2rem; font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; border: 2px solid var(--caramel);
  transition: background 0.25s, transform 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--choc-dark); transform: translateY(-1px); }
 
.btn-outline {
  border: 2px solid rgba(255,255,255,0.6); color: #fff;
  padding: 0.85rem 2.2rem; font-size: 0.84rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; background: transparent;
  transition: all 0.25s; display: inline-block;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
 
/* ── STATS STRIP ── */
.stats-strip {
  background: var(--choc-dark);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 2.8rem 4rem; gap: 1rem;
}
.stat-item {
  text-align: center;
  border-right: 1px solid rgba(245,166,35,0.2);
  padding: 1.5rem 1rem;
  position: relative; cursor: default;
  transition: background 0.3s ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(245,166,35,0.06); }
.stat-icon {
  font-size: 22px; color: var(--gold);
  margin-bottom: 10px; opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s; display: block;
}
.stat-item:hover .stat-icon { opacity: 1; transform: translateY(-3px); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: var(--gold-light); line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 1px;
  transition: transform 0.2s, color 0.2s;
}
.stat-item:hover .stat-num { transform: scale(1.06); color: var(--gold); }
.stat-num .suffix { font-size: 1.4rem; color: var(--gold); }
.stat-label {
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); margin-top: 0.4rem;
}
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 20%; right: 20%;
  height: 2px; background: var(--caramel); border-radius: 1px;
  transform: scaleX(0); transition: transform 0.3s ease; transform-origin: center;
}
.stat-item:hover::after { transform: scaleX(1); }
@keyframes statReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-item { opacity: 0; animation: statReveal 0.55s ease forwards; }
.stat-item:nth-child(1) { animation-delay: 0.05s; }
.stat-item:nth-child(2) { animation-delay: 0.18s; }
.stat-item:nth-child(3) { animation-delay: 0.31s; }
.stat-item:nth-child(4) { animation-delay: 0.44s; }

/* ── SHARED SECTION ── */
section { padding: 4rem 4rem; }
.section-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--caramel); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--text-dark); line-height: 1.2; margin-bottom: 1.2rem;
}
.section-lead {
  font-size: 1.15rem; color: var(--text-mid); line-height: 1.75;
  font-weight: 500; max-width: 150ch;
}
 
/* ── ABOUT ── */
.about { background: #FFF8F0; }
.about-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 6rem; align-items: center; }
.about-badge {
  display: inline-block; border: 1px solid var(--caramel);
  padding: 0.4rem 1rem; font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--caramel); margin-bottom: 2rem;
}
.about-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.about-block {
  background: #FFF0DC; border-left: 3px solid var(--caramel); padding: 1.2rem 1.4rem;
}
.about-block h4 {
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--choc-mid); margin-bottom: 0.4rem;
}
.about-block p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }
.about-img img {
  width: 600px; height: 500px;
  object-fit: cover; object-position: center;
  border-radius: 4px;
  filter: drop-shadow(0 4px 12px rgba(107,51,24,0.18));
  display: block;
}
 
/* ── PRODUCTS ── */
.products { background: #FFF3E5; }
.products .section-title { color: var(--text-dark); }
.products .section-lead { color: var(--text-mid); }
.products .section-tag { color: var(--caramel); }
.products-header {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 2.5rem;
}
.carousel-arrows { display: flex; gap: 8px; flex-shrink: 0; }
.carousel-arrow {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(107,51,24,0.3);
  background: rgba(107,51,24,0.06);
  color: var(--choc-mid); cursor: pointer; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.carousel-arrow:hover { background: rgba(107,51,24,0.14); }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }
.carousel-wrap { position: relative; padding: 0 24px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid #ddd; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:disabled { opacity: 0.3; cursor: default; }
.carousel-btn.prev { left: -14px; }
.carousel-btn.next { right: -14px; }
.category-tabs {
  display: flex; justify-content: center;
  gap: 12px; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px; font-size: 0.84rem; font-weight: 500;
  border: 2px solid rgba(107,51,24,0.25); background-color: transparent;
  color: var(--text-mid); cursor: pointer; border-radius: 20px;
  transition: all 0.3s ease; letter-spacing: 0.05em; text-transform: uppercase;
}
.tab-btn:hover { border-color: var(--caramel); color: var(--caramel); }
.tab-btn.active { background-color: var(--caramel); color: #fff; border-color: var(--caramel); }
.carousel-viewport {
  overflow-x: auto; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab;
}
.carousel-viewport::-webkit-scrollbar { display: none; }
.carousel-viewport.dragging { cursor: grabbing; scroll-behavior: auto; }
.carousel-track {
  display: flex; gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform; flex-wrap: nowrap;
}
.product-card {
  flex: 0 0 280px; background: var(--white);
  border: 1px solid rgba(107,51,24,0.12);
  border-radius: 8px; overflow: hidden; flex-shrink: 0;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s, opacity 0.3s;
}
.product-card:hover {
  border-color: var(--caramel); transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(107,51,24,0.12);
}
.product-card.hidden { display: none; }
.product-card-img {
  width: 100%; height: 240px; overflow: hidden;
  background: #fff; display: flex; align-items: center; justify-content: center;
}
.product-card-img img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
  display: block; background: #fff; padding: 12px; transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-body { padding: 1.25rem 1.4rem 1.5rem; }
.product-tag {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--caramel); margin-bottom: 0.5rem; display: block;
}
.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.product-card p { font-size: 0.84rem; color: var(--text-mid); line-height: 1.65; }
.carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 2rem; }
.carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(107,51,24,0.2); cursor: pointer;
  transition: background 0.25s, width 0.25s; border: none;
}
.carousel-dot.active { background: var(--caramel); width: 20px; border-radius: 3px; }
 
/* ── PROCESS ── */
.process { background: #FDE8CC; }
.process .section-tag { color: var(--caramel); }
.process .section-title { color: var(--text-dark); }
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; margin-top: 4rem; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 2rem;
  left: calc(10% + 1rem); right: calc(10% + 1rem);
  height: 1px; background: var(--caramel); opacity: 0.4;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; }
.step-num {
  width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--caramel);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--caramel);
  margin: 0 auto 1.5rem; position: relative; z-index: 1;
}
.process-step h4 {
  font-size: 0.84rem; font-weight: 600; letter-spacing: 0.07em;
  color: var(--text-dark); margin-bottom: 0.5rem; text-transform: uppercase;
}
.process-step p { font-size: 0.8rem; color: var(--text-mid); line-height: 1.65; }
 
/* ── CERTIFICATIONS ── */
.certifications { background:var(--caramel); }
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.cert-card {
  border: 1px solid rgba(107,51,24,0.12); border-radius: 4px;
  padding: 2rem; text-align: center; background: var(--white);
  transition: box-shadow 0.25s, border-color 0.25s;
}
.cert-card:hover { border-color: var(--choc-mid); box-shadow: 0 4px 24px rgba(107,51,24,0.1); }
.cert-img { width: 80px; height: 80px; object-fit: contain; display: block; margin: 0 auto 1rem; }
.cert-card h4 { font-size: 0.95rem; font-weight: 500; color: var(--choc-mid); margin-bottom: 0.4rem; }
.cert-card p { font-size: 0.8rem; color: var(--text-muted); }
 
/* ── CONTACT ── */
.contact {
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  padding: 5rem 5rem;  /* desktop: generous top/bottom + side padding */
}
.contact .section-tag {
  color: var(--gold-light); font-size: 0.75rem;
  letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700;
}
.contact .section-title {
  color: #000; font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem;
}
.contact p {
  font-size: 0.9rem; color: rgba(0,0,0,0.6);
  line-height: 1.7; font-weight: 500;
  margin-bottom: 1.75rem;
  max-width: 100%;
  word-break: break-word;
}

/* Single column on mobile, two on desktop */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 1.5rem;
}
@media (max-width: 1024px) {
  .contact { padding: 3rem 3rem; }
}

@media (max-width: 768px) {
  .contact { padding: 2.5rem 1.25rem; }
}

.contact-info-item {
  display: flex; gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 2.2rem; height: 2.2rem; flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.1); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--choc-dark); font-size: 1rem;
}
.ci-label {
  font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(0,0,0,0.4); margin-bottom: 0.2rem; font-weight: 700;
}
.ci-value {
  font-size: 1.05rem; color: rgba(0,0,0,0.85);
  line-height: 1.55; font-weight: 700;
  word-break: break-word;
}

/* ── FOOTER ── */
footer {
  background: #1A0800; color: rgba(255,255,255,0.4);
  padding: 2.5rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-logo {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--gold-light); text-decoration: none;
}
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
 
/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-text > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }

/* ══════════════════════════════════════
   RESPONSIVE — all mobile styles here
   ══════════════════════════════════════ */
@media (max-width: 900px) {

  /* NAV */
  .nav-container {
    justify-content: space-between;
    padding: 0.5rem 1.2rem;
  }
  .nav-logo-mobile { display: block; }
  .nav-logo-mobile .nav-logo-img {
    height: 50px; width: auto;
    filter: brightness(0) invert(1);
  }
  .nav-toggle { display: flex; }
  .nav-logo-center { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #2A0E02;
    border-top: 1px solid rgba(212,130,42,0.25);
    padding: 0.5rem 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li {
    width: 100%; text-align: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(212,130,42,0.1);
  }
  .nav-links a { font-size: 0.9rem; }
  .nav-cta { display: inline-block; margin: 0.3rem auto; }

  /* HERO */
  .hero-text {
    padding: 7rem 1.5rem 3rem;
    max-width: 100%;
    text-align: center;
  }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(30, 10, 0, 0.55) 0%,
      rgba(30, 10, 0, 0.35) 100%
    );
  }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 0.92rem; max-width: 100%; }
  .hero-actions { justify-content: center; }
  .btn-primary, .btn-outline { padding: 0.8rem 1.6rem; font-size: 0.8rem; }

  /* STATS */
  .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 2rem 1.5rem; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 0.5px solid rgba(245,166,35,0.15); }

  /* SECTIONS */
  section { padding: 4rem 1.5rem; }

  /* ABOUT */
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img img { width: 100%; height: auto; }
  .about-blocks { grid-template-columns: 1fr; }

  /* PRODUCTS */
  .products-header { flex-direction: column; gap: 1rem; align-items: center; }
  .product-card { flex: 0 0 240px; }

  /* PROCESS */
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  /* CERTS */
  .cert-grid { grid-template-columns: repeat(2, 1fr); }

  /* CONTACT */
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  /* FOOTER */
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}