:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-text-muted: rgba(255, 255, 255, 0.75);
  --color-border: rgba(255, 255, 255, 0.05);

  --font-main: "Montserrat", sans-serif;
  --font-heading: "Oswald", sans-serif;

  --max-width: 1100px;
  --radius-md: 12px;
  --radius-lg: 30px;

  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 40px;
  --spacing-xxl: 80px;
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-main);
  line-height: 1.6;
}

/* Fuente tipo Vogue solo para elementos específicos */
.font-vogue {
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.container {
  margin: 0 auto;
  max-width: var(--max-width);
  padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-muted); }
.img-rounded {
  border-radius: var(--radius-md);
  object-fit: cover;
  max-width: 100%;
}

.section {
  margin: var(--spacing-xxl) auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.header { text-align: center; margin: var(--spacing-xl) 0; }
.name {
  font-family: var(--font-heading);
  font-size: 54px;
  line-height: 0.95;
}
.role {
  font-size: 14px;
  opacity: .75;
  margin-top: var(--spacing-sm);
}

.hero-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-collage img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.bio-section { text-align: center; }
.bio-text {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-top: 12px;
}
.bio-image {
  width: 100%;
  max-width: 320px;
  margin-top: 20px;
}
.bio-image.img-rounded { object-fit: cover; }

.specs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}
.specs-vertical {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  background: rgba(255, 255, 255, 0.03);
  padding: var(--spacing-md);
  border-radius: var(--radius-md);
  width: 220px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  font-size: 14px;
}
.spec-row:last-child { border-bottom: none; }
.spec-image {
  width: 100%;
  max-width: 320px;
}

.scroll-wrap { overflow-x: auto; }
.work-grid, .content-grid {
  display: flex;
  gap: var(--spacing-md);
  padding: 10px 0;
}
.card { flex: 0 0 auto; }
.card video {
  width: 200px;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.statement {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  text-align: center;
}
.statement-text {
  font-size: 16px;
  max-width: 700px;
}
.statement-image img {
  max-width: 320px;
  border-radius: var(--radius-md);
}

.contact {
  text-align: center;
  padding: 0;
}

.contact p {
  margin: 8px 0;
}

.contact a {
  color: #fff;             
  text-decoration: none;    
  font-weight: 500;
}

.contact a:hover {
  color: #d11222;           
  text-decoration: underline;
}

.cta-button {
  display: inline-block;
  background: #000;   
  color: #fff;        
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: background-color .3s, color .3s;
}

.cta-button:hover {
  background: #da0719; 
  color: #fff;         
}

.site-footer {
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin: var(--spacing-xl) 0;
}

@media (max-width: 999px) {
  .work-grid, .content-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth; /* suaviza el scroll */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; /* para que se “enganchen” los videos al scroll */
  }

  .work-grid .card, .content-grid .card {
    flex: 0 0 auto; /* mantiene los videos en fila horizontal */
    scroll-snap-align: start; /* cada video encaja al inicio */
  }

  /* Ocultar scrollbar en móvil si quieres un look más limpio */
  .work-grid::-webkit-scrollbar, .content-grid::-webkit-scrollbar {
    display: none;
  }
}

@media (min-width: 1000px) {
  .section { margin: 120px auto; }
  .section-title { font-size: 40px; margin-bottom: 20px; }
  .section-desc { font-size: 18px; margin-bottom: 40px; }

  .header { text-align: left; }
  .name { font-size: 100px; text-align: left; }
  .role { font-size: 18px; }

  .hero-collage {
    grid-template-columns: 3fr 2fr;
    gap: 30px;
  }
  .hero-collage img { height: 900px; }

  .bio-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 40px;
  }
  .bio-text { font-size: 18px; line-height: 1.8; }
  .bio-image { max-width: 400px; }

  .specs {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
  .specs-vertical {
    width: 260px;
    padding: 20px;
  }
  .spec-image { max-width: 420px; }

  .work-grid, .content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
  }
  .card video {
    width: 100%;
    height: auto;
  }

  .statement {
    flex-direction: row;
    text-align: left;
    gap: 60px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .statement-text {
    font-size: 20px;
    line-height: 1.8;
  }
  .statement-image img { max-width: 500px; }
}
