:root{
    --ivory:#FFFFFF;
    --ink:#111111;
    --brass:#111111;
    --brass-soft:#FFFFFF;
    --bordeaux:#111111;
    --sand:#F4F4F2;
    --line: rgba(17,17,17,0.12);
    --maxw: 1180px;
  }

  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--ivory);
    color:var(--ink);
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ::selection{background:var(--brass); color:var(--ivory);}
  a:focus-visible, button:focus-visible{
    outline:2px solid var(--bordeaux);
    outline-offset:3px;
  }

  .wrap{max-width:var(--maxw); margin:0 auto; padding:0 32px;}

  .eyebrow{
    font-family:'Inter',sans-serif;
    font-size:12px;
    letter-spacing:.28em;
    text-transform:uppercase;
    color:var(--bordeaux);
    font-weight:600;
  }

  h1,h2,h3{
    font-family:'Inter',sans-serif;
    font-weight:400;
    letter-spacing:-0.01em;
    line-height:1.15;
  }
  h1 em, h2 em, h3 em{font-style:normal; font-weight:500; color:var(--bordeaux);}

  /* ---------- NAV ---------- */
  .promo-bar{
    background:var(--ink); border-bottom:1px solid var(--ink);
    padding:10px 0; overflow:hidden; white-space:nowrap;
  }
  .promo-track{
    display:inline-flex; align-items:center; width:max-content;
    animation:promo-scroll 26s linear infinite;
  }
  .promo-item{
    display:inline;
    font-size:12px; letter-spacing:.05em; text-transform:uppercase;
    color:rgba(255,255,255,0.85); font-weight:500;
    white-space:nowrap;
  }
  .promo-dot{
    color:var(--brass-soft); margin:0 28px; font-size:12px;
  }
  .promo-item b{color:#fff; font-weight:inherit;}
  @keyframes promo-scroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  @media (prefers-reduced-motion:reduce){
    .promo-track{animation:none;}
    .promo-bar{overflow-x:auto;}
  }
  header{
    position:relative; z-index:100;
    background:var(--ivory);
    border-bottom:1px solid var(--line);
  }
  nav{
    max-width:var(--maxw); margin:0 auto; padding:18px 32px;
    display:flex; align-items:center; justify-content:space-between;
  }
  .logo{
    display:flex; align-items:center;
  }
  .logo img{height:38px; width:auto; display:block;}
  .navlinks{display:flex; gap:38px; align-items:center;}
  .navlinks a{font-size:13px; letter-spacing:.05em; text-transform:uppercase; font-weight:500; position:relative; padding-bottom:4px;}
  .navlinks a::after{
    content:""; position:absolute; left:0; bottom:0; height:1px; width:0;
    background:var(--bordeaux); transition:width .35s ease;
  }
  .navlinks a:hover::after{width:100%;}
  .nav-cta{
    border:1px solid var(--ink); padding:10px 22px; font-size:12px;
    letter-spacing:.08em; text-transform:uppercase; font-weight:600;
    transition:.3s ease;
  }
  .nav-cta:hover{background:var(--ink); color:var(--ivory);}
  .navlinks-mobile{display:none;}

  @media (max-width:860px){
    .navlinks a:not(.nav-cta){display:none;}
    .nav-cta{padding:9px 16px; font-size:11px;}
  }

  /* ---------- TICKET / SIGNATURE MOTIF ---------- */
  .ticket{
    position:relative;
    background:var(--ivory);
    border-top:1px dashed var(--line);
    border-bottom:1px dashed var(--line);
    padding:26px 22px;
  }
  .ticket::before, .ticket::after{
    content:""; position:absolute; width:14px; height:14px; border-radius:50%;
    background:var(--sand); left:-7px;
  }
  .ticket::before{top:-8px;}
  .ticket::after{bottom:-8px;}

  .tag{
    display:inline-flex; align-items:center; gap:8px;
    font-size:11px; letter-spacing:.14em; text-transform:uppercase;
    color:var(--brass); font-weight:600;
  }
  .tag::before{content:""; width:16px; height:1px; background:var(--brass);}

  .btn-primary{
    background:var(--bordeaux); color:var(--ivory);
    padding:16px 34px; font-size:13px; letter-spacing:.08em; text-transform:uppercase;
    font-weight:600; display:inline-block; transition:.35s ease; border:1px solid var(--bordeaux);
  }
  .btn-primary:hover{background:transparent; color:var(--bordeaux);}

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    height:74vh; min-height:520px; max-height:760px;
    display:flex; align-items:center;
    overflow:hidden;
  }
  .hero-media{position:absolute; inset:0; z-index:0;}
  .hero-media img{width:100%; height:100%; object-fit:cover; object-position:center center;}
  .hero-scrim{
    position:absolute; inset:0;
    background:linear-gradient(100deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.42) 30%, rgba(17,17,17,0.08) 55%, transparent 72%);
  }
  .hero.hero--right .hero-scrim{
    background:linear-gradient(260deg, rgba(17,17,17,0.72) 0%, rgba(17,17,17,0.42) 30%, rgba(17,17,17,0.08) 55%, transparent 72%);
  }
  .hero-overlay{
    position:relative; z-index:1; width:100%;
    max-width:var(--maxw); margin:0 auto;
    padding:36px 32px;
  }
  .hero.hero--right .hero-overlay{display:flex; justify-content:flex-end;}
  .hero.hero--right .hero-text{text-align:right;}
  .hero.hero--right .hero-cta-row{justify-content:flex-end;}
  .hero-text{max-width:560px; color:#fff;}
  .hero-text .eyebrow{color:var(--brass-soft); margin-bottom:20px; display:block;}
  .hero-text h1{
    color:#fff; font-size:clamp(32px,4.2vw,52px);
    font-weight:400; letter-spacing:0; line-height:1.22;
    margin-bottom:22px;
  }
  .hero-text h1 em{color:var(--brass-soft); font-weight:500; font-style:normal;}
  .hero-msgs{position:relative; margin-bottom:32px; min-height:auto;}
  .hero-msg{display:none; margin-bottom:0;}
  .hero-msg.is-active{display:block;}
  .hero-cta-row{display:flex; align-items:center; gap:20px; flex-wrap:wrap;}
  .hero-link{
    color:#fff; font-size:14px; letter-spacing:.02em; font-weight:600;
    border-bottom:1px solid rgba(255,255,255,0.75); padding-bottom:4px;
    display:inline-flex; align-items:center; gap:6px; transition:opacity .25s ease;
  }
  .hero-link:hover{opacity:.75;}
  .hero-link.primary{color:var(--brass-soft); border-bottom-color:var(--brass-soft);}
  .hero-arrow-btn{
    width:38px; height:38px; border-radius:50%;
    border:1px solid rgba(255,255,255,0.55); background:transparent;
    color:#fff; font-size:18px; line-height:1; cursor:pointer;
    display:inline-flex; align-items:center; justify-content:center;
    transition:.2s ease; margin-left:8px;
  }
  .hero-arrow-btn:hover{background:#fff; color:var(--ink);}

  @media (max-width:700px){
    .hero{height:64vh; min-height:380px; max-height:560px; padding:0;}
    .hero-scrim{background:linear-gradient(180deg, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.55) 70%, rgba(17,17,17,0.72) 100%);}
    .hero.hero--right .hero-scrim{background:linear-gradient(180deg, rgba(17,17,17,0.25) 0%, rgba(17,17,17,0.55) 70%, rgba(17,17,17,0.72) 100%);}
    .hero-overlay{padding:0 24px;}
    .hero.hero--right .hero-overlay{justify-content:flex-start;}
    .hero.hero--right .hero-text{text-align:left;}
    .hero.hero--right .hero-cta-row{justify-content:flex-start;}
    .hero-text{max-width:100%;}
  }

  /* ---------- STATEMENT ---------- */
  .statement{
    padding:34px 0; text-align:center;
    border-top:1px solid var(--line); border-bottom:1px solid var(--line);
  }
  .statement p.tagline{
    font-family:'Inter',sans-serif; font-style:normal; font-weight:500; font-size:19px; color:var(--ink);
  }

  /* ---------- HOW IT WORKS ---------- */
  .section{padding:48px 0;}
  .section-head{
    display:flex; justify-content:space-between; align-items:flex-end;
    margin-bottom:32px; gap:30px; flex-wrap:wrap;
  }
  .section-head h2{font-size:clamp(24px,2.8vw,34px); max-width:520px;}
  .section-head p{max-width:340px; color:rgba(24,20,15,0.65); font-size:15px;}

  /* ---------- PROCESS (horizontal, monochrome) ---------- */
  .process-wrap{position:relative; margin-top:6px;}
  .process-line-track{position:absolute; top:4px; left:0; height:1px; width:calc(75% + 12px);}
  .process-line-base{position:absolute; inset:0; background:#E4E4E4;}
  .process-line-fill{position:absolute; top:0; left:0; height:100%; background:#000; width:0%; transition:width .7s ease;}
  .process-grid{position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:16px;}
  .process-step{position:relative; padding:28px 20px 0 0; transition:transform .3s ease;}
  .process-step:hover{transform:translateY(-3px);}
  .process-node{
    position:absolute; top:0; left:0; width:9px; height:9px; border-radius:50%;
    background:#fff; border:1px solid #D4D4D4;
    transition:background .35s ease, border-color .35s ease;
  }
  .process-step.is-active .process-node{background:#000; border-color:#000;}
  .process-icon{
    width:32px; height:32px; margin-bottom:20px; color:#000; opacity:.55;
    transition:opacity .3s ease, transform .3s ease;
  }
  .process-step.is-active .process-icon{opacity:1;}
  .process-step:hover .process-icon{transform:scale(1.08);}
  .process-icon svg{width:100%; height:100%;}
  .process-num{
    display:block; font-size:30px; font-weight:500; margin-bottom:16px; opacity:.35;
    transition:opacity .35s ease; font-variant-numeric:tabular-nums;
  }
  .process-step.is-active .process-num{opacity:1;}
  .process-step h3{font-size:18px; margin-bottom:10px; font-weight:500;}
  .process-step p{font-size:14.5px; font-weight:300; color:#666666; line-height:1.6; max-width:230px;}
  .process-cta{display:flex; justify-content:center; margin-top:52px;}
  .process-cta-btn{
    background:#000; color:#fff; font-weight:500; font-size:13px; letter-spacing:.03em;
    padding:14px 32px; border-radius:999px; border:none; cursor:pointer;
    transition:background .25s ease, transform .25s ease; display:inline-block;
  }
  .process-cta-btn:hover{background:#222; transform:scale(1.03);}

  @media (max-width:700px){
    .process-line-track{width:calc(75% + 6px);}
    .process-grid{gap:8px;}
    .process-step{padding:20px 4px 0 0;}
    .process-icon{width:20px; height:20px; margin-bottom:10px;}
    .process-num{font-size:18px; margin-bottom:6px;}
    .process-step h3{font-size:12px; margin-bottom:4px; line-height:1.25;}
    .process-step p{font-size:11px; line-height:1.4;}
    .process-cta{margin-top:36px;}
  }

  /* ---------- BRANDS (static) ---------- */
  .brands-band{
    background:var(--ink); color:var(--ivory); padding:36px 0 40px;
  }
  .brands-head{ text-align:center; margin-bottom:22px;}
  .brands-head .eyebrow{color:var(--brass-soft);}
  .brands-head h2{
    color:var(--ivory); font-size:clamp(24px,2.8vw,34px); margin-top:14px;
  }
  .brands-head p{color:rgba(255,255,255,0.55); font-size:15px; margin-top:12px;}

  .brands-grid{
    max-width:1240px; margin:0 auto;
    padding:0 20px;
  }
  @media (max-width:700px){
    .brands-grid{padding:0 16px;}
  }

  /* ---------- CATALOG ---------- */
  .catalog-scroll{
    display:grid; grid-template-columns:repeat(5, 1fr); gap:20px; padding:10px 0 10px;
  }
  .bag-card{ background:transparent; }
  .bag-card .img-holder{aspect-ratio:1/1; overflow:hidden; background:#e2d8c2; position:relative;}
  .bag-card img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
  .bag-card:hover img{transform:scale(1.05);}
  .bag-like{
    position:absolute; top:14px; right:14px; z-index:2;
    display:flex; align-items:center; gap:5px;
    font-size:13px; color:var(--ink);
  }
  .bag-like svg{width:19px; height:19px; stroke:var(--ink); fill:none; stroke-width:1.6;}
  .bag-ticket{padding:14px 2px 0;}
  .bag-name{font-family:'Inter',sans-serif; font-weight:700; font-size:16px; line-height:1.3; min-height:2.6em;}
  .bag-price{font-family:'Inter',sans-serif; font-weight:500; font-size:14px; line-height:1.3; color:#6b6b6b; margin-top:4px;}
  .bag-card img.img-shrink{width:88%; height:88%; margin:6% auto; display:block; object-fit:cover;}

  @media (max-width:1100px){
    .catalog-scroll{grid-template-columns:repeat(3, 1fr);}
  }
  @media (max-width:700px){
    .catalog-scroll{grid-template-columns:repeat(2, 1fr); gap:14px;}
    .bag-name{font-size:14px; min-height:2.6em;}
    .bag-price{font-size:13px;}
  }

  /* ---------- WHY ---------- */
  .why-section{background:var(--ink); padding:40px 0 36px;}
  .why-section .section-head{margin-bottom:20px; text-align:center; flex-direction:column; align-items:center; justify-content:center;}
  .why-section .section-head h2{color:var(--ivory); max-width:560px; margin:0 auto;}
  .why-section .section-head p{color:rgba(255,255,255,0.55); max-width:480px; margin:10px auto 0;}
  .why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,0.12);}
  .why-item{
    background:var(--ink); padding:20px 24px;
    display:flex; flex-direction:column; align-items:center; text-align:center;
    transition:box-shadow .35s ease;
  }
  .why-item:hover{box-shadow:inset 0 0 30px rgba(255,255,255,0.05);}
  .why-item .why-icon{
    width:22px; height:22px; margin-bottom:12px; color:#fff;
    transition:transform .3s ease;
  }
  .why-item:hover .why-icon{transform:translateY(-3px);}
  .why-item .why-icon svg{width:100%; height:100%;}
  .why-item h3{font-size:14px; font-weight:500; max-width:220px; color:var(--ivory); margin-bottom:6px;}
  .why-item p{font-size:12.5px; font-weight:300; color:rgba(255,255,255,0.55); max-width:220px; line-height:1.5;}
  @media (max-width:760px){
    .why-grid{grid-template-columns:1fr;}
  }

  /* ---------- TESTIMONIALS ---------- */
  .testimonials{background:#F4F4F4; padding:56px 0;}
  .test-grid{display:grid; grid-template-columns:repeat(3,1fr);}
  .test-card{position:relative; padding:0 14px; transition:opacity .35s ease;}
  .test-card:not(:first-child){border-left:1px solid rgba(0,0,0,0.1); padding-left:14px;}
  .test-quote-mark{
    position:absolute; top:-14px; left:14px; font-family:Georgia,'Times New Roman',serif;
    font-size:clamp(40px,7vw,72px); line-height:1; color:#E5E5E5; z-index:0; user-select:none; pointer-events:none;
  }
  .test-card:not(:first-child) .test-quote-mark{left:28px;}
  .test-stars{position:relative; z-index:1; display:flex; gap:2px; color:rgba(0,0,0,0.7); margin-bottom:8px;}
  .test-stars svg{width:10px; height:10px;}
  .test-card q{
    position:relative; z-index:1; display:block;
    font-family:'Inter',sans-serif; font-style:normal; font-weight:500;
    font-size:12px; line-height:1.5; margin-bottom:8px; quotes:none; color:#000;
  }
  .test-name{position:relative; z-index:1; font-size:9px; letter-spacing:.08em; text-transform:uppercase; color:#555555; font-weight:600;}
  .testimonials.reveal-hover .test-card{transition:opacity .35s ease;}

  @media (min-width:700px){
    .test-card{padding:0 32px;}
    .test-card:not(:first-child){padding-left:32px;}
    .test-quote-mark{left:32px;}
    .test-card:not(:first-child) .test-quote-mark{left:64px;}
    .test-stars svg{width:13px; height:13px;}
    .test-card q{font-size:17px; margin-bottom:24px;}
    .test-name{font-size:12px;}
  }

  /* ---------- FINAL CTA ---------- */
  .final-cta{
    background:var(--ink); color:var(--ivory); text-align:center;
    padding:70px 0; position:relative; overflow:hidden;
    min-height:340px; display:flex; align-items:center;
  }
  .final-cta-bg{
    position:absolute; inset:0; z-index:0;
  }
  .final-cta-bg img{width:100%; height:100%; object-fit:cover; opacity:0.55;}
  .final-cta::before{
    content:""; position:absolute; inset:0; z-index:0;
    background:linear-gradient(180deg, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.55) 50%, rgba(17,17,17,0.8) 100%);
  }
  .final-cta .wrap{position:relative; z-index:1;}
  .final-cta .eyebrow{font-size:11px; letter-spacing:.22em;}
  .final-cta h2{
    font-size:clamp(26px,3.4vw,40px); font-weight:400; letter-spacing:0;
    position:relative; margin-bottom:14px;
  }
  .final-cta h2 em{font-weight:500;}
  .final-cta p{color:rgba(250,247,241,0.68); max-width:440px; margin:0 auto 26px; position:relative; font-size:14.5px;}
  .final-cta .btn-primary{
    position:relative; background:var(--ivory); border-color:var(--ivory); color:var(--ink);
    padding:13px 28px; font-size:12px;
  }
  .final-cta .btn-primary:hover{background:transparent; color:var(--ivory); border-color:var(--ivory);}

  /* ---------- FOOTER ---------- */
  footer{padding:50px 0 40px; border-top:1px solid var(--line);}
  .foot-row{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:20px;}
  .foot-row .logo img{height:30px;}
  .foot-links{display:flex; gap:28px; font-size:13px; color:rgba(24,20,15,0.6);}
  .foot-fine{font-size:12px; color:rgba(24,20,15,0.45); margin-top:24px;}

  /* ---------- WHATSAPP FLOAT ---------- */
  .wa-float{
    position:fixed; bottom:26px; right:26px; z-index:200;
    width:58px; height:58px; border-radius:50%;
    background:#25D366; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 24px rgba(24,20,15,0.28);
    transition:transform .3s ease;
  }
  .wa-float:hover{transform:scale(1.06);}
  .wa-float svg{width:28px; height:28px;}

  /* ---------- REVEAL ---------- */
  .reveal{opacity:0; transform:translateY(24px); transition:opacity .8s ease, transform .8s ease;}
  .reveal.in{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion:reduce){
    .reveal{opacity:1; transform:none; transition:none;}
  }