/* =============================================
   TOKENS — edit these to retheme the whole site
============================================= */
:root {
  --gold:    #C8961A;
  --orange:  #E8650A;
  --black:   #111010;
  --offwhite:#FAF8F4;
  --white:   #FFFFFF;
  --gray1:   #F3F1ED;
  --gray2:   #E5E2DC;
  --gray3:   #A09C95;
  --text:    #1A1917;
  --text-muted: #6B6760;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--offwhite);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
a { text-decoration: none; color: inherit; }

/* =============================================
   UTILITY
============================================= */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
}
.tag {
  display: inline-block;
  background: var(--gray1);
  border: 1px solid var(--gray2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}
.price-highlight { color: var(--orange); font-weight: 500; }

/* =============================================
   NAV
============================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  min-width: 0;
}
.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-brand-tagline {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-shrink: 0;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { background: #cc5500; transform: translateY(-1px); }

/* Hamburger button (mobile only) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  padding: 16px 24px 24px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.nav-drawer.open { display: block; }
.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
.nav-drawer ul li a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--gray2);
  text-decoration: none;
}
.nav-drawer-cta {
  display: block;
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  margin-top: 8px;
}

/* =============================================
   HERO
============================================= */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 50%, rgba(200,150,26,0.18) 0%, transparent 55%),
    radial-gradient(circle at 20% 80%, rgba(232,101,10,0.12) 0%, transparent 45%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,26,0.15);
  border: 1px solid rgba(200,150,26,0.4);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 12px;
  color: #F0C040;
  margin-bottom: 24px;
  font-weight: 400;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F0C040;
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  font-family: var(--font-body);
  text-decoration: none;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }
.hero-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* Hero image grid */
.hero-image-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 420px;
}
.hero-img {
  border-radius: var(--radius-md);
  background-color: rgba(255,255,255,0.08);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.hero-img-label {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 4px;
}
.hero-img.span-col { grid-column: span 2; }
.hero-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}
.hero-img-placeholder svg { opacity: 0.4; }

/* =============================================
   STATS BAR
============================================= */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray2);
  padding: 28px 0;
}
.stats-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   ABOUT
============================================= */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  background: var(--gray1);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray3);
  font-size: 13px;
  flex-direction: column;
  gap: 8px;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
}
.about-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gray1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.about-feature-text h4 {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 3px;
}
.about-feature-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   PRODUCTS
============================================= */
.products { background: var(--offwhite); }
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s, transform 0.25s;
  cursor: default;
}
.product-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.product-img {
  height: 160px;
  background-color: var(--white);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
.product-img-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--gray3);
  font-size: 11px;
  text-align: center;
}
.product-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--white);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-muted);
}
.product-body { padding: 16px 18px 20px; }
.product-name {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text);
}
.product-detail {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 17px;
  font-weight: 500;
  color: var(--orange);
}
.product-price-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* Box Family card */
.box-family-card {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.box-family-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}
.box-family-card .box-desc {
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.box-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.box-item {
  background: rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.box-price-block { text-align: right; }
.box-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.box-price-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-top: 6px;
}
.box-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  margin-top: 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.box-cta:hover { background: #cc5500; }

/* =============================================
   PRICE LIST
============================================= */
.prices { background: var(--white); }
.prices-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF8ED;
  border: 1px solid #F0C04040;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
  color: #8B6000;
  margin-bottom: 36px;
}
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray2);
  box-shadow: var(--shadow-card);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}
thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--gray1);
  border-bottom: 1px solid var(--gray2);
}
tbody tr {
  border-bottom: 1px solid var(--gray2);
  transition: background 0.15s;
}
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: var(--gray1); }
td {
  padding: 13px 20px;
  color: var(--text);
  vertical-align: middle;
}
.td-product { font-weight: 400; }
.td-price { color: var(--orange); font-weight: 500; }
.td-empty { color: var(--gray3); font-size: 13px; }
.td-highlight { font-weight: 500; color: var(--text); }
.shelf-life-row {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.shelf-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray1);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 13px;
}
.shelf-pill strong { font-weight: 500; }

/* =============================================
   CONTACT
============================================= */
.contact { background: var(--offwhite); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-team {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow-hover); }
.contact-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-info { flex: 1; }
.contact-name { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.contact-role { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.contact-phone {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 300;
}
.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D36615;
  color: #1A9E4A;
  border: 1px solid #25D36630;
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}
.contact-wa-btn:hover { background: #25D36625; }

.contact-cta-block {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  color: var(--white);
  position: sticky;
  top: 88px;
}
.contact-cta-block h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.25;
}
.contact-cta-block p {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-cta-big {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  text-decoration: none;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.contact-cta-big:hover { background: #1ebe5a; }
.contact-cta-website {
  display: block;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  transition: color 0.2s;
  text-decoration: none;
}
.contact-cta-website:hover { color: rgba(255,255,255,0.75); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--black);
  color: rgba(255,255,255,0.45);
  padding: 36px 0;
  font-size: 13px;
}
.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
}
.footer-logo-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
}
footer a { color: var(--gold); text-decoration: none; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .nav-brand-name { max-width: 160px; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .hero-image-side { height: 300px; }
  .hero-img { background-size: contain; }

  .stats-inner { grid-template-columns: repeat(2,1fr); }

  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image { aspect-ratio: 16/9; }

  .products-header { flex-direction: column; align-items: flex-start; }

  .box-family-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 24px;
  }
  .box-price-block { text-align: left; }

  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-cta-block { position: static; }

  .footer-inner { flex-direction: column; text-align: center; }
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}