/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #fff; color: #111; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== TOKENS ===== */
:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #181818;
  --gold: #c9a84c;
  --gold-light: #e4c46a;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray2: #e8e8e8;
  --text-muted: #777;
  --nav-h: 76px;
}
.gold { color: var(--gold); }
.sr-only { position: absolute; width:1px; height:1px; padding:0; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex; align-items: center; gap: 2rem;
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.nav-logo img { width: 52px; height: 52px; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.35rem; letter-spacing: 0.05em; color: var(--white); line-height: 1.1; }
.nav-tagline { font-size: 0.52rem; letter-spacing: 0.12em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2.5rem; margin-left: auto; }
.nav-link {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--white); position: relative; padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-phone {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--white); margin-left: 1.5rem; flex-shrink: 0;
}
.nav-phone svg { color: var(--gold); }
.nav-phone-label { display: block; font-size: 0.6rem; letter-spacing: 0.1em; color: var(--gold); }
.nav-phone-num { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.03em; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ===== HERO ===== */
.hero {
  margin-top: var(--nav-h);
  background: var(--black);
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  padding: 4rem 2rem 3rem;
  max-width: 100%; overflow: hidden;
  position: relative;
}
.hero-content {
  max-width: 580px; z-index: 2; flex-shrink: 0;
  margin: 0 auto 0 calc((100vw - 1300px)/2);
}
.hero-eyebrow {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 1rem;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.95; letter-spacing: 0.02em;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 0.88rem; color: #bbb; line-height: 1.7;
  margin-bottom: 2rem; max-width: 460px;
}
.hero-badges {
  display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap;
}
.badge {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--white); text-transform: uppercase; line-height: 1.3;
}
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--black);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.15em;
  padding: 1rem 2.5rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.hero-img {
  flex: 1; display: flex; justify-content: flex-end; align-items: center;
  max-width: 640px; margin-left: 2rem;
}
.hero-img img {
  width: 100%; max-width: 600px;
  object-fit: cover; border-radius: 2px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.8));
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  background: #25d366;
  border-radius: 50px;
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.75rem 1.2rem 0.75rem 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  color: white; font-size: 0.8rem; font-weight: 700;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

/* ===== FACTORY SECTION ===== */
.factory-section {
  display: flex; align-items: stretch;
  background: var(--gray);
}
.factory-img { flex: 1; min-height: 400px; overflow: hidden; }
.factory-img img { width: 100%; height: 100%; object-fit: cover; }
.factory-content {
  flex: 1; padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 0.75rem;
}
.section-eyebrow.light { color: var(--gold-light); }
.factory-content h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1; letter-spacing: 0.02em;
  color: var(--dark); margin-bottom: 1.25rem;
}
.factory-desc { font-size: 0.88rem; color: #555; line-height: 1.7; margin-bottom: 2rem; }
.factory-features { display: flex; gap: 2.5rem; }
.feat-col { display: flex; flex-direction: column; gap: 0.75rem; }
.feat-item { font-size: 0.82rem; font-weight: 600; color: var(--dark); display: flex; align-items: center; gap: 0.6rem; }
.check { color: var(--gold); font-weight: 800; }

/* ===== PRODUCTS STRIP ===== */
.products-strip {
  background: var(--dark);
  padding: 4rem 2rem;
}
.strip-header { text-align: center; margin-bottom: 2.5rem; }
.strip-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em; color: var(--white); margin-bottom: 0;
}
.strip-scroll {
  display: flex; gap: 1rem; overflow-x: auto;
  padding-bottom: 1rem; scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
  max-width: 1400px; margin: 0 auto;
}
.strip-scroll::-webkit-scrollbar { height: 3px; }
.strip-scroll::-webkit-scrollbar-track { background: transparent; }
.strip-scroll::-webkit-scrollbar-thumb { background: var(--gold); }
.strip-item {
  flex: 0 0 calc(12.5% - 0.9rem);
  min-width: 140px;
  background: #1a1a1a;
  overflow: hidden; cursor: pointer;
  transition: transform 0.2s;
}
.strip-item:hover { transform: translateY(-4px); }
.strip-item img { width: 100%; height: 160px; object-fit: cover; }
.strip-item span {
  display: block; text-align: center;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--white); padding: 0.6rem 0.3rem 0.7rem;
  background: #1a1a1a;
}
.strip-footer { text-align: center; margin-top: 2rem; }
.btn-outline-gold {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--white);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 0.75rem 2rem;
  transition: background 0.2s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* ===== PAGE HERO (Products/Contact) ===== */
