* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --yellow: #F5C518;
  --yellow-dark: #C9A200;
  --yellow-pale: #FDF3C0;
  --brown: #3E2A1A;
  --brown-mid: #5C3317;
  --brown-light: #8B5A2B;
  --cream: #FAF6EE;
  --white: #FFFFFF;
  --text: #2a1a08;
  --text-mid: #5a3a1a;
  --text-light: #8a6a4a;
  --border: #e0d0b0;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 15px;
  line-height: 1.6;
}

a { color: var(--brown-mid); text-decoration: none; }
a:hover { color: var(--yellow-dark); }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 7px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--yellow); }
.topbar a:hover { color: var(--yellow-dark); }
.topbar-right { display: flex; gap: 18px; align-items: center; }

/* ─── HEADER ─── */
header {
  background: var(--cream);
  border-bottom: 3px solid var(--yellow);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo-block h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.1rem, 3.5vw, 1.55rem);
  color: var(--brown);
  line-height: 1.2;
}
.logo-block h1 span { color: var(--yellow-dark); }
.logo-block p {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}
.header-cta {
  background: var(--yellow);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 2px solid var(--yellow-dark);
  transition: background 0.2s;
}
.header-cta:hover { background: var(--yellow-dark); color: var(--white); }

/* ─── NAV ─── */
nav {
  background: var(--brown);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
}

/* Push page content down so it doesn't hide under the fixed nav */
body { padding-top: 48px; }
@media (min-width: 701px) { body { padding-top: 50px; } }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-links {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
}
.nav-links li a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 14px;
  transition: background 0.15s, color 0.15s;
}
.nav-links li a:hover,
.nav-links li a.active { background: var(--yellow); color: var(--brown); }
.nav-mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--yellow);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 10px 0;
}

/* ─── HERO SLIDER ─── */
.hero {
  position: relative;
  background: var(--brown);
  overflow: hidden;
  height: 420px;
}
@media (min-width: 768px) { .hero { height: 500px; } }
@media (min-width: 1100px) { .hero { height: 560px; } }

