
  :root {
    --saffron: #E8820C;
    --deep: #1A0A00;
    --cream: #FDF6EC;
    --earth: #7A3B10;
    --leaf: #2D6A4F;
    --gold: #D4A017;
    --light-earth: #F5DEB3;
    --whatsapp: #25D366;
    --radius: 16px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
  }

  /* ── HEADER ── */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26,10,0,0.97);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    border-bottom: 2px solid var(--saffron);
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
  }
  .logo-icon { font-size: 2rem; }
  .logo-text { color: #fff; }
  .logo-text .brand { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--gold); display: block; line-height: 1; }
  .logo-text .tagline { font-size: 0.68rem; color: #ccc; letter-spacing: 0.08em; text-transform: uppercase; }

  nav { display: flex; align-items: center; gap: 20px; }
  nav a {
    color: #ddd;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: color 0.2s;
  }
  nav a:hover { color: var(--saffron); }

  .cta-btn {
    background: var(--saffron);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .cta-btn:hover { background: var(--earth); transform: scale(1.04); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

  /* ── HERO ── */
  .hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #1A0A00 0%, #3D1A00 50%, #1A0A00 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(232,130,12,0.18) 0%, transparent 60%);
  }
  .hero-bg-text {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: clamp(80px, 20vw, 220px);
    color: rgba(255,255,255,0.03);
    font-weight: 800;
    user-select: none;
    letter-spacing: -4px;
    line-height: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }
  .hero-content { position: relative; z-index: 2; max-width: 720px; }
  .hero-badge {
    display: inline-block;
    background: rgba(232,130,12,0.15);
    border: 1px solid var(--saffron);
    color: var(--saffron);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeUp 0.8s ease both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeUp 0.9s ease 0.1s both;
  }
  .hero h1 em { color: var(--gold); font-style: italic; }
  .hero p {
    color: #c8b89a;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 36px;
    animation: fadeUp 1s ease 0.2s both;
  }
  .hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.1s ease 0.3s both;
  }
  .btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  }
  .btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
  .btn-call {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.2s, background 0.2s;
  }
  .btn-call:hover { border-color: var(--saffron); background: rgba(232,130,12,0.1); }

  /* ── TRUST BAR ── */
  .trust-bar {
    background: var(--saffron);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
  }

  /* ── SECTION ── */
  section { padding: 80px 5%; }
  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--deep);
    line-height: 1.2;
    margin-bottom: 14px;
  }
  .section-sub {
    color: #7a6a5a;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 48px;
  }

  /* ── PRODUCTS ── */
  #products { background: #fff; }
  .products-header { text-align: center; }
  .products-header .section-sub { margin: 0 auto 48px; }

  .filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .tab {
    padding: 8px 22px;
    border-radius: 50px;
    border: 2px solid #e0d0c0;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7a6a5a;
    cursor: pointer;
    transition: all 0.2s;
  }
  .tab.active, .tab:hover {
    background: var(--saffron);
    border-color: var(--saffron);
    color: #fff;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .product-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s, box-shadow 0.25s;
    border: 1px solid #f0e0cc;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0,0,0,0.13); }

  .product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #f5deb3, #e8c88a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
  }
  .product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--saffron);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
  }

  .product-info { padding: 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--deep);
  }
  .product-desc { font-size: 0.82rem; color: #7a6a5a; line-height: 1.5; flex: 1; }
  .product-weight { font-size: 0.78rem; color: #aaa; font-weight: 500; }
  .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--saffron);
    margin-top: 6px;
  }
  .product-price span { font-size: 0.78rem; color: #aaa; font-weight: 400; margin-left: 4px; }

  .product-actions { display: flex; gap: 8px; padding: 0 18px 18px; }
  .btn-wa-small {
    flex: 1;
    background: var(--whatsapp);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: background 0.2s;
  }
  .btn-wa-small:hover { background: #1da851; }
  .btn-call-small {
    background: var(--deep);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 16px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s;
  }
  .btn-call-small:hover { background: var(--earth); }

  /* ── ABOUT ── */
  #about {
    background: linear-gradient(135deg, #1A0A00 0%, #2D1200 100%);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  #about .section-title { color: #fff; }
  #about .section-label { color: var(--gold); }
  #about p { color: #c8b89a; line-height: 1.8; margin-bottom: 18px; font-size: 0.95rem; }
  .about-visual {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(232,130,12,0.3);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
  }
  .about-visual .big-emoji { font-size: 5rem; display: block; margin-bottom: 20px; }
  .stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 20px; }
  .stat { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 20px; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 800; }
  .stat-label { font-size: 0.78rem; color: #aaa; margin-top: 4px; }

  /* ── HOW IT WORKS ── */
  #how { background: var(--cream); text-align: center; }
  .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
  .step {
    background: #fff;
    border-radius: var(--radius);
    padding: 36px 24px;
    border: 1px solid #f0e0cc;
    position: relative;
  }
  .step-num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--saffron);
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .step-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
  .step h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 8px; }
  .step p { font-size: 0.82rem; color: #7a6a5a; line-height: 1.6; }

  /* ── CONTACT ── */
  #contact {
    background: var(--saffron);
    text-align: center;
    padding: 80px 5%;
  }
  #contact .section-title { color: #fff; }
  #contact .section-label { color: rgba(255,255,255,0.7); }
  #contact p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 36px; line-height: 1.7; }

  .contact-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .contact-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--deep);
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    min-width: 200px;
    justify-content: center;
  }
  .contact-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
  .contact-card .icon { font-size: 1.6rem; }
  .contact-card small { font-size: 0.75rem; font-weight: 400; color: #7a6a5a; display: block; }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    color: #aaa;
    text-align: center;
    padding: 30px 5%;
    font-size: 0.82rem;
  }
  footer .footer-brand {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
  }

  /* ── FLOATING BUTTONS ── */
  .float-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    transition: transform 0.2s;
  }
  .float-btn:hover { transform: scale(1.1); }
  .float-wa { background: var(--whatsapp); }
  .float-call { background: var(--saffron); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── MOBILE NAV ── */
  .mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26,10,0,0.98);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }
  .mobile-nav.open { display: flex; }
  .mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
    transition: color 0.2s;
  }
  .mobile-nav a:hover { color: var(--saffron); }
  .mobile-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    #about { grid-template-columns: 1fr; gap: 36px; }
    .about-visual { display: none; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .contact-card { min-width: 160px; padding: 22px 24px; }
    .trust-bar { gap: 20px; }
    .float-buttons { bottom: 16px; right: 16px; }
  }
  @media (max-width: 480px) {
    header { padding: 12px 4%; }
    section { padding: 60px 4%; }
    .products-grid { grid-template-columns: 1fr; }
  }
