:root {
    --gold: #9E9E9E;
    --gold-light: #C0C0C0;
    --gold-dark: #6E6E6E;
    --caoba: #6B2D0F;
    --caoba-light: #9B4A2A;
    --charcoal: #4A4A4A;
    --dark: #2E2E2E;
    --grey: #5A5A5A;
    --grey-mid: #7A7A7A;
    --grey-light: #ABABAB;
    --off-white: #F5F0E8;
    --white: #FAFAFA;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: #3A3A3A;
    color: var(--off-white);
    font-family: 'Nunito Sans', sans-serif;
    overflow-x: hidden;
    cursor: default;
  }

  /* ========== CUSTOM CURSOR ========== */
  .cursor {
    width: 12px; height: 12px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease, opacity 0.2s ease;
    mix-blend-mode: difference;
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease, opacity 0.2s ease;
    opacity: 0.5;
  }

  /* ========== HEADER / NAV ========== */
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(46,46,46,0.98) 0%, rgba(46,46,46,0.85) 100%);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(158,158,158,0.15);
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 0.18em;
    color: var(--off-white);
    text-decoration: none;
    text-transform: uppercase;
    line-height: 1;
  }
  .logo span {
    color: var(--gold);
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.45em;
    font-weight: 300;
    margin-top: 3px;
    color: var(--gold-light);
  }

  nav.desktop-nav {
    display: flex;
    align-items: center;
    gap: 0;
  }
  nav.desktop-nav a {
    color: var(--grey-light);
    text-decoration: none;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 14px;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
  }
  nav.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease, left 0.3s ease;
  }
  nav.desktop-nav a:hover { color: var(--gold-light); }
  nav.desktop-nav a:hover::after { width: 60%; left: 20%; }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .btn-wa {
    display: flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
  }
  .btn-wa:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(37,211,102,0.35); }

  .btn-call {
    display: flex; align-items: center; gap: 8px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.3s;
    white-space: nowrap;
  }
  .btn-call:hover { background: var(--gold); color: var(--dark); }

  /* ========== HAMBURGER ========== */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1100;
  }
  .hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 90vw);
    height: 100vh;
    background: linear-gradient(160deg, #4A4A4A 0%, #2E2E2E 60%, rgba(107,45,15,0.10) 100%);
    border-left: 1px solid rgba(158,158,158,0.2);
    z-index: 1050;
    padding: 100px 40px 40px;
    transition: right 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    gap: 0;
    backdrop-filter: blur(20px);
  }
  .mobile-menu.open { right: 0; }
  .mobile-menu a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 700;
    padding: 16px 0;
    border-bottom: 1px solid rgba(158,158,158,0.1);
    transition: color 0.3s, padding-left 0.3s;
  }
  .mobile-menu a:hover { color: var(--gold); padding-left: 10px; }
  .mobile-actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

  /* ========== HERO ========== */
  .hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 80% 20%, rgba(107,45,15,0.25) 0%, transparent 55%),
      radial-gradient(ellipse at 20% 80%, rgba(158,158,158,0.08) 0%, transparent 50%),
      linear-gradient(160deg, #2E2E2E 0%, #4A4A4A 100%);
  }

  .hero-grid {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(158,158,158,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(158,158,158,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  }

  .hero-content {
    position: relative;
    text-align: center;
    max-width: 820px;
    padding: 0 24px;
    animation: heroIn 1.4s cubic-bezier(0.23,1,0.32,1) both;
  }

  @keyframes heroIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-tag {
    display: inline-block;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(158,158,158,0.4);
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 28px;
    font-weight: 600;
  }

  .hero h1 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(3rem, 8vw, 6.5rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 0.9;
    margin-bottom: 12px;
  }
  .hero h1 .line1 { color: var(--off-white); }
  .hero h1 .line2 {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    display: block;
  }
  .hero h1 .line3 { color: var(--gold); display: block; }

  .hero-sub {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-style: italic;
    color: var(--grey-light);
    margin: 24px 0 40px;
    letter-spacing: 0.06em;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 0 40px rgba(158,158,158,0.2);
  }
  .hero-cta:hover { transform: translateY(-3px); box-shadow: 0 12px 50px rgba(158,158,158,0.4); }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--grey-mid);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
  }
  .scroll-line {
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
  }
  @keyframes scrollBounce { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }
  @keyframes scrollLine { 0%,100% { transform: scaleY(1); } 50% { transform: scaleY(0.6); } }

  /* ========== SECTIONS ========== */
  section { padding: 100px 40px; }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .section-tag {
    font-size: 0.6rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--off-white);
    line-height: 1;
  }
  .section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--gold);
    font-weight: 300;
  }
  .section-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 20px auto 0;
  }

  /* ========== PRODUCT GRID ========== */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .product-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: #5A5A5A;
  }

  /* Fake wood-like gradient backgrounds for cards */
  .product-card:nth-child(1) .card-bg { background: linear-gradient(135deg, #2C1810 0%, #5C3220 30%, #8B5030 60%, #4A2015 100%); }
  .product-card:nth-child(2) .card-bg { background: linear-gradient(160deg, #3A3A4E 0%, #4A4A5E 40%, #5A5050 70%, #4A4040 100%); }
  .product-card:nth-child(3) .card-bg { background: linear-gradient(120deg, #3A2010 0%, #6B3A1F 35%, #9B5A2F 65%, #5B2A10 100%); }
  .product-card:nth-child(4) .card-bg { background: linear-gradient(150deg, #3E3E3E 0%, #5A5A5A 45%, #4A4A4A 75%, #353535 100%); }
  .product-card:nth-child(5) .card-bg { background: linear-gradient(130deg, #2A1A0A 0%, #5A3A1A 35%, #8A5A2A 60%, #4A2A0A 100%); }
  .product-card:nth-child(6) .card-bg { background: linear-gradient(155deg, #251515 0%, #452525 40%, #652D1A 65%, #352010 100%); }
  .product-card:nth-child(7) .card-bg { background: linear-gradient(140deg, #1C1408 0%, #3C2C18 35%, #5C4028 60%, #3C2818 100%); }
  .product-card:nth-child(8) .card-bg { background: linear-gradient(145deg, #383838 0%, #4E4E4E 40%, #5A5048 65%, #403A30 100%); }

  .card-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.8s cubic-bezier(0.23,1,0.32,1);
  }

  .card-texture {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(
        92deg,
        transparent 0px,
        rgba(255,255,255,0.015) 1px,
        transparent 2px,
        transparent 8px
      );
    mix-blend-mode: overlay;
  }

  .card-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 30%,
      rgba(158,158,158,0.06) 50%,
      transparent 70%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
  }

  .product-card:hover .card-bg { transform: scale(1.08); }
  .product-card:hover .card-shimmer { transform: translateX(100%); }

  .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.4) 40%,
      rgba(0,0,0,0.0) 75%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 24px;
  }

  .card-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.5));
    transform: translateY(8px);
    opacity: 0.7;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .product-card:hover .card-icon { transform: translateY(0); opacity: 1; }

  .card-cat {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 6px;
  }
  .card-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--off-white);
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .card-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--grey-light);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    opacity: 0;
  }
  .product-card:hover .card-desc { max-height: 60px; opacity: 1; }

  .card-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--dark);
    padding: 9px 20px;
    border-radius: 3px;
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    transform: translateY(10px);
    opacity: 0;
    transition: transform 0.4s ease 0.1s, opacity 0.4s ease 0.1s;
    align-self: flex-start;
  }
  .product-card:hover .card-action { transform: translateY(0); opacity: 1; }

  /* Caoba accent bar */
  .card-accent {
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--caoba));
    transition: height 0.5s cubic-bezier(0.23,1,0.32,1);
  }
  .product-card:hover .card-accent { height: 100%; }

  /* ========== FEATURED CATEGORY SECTION ========== */
  .feat-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-width: 1400px;
    margin: 64px auto 0;
  }

  .feat-panel {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    padding: 48px;
    overflow: hidden;
    cursor: pointer;
  }
  .feat-panel:nth-child(1) { background: linear-gradient(140deg, #3A1A08 0%, #6B2D0F 40%, #9B4A2A 70%, #5B2010 100%); }
  .feat-panel:nth-child(2) { background: linear-gradient(140deg, #3A3A3A 0%, #555555 40%, #4A4840 70%, #383430 100%); }

  .feat-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  }

  .feat-content { position: relative; }
  .feat-num {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 5rem;
    letter-spacing: -0.02em;
    color: rgba(206, 206, 206, 0.166);
    line-height: 1;
    display: block;
    margin-bottom: -12px;
  }
  .feat-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--off-white);
    margin-bottom: 12px;
  }
  .feat-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--grey-light);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
  }
  .feat-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    transition: gap 0.3s;
  }
  .feat-link:hover { gap: 18px; }
  .feat-link svg { transition: transform 0.3s; }
  .feat-link:hover svg { transform: translateX(4px); }

  /* ========== STATS BAR ========== */
  .stats-bar {
    background: linear-gradient(90deg, var(--caoba) 0%, #4A1A08 50%, var(--caoba) 100%);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    border-top: 1px solid rgba(158,158,158,0.2);
    border-bottom: 1px solid rgba(158,158,158,0.2);
  }
  .stat-num {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gold-light);
    letter-spacing: 0.04em;
    display: block;
  }
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.621);
    font-weight: 600;
    margin-top: 4px;
    display: block;
  }

  /* ========== CONTACT SECTION ========== */
  .contact-section {
    background: linear-gradient(160deg, #4A4A4A 0%, #2E2E2E 100%);
    text-align: center;
    padding: 100px 40px;
    border-top: 1px solid rgba(158,158,158,0.1);
  }
  .contact-section .section-title { margin-bottom: 16px; }
  .contact-section p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    color: var(--grey-light);
    font-size: 1.1rem;
    margin-bottom: 48px;
    letter-spacing: 0.04em;
  }
  .contact-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-lg-wa {
    display: inline-flex; align-items: center; gap: 12px;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
    padding: 18px 40px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 30px rgba(37,211,102,0.2);
  }
  .btn-lg-wa:hover { transform: translateY(-4px); box-shadow: 0 12px 50px rgba(37,211,102,0.4); }
  .btn-lg-call {
    display: inline-flex; align-items: center; gap: 12px;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
  }
  .btn-lg-call:hover { background: var(--gold); color: var(--dark); transform: translateY(-4px); box-shadow: 0 12px 50px rgba(158,158,158,0.25); }

  /* ========== FOOTER ========== */
  footer {
    background: #252525;
    border-top: 1px solid rgba(158,158,158,0.15);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer-brand {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off-white);
  }
  .footer-brand span { color: var(--gold); }
  footer p {
    font-size: 0.65rem;
    color: var(--grey-mid);
    letter-spacing: 0.1em;
  }

  /* ========== OVERLAY ========== */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
  }
  .menu-overlay.open { opacity: 1; pointer-events: all; }

  /* ========== SCROLL ANIMATIONS ========== */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1100px) {
    nav.desktop-nav a { padding: 8px 10px; font-size: 0.65rem; }
  }
  @media (max-width: 900px) {
    nav.desktop-nav { display: none; }
    .hamburger { display: flex; }
    .btn-wa, .btn-call { display: none; }
    .feat-split { grid-template-columns: 1fr; }
    .stats-bar { grid-template-columns: repeat(2,1fr); }
    header { padding: 0 24px; }
    section { padding: 80px 24px; }
  }
  @media (max-width: 600px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
    .stats-bar { grid-template-columns: repeat(2,1fr); padding: 32px 24px; }
    footer { padding: 32px 24px; }
    .hero h1 { letter-spacing: 0.03em; }
  }
  @media (max-width: 420px) {
    .product-grid { grid-template-columns: 1fr; }
  }