.slide {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: all; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,15,5,0.82) 0%, rgba(30,15,5,0.5) 55%, rgba(30,15,5,0.1) 100%);
}
.slide-content {
  position: relative; z-index: 2;
  padding: 30px 28px;
  max-width: 580px;
}
@media (min-width: 768px) { .slide-content { padding: 40px 60px; } }
.slide-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--brown);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.slide-content h2 {
  font-family: 'Merriweather', serif;
  color: var(--white);
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 12px;
}
.slide-content h2 em { color: var(--yellow); font-style: normal; }
.slide-content p {
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  margin-bottom: 22px;
  max-width: 420px;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--brown);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 13px 24px;
  border-radius: 4px;
  display: inline-block;
  border: 2px solid var(--yellow-dark);
  transition: background 0.2s;
}
.btn-yellow:hover { background: var(--yellow-dark); color: var(--white); }
.slide-dots {
  position: absolute; bottom: 18px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 5;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.dot.active { background: var(--yellow); }
.slide-1 .slide-bg {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23F5C518' fill-opacity='0.04'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40zm0-40h2l-2 2V0zm0 4l4-4h2l-6 6V4zm0 4l8-8h2L40 10V8zm0 4L52 0h2L40 14v-2zm0 4L56 0h2L40 18v-2zm0 4L60 0h2L40 22v-2zm0 4L64 0h2L40 26v-2zm0 4L68 0h2L40 30v-2zm0 4L72 0h2L40 34v-2zm0 4L76 0h2L40 38v-2zm0 4L80 0v2L42 40h-2zm4 0L80 4v2L46 40h-2zm4 0L80 8v2L50 40h-2zm4 0L80 12v2L54 40h-2zm4 0L80 16v2L58 40h-2zm4 0L80 20v2L62 40h-2zm4 0L80 24v2L66 40h-2zm4 0L80 28v2L70 40h-2zm4 0L80 32v2L74 40h-2zm4 0L80 36v2L78 40h-2zm4 0L80 40h-2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), linear-gradient(135deg, #5C3317 0%, #3E2A1A 100%);
}
.slide-2 .slide-bg { background: linear-gradient(160deg, #3E2A1A 0%, #6B3F1F 100%); }
.slide-3 .slide-bg { background: linear-gradient(135deg, #6B3F1F 0%, #3E2A1A 100%); }

/* ─── YELLOW BANNER ─── */
.banner {
  background: var(--yellow);
  padding: 12px 20px;
  border-bottom: 3px solid var(--yellow-dark);
}
.banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  align-items: center;
  justify-content: space-around;
}
.banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--brown);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  flex: 1;
  padding: 0 8px;
  border-right: 1px solid rgba(62,42,26,0.2);
}
.banner-item:last-child { border-right: none; }
.banner-item .icon { font-size: 1.3rem; }

@media (min-width: 640px) {
  .banner-inner { flex-wrap: wrap; gap: 10px 30px; justify-content: center; }
  .banner-item { flex-direction: row; font-size: 0.82rem; gap: 8px; }
  .banner-item .icon { font-size: 1.1rem; }
}

/* ─── INTRO / ABOUT ─── */
.intro {
  background: var(--cream);
  padding: 50px 20px;
  border-bottom: 1px solid var(--border);
}
.intro-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 768px) {
  .intro-inner { grid-template-columns: 1.6fr 1fr; gap: 50px; align-items: start; }
}
.intro h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.3rem, 3.5vw, 1.8rem);
  color: var(--brown);
  margin-bottom: 16px;
  line-height: 1.3;
}
.intro h2 span { color: var(--yellow-dark); }
.intro p { color: var(--text-mid); margin-bottom: 14px; font-size: 0.95rem; }
.intro ul { list-style: none; margin: 18px 0 24px; }
.intro ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.intro ul li::before { content: '✓'; color: var(--yellow-dark); font-weight: 700; flex-shrink: 0; }
.intro-aside {
  background: var(--brown);
  border-radius: 6px;
  padding: 28px 24px;
  color: white;
}
.intro-aside h3 {
  font-family: 'Merriweather', serif;
  color: var(--yellow);
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.intro-aside p { color: rgba(255,255,255,0.8); font-size: 0.88rem; margin-bottom: 18px; }
.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 20px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
  text-align: center;
}
.btn-whatsapp:hover { background: #1da855; color: white; }
.intro-aside .stat-row {
  display: flex;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat { text-align: center; flex: 1; }
.stat strong {
  display: block;
  font-family: 'Merriweather', serif;
  font-size: 1.7rem;
  color: var(--yellow);
  line-height: 1;
}
.stat span { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── PRODUCT PANELS ─── */
.panels {
  padding: 50px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section-heading {
  text-align: center;
  margin-bottom: 30px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.section-heading h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  color: var(--brown);
  margin-bottom: 6px;
}
.section-heading p { color: var(--text-light); font-size: 0.9rem; }
.panel-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .panel-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .panel-grid { grid-template-columns: repeat(4, 1fr); } }
.panel {
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  background: var(--cream);
  cursor: pointer;
}
.panel:hover {
  border-color: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(62,42,26,0.13);
}
.panel-img {
  aspect-ratio: 4/3;
  background: var(--brown-mid);
  display: block;
  overflow: hidden;
  width: 100%;
  position: relative;
}
.panel-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.panel-label {
  background: var(--brown);
  color: var(--white);
  text-align: center;
  padding: 10px 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
.panel:hover .panel-label { background: var(--yellow-dark); }

/* ─── PANEL ACCORDION ─── */
.panel {
  cursor: pointer;
  grid-column: span 1;
  position: relative;
}
.panel-label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel-arrow { display: none; }

.panel-drawer { display: none; }

.panel-img::after {
  content: '📷 View Photos';
  position: absolute;
  inset: 0;
  background: rgba(62,42,26,0.7);
  color: var(--yellow);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.panel:hover .panel-img::after { opacity: 1; }

.drawer-photo {
  aspect-ratio: 4/3;
  border-radius: 5px;
  overflow: hidden;
  background: var(--brown-mid);
}
.drawer-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.drawer-photo.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.6rem;
  border: 2px dashed rgba(255,255,255,0.2);
}
.ph-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-family: 'Open Sans', sans-serif;
}
.drawer-photo:not(.placeholder) { cursor: zoom-in; }

/* ─── LIGHTBOX ─── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }

#lb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}

#lb-img-wrap {
  position: relative;
  z-index: 2;
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lb-img {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  display: block;
}

#lb-close {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.2rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
#lb-close:hover { background: rgba(255,255,255,0.3); }

#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}
#lb-prev { left: 12px; }
#lb-next { right: 12px; }
#lb-prev:hover, #lb-next:hover { background: rgba(255,255,255,0.3); }

#lb-counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-family: 'Open Sans', sans-serif;
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  border-radius: 20px;
}

.drawer-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 4px;
}

/* ─── WHY US ─── */
.why-us {
  padding: 50px 20px;
  background: var(--brown);
}
.why-us .section-heading h2 { color: var(--yellow); }
.why-us .section-heading p { color: rgba(255,255,255,0.6); }
.why-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: 6px;
  padding: 22px 18px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s;
}
.why-item:hover { background: rgba(255,255,255,0.1); border-color: var(--yellow); }
.why-item .icon { font-size: 2rem; margin-bottom: 10px; display: block; }
.why-item h3 { font-size: 0.88rem; font-weight: 700; color: var(--yellow); margin-bottom: 6px; }
.why-item p { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5; }

/* ─── CTA STRIP ─── */
.cta-strip {
  background: var(--yellow);
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid var(--yellow-dark);
}
.cta-strip h2 {
  font-family: 'Merriweather', serif;
  color: var(--brown);
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  margin-bottom: 8px;
}
.cta-strip p {
  color: var(--brown-mid);
  font-size: 0.92rem;
  margin-bottom: 22px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-strip .btn-whatsapp {
  display: inline-flex;
  padding: 15px 28px;
  font-size: 1rem;
  border-radius: 5px;
  max-width: 420px;
  margin: 0 auto;
}

/* ─── FOOTER ─── */
footer {
  background: var(--text);
  color: rgba(255,255,255,0.6);
  padding: 36px 20px 20px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .footer-inner { grid-template-columns: 1.5fr 1fr 1fr; } }
.footer-brand h3 {
  font-family: 'Merriweather', serif;
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.82rem; line-height: 1.7; }
.footer-col h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 0.82rem; padding: 4px 0; }
.footer-col ul li a { color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom {
  max-width: 1100px;
  margin: 16px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.75rem;
}

/* ─── FACEBOOK BUTTON ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-fb {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.nav-fb:hover { color: #1877F2; }

.footer-fb {
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-fb:hover { color: #1877F2; }

.footer-altlab {
  color: var(--yellow);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-altlab:hover { color: var(--yellow-dark); }

/* ─── MOBILE NAV ─── */
@media (max-width: 700px) {
  .topbar { display: none; }
  header { display: none; }

  nav { z-index: 500; }

  .nav-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    position: relative;
  }

  .nav-logo-small {
    color: var(--yellow);
    font-size: 0.92rem;
    font-weight: 700;
    font-family: 'Merriweather', serif;
    padding: 14px 0;
    flex: 1;
  }

  .nav-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
    flex-shrink: 0;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--brown);
    border-top: 1px solid rgba(255,255,255,0.1);
    z-index: 99;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }

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

  .nav-links li { width: 100%; }

  .nav-links li a {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.88rem;
  }
}

@media (min-width: 701px) { .nav-logo-small { display: none; } }