.page-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  min-height: 260px;
  display: flex; align-items: center;
  padding: 3rem 2rem;
  position: relative; overflow: hidden;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.95) 50%, rgba(0,0,0,0.3));
}
.page-hero-content { position: relative; z-index: 2; flex: 1; margin-left: calc((100vw - 1300px)/2); }
.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white); letter-spacing: 0.04em; line-height: 1;
  margin-bottom: 1rem;
}
.page-hero-sub { font-size: 0.88rem; color: #ccc; line-height: 1.6; max-width: 520px; }
.page-hero-img-wrap {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%; overflow: hidden; z-index: 1;
}
.page-hero-glove { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ===== PRODUCTS GRID ===== */
.products-grid-section {
  background: var(--gray);
  padding: 4rem 2rem;
}
.products-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.product-img-wrap { overflow: hidden; height: 200px; background: #f0f0f0; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-info { padding: 1.2rem 1rem; text-align: center; }
.product-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem;
  letter-spacing: 0.06em; color: var(--dark); margin-bottom: 0.4rem;
}
.product-desc { font-size: 0.75rem; color: #666; line-height: 1.5; margin-bottom: 1rem; }
.btn-view {
  display: inline-block;
  background: var(--gold); color: var(--black);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 0.55rem 1.2rem;
  transition: background 0.2s;
}
.btn-view:hover { background: var(--gold-light); }
.products-cta-row { text-align: center; max-width: 1300px; margin: 0 auto; }
.products-cta-text { font-size: 0.88rem; color: #555; margin-bottom: 1.25rem; }
.btn-dark-gold {
  display: inline-block;
  background: var(--dark); color: var(--gold);
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em;
  padding: 1rem 2.5rem; border: 1px solid var(--gold);
  transition: background 0.2s, color 0.2s;
}
.btn-dark-gold:hover { background: var(--gold); color: var(--black); }

/* ===== CONTACT HERO ===== */
.contact-hero {
  margin-top: var(--nav-h);
  background: var(--black);
  min-height: 260px;
  display: flex; align-items: center;
  padding: 3rem 2rem;
  position: relative; overflow: hidden;
}
.contact-hero-content {
  position: relative; z-index: 2; flex: 1;
  padding-left: calc(max(2rem, (100vw - 1300px)/2));
}
.contact-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  color: var(--white); letter-spacing: 0.04em; line-height: 1; margin-bottom: 0.75rem;
}
.contact-hero-divider { width: 60px; height: 3px; background: var(--gold); margin: 0.75rem 0 1rem; }
.contact-hero-sub { font-size: 0.88rem; color: #ccc; line-height: 1.7; max-width: 480px; }
.contact-hero-img {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 45%; overflow: hidden;
}
.contact-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: brightness(0.7); }
.contact-hero-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 60%);
  z-index: 1;
}

/* ===== CONTACT BODY ===== */
.contact-body {
  display: flex; gap: 4rem; align-items: flex-start;
  max-width: 1300px; margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.contact-form-col { flex: 1.1; }
.contact-info-col { flex: 0.9; }
.contact-col-title {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem;
  letter-spacing: 0.06em; color: var(--dark); margin-bottom: 0.5rem;
}
.contact-col-line { width: 50px; height: 3px; background: var(--gold); margin-bottom: 2rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.9rem 1rem;
  border: 1px solid var(--gray2); background: var(--white);
  font-family: 'Montserrat', sans-serif; font-size: 0.84rem; color: var(--dark);
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.btn-send {
  background: var(--dark); color: var(--gold);
  font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.15em;
  padding: 1.1rem 2rem; border: none; cursor: pointer; text-align: center;
  transition: background 0.2s; width: 100%;
}
.btn-send:hover { background: var(--gold); color: var(--black); }
.form-privacy { font-size: 0.72rem; color: #999; text-align: center; margin-top: 0.25rem; }
.form-success { font-size: 0.82rem; color: #2a9d2a; font-weight: 600; text-align: center; }

/* Contact Info */
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0; }
.contact-info-icon {
  width: 44px; height: 44px; background: var(--dark);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-text { display: flex; flex-direction: column; gap: 2px; }
.contact-info-text strong { font-size: 0.82rem; font-weight: 700; color: var(--dark); letter-spacing: 0.04em; }
.contact-info-text span { font-size: 0.88rem; color: #333; font-weight: 500; }
.contact-info-text small { font-size: 0.75rem; color: #777; }
.contact-info-divider { height: 1px; background: var(--gray2); }

/* ===== FOOTER ===== */
.footer { background: var(--black); color: #aaa; }
.footer-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 1.2fr 1fr 1fr;
  gap: 2.5rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand { gap: 0.75rem; }
.footer-brand > img { width: 52px; height: 52px; object-fit: contain; }
.footer-brand-name { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; color: var(--white); letter-spacing: 0.04em; }
.footer-brand-sub { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.15em; margin-top: -0.4rem; }
.footer-brand-desc { font-size: 0.77rem; color: #888; line-height: 1.6; max-width: 260px; margin-top: 0.5rem; }
.footer-heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.5rem; }
.footer-link { font-size: 0.8rem; color: #aaa; transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-products-grid { display: flex; gap: 1.5rem; }
.footer-products-grid > div { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; color: #aaa; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.9rem; border-radius: 6px;
  font-size: 0.75rem; font-weight: 600; color: var(--white);
}
.social-btn.whatsapp { background: #25d366; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-insta-handle { font-size: 0.75rem; color: #888; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-bottom-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 1rem 2rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 0.5rem;
}
.export-bar { display: flex; align-items: center; gap: 0.5rem; font-size: 0.72rem; color: #aaa; }
.copy { font-size: 0.72rem; color: #666; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--black); z-index: 999;
  border-top: 1px solid rgba(201,168,76,0.15);
  flex-direction: column; padding: 1rem 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav .nav-link {
  padding: 0.9rem 2rem; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-nav .nav-link::after { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .hero-content { margin-left: 2rem; }
  .page-hero-content { margin-left: 2rem; }
  .products-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 1.5rem; }
  .footer-brand-desc { max-width: 400px; }
}

@media (max-width: 900px) {
  /* Navbar */
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-tagline { display: none; }

  /* Hero — stack vertically, headline visible first */
  .hero {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 2rem 1.25rem 2.5rem;
  }
  .hero-content {
    margin-left: 0;
    max-width: 100%;
    width: 100%;
    padding-top: 0.5rem;
  }
  .hero-headline { font-size: 3rem; }
  .hero-sub { font-size: 0.85rem; }
  .hero-badges { gap: 1.25rem; flex-wrap: wrap; }
  .hero-img {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 1.75rem;
  }
  .hero-img img { max-width: 100%; height: 260px; object-fit: cover; }

  /* Factory */
  .factory-section { flex-direction: column; }
  .factory-img { min-height: 240px; }
  .factory-img img { height: 240px; object-fit: cover; }
  .factory-content { padding: 2.5rem 1.25rem; }
  .factory-content h2 { font-size: 2rem; }
  .factory-features { flex-direction: column; gap: 0.75rem; }

  /* Products strip */
  .strip-item { min-width: 130px; }
  .strip-item img { height: 130px; }

  /* Products grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Page hero (products/contact) */
  .page-hero { min-height: auto; padding: 2.5rem 1.25rem; }
  .page-hero-content { margin-left: 0; }
  .page-hero-content h1 { font-size: 2.8rem; }
  .page-hero-img-wrap { display: none; }
  .page-hero-overlay { background: rgba(0,0,0,0.85); }

  /* Contact */
  .contact-hero { padding: 2.5rem 1.25rem; }
  .contact-hero-content { padding-left: 0; }
  .contact-hero-img { display: none; }
  .contact-body { flex-direction: column; gap: 2.5rem; padding: 2.5rem 1.25rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 2.5rem 1.25rem 1.5rem; }
  .footer-brand { flex-direction: column; align-items: flex-start; grid-column: 1/-1; }
  .footer-brand > div { display: flex; flex-direction: column; }

  /* WhatsApp float — smaller on mobile */
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    padding: 0.65rem 1rem 0.65rem 0.8rem;
    font-size: 0.72rem;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

@media (max-width: 600px) {
  :root { --nav-h: 68px; }

  /* Navbar tighter */
  .nav-inner { padding: 0 1rem; }
  .nav-logo img { width: 42px; height: 42px; }
  .nav-brand { font-size: 1.1rem; }

  /* Hero */
  .hero { padding: 1.5rem 1rem 2rem; }
  .hero-headline { font-size: 2.6rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-sub { font-size: 0.82rem; }
  .hero-img img { height: 220px; }
  .hero-badges { gap: 1rem; }
  .badge { font-size: 0.6rem; }
  .btn-primary { font-size: 0.72rem; padding: 0.85rem 2rem; }

  /* Factory */
  .factory-content { padding: 2rem 1rem; }
  .factory-content h2 { font-size: 1.8rem; }

  /* Products strip */
  .products-strip { padding: 2.5rem 1rem; }
  .strip-item { min-width: 120px; }
  .strip-item img { height: 110px; }
  .strip-item span { font-size: 0.55rem; }

  /* Products grid */
  .products-grid-section { padding: 2.5rem 1rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .product-img-wrap { height: 160px; }
  .product-name { font-size: 0.95rem; }
  .product-desc { font-size: 0.7rem; }
  .btn-view { font-size: 0.6rem; padding: 0.45rem 0.9rem; }

  /* Contact form */
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-col-title { font-size: 1.3rem; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; padding: 2rem 1rem 1.5rem; gap: 1.5rem; }
  .footer-products-grid { flex-direction: column; gap: 0.25rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; padding: 1rem; }
  .export-bar { font-size: 0.65rem; flex-wrap: wrap; }

  /* WhatsApp float — icon only on very small screens */
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 0.75rem; border-radius: 50%; }
  .whatsapp-float svg { width: 30px; height: 30px; }
}
