
    /* ── TOKENS ─────────────────────────────────────────── */
    :root {
      --espresso:   #1a1008;
      --dark-roast: #2b1a0e;
      --roast:      #3d2410;
      --sienna:     #7a4220;
      --amber:      #c47a2a;
      --gold:       #e0a84b;
      --cream:      #f5ead8;
      --parchment:  #fdf6ec;
      --white:      #fffcf7;
      --sand:       #d4b896;
      --arabic-green: #1e3a2f;
      --arabic-teal:  #2a5444;

      --ff-serif: 'Cormorant Garamond', Georgia, serif;
      --ff-sans:  'Jost', sans-serif;

      --ease-silk: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ── RESET ──────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--espresso);
      color: var(--cream);
      font-family: var(--ff-sans);
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ── GEOMETRIC PATTERN SVG (reusable) ───────────────── */
    .geo-bg {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 0 L80 40 L40 80 L0 40 Z' fill='none' stroke='%23c47a2a18' stroke-width='0.5'/%3E%3Cpath d='M40 10 L70 40 L40 70 L10 40 Z' fill='none' stroke='%23c47a2a10' stroke-width='0.5'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* ── NAV ────────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 6vw;
      height: 76px;
      background: linear-gradient(to bottom, rgba(26,16,8,0.97) 0%, rgba(26,16,8,0.85) 100%);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(196,122,42,0.15);
      transition: background 0.4s var(--ease-silk);
    }
    .nav-logo {
      display: flex; flex-direction: column; line-height: 1;
    }
    .nav-logo .en {
      font-family: var(--ff-serif);
      font-size: 1.55rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--gold);
    }
    .nav-logo .ar {
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--sand);
      font-weight: 300;
      margin-top: 2px;
    }
    .nav-links {
      display: flex; gap: 2.4rem; align-items: center;
    }
    .nav-toggle {
      display: none;
      border: none;
      background: transparent;
      color: var(--cream);
    }
    .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--sand);
      font-weight: 400;
      position: relative;
      padding-bottom: 2px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute; left: 0; bottom: 0;
      width: 0; height: 1px;
      background: var(--gold);
      transition: width 0.35s var(--ease-silk);
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      padding: 10px 22px;
      border: 1px solid var(--amber);
      color: var(--gold) !important;
      transition: background 0.3s, color 0.3s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover { background: var(--amber); color: var(--espresso) !important; }

    /* ── HERO ───────────────────────────────────────────── */
    #hero {
      min-height: 100vh;
      display: grid;
      place-items: center;
      position: relative;
      overflow: hidden;
      background: radial-gradient(ellipse 80% 60% at 50% 70%, #3d2410 0%, #1a1008 65%);
    }
    .hero-geo { z-index: 0; }
    /* Decorative circles */
    .hero-ring {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(196,122,42,0.12);
      animation: slowPulse 8s ease-in-out infinite alternate;
    }
    .hero-ring-1 { width: 540px; height: 540px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
    .hero-ring-2 { width: 720px; height: 720px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 2s; }
    .hero-ring-3 { width: 900px; height: 900px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-delay: 4s; }
    @keyframes slowPulse {
      0%   { opacity: 0.4; transform: translate(-50%,-50%) scale(1); }
      100% { opacity: 1;   transform: translate(-50%,-50%) scale(1.04); }
    }

    /* Coffee bean scatter */
    .bean-scatter {
      position: absolute; inset: 0; z-index: 0; pointer-events: none;
    }
    .bean {
      position: absolute;
      width: 6px; height: 10px;
      border-radius: 50%;
      background: var(--sienna);
      opacity: 0;
      animation: floatBean linear infinite;
    }
    @keyframes floatBean {
      0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
      10%  { opacity: 0.35; }
      90%  { opacity: 0.15; }
      100% { opacity: 0; transform: translateY(-120px) rotate(180deg); }
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      padding: 0 24px;
      animation: fadeUp 1.2s var(--ease-silk) both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 400;
      margin-bottom: 1.4rem;
      animation: fadeUp 1.2s 0.2s var(--ease-silk) both;
    }
    .hero-title {
      font-family: var(--ff-serif);
      font-size: clamp(3.2rem, 9vw, 7.5rem);
      font-weight: 300;
      line-height: 1.0;
      letter-spacing: -0.01em;
      color: var(--parchment);
      margin-bottom: 0.15em;
      animation: fadeUp 1.2s 0.35s var(--ease-silk) both;
    }
    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }
    .hero-arabic {
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      color: var(--amber);
      font-family: var(--ff-serif);
      font-weight: 300;
      letter-spacing: 0.1em;
      margin-bottom: 1.6rem;
      animation: fadeUp 1.2s 0.5s var(--ease-silk) both;
    }
    .hero-sub {
      font-size: clamp(0.85rem, 2vw, 1rem);
      font-weight: 300;
      letter-spacing: 0.08em;
      color: var(--sand);
      max-width: 520px;
      margin: 0 auto 2.8rem;
      line-height: 1.8;
      animation: fadeUp 1.2s 0.65s var(--ease-silk) both;
    }
    .hero-actions {
      display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 1.2s 0.8s var(--ease-silk) both;
    }
    .btn-primary {
      padding: 16px 42px;
      background: var(--amber);
      color: var(--espresso);
      font-family: var(--ff-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { background: var(--gold); transform: translateY(-2px); }
    .btn-outline {
      padding: 15px 42px;
      border: 1px solid rgba(196,122,42,0.5);
      color: var(--cream);
      font-family: var(--ff-sans);
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      cursor: pointer;
      transition: border-color 0.3s, color 0.3s, transform 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

    .hero-scroll {
      position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
      z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
      animation: fadeUp 1s 1.2s var(--ease-silk) both;
    }
    .hero-scroll span { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sienna); }
    .scroll-line {
      width: 1px; height: 44px;
      background: linear-gradient(to bottom, var(--amber), transparent);
      animation: scrollDrop 2s ease-in-out infinite;
    }
    @keyframes scrollDrop {
      0%, 100% { opacity: 0.4; transform: scaleY(1); transform-origin: top; }
      50%       { opacity: 1;   transform: scaleY(1.3); }
    }

    /* ── SECTION SHARED ─────────────────────────────────── */
    section { position: relative; }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 6vw;
    }
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--amber);
      font-weight: 400;
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--ff-serif);
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 300;
      line-height: 1.15;
      color: var(--parchment);
    }
    .section-title em { font-style: italic; color: var(--gold); }
    .divider {
      width: 60px; height: 1px;
      background: linear-gradient(to right, var(--amber), transparent);
      margin: 1.5rem 0;
    }

    /* ── ABOUT ──────────────────────────────────────────── */
    #about {
      padding: 120px 0;
      background: var(--dark-roast);
    }
    #about .geo-bg { opacity: 0.5; }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7vw;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-frame {
      width: 100%; aspect-ratio: 4/5;
      background: var(--roast);
      position: relative;
      overflow: hidden;
    }
    .about-frame-inner {
      position: absolute; inset: 16px;
      border: 1px solid rgba(196,122,42,0.25);
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px;
    }
    .about-icon { font-size: 4rem; opacity: 0.6; }
    .about-icon-text {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 300;
      letter-spacing: 0.15em;
      color: var(--sand);
      text-align: center;
    }
    /* Map decoration */
    .about-badge {
      position: absolute; bottom: -20px; right: -20px;
      width: 120px; height: 120px;
      background: var(--arabic-green);
      border: 1px solid rgba(196,122,42,0.3);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 4px;
    }
    .about-badge .flag { font-size: 2rem; }
    .about-badge .label { font-size: 0.55rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--sand); text-align: center; line-height: 1.4; }

    .about-text p {
      font-size: 0.95rem;
      line-height: 1.9;
      color: var(--sand);
      font-weight: 300;
      margin-bottom: 1.2rem;
    }
    .about-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(196,122,42,0.15);
      margin-top: 2.5rem;
      border: 1px solid rgba(196,122,42,0.15);
    }
    .stat-item {
      padding: 22px 18px;
      background: var(--dark-roast);
      text-align: center;
    }
    .stat-num {
      font-family: var(--ff-serif);
      font-size: 2.2rem;
      font-weight: 300;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 4px;
    }
    .stat-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sienna); }

    /* ── PRODUCTS ───────────────────────────────────────── */
    #products {
      padding: 120px 0;
      background: var(--espresso);
    }
    .products-header { text-align: center; margin-bottom: 5rem; }
    .products-header .divider { margin: 1.5rem auto; }

    .products-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
    }
    .product-card {
      position: relative;
      background: var(--dark-roast);
      overflow: hidden;
      cursor: default;
      transition: transform 0.5s var(--ease-silk);
    }
    .product-card:hover { transform: translateY(-6px); }
    .product-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(to right, transparent, var(--amber), transparent);
      opacity: 0;
      transition: opacity 0.4s;
    }
    .product-card:hover::before { opacity: 1; }

    .product-img-wrap {
      height: 260px;
      background: var(--roast);
      position: relative;
      overflow: hidden;
      display: flex; align-items: center; justify-content: center;
    }
    .product-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.6s var(--ease-silk);
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.06); }
    .product-img-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(26,16,8,0.7) 100%);
    }
    .product-tag {
      position: absolute; top: 18px; right: 18px;
      padding: 5px 12px;
      font-size: 0.58rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      font-weight: 500;
    }
    .tag-wine { background: #5c1a2e; color: #e8a4b8; border: 1px solid rgba(232,164,184,0.3); }
    .tag-honey { background: #3d2800; color: var(--gold); border: 1px solid rgba(224,168,75,0.3); }

    .product-body { padding: 2rem 2.4rem 2.6rem; }
    .product-name {
      font-family: var(--ff-serif);
      font-size: 1.9rem;
      font-weight: 300;
      color: var(--parchment);
      margin-bottom: 0.5rem;
    }
    .product-tagline {
      font-size: 0.8rem;
      font-weight: 300;
      color: var(--amber);
      letter-spacing: 0.05em;
      margin-bottom: 1.2rem;
      font-style: italic;
      font-family: var(--ff-serif);
    }
    .product-desc {
      font-size: 0.85rem;
      line-height: 1.75;
      color: var(--sand);
      font-weight: 300;
      margin-bottom: 1.6rem;
    }

    .product-specs {
      display: grid; gap: 0;
      border: 1px solid rgba(196,122,42,0.15);
    }
    .spec-row {
      display: grid; grid-template-columns: 130px 1fr;
      border-bottom: 1px solid rgba(196,122,42,0.1);
    }
    .spec-row:last-child { border-bottom: none; }
    .spec-key, .spec-val {
      padding: 8px 12px;
      font-size: 0.75rem;
      line-height: 1.5;
    }
    .spec-key {
      font-weight: 400;
      letter-spacing: 0.05em;
      color: var(--amber);
      border-right: 1px solid rgba(196,122,42,0.1);
      background: rgba(196,122,42,0.04);
    }
    .spec-val {
      color: var(--sand);
      font-weight: 300;
    }

    .product-footer {
      margin-top: 1.6rem;
      display: flex; align-items: center; justify-content: space-between;
      padding-top: 1.4rem;
      border-top: 1px solid rgba(196,122,42,0.12);
    }
    .product-packing {
      font-size: 0.7rem;
      letter-spacing: 0.08em;
      color: var(--sienna);
    }
    .product-packing strong { color: var(--sand); display: block; }
    .btn-inquire {
      padding: 10px 24px;
      background: transparent;
      border: 1px solid var(--amber);
      color: var(--gold);
      font-family: var(--ff-sans);
      font-size: 0.65rem;
      font-weight: 400;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background 0.3s, color 0.3s;
      display: inline-block;
    }
    .btn-inquire:hover { background: var(--amber); color: var(--espresso); }

    /* ── WHY US ─────────────────────────────────────────── */
    #why {
      padding: 120px 0;
      background: var(--arabic-green);
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 7vw;
      align-items: start;
    }
    .why-left { position: sticky; top: 100px; }
    .why-left p {
      font-size: 0.9rem;
      line-height: 1.85;
      color: rgba(213,225,218,0.7);
      font-weight: 300;
      margin-top: 1.4rem;
    }
    .features-list { display: grid; gap: 1px; margin-top: 0.5rem; }
    .feature-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 1.4rem;
      padding: 1.8rem 2rem;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
    }
    .feature-item:hover { background: rgba(255,255,255,0.07); }
    .feature-icon {
      width: 56px; height: 56px;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(196,122,42,0.3);
      font-size: 1.5rem;
      flex-shrink: 0;
    }
    .feature-title {
      font-family: var(--ff-serif);
      font-size: 1.15rem;
      font-weight: 400;
      color: var(--parchment);
      margin-bottom: 0.4rem;
    }
    .feature-desc {
      font-size: 0.82rem;
      line-height: 1.75;
      color: rgba(213,225,218,0.65);
      font-weight: 300;
    }
    #why .section-title { color: var(--parchment); }

    /* ── PROCESS ────────────────────────────────────────── */
    #process {
      padding: 110px 0;
      background: var(--dark-roast);
    }
    .process-header { text-align: center; margin-bottom: 4rem; }
    .process-header .divider { margin: 1.5rem auto; }
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border: 1px solid rgba(196,122,42,0.15);
    }
    .step {
      padding: 2.4rem 1.8rem;
      border-right: 1px solid rgba(196,122,42,0.12);
      position: relative;
      transition: background 0.3s;
    }
    .step:last-child { border-right: none; }
    .step:hover { background: rgba(196,122,42,0.05); }
    .step-num {
      font-family: var(--ff-serif);
      font-size: 3.5rem;
      font-weight: 300;
      color: rgba(196,122,42,0.15);
      line-height: 1;
      margin-bottom: 1rem;
    }
    .step-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
    .step-title {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--parchment);
      margin-bottom: 0.6rem;
    }
    .step-desc {
      font-size: 0.78rem;
      line-height: 1.75;
      color: var(--sienna);
      font-weight: 300;
    }

    /* ── CTA BANNER ─────────────────────────────────────── */
    #cta-banner {
      padding: 100px 0;
      background: radial-gradient(ellipse 80% 100% at 50% 50%, #3d2410 0%, #1a1008 70%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta-banner .geo-bg { opacity: 0.7; }
    .cta-title {
      font-family: var(--ff-serif);
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 300;
      color: var(--parchment);
      margin-bottom: 1rem;
    }
    .cta-title em { font-style: italic; color: var(--gold); }
    .cta-sub {
      font-size: 0.9rem;
      color: var(--sand);
      font-weight: 300;
      letter-spacing: 0.08em;
      margin-bottom: 3rem;
      max-width: 480px;
      margin-left: auto; margin-right: auto;
    }
    .cta-channels {
      display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap;
      margin-bottom: 2rem;
    }
    .channel-btn {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 28px;
      border: 1px solid rgba(196,122,42,0.35);
      font-size: 0.75rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      font-weight: 400;
      color: var(--cream);
      transition: background 0.3s, border-color 0.3s;
    }
    .channel-btn:hover { background: rgba(196,122,42,0.12); border-color: var(--gold); }
    .channel-btn .ch-icon { font-size: 1.2rem; }
    .channel-btn.whatsapp { border-color: rgba(37,211,102,0.35); }
    .channel-btn.whatsapp:hover { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.6); color: #25d366; }
    .channel-btn.email:hover { color: var(--gold); }

    /* ── CONTACT ────────────────────────────────────────── */
    #contact {
      padding: 100px 0;
      background: var(--espresso);
      border-top: 1px solid rgba(196,122,42,0.1);
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6vw;
      align-items: start;
    }
    .contact-info p {
      font-size: 0.9rem;
      line-height: 1.85;
      color: var(--sand);
      font-weight: 300;
      margin-top: 1.2rem;
      margin-bottom: 2rem;
    }
    .contact-items { display: grid; gap: 1px; }
    .contact-item {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.2rem 1.4rem;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(196,122,42,0.1);
      transition: background 0.3s;
    }
    .contact-item:hover { background: rgba(196,122,42,0.05); }
    .ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    .ci-label { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber); margin-bottom: 3px; }
    .ci-value { font-size: 0.88rem; color: var(--cream); font-weight: 300; }
    .ci-value a { transition: color 0.3s; }
    .ci-value a:hover { color: var(--gold); }

    /* ── INQUIRY FORM ───────────────────────────────────── */
    .inquiry-form { display: grid; gap: 14px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .field-group { display: flex; flex-direction: column; gap: 6px; }
    .field-group label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber); }
    .field-group input,
    .field-group select,
    .field-group textarea {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(196,122,42,0.2);
      color: var(--cream);
      font-family: var(--ff-sans);
      font-size: 0.85rem;
      font-weight: 300;
      padding: 12px 14px;
      outline: none;
      transition: border-color 0.3s;
      width: 100%;
      -webkit-appearance: none;
      appearance: none;
    }
    .field-group select {
      cursor: pointer;
      background: rgba(255,255,255,0.08);
      color: var(--cream);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23c47a2a'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
    }
    .field-group input:focus,
    .field-group select:focus,
    .field-group textarea:focus { border-color: var(--amber); }
    .field-group input::placeholder,
    .field-group textarea::placeholder { color: var(--sienna); }
    .field-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      padding: 16px;
      background: var(--amber);
      color: var(--espresso);
      font-family: var(--ff-sans);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      border: none; cursor: pointer;
      transition: background 0.3s;
      width: 100%;
    }
    .form-submit:hover { background: var(--gold); }

    /* ── FOOTER ─────────────────────────────────────────── */
    footer {
      background: #0e0805;
      padding: 50px 0 28px;
      border-top: 1px solid rgba(196,122,42,0.12);
    }
    .footer-inner {
      max-width: 1200px; margin: 0 auto; padding: 0 6vw;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 4vw;
      padding-bottom: 2.5rem;
      border-bottom: 1px solid rgba(196,122,42,0.1);
      margin-bottom: 1.8rem;
    }
    .footer-brand .name {
      font-family: var(--ff-serif);
      font-size: 1.5rem;
      font-weight: 400;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .footer-brand .tagline {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sienna);
      margin-bottom: 1rem;
    }
    .footer-brand p {
      font-size: 0.82rem;
      line-height: 1.75;
      color: var(--sienna);
      font-weight: 300;
      max-width: 240px;
    }
    .footer-col h4 {
      font-size: 0.62rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--amber);
      margin-bottom: 1rem;
      font-weight: 400;
    }
    .footer-col ul { display: grid; gap: 0.5rem; }
    .footer-col ul li a {
      font-size: 0.82rem;
      color: var(--sienna);
      font-weight: 300;
      transition: color 0.3s;
    }
    .footer-col ul li a:hover { color: var(--sand); }
    .footer-bottom {
      display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
    }
    .footer-copy { font-size: 0.7rem; color: #3d2410; font-weight: 300; }
    .footer-domain { font-size: 0.7rem; color: var(--amber); letter-spacing: 0.1em; }

    /* ── WHATSAPP FLOAT ─────────────────────────────────── */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 99;
      width: 56px; height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }

    /* ── REVEAL ANIMATIONS ──────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s var(--ease-silk), transform 0.75s var(--ease-silk);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 900px) {
      .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; }
      .about-visual { display: none; }
      .products-grid { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr 1fr; }
      .step { border-bottom: 1px solid rgba(196,122,42,0.12); }
      .footer-top { grid-template-columns: 1fr; }
      .nav-links { display: none; }
      .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 10px;
        border: 1px solid rgba(245,239,224,0.18);
        background: rgba(255,255,255,0.05);
        color: var(--cream);
        cursor: pointer;
      }
      .nav-toggle span,
      .nav-toggle span::before,
      .nav-toggle span::after {
        content: '';
        display: block;
        width: 20px;
        height: 2px;
        background: currentColor;
        border-radius: 1px;
        position: relative;
        transition: transform 0.25s ease, opacity 0.25s ease;
      }
      .nav-toggle span::before {
        position: absolute;
        top: -6px;
      }
      .nav-toggle span::after {
        position: absolute;
        top: 6px;
      }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px 24px;
        background: rgba(26,16,8,0.98);
        border-bottom: 1px solid rgba(196,122,42,0.15);
        z-index: 99;
      }
      .nav-links.open li {
        width: 100%;
      }
      .nav-links.open a {
        display: block;
        width: 100%;
        padding: 14px 0;
        text-align: center;
      }
      .nav-toggle.open span {
        transform: rotate(45deg);
      }
      .nav-toggle.open span::before {
        transform: rotate(90deg);
        top: 0;
      }
      .nav-toggle.open span::after {
        opacity: 0;
      }
    }
    @media (max-width: 600px) {
      .about-stats { grid-template-columns: 1fr; }
      .steps { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
    }

    /* ── TRACEABILITY PAGE ──────────────────────────────────── */
    body.traceability {
      background: var(--espresso);
      color: var(--cream);
      font-family: var(--ff-sans);
      overflow-x: hidden;
    }
    body.traceability .hero {
      display: block;
      min-height: auto;
      padding: 80px 6vw 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    body.traceability .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 55% at 50% 40%, rgba(224,168,75,0.07) 0%, transparent 70%);
      pointer-events: none;
    }
    body.traceability .hero-eyebrow {
      display: inline-block;
      font-size: 10px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      border: 0.5px solid rgba(224,168,75,0.35);
      border-radius: 20px;
      padding: 5px 16px;
      margin-bottom: 24px;
    }
    body.traceability .hero h1 {
      font-family: var(--ff-serif);
      font-size: clamp(32px, 5vw, 52px);
      font-weight: normal;
      font-style: italic;
      line-height: 1.15;
      color: var(--cream);
      margin-bottom: 20px;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
    }
    body.traceability .hero h1 em {
      color: var(--gold);
      font-style: normal;
    }
    body.traceability .hero-sub {
      font-size: 14px;
      color: rgba(245,239,224,0.50);
      max-width: 480px;
      margin: 0 auto 40px;
      line-height: 1.75;
    }
    body.traceability .lookup-wrap {
      max-width: 500px;
      margin: 0 auto;
    }
    body.traceability .lookup-label {
      font-size: 11px;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      color: rgba(245,239,224,0.50);
      margin-bottom: 10px;
    }
    body.traceability .lookup-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    body.traceability .lookup-row input {
      flex: 1 1 220px;
      min-width: 0;
      background: rgba(245,239,224,0.08);
      border: 0.5px solid rgba(224,168,75,0.35);
      border-radius: 6px;
      padding: 12px 16px;
      color: var(--cream);
      font-family: 'Courier New', monospace;
      font-size: 13px;
      outline: none;
      transition: border-color 0.2s;
    }
    body.traceability .lookup-row input::placeholder {
      color: rgba(245,239,224,0.22);
    }
    body.traceability .lookup-row input:focus {
      border-color: var(--gold);
    }
    body.traceability .btn-gold {
      background: var(--gold);
      border: none;
      border-radius: 6px;
      padding: 12px 22px;
      color: var(--espresso);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    body.traceability .btn-gold:hover { opacity: 0.88; }
    body.traceability .btn-gold:active { transform: scale(0.97); }
    body.traceability .lookup-hint {
      margin-top: 10px;
      font-size: 11px;
      color: rgba(245,239,224,0.22);
    }
    body.traceability .lookup-hint button {
      background: none;
      border: none;
      color: var(--gold);
      font-size: 11px;
      cursor: pointer;
      text-decoration: underline;
      padding: 0;
    }
    body.traceability .divider {
      height: 0.5px;
      background: rgba(224,168,75,0.2);
      margin: 0 32px;
    }
    body.traceability .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-bottom: 0.5px solid rgba(224,168,75,0.2);
      padding: 0 6vw;
    }
    body.traceability .stat-cell {
      padding: 28px 32px;
      border-right: 0.5px solid rgba(224,168,75,0.2);
      text-align: center;
    }
    body.traceability .stat-cell:last-child { border-right: none; }
    body.traceability .stat-num {
      font-family: var(--ff-serif);
      font-size: 26px;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 6px;
    }
    body.traceability .stat-lbl {
      font-size: 11px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(245,239,224,0.50);
    }
    body.traceability .section { padding: 64px 6vw; }
    body.traceability .section-header {
      display: flex;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 48px;
    }
    body.traceability .section-eyebrow {
      font-size: 10px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
    }
    body.traceability .section-rule {
      flex: 1;
      height: 0.5px;
      background: rgba(224,168,75,0.2);
    }
    body.traceability .section h2 {
      font-family: var(--ff-serif);
      font-size: 28px;
      font-weight: normal;
      color: var(--cream);
      margin-bottom: 12px;
    }
    body.traceability .section-desc {
      font-size: 14px;
      color: rgba(245,239,224,0.50);
      max-width: 520px;
      line-height: 1.75;
    }
    body.traceability #lot-result {
      display: none;
      max-width: 600px;
      margin: 32px auto 0;
      background: #231508;
      border: 0.5px solid rgba(224,168,75,0.35);
      border-radius: 10px;
      overflow: hidden;
    }
    body.traceability .lot-result-header {
      background: #2e1c0c;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 0.5px solid rgba(224,168,75,0.2);
    }
    body.traceability .lot-id {
      font-family: 'Courier New', monospace;
      font-size: 14px;
      color: var(--gold);
      font-weight: 700;
    }
    body.traceability .lot-status {
      font-size: 11px;
      padding: 3px 12px;
      border-radius: 20px;
      border: 0.5px solid;
    }
    body.traceability .status-transit {
      color: #c9a84c;
      border-color: rgba(224,168,75,0.4);
      background: rgba(224,168,75,0.1);
    }
    body.traceability .lot-result-body { padding: 20px; }
    body.traceability .lot-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
      padding: 8px 0;
      border-bottom: 0.5px solid rgba(245,239,224,0.07);
      font-size: 13px;
      flex-wrap: wrap;
    }
    body.traceability .lot-row:last-child { border-bottom: none; }
    body.traceability .lot-row-value {
      min-width: 160px;
      flex: 1 1 140px;
      text-align: right;
    }
    body.traceability .lot-row-label { color: rgba(245,239,224,0.50); }
    body.traceability .lot-row-value { color: var(--cream); font-weight: 500; }
    body.traceability .lot-row-value.gold { color: var(--gold); }
    body.traceability .journey { position: relative; max-width: 660px; margin: 0 auto; }
    body.traceability .journey-spine {
      position: absolute;
      left: 21px;
      top: 28px;
      bottom: 28px;
      width: 1px;
      background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 65%, rgba(224,168,75,0.2) 65%, rgba(224,168,75,0.2) 100%);
    }
    body.traceability .j-step {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      margin-bottom: 36px;
      position: relative;
    }
    @media (max-width: 720px) {
      body.traceability .j-step {
        flex-direction: column;
        gap: 14px;
      }
      body.traceability .journey-spine {
        left: 14px;
      }
    }
    body.traceability .j-step:last-child { margin-bottom: 0; }
    body.traceability .j-dot {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      font-size: 16px;
    }
    body.traceability .j-dot-done {
      background: var(--gold);
      color: var(--espresso);
    }
    body.traceability .j-dot-active {
      background: #231508;
      border: 1.5px solid var(--gold);
      color: var(--gold);
      box-shadow: 0 0 0 4px rgba(224,168,75,0.12);
    }
    body.traceability .j-dot-pending {
      background: #231508;
      border: 0.5px solid rgba(245,239,224,0.22);
      color: rgba(245,239,224,0.22);
    }
    body.traceability .j-body { padding-top: 8px; flex: 1; }
    body.traceability .j-title {
      font-size: 15px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 3px;
    }
    body.traceability .j-title.muted { color: rgba(245,239,224,0.50); font-weight: 400; }
    body.traceability .j-meta {
      font-size: 12px;
      color: rgba(245,239,224,0.50);
      margin-bottom: 10px;
    }
    body.traceability .j-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    body.traceability .chip {
      font-size: 11px;
      padding: 3px 10px;
      border-radius: 20px;
      border: 0.5px solid;
    }
    body.traceability .chip-gold {
      color: var(--gold);
      border-color: rgba(224,168,75,0.35);
      background: rgba(224,168,75,0.08);
    }
    body.traceability .chip-dim {
      color: rgba(245,239,224,0.50);
      border-color: rgba(245,239,224,0.22);
      background: transparent;
    }
    body.traceability .cert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 12px;
    }
    body.traceability .cert-card {
      background: #231508;
      border: 0.5px solid rgba(224,168,75,0.2);
      border-radius: 8px;
      padding: 20px 16px;
      text-align: center;
      transition: border-color 0.2s;
    }
    body.traceability .cert-card:hover { border-color: rgba(224,168,75,0.35); }
    body.traceability .cert-icon { font-size: 28px; margin-bottom: 10px; }
    body.traceability .cert-name {
      font-size: 13px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 4px;
    }
    body.traceability .cert-sub {
      font-size: 11px;
      color: rgba(245,239,224,0.50);
      margin-bottom: 10px;
    }
    body.traceability .cert-badge {
      display: inline-block;
      font-size: 10px;
      padding: 2px 10px;
      border-radius: 20px;
      border: 0.5px solid rgba(224,168,75,0.4);
      color: var(--gold);
      background: rgba(224,168,75,0.08);
    }
    body.traceability .cert-badge.pending {
      border-color: rgba(245,239,224,0.22);
      color: rgba(245,239,224,0.50);
      background: transparent;
    }
    body.traceability .qr-section {
      background: #231508;
      border-top: 0.5px solid rgba(224,168,75,0.2);
      border-bottom: 0.5px solid rgba(224,168,75,0.2);
    }
    body.traceability .qr-inner {
      max-width: 720px;
      margin: 0 auto;
      padding: 64px 32px;
      display: flex;
      gap: 48px;
      align-items: center;
    }
    body.traceability .qr-art { flex-shrink: 0; }
    body.traceability .qr-svg-wrap {
      width: 100px;
      height: 100px;
      background: var(--cream);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
    }
    body.traceability .qr-text h3 {
      font-family: var(--ff-serif);
      font-size: 22px;
      font-weight: normal;
      color: var(--cream);
      margin-bottom: 10px;
    }
    body.traceability .qr-text p {
      font-size: 13px;
      color: rgba(245,239,224,0.50);
      line-height: 1.75;
      max-width: 420px;
      margin-bottom: 20px;
    }
    body.traceability .btn-ghost {
      background: transparent;
      border: 0.5px solid rgba(224,168,75,0.35);
      border-radius: 6px;
      padding: 10px 20px;
      color: var(--gold);
      font-size: 12px;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: background 0.2s;
    }
    body.traceability .btn-ghost:hover { background: rgba(224,168,75,0.08); }
    body.traceability .process-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 16px;
    }
    body.traceability .process-card {
      background: #231508;
      border: 0.5px solid rgba(224,168,75,0.2);
      border-radius: 8px;
      padding: 24px 20px;
    }
    body.traceability .process-num {
      font-family: var(--ff-serif);
      font-size: 11px;
      letter-spacing: 2px;
      color: var(--gold);
      margin-bottom: 10px;
    }
    body.traceability .process-card h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--cream);
      margin-bottom: 8px;
    }
    body.traceability .process-card p {
      font-size: 12px;
      color: rgba(245,239,224,0.50);
      line-height: 1.7;
    }
    body.traceability .process-spec {
      margin-top: 12px;
      padding-top: 12px;
      border-top: 0.5px solid rgba(224,168,75,0.2);
      font-size: 11px;
      color: var(--gold);
    }
    body.traceability .cta-section {
      padding: 80px 6vw;
      text-align: center;
    }
    body.traceability .cta-section h2 {
      font-family: var(--ff-serif);
      font-size: 32px;
      font-weight: normal;
      font-style: italic;
      color: var(--cream);
      margin-bottom: 14px;
    }
    body.traceability .cta-section p {
      font-size: 14px;
      color: rgba(245,239,224,0.50);
      max-width: 440px;
      margin: 0 auto 32px;
      line-height: 1.75;
    }
    body.traceability .cta-buttons {
      display: flex;
      gap: 12px;
      justify-content: center;
      flex-wrap: wrap;
    }
    body.traceability .btn-wa {
      background: #25d366;
      border: none;
      border-radius: 6px;
      padding: 13px 24px;
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    body.traceability .btn-wa:hover { opacity: 0.88; }
    body.traceability footer {
      border-top: 0.5px solid rgba(224,168,75,0.2);
      padding: 24px 6vw;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    body.traceability .footer-logo {
      font-family: var(--ff-serif);
      font-size: 14px;
      letter-spacing: 2px;
      color: var(--gold);
      opacity: 0.7;
    }
    body.traceability .footer-copy {
      font-size: 11px;
      color: rgba(245,239,224,0.22);
    }
    @media (max-width: 640px) {
      body.traceability nav { padding: 0 20px; }
      body.traceability .nav-links { gap: 16px; }
      body.traceability .hero { padding: 90px 20px 52px; }
      body.traceability .hero .lookup-row { flex-wrap: wrap; gap: 8px; }
      body.traceability .hero .lookup-row button { width: 100%; }
      body.traceability .section { padding: 48px 20px; }
      body.traceability .stat-strip { grid-template-columns: 1fr; }
      body.traceability .stat-cell { border-right: none; border-bottom: 0.5px solid rgba(224,168,75,0.2); }
      body.traceability .stat-cell:last-child { border-bottom: none; }
      body.traceability .qr-inner { flex-direction: column; gap: 28px; padding: 48px 20px; }
      body.traceability .cta-section { padding: 60px 20px; }
      body.traceability footer { flex-direction: column; gap: 8px; text-align: center; }
      body.traceability .divider { margin: 0 20px; }
    }
