/* Reset */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { margin: 0; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

/* Base */
.site {
  background: #F3ECD9;
  color: #14170F;
  font-family: 'Manrope', sans-serif;
  line-height: 1.6;
}

/* Shared: buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  border-radius: 2px;
  border: 1.5px solid #C9A24B;
}
.btn--gold { background: #C9A24B; color: #122A1C; }
.btn--outline-gold { background: transparent; color: #E0BC6C; }
.btn--outline-ink { background: transparent; color: #122A1C; }
.btn--nav { padding: 10px 20px; font-size: 13px; gap: 8px; }
.btn--md { padding: 13px 26px; font-size: 14px; }
.btn--sm { padding: 11px 20px; font-size: 13px; }
.btn--lg { padding: 16px 34px; font-size: 16px; }
.btn--card { align-self: flex-start; }

.icon-wa { width: 16px; height: 16px; }
.icon-wa--sm { width: 15px; height: 15px; }
.icon-wa--lg { width: 18px; height: 18px; }
.icon-wa--xl { width: 28px; height: 28px; }

/* Shared: eyebrow label */
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow--hero { margin-bottom: 22px; }
.eyebrow--center { justify-content: center; }
.eyebrow--gold { color: #E0BC6C; }
.eyebrow--rust { color: #A6461F; }
.eyebrow__line {
  width: 28px;
  height: 1.5px;
  display: inline-block;
  background: currentColor;
}

/* Shared: section title */
.section-title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
}

/* Shared: zigzag divider */
.divider {
  height: 14px;
  width: 100%;
  background-image:
    linear-gradient(45deg, #C9A24B 25%, transparent 25%, transparent 75%, #C9A24B 75%),
    linear-gradient(45deg, #C9A24B 25%, transparent 25%, transparent 75%, #C9A24B 75%);
  background-size: 14px 14px;
  background-position: 0 0, 7px 7px;
  opacity: 0.9;
}
.divider--after-hero { background-color: #122A1C; margin-top: 36px; }
.divider--after-about { background-color: #F3ECD9; }
.divider--after-products { background-color: #122A1C; }

/* Shared: brand logo */
.brand-logo { height: 45px; width: 88px; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #122A1C;
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.nav__logo-link { display: flex; align-items: center; }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__link {
  color: #C9C2AC;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}
.nav__link--desktop { letter-spacing: 0.03em; }
.nav__menu-btn {
  background: none;
  border: none;
  color: #EFE7CF;
  font-size: 26px;
  cursor: pointer;
}
.nav__mobile {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #122A1C;
  padding: 20px 32px 26px;
  gap: 18px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
}

/* Hero */
.hero {
  background: linear-gradient(180deg, #122A1C 0%, #0F2417 100%);
  color: #EFE7CF;
  padding: 64px 0 0;
}
.hero__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 40px;
  align-items: center;
}
.hero__content { flex: 1 1 480px; min-width: 280px; }
.hero__title {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.06;
  margin: 0 0 22px;
}
.hero__title-em { color: #E0BC6C; font-style: italic; }
.hero__desc { font-size: 18px; color: #C9C2AC; max-width: 460px; margin: 0 0 34px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex: 1 1 320px;
  min-width: 240px;
}
.hero__art-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(201, 162, 75, 0.22), transparent 68%);
  top: 5%;
}
.hero__art-img {
  position: relative;
  max-height: 420px;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.55));
  border-radius: 6px;
}
.hero__stats {
  max-width: 1180px;
  margin: 56px auto 0;
  padding: 0 32px;
  display: flex;
  border-top: 1px solid rgba(201, 162, 75, 0.25);
  flex-wrap: wrap;
}
.hero__stat {
  flex: 1 1 25%;
  padding: 22px 32px;
  border-right: 1px solid rgba(201, 162, 75, 0.18);
}
.hero__stat--last { flex: 1 1 25%; padding: 22px 32px; }
.hero__stat-value { font-family: 'Fraunces', serif; font-size: 26px; color: #E0BC6C; font-weight: 600; }
.hero__stat-label { font-size: 12px; color: #C9C2AC; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* About */
.about { padding: 96px 0; background: #F3ECD9; }
.about__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}
.about__text { flex: 1 1 420px; min-width: 280px; }
.about__lead {
  font-size: 20px;
  font-family: 'Fraunces', serif;
  font-weight: 450;
  color: #14170F;
  line-height: 1.45;
  margin: 0 0 20px;
}
.about__body { font-size: 16.5px; color: #3B3826; margin: 0 0 20px; }
.about__body--last { font-size: 16.5px; color: #3B3826; margin: 0; }
.about__media { position: relative; flex: 1 1 420px; min-width: 280px; }
.about__img { width: 100%; border-radius: 4px; box-shadow: 0 20px 50px rgba(10, 20, 12, 0.35); }
.about__badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: #122A1C;
  color: #E0BC6C;
  padding: 18px 22px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid #C9A24B;
  box-shadow: 0 20px 50px rgba(10, 20, 12, 0.35);
}
.about__badge-title {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  color: #EFE7CF;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
}

/* Values */
.values { background: #122A1C; color: #EFE7CF; padding: 64px 0; }
.values__header { max-width: 640px; margin: 0 auto 40px; padding: 0 32px; }
.values__title { color: #EFE7CF; font-size: clamp(28px, 3.4vw, 40px); }
.values__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201, 162, 75, 0.2);
}
.value-card { background: #122A1C; padding: 38px 30px; }
.value-card__icon { width: 28px; height: 28px; margin-bottom: 18px; }
.value-card__title { font-size: 18px; color: #EFE7CF; margin: 0 0 10px; font-weight: 600; }
.value-card__desc { font-size: 14.5px; color: #C9C2AC; margin: 0; }

/* Products */
.products { padding: 96px 0; background: #F3ECD9; }
.products__inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.products__header { max-width: 640px; margin-bottom: 56px; }
.products__title { color: #14170F; font-size: clamp(28px, 3.4vw, 40px); margin: 0 0 16px; }
.products__desc { font-size: 17px; color: #4A4636; max-width: 560px; margin: 0; }
.products__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

.product-card {
  background: #FBF8EE;
  border: 1px solid rgba(20, 23, 15, 0.08);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(20, 23, 15, 0.08);
}
.product-card--wholesale {
  background: #122A1C;
  border: 1px solid rgba(201, 162, 75, 0.3);
}
.product-card__media { position: relative; height: 280px; background: #122A1C; overflow: hidden; }
.product-card__img { height: 100%; width: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card__img { transform: scale(1.02); }
.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 2px;
}
.product-card__badge--gold { background: #C9A24B; color: #122A1C; }
.product-card__badge--dark { background: #122A1C; color: #E0BC6C; }
.product-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__body--wholesale { padding: 32px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.product-card__eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A6461F;
  margin-bottom: 10px;
}
.product-card__eyebrow--wholesale { color: #E0BC6C; }
.product-card__title { font-family: 'Fraunces', serif; font-weight: 600; font-size: 23px; color: #14170F; margin: 0 0 10px; }
.product-card__title--wholesale { color: #EFE7CF; }
.product-card__desc { font-size: 14.5px; color: #5A5642; flex: 1; margin: 0 0 20px; }
.product-card__desc--wholesale { color: #C9C2AC; }

/* CTA */
.cta { background: #122A1C; color: #EFE7CF; padding: 100px 0; text-align: center; }
.cta__inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.cta__title { color: #EFE7CF; font-size: clamp(28px, 3.6vw, 42px); max-width: 680px; margin: 0 auto 18px; line-height: 1.15; }
.cta__desc { color: #C9C2AC; font-size: 17px; max-width: 520px; margin: 0 auto 36px; }

/* Footer */
.footer { background: #0D1F14; color: #C9C2AC; padding: 64px 0 30px; }
.footer__inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 48px; margin-bottom: 50px; }
.footer__logo-link { display: flex; align-items: center; margin-bottom: 16px; }
.footer__desc { font-size: 14px; color: #C9C2AC; max-width: 320px; margin: 0; }
.footer__heading { font-size: 12px; color: #E0BC6C; text-transform: uppercase; letter-spacing: 0.1em; margin: 0 0 18px; }
.footer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__link { color: #C9C2AC; font-size: 14.5px; }
.footer__bottom {
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  color: #6C7A70;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__legal { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Floating WhatsApp button */
.fab-whatsapp {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 60;
  background: #C9A24B;
  color: #122A1C;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
