@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@400;500;600;700&display=swap');

  @font-face {
    font-family: 'Crude';
    src: url('assets/fonts/CRUDE.OTF') format('opentype');
    font-weight: normal;
    font-style: normal;
  }

  :root{
    --hero-photo: url('assets/images/hero.jpg');
    --bg:#0a0908;
    --bg-panel:#0f0e0c;
    --orange:#ff5e0f;
    --orange-dim:#c94a0c;
    --cream:#f4efe8;
    --grey:#a39c93;
    --line:#26221d;
  }

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

  html{ scroll-behavior:smooth; }

  @keyframes fadeSlideUp{
    from{ opacity:0; transform:translateY(24px); }
    to{ opacity:1; transform:translateY(0); }
  }
  @keyframes fadeIn{
    from{ opacity:0; }
    to{ opacity:1; }
  }
  @keyframes revealLine{
    from{ transform:translateY(110%); }
    to{ transform:translateY(0); }
  }
  @keyframes heroZoom{
    from{ transform:scale(1.08); }
    to{ transform:scale(1); }
  }
  @keyframes popIcon{
    from{ opacity:0; transform:translateY(14px) scale(0.7); }
    to{ opacity:1; transform:translateY(0) scale(1); }
  }

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

  h1,h2,h3, .logo-word{
    font-family:'Archivo Black', sans-serif;
    text-transform:uppercase;
    letter-spacing:0.5px;
  }

  a{ color:inherit; text-decoration:none; }

  /* ---------- NAV ---------- */
  header{
    position:sticky; top:0; z-index:50;
    display:flex; align-items:center; justify-content:space-between;
    padding:22px 5vw;
    background:rgba(10,9,8,0.85);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }

  .logo{ display:flex; align-items:center; gap:10px;
    opacity:0; animation:fadeSlideUp .7s ease forwards; animation-delay:.1s;
  }
  .logo-mark{
    width:40px; height:40px;
    position:relative; flex-shrink:0;
    display:flex; align-items:center; justify-content:center;
  }
  .logo-mark span{
    font-family:'Crude', 'Archivo Black', sans-serif;
    font-size:34px; line-height:1;
    color:var(--orange);
  }

  nav.links{ display:flex; gap:44px;
    opacity:0; animation:fadeSlideUp .7s ease forwards; animation-delay:.25s;
  }
  nav.links a{
    font-size:13px; font-weight:600; letter-spacing:1.5px;
    color:var(--cream); opacity:0.75; transition:opacity .25s, color .25s;
    position:relative;
  }
  nav.links a:hover{ opacity:1; color:var(--orange); }
  nav.links a.active{ opacity:1; color:var(--orange); }

  .cta-btn{
    border:1.5px solid var(--orange);
    color:var(--orange);
    padding:12px 24px;
    border-radius:999px;
    font-size:13px; font-weight:700; letter-spacing:1px;
    display:inline-flex; align-items:center; gap:8px;
    transition:background .25s, color .25s, transform .2s;
    white-space:nowrap;
  }
  .cta-btn:hover{ background:var(--orange); color:#0a0908; transform:translateY(-2px); }
  .cta-btn.solid{ background:var(--orange); color:#0a0908; }
  .cta-btn.solid:hover{ background:transparent; color:var(--orange); }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    padding:130px 5vw 110px;
    display:flex;
    align-items:center;
    min-height:680px;
    overflow:hidden;
    border-bottom:1px solid var(--line);
  }

  .hero::before{
    content:'';
    position:absolute; inset:0; z-index:0;
    background:
      linear-gradient(90deg, rgba(6,5,4,0.94) 0%, rgba(6,5,4,0.78) 32%, rgba(6,5,4,0.35) 60%, rgba(6,5,4,0.15) 100%),
      var(--hero-photo) center 38% / cover no-repeat;
    transform:scale(1.08);
    animation:heroZoom 8s ease-out forwards;
  }

  .hero-copy{ position:relative; z-index:2; max-width:560px; }

  .hero h1{
    font-size:clamp(40px, 5.2vw, 68px);
    line-height:1.02;
    margin:18px 0 24px;
  }
  .hero h1 .accent{ color:var(--orange); }

  .reveal-line{ display:block; overflow:hidden; }
  .reveal-line span{
    display:inline-block;
    transform:translateY(110%);
    animation:revealLine .8s cubic-bezier(.19,1,.22,1) forwards;
  }
  .reveal-line:nth-of-type(1) span{ animation-delay:.35s; }
  .reveal-line:nth-of-type(2) span{ animation-delay:.5s; }

  .hero p.sub{
    font-size:17px; line-height:1.6; color:var(--grey);
    max-width:440px; margin-bottom:36px;
    opacity:0; animation:fadeSlideUp .8s ease forwards; animation-delay:.85s;
  }

  .socials-row{
    display:flex; align-items:center; gap:22px; flex-wrap:wrap;
    opacity:0; animation:fadeIn .6s ease forwards; animation-delay:1.05s;
  }
  .socials{ display:flex; gap:16px; }
  .socials a{
    width:42px; height:42px; border-radius:50%;
    border:1px solid rgba(244,239,232,0.25);
    background:rgba(10,9,8,0.35);
    backdrop-filter:blur(4px);
    display:flex; align-items:center; justify-content:center;
    color:var(--grey); transition:border-color .25s, color .25s, transform .25s;
    opacity:0;
    animation:popIcon .5s ease forwards;
  }
  .socials a:nth-child(1){ animation-delay:1.1s; }
  .socials a:nth-child(2){ animation-delay:1.18s; }
  .socials a:nth-child(3){ animation-delay:1.26s; }
  .socials a:nth-child(4){ animation-delay:1.34s; }
  .socials a:nth-child(5){ animation-delay:1.42s; }
  .socials a:hover{ border-color:var(--orange); color:var(--orange); transform:translateY(-3px); }
  .socials svg{ width:18px; height:18px; }

  /* ---------- SERVICES ---------- */
  .services{
    padding:100px 5vw 110px;
    text-align:center;
    background:var(--bg-panel);
    border-bottom:1px solid var(--line);
  }
  .eyebrow{
    color:var(--orange); font-size:13px; font-weight:700;
    letter-spacing:3px; margin-bottom:14px;
  }
  .services h2{
    font-size:clamp(26px,3vw,36px); margin-bottom:64px;
  }

  .scroll-reveal{
    opacity:0; transform:translateY(28px);
    transition:opacity .7s ease, transform .7s ease;
  }
  .scroll-reveal.is-visible{ opacity:1; transform:translateY(0); }
  .services-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    gap:0;
    max-width:920px;
    margin:0 auto;
  }
  .service-card{
    padding:0 28px;
    border-right:1px solid var(--line);
  }
  .service-card:last-child{ border-right:none; }
  .icon-wrap{
    width:64px; height:64px; margin:0 auto 24px;
    display:flex; align-items:center; justify-content:center;
    color:var(--orange);
  }
  .icon-wrap svg{ width:36px; height:36px; }
  .service-card h3{
    font-size:15px; letter-spacing:1px; margin-bottom:12px;
  }
  .service-card p{
    font-size:14px; line-height:1.65; color:var(--grey);
  }
  .underline{
    width:32px; height:2px; background:var(--orange);
    margin:22px auto 0;
  }

  /* ---------- CONTACT BAND ---------- */
  .contact-band{
    background:var(--orange);
    padding:34px 5vw;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
  }
  .contact-band-left{
    display:flex; align-items:center; gap:18px;
  }
  .contact-band .logo-mark span{ color:#0a0908; }
  .contact-band-left p{
    font-family:'Archivo Black', sans-serif;
    text-transform:uppercase;
    font-size:15px;
    letter-spacing:1px;
    color:#0a0908;
  }
  .contact-band-btn{
    background:#0a0908;
    color:var(--cream);
    padding:14px 28px;
    border-radius:999px;
    font-size:13px; font-weight:700; letter-spacing:1px;
    display:inline-flex; align-items:center; gap:8px;
    transition:transform .2s, background .25s, color .25s;
    white-space:nowrap;
  }
  .contact-band-btn:hover{ background:#1a1613; color:var(--orange); transform:translateY(-2px); }

  footer{
    padding:24px 5vw;
    text-align:center;
    font-size:12px;
    color:var(--grey);
    letter-spacing:1px;
  }
  footer span{ color:var(--orange); }

/* ========== TIENDA / SHOP PAGE ========== */

.shop-hero{
  padding:150px 5vw 70px;
  text-align:center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,94,15,0.14), transparent 70%),
    var(--bg);
  border-bottom:1px solid var(--line);
}
.shop-hero h1{
  font-size:clamp(30px, 4vw, 46px);
  line-height:1.15;
  margin-top:14px;
  max-width:780px;
  margin-left:auto; margin-right:auto;
  opacity:0; animation:fadeSlideUp .8s ease forwards; animation-delay:.4s;
}
.shop-hero h1 .accent{ color:var(--orange); }
.shop-eyebrow{
  opacity:0; animation:fadeSlideUp .7s ease forwards; animation-delay:.2s;
}
.back-link{
  display:inline-block;
  font-size:12px; font-weight:700; letter-spacing:1.5px;
  color:var(--grey);
  margin-bottom:18px;
  transition:color .2s;
}
.back-link:hover{ color:var(--orange); }

