p { max-width: 800px; margin: 0 auto 1rem; }
.bilingual { display: inline; }
.bilingual::after { content: " / "; color: #999; }
.bilingual:last-child::after { content: ""; }
.lang-block { margin-bottom: 1rem; }
.hero video[poster] {
  opacity: 0.5;
  object-fit: cover;
}
.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}
.gallery { 
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  justify-items: center;
}
.gallery img { 
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
}
.form-container { max-width: 500px; margin: 0 auto; }
input, button { width: 100%; padding: 0.8rem; margin: 0.5rem 0; border: 1px solid #ddd; border-radius: 4px; font-size: 1rem; }
button { background: #d4a5a5; color: white; border: none; cursor: pointer; transition: background 0.3s; }
button:hover { background: #c68b8b; }
footer { padding: 2rem; background: #eee; text-align: center; }
.modal { 
  display: none; 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0, 0, 0, 0.8); 
  z-index: 20; 
  justify-content: center; 
  align-items: center; 
  overflow: auto; 
}
.modal-content { 
  max-width: 90vw; 
  max-height: 90vh; 
  width: auto; 
  height: auto; 
  border-radius: 8px; 
  object-fit: contain; 
  position: relative; 
  text-align: center; 
}
.modal img { 
  width: 100%; 
  height: auto; 
  max-width: 90vw; 
  max-height: 80vh;
}
.modal video { 
  width: 100%; 
  height: auto; 
  max-height: 80vh; 
}
.modal-caption { 
  color: white; 
  font-size: 1rem; 
  padding: 0.5rem; 
  background: rgba(0, 0, 0, 0.7); 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 100%; 
  border-radius: 0 0 8px 8px; 
}
.modal-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 25;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-btn-left { left: 10px; }
.modal-btn-right { right: 10px; }
.modal-btn:hover { background: rgba(0, 0, 0, 0.7); }
.honeypot { display: none; } 
.error { color: #c00; font-weight: bold; }

@media (min-width: 769px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .gallery { 
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .gallery img {
    max-width: 100%;
  }
}
