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

body{
  font-family:'Montserrat', sans-serif;
  background:#0a0a0a;
  color:#fff;
}

.linea-blanca{
  width:100%;
  height:1px;
  background:rgba(255,255,255,0.2);
}


.nav{
  display:flex;
  justify-content:center;
  align-items:center; /* 👈 esto arregla lo de las letras arriba */
  gap:60px;
  padding:20px 0;
}


.nav a{
  color:#ccc;
  text-decoration:none;
  letter-spacing:6px;
  font-size:18px;
  transition:0.3s;
}

.nav a:hover{
  color:#d4af37;
}


.video-hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

.video-hero video{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:1;
}


.hero-title{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  z-index:2;
}

.hero-title h1{
  font-family:'Playfair Display', serif;
  font-size:70px;
  letter-spacing:6px;
  background:linear-gradient(to right,#d4af37,#f5e6b2);

  background-clip:text;
  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;
}

.subtitle{
  margin:20px 0;
  color:#bbb;
}


.btn{
  padding:12px 30px;
  border:1px solid #d4af37;
  color:#d4af37;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  background:#d4af37;
  color:#000;
}


.logo-bg{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:520px;
  opacity:0.18;
  z-index:1;
}


.tokoya-wrapper{
  padding:100px 20px;
  background:#111;
  display:flex;
  justify-content:center;
}

.content-container{
  max-width:1200px;
  width:100%;
}

.tokoya-info{
  margin-bottom:40px;
  max-width:700px;
}

.tokoya-main-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.image-wrapper{
  width:100%;
  max-width:500px;
  height:320px;
  overflow:hidden;
  border-radius:14px;
}

.image-wrapper img,
.image-wrapper video{
  width:100%;
  height:100%;
  object-fit:cover;
}


.headline-box{
  display:flex;
  flex-direction:column;
}

.headline-box h1{
  font-size:48px;
  line-height:1.1;
}

.headline-box p{
  margin-top:15px;
  color:#bbb;
}

.accent{
  color:#d4af37;
}


.parallax{
  height:400px;
  background:url('img/rice-plate.jpg') center/cover fixed;
}


.cards{
  display:flex;
  justify-content:center;
  gap:40px;
  padding:60px;
  flex-wrap:wrap;
}

.card{
  width:300px;
  text-align:center;
}

.card img{
  width:100%;
  height:350px;
  object-fit:cover;
  object-position:center top;
  border-radius:15px;
}


.footer{
  text-align:center;
  padding:40px;
  border-top:1px solid rgba(255,255,255,0.1);
}

.reveal{
  opacity:0;
  filter:blur(15px);
  transform:translateY(30px);
  transition:all 1.5s ease;
}

.reveal.active{
  opacity:1;
  filter:blur(0);
  transform:translateY(0);
}

.video-hero video.reveal{
  transform:scale(1.1);
}

.video-hero video.reveal.active{
  transform:scale(1);
}

.logo-bg{ transition-delay:.2s; }
.hero-title h1{ transition-delay:.4s; }
.subtitle{ transition-delay:.6s; }
.btn{ transition-delay:.8s; }


@media (max-width: 768px){

  .nav{
    flex-direction:column;
    gap:15px;
    text-align:center;
  }

  .hero-title h1{
    font-size:40px;
    letter-spacing:3px;
  }

  .subtitle{
    font-size:14px;
  }

  .logo-bg{
    width:260px;
  }

  .tokoya-main-grid{
    grid-template-columns:1fr;
    gap:40px;
  }

  .image-wrapper{
    max-width:100%;
    height:250px;
  }

  .headline-box h1{
    font-size:32px;
  }

  .headline-box p{
    font-size:14px;
    line-height:1.6;
  }

  .cards{
    padding:30px 15px;
    gap:25px;
  }

  .card{
    width:100%;
  }

  .card img{
    height:280px;
  }

  .parallax{
    background-attachment:scroll;
  }
}

@media (min-width: 769px) and (max-width: 1024px){

  .nav{ gap:30px; }

  .hero-title h1{ font-size:55px; }

  .logo-bg{ width:380px; }

  .tokoya-main-grid{ gap:40px; }

  .headline-box h1{ font-size:40px; }

  .cards{ gap:30px; }

  .card{ width:45%; }
}

@media (min-width: 1400px){

  .hero-title h1{ font-size:90px; }

  .logo-bg{ width:650px; }

  .content-container{ max-width:1400px; }

  .headline-box h1{ font-size:60px; }
}



.logo-bg.reveal{
  transform: translate(-50%, -50%) scale(0.9); 
}

.logo-bg.reveal.active{
  transform: translate(-50%, -50%) scale(1);
}

.logo-bg{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:520px;
  opacity:0.18;
  z-index:1;
}


.logo-bg.reveal{
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.95);
}


.logo-bg.reveal.active{
  opacity: 0.35; 
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
}

.social-icons{
  display:flex;
  gap:12px;
  justify-content:center;
  align-items:center;
}

.social-icons a{
  width:45px;
  height:45px;
  display:flex;
  justify-content:center;
  align-items:center;
  background:#b7b0a6;
  border-radius:8px;
  color:#111;
  font-size:18px;
  text-decoration:none;
  transition:0.3s;
}

.social-icons a:hover{
  transform:translateY(-3px);
  background:#d4af37;
  color:#000;
}

.seo-hidden{
  position: absolute;
  left: -9999px;
}

.logo img{
  height: 70px;   
  width: auto;
  display: block;
  align-items: center;
}