/* --- product catalog --- */
.product-grid{
  display:flex;
  flex-wrap:wrap;
  gap:36px;
  max-width:1080px;
  margin:0 auto;
}
.product-card{
  width:220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}
.product-thumb{
  width:220px; height:220px;
  border-radius:16px;
  border:1px solid var(--line);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(255,94,15,0.16), transparent 70%),
    var(--bg-panel);
  display:flex; align-items:center; justify-content:center;
  text-align:center;
  padding:16px;
  transition:border-color .25s, transform .25s;
}
.product-card:hover .product-thumb{
  border-color:rgba(255,94,15,0.5);
  transform:translateY(-4px);
}
.product-name{
  font-family:'Crude', 'Archivo Black', sans-serif;
  font-size:26px;
  line-height:1.15;
  color:var(--orange);
}
.product-buy{
  font-size:12px; font-weight:700; letter-spacing:1.5px;
  color:var(--cream);
  border:1.5px solid var(--orange);
  padding:10px 22px;
  border-radius:999px;
  transition:background .25s, color .25s;
}
.product-buy:hover{ background:var(--orange); color:#0a0908; }

/* --- intro showcase (INTROS title + big product card) --- */
.intro-showcase{
  padding:100px 5vw 110px;
  text-align:center;
  border-bottom:1px solid var(--line);
}
.intro-showcase-title{
  font-size:clamp(38px, 6vw, 64px);
  color:var(--orange);
  letter-spacing:1px;
  margin-bottom:26px;
}
.intro-divider{
  width:220px; height:4px;
  background:var(--orange);
  border-radius:2px;
  margin:0 auto 30px;
}
.intro-card-wrap{
  max-width:460px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:28px;
}
.intro-card{
  width:100%;
  aspect-ratio:4/3;
  background:var(--orange);
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  padding:20px;
  transition:transform .25s, box-shadow .25s;
}
.intro-card:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 40px -15px rgba(255,94,15,0.4);
}
.intro-card span{
  font-family:'Archivo Black', sans-serif;
  font-size:clamp(30px, 4.5vw, 46px);
  line-height:1.1;
  color:#0a0908;
  text-align:center;
}
.intro-buy-btn{
  background:#0a0908;
  color:var(--cream);
  font-size:14px; font-weight:700; letter-spacing:2px;
  padding:16px 56px;
  border-radius:8px;
  transition:background .25s, color .25s;
}
.intro-buy-btn:hover{ background:#1a1613; color:var(--orange); }

.shop-section{
  padding:80px 5vw;
  border-bottom:1px solid var(--line);
}
.shop-section.alt{ background:var(--bg-panel); }
.step-head{ text-align:center; max-width:640px; margin:0 auto 50px; }
.step-num{
  display:inline-flex; align-items:center; justify-content:center;
  width:34px; height:34px; border-radius:50%;
  border:1.5px solid var(--orange); color:var(--orange);
  font-family:'Archivo Black', sans-serif; font-size:14px;
  margin-bottom:16px;
}
.step-head h2{ font-size:clamp(22px,2.6vw,30px); margin-bottom:12px; }
.step-head p{ color:var(--grey); font-size:15px; line-height:1.6; }

/* --- style selector --- */
.style-picker{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:48px;
  max-width:1080px;
  margin:0 auto;
  align-items:start;
}
.style-list{ display:flex; flex-direction:column; gap:12px; }
.style-option{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px;
  border:1px solid var(--line);
  border-radius:12px;
  background:var(--bg-panel);
  cursor:pointer;
  transition:border-color .2s, background .2s;
}
.style-option:hover{ border-color:rgba(255,94,15,0.5); }
.style-option.active{
  border-color:var(--orange);
  background:rgba(255,94,15,0.08);
}
.style-option .name{ font-weight:700; font-size:14px; letter-spacing:0.5px; }
.style-option .tag{ font-size:12px; color:var(--grey); }
.style-option .radio{
  width:18px; height:18px; border-radius:50%;
  border:2px solid var(--line); flex-shrink:0;
  position:relative;
}
.style-option.active .radio{ border-color:var(--orange); }
.style-option.active .radio::after{
  content:''; position:absolute; inset:3px; border-radius:50%; background:var(--orange);
}
.style-option-left{ display:flex; align-items:center; gap:14px; }

.preview-panel{
  position:sticky; top:100px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#0d0b09;
}
.preview-stage{
  aspect-ratio:16/11;
  display:flex; align-items:center; justify-content:center;
  position:relative;
  transition:background 0.4s ease;
}
.preview-stage .pm{
  font-family:'Crude', 'Archivo Black', sans-serif;
  font-size:130px;
  line-height:1;
  transition:all .4s ease;
}
.preview-info{
  padding:20px 24px;
  border-top:1px solid var(--line);
}
.preview-info .preview-label{
  font-size:11px; letter-spacing:2px; color:var(--orange); font-weight:700; margin-bottom:6px;
}
.preview-info p{ font-size:14px; color:var(--grey); line-height:1.55; }

/* material presets applied via JS by swapping data-style on preview-stage */
.mat-piedra{ background:linear-gradient(135deg,#3a3733,#1c1a17 60%,#4a463f); }
.mat-piedra .pm{ color:#8d867a; text-shadow: 0 2px 0 #1a1815, 0 0 30px rgba(0,0,0,0.5); }

.mat-gringo{ background:linear-gradient(135deg,#3a2a0c,#1a1108 60%,#5c4212); }
.mat-gringo .pm{ color:#e8c26a; text-shadow:0 0 40px rgba(232,194,106,0.45); }

.mat-metallic{ background:linear-gradient(135deg,#3d4247,#15171a 60%,#5b636b); }
.mat-metallic .pm{ color:#d7dee3; text-shadow:0 0 30px rgba(215,222,227,0.35); }

.mat-plastic{ background:linear-gradient(135deg,#7a1d0f,#2b0a05 60%,#c93a1a); }
.mat-plastic .pm{ color:#ff6a3d; text-shadow:0 6px 18px rgba(0,0,0,0.4), 0 0 25px rgba(255,106,61,0.5); }

.mat-glass{ background:linear-gradient(135deg,rgba(255,255,255,0.05),rgba(255,94,15,0.08) 60%,rgba(255,255,255,0.02)); }
.mat-glass .pm{ color:rgba(244,239,232,0.85); text-shadow:0 0 25px rgba(255,255,255,0.25); }

/* --- info form --- */
.info-form{
  max-width:640px; margin:0 auto;
  display:flex; flex-direction:column; gap:22px;
}
.form-row label{
  display:block; font-size:13px; font-weight:700; letter-spacing:0.5px;
  margin-bottom:8px; color:var(--cream);
}
.form-row .hint{ font-size:12px; color:var(--grey); margin-bottom:8px; font-weight:400; letter-spacing:0; }
.form-row input[type="text"],
.form-row textarea{
  width:100%;
  background:var(--bg-panel);
  border:1px solid var(--line);
  border-radius:10px;
  padding:13px 16px;
  color:var(--cream);
  font-family:'Inter', sans-serif;
  font-size:14px;
  resize:vertical;
  transition:border-color .2s;
}
.form-row input[type="text"]:focus,
.form-row textarea:focus{ outline:none; border-color:var(--orange); }
.color-row{ display:flex; align-items:center; gap:14px; }
.color-row input[type="color"]{
  width:52px; height:44px; border:1px solid var(--line); border-radius:10px;
  background:var(--bg-panel); cursor:pointer; padding:4px;
}

/* --- pricing --- */
.plans{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:820px;
  margin:0 auto;
}
.plans.plans-3{
  grid-template-columns:repeat(3, 1fr);
  max-width:1080px;
}
.plan-card{
  border:1px solid var(--line);
  border-radius:16px;
  padding:34px 30px;
  background:var(--bg-panel);
  position:relative;
}
.plan-card.featured{
  border-color:var(--orange);
  background:linear-gradient(180deg, rgba(255,94,15,0.08), rgba(15,14,12,0.4));
}
.plan-badge{
  position:absolute; top:-13px; right:24px;
  background:var(--orange); color:#0a0908;
  font-size:11px; font-weight:700; letter-spacing:1px;
  padding:5px 12px; border-radius:999px;
}
.plan-name{ font-size:13px; letter-spacing:2px; color:var(--grey); margin-bottom:10px; font-weight:700; }
.plan-price{ font-family:'Archivo Black', sans-serif; font-size:40px; margin-bottom:22px; }
.plan-price span{ font-size:15px; color:var(--grey); font-family:'Inter', sans-serif; font-weight:400; }
.plan-features{ list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:28px; }
.plan-features li{ display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--cream); line-height:1.4; }
.plan-features li.no{ color:var(--grey); }
.plan-features li svg{ width:16px; height:16px; flex-shrink:0; margin-top:2px; }
.plan-features li.yes svg{ color:var(--orange); }
.plan-features li.no svg{ color:#4a453e; }
.plan-btn{
  display:block; text-align:center;
  width:100%;
  padding:14px;
  border-radius:999px;
  font-size:13px; font-weight:700; letter-spacing:1px;
  border:1.5px solid var(--orange); color:var(--orange);
  transition:background .25s, color .25s;
}
.plan-btn:hover{ background:var(--orange); color:#0a0908; }
.plan-btn.solid{ background:var(--orange); color:#0a0908; }
.plan-btn.solid:hover{ background:transparent; color:var(--orange); }

@media (max-width: 880px){
  .style-picker{ grid-template-columns:1fr; }
  .preview-panel{ position:relative; top:0; }
  .plans{ grid-template-columns:1fr; }
  .info-grid{ grid-template-columns:1fr; gap:36px; }
}

/* --- info cards (delivery / terms / payment) --- */
.info-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:32px;
  max-width:1080px;
  margin:0 auto;
}
.info-card{
  padding:0 6px;
}
.info-icon{
  width:52px; height:52px;
  border-radius:12px;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--orange);
  margin-bottom:20px;
}
.info-icon svg{ width:24px; height:24px; }
.info-card h3{
  font-size:14px; letter-spacing:1px; margin-bottom:12px;
}
.info-card p{
  font-size:14px; line-height:1.7; color:var(--grey);
}
.info-card p strong{ color:var(--cream); font-weight:600; }

.footer-socials{
  display:flex; justify-content:center; gap:14px;
  margin-bottom:20px;
}
.footer-socials a{
  width:38px; height:38px; border-radius:50%;
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
  color:var(--grey); transition:all .25s;
}
.footer-socials a:hover{ border-color:var(--orange); color:var(--orange); transform:translateY(-3px); }
.footer-socials svg{ width:16px; height:16px; }

  @media (max-width: 880px){
    nav.links{ display:none; }
    .hero{
      padding-top:80px;
      min-height:560px;
    }
    .hero::before{
      background:
        linear-gradient(180deg, rgba(6,5,4,0.55) 0%, rgba(6,5,4,0.92) 65%, rgba(6,5,4,0.98) 100%),
        var(--hero-photo) center 30% / cover no-repeat;
    }
    .services-grid{ grid-template-columns:1fr; gap:48px; }
    .service-card{ border-right:none; border-bottom:1px solid var(--line); padding-bottom:40px; }
    .service-card:last-child{ border-bottom:none; padding-bottom:0; }
  }
